size-based scrolling and right-click pages for editor notebook
[ardour.git] / gtk2_ardour / ardour_ui.h
index a22c6e2bb48d372cca62e0e92872a4b205da682b..91ed6136c6c180284d2e62e6af8d4c252e9f889c 100644 (file)
 #include <libgnomecanvasmm/canvas.h>
 
 #include <pbd/xml++.h>
+#include <gtkmm/box.h>
+#include <gtkmm/frame.h>
+#include <gtkmm/label.h>
+#include <gtkmm/table.h>
+#include <gtkmm/fixed.h>
+#include <gtkmm/drawingarea.h>
+#include <gtkmm/eventbox.h>
+#include <gtkmm/menu.h>
+#include <gtkmm/menuitem.h>
+#include <gtkmm/button.h>
+#include <gtkmm/togglebutton.h>
+#include <gtkmm/treeview.h>
+#include <gtkmm/menubar.h>
+#include <gtkmm/adjustment.h>
 #include <gtkmm2ext/gtk_ui.h>
 #include <gtkmm2ext/pix.h>
 #include <gtkmm2ext/click_box.h>
@@ -47,6 +61,7 @@
 #include "audio_clock.h"
 #include "ardour_dialog.h"
 #include "editing.h"
+#include "glade_factory.h"
 
 class AudioClock;
 class PublicEditor;
@@ -56,7 +71,7 @@ class OptionEditor;
 class Mixer_UI;
 class ConnectionEditor;
 class RouteParams_UI;
-class SoundFileSelector;
+class SoundFileBrowser;
 class About;
 class AddRouteDialog;
 class NewSessionDialog;
@@ -84,16 +99,16 @@ class ARDOUR_UI : public Gtkmm2ext::UI
   public:
        ARDOUR_UI (int *argcp, char **argvp[], string rcfile);
        ~ARDOUR_UI();
-       
+
        void show ();
        bool shown() { return shown_flag; }
        
        void show_splash ();
        void hide_splash ();
        
-       int load_session (string path, string snapshot, string* mix_template = 0);
+       int load_session (ARDOUR::stringcr_t path, ARDOUR::stringcr_t snapshot, string* mix_template = 0);
        bool session_loaded;
