bring back full mute control (pre/post/control/main) via mute button context click
[ardour.git] / gtk2_ardour / location_ui.h
index 8738b44ca3da5aa5ab99d0e36478f30e188a81da..a17724f5ba5ff1e0fe45922a1e54b8456aba3048 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 1999-2002 Paul Davis 
+    Copyright (C) 1999-2002 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
 
 #ifndef __ardour_location_ui_h__
 #define __ardour_location_ui_h__
 
-#include <gtkmm.h>
-#include <ardour/location.h>
-#include <ardour/session.h>
+#include <gtkmm/box.h>
+#include <gtkmm/checkbutton.h>
+#include <gtkmm/button.h>
+#include <gtkmm/table.h>
+#include <gtkmm/entry.h>
+#include <gtkmm/label.h>
+#include <gtkmm/paned.h>
+#include <gtkmm/scrolledwindow.h>
+
+#include "ardour/location.h"
 
 #include "ardour_dialog.h"
-#include "keyboard_target.h"
+#include "audio_clock.h"
 
 namespace ARDOUR {
        class LocationStack;
@@ -46,9 +52,10 @@ class LocationEditRow  : public Gtk::HBox
        void set_session (ARDOUR::Session *);
 
        void set_number (int);
-       
-       sigc::signal<void,ARDOUR::Location*> remove_requested;  
-       sigc::signal<void> redraw_ranges;  
+       void focus_name();
+
+       sigc::signal<void,ARDOUR::Location*> remove_requested;
+       sigc::signal<void> redraw_ranges;
 
   protected:
 
@@ -61,21 +68,19 @@ class LocationEditRow  : public Gtk::HBox
        ARDOUR::Location *location;
        ARDOUR::Session  *session;
 
-       
-       
+
+
        Gtk::Table    item_table;
-       
+
        Gtk::Entry    name_entry;
        Gtk::Label    name_label;
        Gtk::Label    number_label;
-       
+
        Gtk::HBox     start_hbox;
-       Gtk::Button   start_set_button;
        Gtk::Button   start_go_button;
        AudioClock    start_clock;
 
        Gtk::HBox     end_hbox;
-       Gtk::Button   end_set_button;
        Gtk::Button   end_go_button;
        AudioClock    end_clock;
 
@@ -100,16 +105,17 @@ class LocationEditRow  : public Gtk::HBox
 
        guint32 i_am_the_modifier;
        int   number;
-       
+
        void name_entry_changed ();
        void isrc_entry_changed ();
        void performer_entry_changed ();
        void composer_entry_changed ();
-              
+
        void set_button_pressed (LocationPart part);
        void go_button_pressed (LocationPart part);
 
        void clock_changed (LocationPart part);
+       void change_aborted (LocationPart part);
 
        void cd_toggled ();
        void hide_toggled ();
@@ -118,47 +124,48 @@ class LocationEditRow  : public Gtk::HBox
        void scms_toggled ();
        void preemph_toggled ();
 
-       gint entry_focus_event (GdkEventFocus* ev);
-       
        void end_changed (ARDOUR::Location *);
        void start_changed (ARDOUR::Location *);
        void name_changed (ARDOUR::Location *);
        void location_changed (ARDOUR::Location *);
        void flags_changed (ARDOUR::Location *, void *src);
-       
+
        sigc::connection start_changed_connection;
        sigc::connection end_changed_connection;
        sigc::connection name_changed_connection;
        sigc::connection changed_connection;
        sigc::connection flags_changed_connection;
-       
-};
 
+};
 
-class LocationUI : public ArdourDialog
+class LocationUI : public Gtk::HBox
 {
   public:
        LocationUI ();
        ~LocationUI ();
+       
+       virtual void set_session (ARDOUR::Session *);
 
-       void set_session (ARDOUR::Session *);
-
-  private:
+       void add_new_location();
+       void add_new_range();
 
+       void refresh_location_list ();
+       void refresh_location_list_s (ARDOUR::Change);
 
-       ARDOUR::LocationStack          *locations;
+  private:
+       ARDOUR::Session* session;
+       ARDOUR::LocationStack* locations;
+       ARDOUR::Location *newest_location;
 
        void session_gone();
 
-
        Gtk::VBox  location_vpacker;
-       Gtk::HBox  location_hpacker;
 
        LocationEditRow      loop_edit_row;
        LocationEditRow      punch_edit_row;
-       
+
        Gtk::VPaned loc_range_panes;
-       
+
        Gtk::Frame loc_frame;
        Gtk::VBox  loc_frame_box;
        Gtk::Button add_location_button;
@@ -171,7 +178,6 @@ class LocationUI : public ArdourDialog
        Gtk::ScrolledWindow  range_rows_scroller;
        Gtk::VBox            range_rows;
 
-
        /* When any location changes it start
           or end points, it sends a signal that is caught
           by one of these functions
@@ -182,17 +188,29 @@ class LocationUI : public ArdourDialog
        void location_redraw_ranges ();
 
        gint do_location_remove (ARDOUR::Location *);
-       
+
        guint32 i_am_the_modifier;
 
-       void add_new_location();
-       void add_new_range();
-       
-       void refresh_location_list ();
-       void refresh_location_list_s (ARDOUR::Change);
        void location_removed (ARDOUR::Location *);
        void location_added (ARDOUR::Location *);
        void map_locations (ARDOUR::Locations::LocationList&);
 };
 
+class LocationUIWindow : public ArdourDialog
+{
+  public:
+       LocationUIWindow ();
+       ~LocationUIWindow ();
+
+       void on_show();
+       void set_session (ARDOUR::Session *);
+
+       LocationUI& ui() { return _ui; }
+
+  protected:
+       LocationUI _ui;
+       bool on_delete_event (GdkEventAny*);
+       void session_gone();
+};
+
 #endif // __ardour_location_ui_h__