-       int build_session (string path, string snapshot, 
+       int build_session (ARDOUR::stringcr_t path, ARDOUR::stringcr_t snapshot, 
                           uint32_t ctl_chns, 
                           uint32_t master_chns,
                           ARDOUR::Session::AutoConnectOption input_connect,
@@ -113,13 +128,13 @@ class ARDOUR_UI : public Gtkmm2ext::UI
                _will_create_new_session_automatically = yn;
        }
 
-       void new_session (bool startup = false, std::string path = string());
-       gint cmdline_new_session (std::string path);
+       void new_session(bool startup = false, std::string path = string());
+       gint cmdline_new_session (string path);
        int  unload_session ();
        void close_session() { unload_session(); }
 
        int  save_state_canfail (string state_name = "");
-       void save_state (string state_name = "");
+       void save_state (ARDOUR::stringcr_t state_name = "");
        void restore_state (string state_name = "");
 
        static double gain_to_slider_position (ARDOUR::gain_t g);
@@ -130,19 +145,11 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        PublicEditor&     the_editor(){return *editor;}
        Mixer_UI* the_mixer() { return mixer; }
        
-       void allow_focus (bool yn);
-
-       static gint generic_focus_in_event (GdkEventFocus *);
-       static gint generic_focus_out_event (GdkEventFocus *);
-
        void toggle_location_window ();
        void toggle_big_clock_window ();
        void toggle_connection_editor ();
        void toggle_route_params_window ();
        void toggle_tempo_window ();
-       void toggle_sfdb_window ();
-
-       SoundFileSelector& get_sfdb_window();
 
        gint32 select_diskstream (GdkEventButton *ev);
 
@@ -198,7 +205,6 @@ class ARDOUR_UI : public Gtkmm2ext::UI
   protected:
        friend class PublicEditor;
 
-       void toggle_metering ();
        void toggle_clocking ();
        void toggle_auto_play ();
        void toggle_auto_input ();
@@ -265,8 +271,6 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        Gtk::Table          transport_table;
        Gtk::Table          option_table;
 
-       static SoundFileSelector* sfdb_window;
-
        int  setup_windows ();
        void setup_session_menu ();
        void setup_transport ();
@@ -282,7 +286,7 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        void shutdown ();
 
        void finish();
-       int  ask_about_saving_session (string why);
+       int  ask_about_saving_session (ARDOUR::stringcr_t why);
        gint ask_about_save_deleted (GdkEventAny*);
        void save_session_choice_made (int);
        int  save_the_session;
@@ -324,18 +328,11 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        void         start_clocking ();
        void         stop_clocking ();
 
-       class BigClockWindow : public ArdourDialog
-       {
-         public:
-               BigClockWindow () : ArdourDialog ("big clock window") {};
-       };
-
-       AudioClock               big_clock;
-       Gtk::Frame               big_clock_frame;
-       BigClockWindow*          big_clock_window;
-
-       void big_clock_size_event (GtkAllocation *alloc);
-       void big_clock_realize ();
+       void manage_window (Gtk::Window&);
+       
+       AudioClock   big_clock;
+       Gtk::Frame   big_clock_frame;
+       Gtk::Window* big_clock_window;
 
        /* Transport Control */
 
@@ -483,33 +480,6 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        void build_menu_bar ();
        void pack_toplevel_controls();
 
-       /* handles on the menu bar items that need to 
-          be sensitive to whether or not we have
-          a session loaded.
-       */
-
-       Gtk::MenuItem *add_track_item;
-       Gtk::MenuItem *save_item;
-       Gtk::MenuItem *snapshot_item;
-       Gtk::MenuItem *save_as_item;
-       Gtk::MenuItem *save_template_item;
-       Gtk::MenuItem *export_item;
-       Gtk::MenuItem *close_item;
-
-       Gtk::CheckMenuItem *meter_bridge_dialog_check;
-       Gtk::CheckMenuItem *connection_editor_check;
-       Gtk::CheckMenuItem *route_params_check;
-       Gtk::CheckMenuItem *locations_dialog_check;
-       Gtk::CheckMenuItem *big_clock_check;
-       Gtk::CheckMenuItem *tempo_editor_check;
-       Gtk::CheckMenuItem *sfdb_check;
-       Gtk::CheckMenuItem *options_window_check;
-       
-       /* <CMT Additions> */
-       Gtk::MenuItem *image_compositor_item ;
-       /* </CMT Additions> */
-
-
        Gtk::Label   wall_clock_label;
        Gtk::EventBox wall_clock_box;
        gint update_wall_clock ();
@@ -548,16 +518,9 @@ class ARDOUR_UI : public Gtkmm2ext::UI
 
        bool _will_create_new_session_automatically;
 
-       NewSessionDialog* new_session_window;
-       string template_name;
-
-       void new_session_ok_clicked ();
-       void new_session_template_choice (Gtk::TreeView&, Glib::RefPtr<Gtk::TreeSelection>);
-       void hide_dialog (ArdourDialog *dialog);
-
-       void fs_cancel_clicked (Gtk::FileSelection*);
-       gint fs_delete_event (GdkEventAny*, Gtk::FileSelection*);
-
+       GladeRef m_new_session_dialog_ref;
+       NewSessionDialog* m_new_session_dialog;
+       
        void open_session ();
        void open_recent_session ();
        void open_ok_clicked ();
@@ -572,31 +535,6 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        Gtk::Menu *diskstream_menu;
        gint32 selected_dstream;
        
-       gint mouse_transport_goto_start (GdkEventButton *) {
-               transport_goto_start (); return TRUE;
-       }
-       gint mouse_transport_goto_end (GdkEventButton *) {
-               transport_goto_end (); return TRUE;
-       }
-       gint mouse_transport_record (GdkEventButton *) {
-               transport_record (); return TRUE;
-       }
-       gint mouse_transport_forward (GdkEventButton *) {
-               transport_forward (0); return TRUE;
-       }
-       gint mouse_transport_rewind (GdkEventButton *) {
-               transport_rewind (0); return TRUE;
-       }
-       gint mouse_transport_loop (GdkEventButton *) {
-               transport_loop (); return TRUE;
-       }
-       gint mouse_transport_play_selection (GdkEventButton *) {
-               transport_play_selection (); return TRUE;
-       }
-
-       gint mouse_transport_roll (GdkEventButton *);
-       gint mouse_transport_stop (GdkEventButton *);
-
        void set_transport_sensitivity (bool);
 
        void remove_last_capture ();
@@ -641,9 +579,6 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        PublicEditor     *editor;
        int         create_editor ();
 
-       MeterBridge  *meter_bridge;
-       int          create_meter_bridge ();
-
        RouteParams_UI *route_params;
        int             create_route_params ();
 
@@ -653,14 +588,6 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        LocationUI *location_ui;
        int         create_location_ui ();
 
-       void meter_bridge_hiding ();
-       void location_ui_hiding ();
-       void big_clock_hiding ();
-       void route_params_hiding ();
-       void connection_editor_hiding ();
-       void sfdb_hiding ();
-       void option_hiding ();
-
        /* Various options */
 
        void toggle_recording_plugins ();
@@ -673,6 +600,11 @@ class ARDOUR_UI : public Gtkmm2ext::UI
 
        AddRouteDialog *add_route_dialog;
        void add_route_dialog_done (int status);
+
+       /* SoundFile Browser */
+       SoundFileBrowser *sfdb;
+       void toggle_sound_file_browser ();
+       int create_sound_file_browser ();
        
        /* Keyboard Handling */
        
@@ -681,6 +613,8 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        /* Keymap handling */
 
        void install_keybindings ();
+       Glib::RefPtr<Gtk::ActionGroup> get_common_actions();
+       void install_actions ();
        void test_binding_action (const char *);
        void start_keyboard_prefix();
 
@@ -696,7 +630,7 @@ class ARDOUR_UI : public Gtkmm2ext::UI
 
        Gtk::MenuItem *cleanup_item;
 
-       void display_cleanup_results (ARDOUR::Session::cleanup_report& rep, const gchar* list_title, string msg);
+       void display_cleanup_results (ARDOUR::Session::cleanup_report& rep, const gchar* list_title, ARDOUR::stringcr_t msg);
        void cleanup ();
        void flush_trash ();
 
@@ -734,7 +668,8 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        int make_session_clean ();
        bool filter_ardour_session_dirs (const Gtk::FileFilter::Info&);
 
-       Glib::RefPtr<Gtk::UIManager> ui_manager;
+       Glib::RefPtr<Gtk::ActionGroup> common_actions;
 };
 
+
 #endif /* __ardour_gui_h__ */