/[svn]/gigedit/trunk/src/gigedit/mainwindow.cpp
ViewVC logotype

Diff of /gigedit/trunk/src/gigedit/mainwindow.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3134 by schoenebeck, Fri Apr 28 12:41:12 2017 UTC revision 3158 by schoenebeck, Mon May 8 18:05:35 2017 UTC
# Line 35  Line 35 
35  #include <gtkmm/aboutdialog.h>  #include <gtkmm/aboutdialog.h>
36  #include <gtkmm/filechooserdialog.h>  #include <gtkmm/filechooserdialog.h>
37  #include <gtkmm/messagedialog.h>  #include <gtkmm/messagedialog.h>
38    #include <gtkmm/stock.h>
39  #include <gtkmm/targetentry.h>  #include <gtkmm/targetentry.h>
40  #include <gtkmm/main.h>  #include <gtkmm/main.h>
41  #include <gtkmm/toggleaction.h>  #include <gtkmm/toggleaction.h>
42    #include <gtkmm/accelmap.h>
43  #if GTKMM_MAJOR_VERSION < 3  #if GTKMM_MAJOR_VERSION < 3
44  #include "wrapLabel.hh"  #include "wrapLabel.hh"
45  #endif  #endif
# Line 58  Line 60 
60  #include "../../gfx/status_attached.xpm"  #include "../../gfx/status_attached.xpm"
61  #include "../../gfx/status_detached.xpm"  #include "../../gfx/status_detached.xpm"
62  #include "gfx/builtinpix.h"  #include "gfx/builtinpix.h"
63    #include "MacroEditor.h"
64    #include "MacrosSetup.h"
65    
66  MainWindow::MainWindow() :  MainWindow::MainWindow() :
67      m_DimRegionChooser(*this),      m_DimRegionChooser(*this),
# Line 153  MainWindow::MainWindow() : Line 157  MainWindow::MainWindow() :
157      actionGroup = Gtk::ActionGroup::create();      actionGroup = Gtk::ActionGroup::create();
158    
159      actionGroup->add(Gtk::Action::create("MenuFile", _("_File")));      actionGroup->add(Gtk::Action::create("MenuFile", _("_File")));
160      actionGroup->add(Gtk::Action::create("New", _("_New")),      actionGroup->add(Gtk::Action::create("New", Gtk::Stock::NEW),
                      Gtk::AccelKey("<control>n"),  
161                       sigc::mem_fun(                       sigc::mem_fun(
162                           *this, &MainWindow::on_action_file_new));                           *this, &MainWindow::on_action_file_new));
163      actionGroup->add(Gtk::Action::create("Open", _("_Open...")),      Glib::RefPtr<Gtk::Action> action =
164                       Gtk::AccelKey("<control>o"),          Gtk::Action::create("Open", Gtk::Stock::OPEN);
165        action->property_label() = action->property_label() + "...";
166        actionGroup->add(action,
167                       sigc::mem_fun(                       sigc::mem_fun(
168                           *this, &MainWindow::on_action_file_open));                           *this, &MainWindow::on_action_file_open));
169      actionGroup->add(Gtk::Action::create("Save", _("_Save")),      actionGroup->add(Gtk::Action::create("Save", Gtk::Stock::SAVE),
                      Gtk::AccelKey("<control>s"),  
170                       sigc::mem_fun(                       sigc::mem_fun(
171                           *this, &MainWindow::on_action_file_save));                           *this, &MainWindow::on_action_file_save));
172      actionGroup->add(Gtk::Action::create("SaveAs", _("Save _As...")),      action = Gtk::Action::create("SaveAs", Gtk::Stock::SAVE_AS);
173        action->property_label() = action->property_label() + "...";
174        actionGroup->add(action,
175                       Gtk::AccelKey("<shift><control>s"),                       Gtk::AccelKey("<shift><control>s"),
176                       sigc::mem_fun(                       sigc::mem_fun(
177                           *this, &MainWindow::on_action_file_save_as));                           *this, &MainWindow::on_action_file_save_as));
178      actionGroup->add(Gtk::Action::create("Properties",      actionGroup->add(Gtk::Action::create("Properties",
179                                           _("_Properties")),                                           Gtk::Stock::PROPERTIES),
180                       sigc::mem_fun(                       sigc::mem_fun(
181                           *this, &MainWindow::on_action_file_properties));                           *this, &MainWindow::on_action_file_properties));
182      actionGroup->add(Gtk::Action::create("InstrProperties",      actionGroup->add(Gtk::Action::create("InstrProperties",
183                                           _("_Properties")),                                           Gtk::Stock::PROPERTIES),
184                       sigc::mem_fun(                       sigc::mem_fun(
185                           *this, &MainWindow::show_instr_props));                           *this, &MainWindow::show_instr_props));
186      actionGroup->add(Gtk::Action::create("MidiRules",      actionGroup->add(Gtk::Action::create("MidiRules",
# Line 185  MainWindow::MainWindow() : Line 191  MainWindow::MainWindow() :
191                                           _("_Script Slots...")),                                           _("_Script Slots...")),
192                       sigc::mem_fun(                       sigc::mem_fun(
193                           *this, &MainWindow::show_script_slots));                           *this, &MainWindow::show_script_slots));
194      actionGroup->add(Gtk::Action::create("Quit", _("_Quit")),      actionGroup->add(Gtk::Action::create("Quit", Gtk::Stock::QUIT),
                      Gtk::AccelKey("<control>q"),  
195                       sigc::mem_fun(                       sigc::mem_fun(
196                           *this, &MainWindow::on_action_quit));                           *this, &MainWindow::on_action_quit));
197      actionGroup->add(      actionGroup->add(
# Line 198  MainWindow::MainWindow() : Line 203  MainWindow::MainWindow() :
203          sigc::mem_fun(*this, &MainWindow::show_intruments_tab)          sigc::mem_fun(*this, &MainWindow::show_intruments_tab)
204      );      );
205      actionGroup->add(      actionGroup->add(
206          Gtk::Action::create("MenuScript", _("S_cript")),          Gtk::Action::create("MenuScript", _("Scr_ipt")),
207          sigc::mem_fun(*this, &MainWindow::show_scripts_tab)          sigc::mem_fun(*this, &MainWindow::show_scripts_tab)
208      );      );
209      actionGroup->add(Gtk::Action::create("AllInstruments", _("_Select")));      actionGroup->add(Gtk::Action::create("AllInstruments", _("_Select")));
# Line 212  MainWindow::MainWindow() : Line 217  MainWindow::MainWindow() :
217      Gdk::CONTROL_MASK; // Ctrl key on all other OSs      Gdk::CONTROL_MASK; // Ctrl key on all other OSs
218  #endif  #endif
219    
220        actionGroup->add(Gtk::Action::create("CopyDimRgn",
221                                             _("Copy selected dimension region")),
222                         Gtk::AccelKey(GDK_KEY_c, Gdk::MOD1_MASK),
223                         sigc::mem_fun(*this, &MainWindow::copy_selected_dimrgn));
224    
225        actionGroup->add(Gtk::Action::create("PasteDimRgn",
226                                             _("Paste dimension region")),
227                         Gtk::AccelKey(GDK_KEY_v, Gdk::MOD1_MASK),
228                         sigc::mem_fun(*this, &MainWindow::paste_copied_dimrgn));
229    
230        actionGroup->add(Gtk::Action::create("AdjustClipboard",
231                                             _("Adjust Clipboard Content")),
232                         Gtk::AccelKey(GDK_KEY_x, Gdk::MOD1_MASK),
233                         sigc::mem_fun(*this, &MainWindow::adjust_clipboard_content));
234    
235      actionGroup->add(Gtk::Action::create("SelectPrevRegion",      actionGroup->add(Gtk::Action::create("SelectPrevRegion",
236                                           _("Select Previous Region")),                                           _("Select Previous Region")),
237                       Gtk::AccelKey(GDK_KEY_Left, primaryModifierKey),                       Gtk::AccelKey(GDK_KEY_Left, primaryModifierKey),
# Line 268  MainWindow::MainWindow() : Line 288  MainWindow::MainWindow() :
288      actionGroup->add(toggle_action);      actionGroup->add(toggle_action);
289    
290    
291      actionGroup->add(Gtk::Action::create("MenuView", _("_View")));      actionGroup->add(Gtk::Action::create("MenuMacro", _("_Macro")));
292    
293    
294        actionGroup->add(Gtk::Action::create("MenuView", _("Vie_w")));
295      toggle_action =      toggle_action =
296          Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));          Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));
297      toggle_action->set_active(true);      toggle_action->set_active(true);
# Line 295  MainWindow::MainWindow() : Line 318  MainWindow::MainWindow() :
318          sigc::mem_fun(*this, &MainWindow::on_action_refresh_all)          sigc::mem_fun(*this, &MainWindow::on_action_refresh_all)
319      );                      );                
320    
321      actionGroup->add(Gtk::Action::create("MenuHelp", _("_Help")));      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);
322      actionGroup->add(Gtk::Action::create("About", _("_About")),      actionGroup->add(Gtk::Action::create("MenuHelp",
323                                             action->property_label()));
324        actionGroup->add(Gtk::Action::create("About", Gtk::Stock::ABOUT),
325                       sigc::mem_fun(                       sigc::mem_fun(
326                           *this, &MainWindow::on_action_help_about));                           *this, &MainWindow::on_action_help_about));
327      actionGroup->add(      actionGroup->add(
# Line 308  MainWindow::MainWindow() : Line 333  MainWindow::MainWindow() :
333          sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)
334      );      );
335      actionGroup->add(      actionGroup->add(
336          Gtk::Action::create("RemoveInstrument", _("_Remove")),          Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),
337          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
338      );      );
339    
# Line 355  MainWindow::MainWindow() : Line 380  MainWindow::MainWindow() :
380    
381      // sample right-click popup actions      // sample right-click popup actions
382      actionGroup->add(      actionGroup->add(
383          Gtk::Action::create("SampleProperties", _("_Properties")),          Gtk::Action::create("SampleProperties", Gtk::Stock::PROPERTIES),
384          sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)          sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)
385      );      );
386      actionGroup->add(      actionGroup->add(
# Line 367  MainWindow::MainWindow() : Line 392  MainWindow::MainWindow() :
392          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)
393      );      );
394      actionGroup->add(      actionGroup->add(
395          Gtk::Action::create("RemoveSample", _("_Remove")),          Gtk::Action::create("RemoveSample", Gtk::Stock::REMOVE),
396          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
397      );      );
398      actionGroup->add(      actionGroup->add(
# Line 403  MainWindow::MainWindow() : Line 428  MainWindow::MainWindow() :
428          sigc::mem_fun(*this, &MainWindow::on_action_edit_script)          sigc::mem_fun(*this, &MainWindow::on_action_edit_script)
429      );      );
430      actionGroup->add(      actionGroup->add(
431          Gtk::Action::create("RemoveScript", _("_Remove")),          Gtk::Action::create("RemoveScript", Gtk::Stock::REMOVE),
432          sigc::mem_fun(*this, &MainWindow::on_action_remove_script)          sigc::mem_fun(*this, &MainWindow::on_action_remove_script)
433      );      );
434    
# Line 426  MainWindow::MainWindow() : Line 451  MainWindow::MainWindow() :
451          "      <menuitem action='Quit'/>"          "      <menuitem action='Quit'/>"
452          "    </menu>"          "    </menu>"
453          "    <menu action='MenuEdit'>"          "    <menu action='MenuEdit'>"
454            "      <menuitem action='CopyDimRgn'/>"
455            "      <menuitem action='AdjustClipboard'/>"
456            "      <menuitem action='PasteDimRgn'/>"
457            "      <separator/>"
458          "      <menuitem action='SelectPrevRegion'/>"          "      <menuitem action='SelectPrevRegion'/>"
459          "      <menuitem action='SelectNextRegion'/>"          "      <menuitem action='SelectNextRegion'/>"
460          "      <separator/>"          "      <separator/>"
# Line 440  MainWindow::MainWindow() : Line 469  MainWindow::MainWindow() :
469          "      <menuitem action='CopySampleTune'/>"          "      <menuitem action='CopySampleTune'/>"
470          "      <menuitem action='CopySampleLoop'/>"          "      <menuitem action='CopySampleLoop'/>"
471          "    </menu>"          "    </menu>"
472            "    <menu action='MenuMacro'>"
473            "    </menu>"
474          "    <menu action='MenuSample'>"          "    <menu action='MenuSample'>"
475          "      <menuitem action='SampleProperties'/>"          "      <menuitem action='SampleProperties'/>"
476          "      <menuitem action='AddGroup'/>"          "      <menuitem action='AddGroup'/>"
# Line 798  MainWindow::MainWindow() : Line 829  MainWindow::MainWindow() :
829    
830      // select 'Instruments' tab by default      // select 'Instruments' tab by default
831      // (gtk allows this only if the tab childs are visible, thats why it's here)      // (gtk allows this only if the tab childs are visible, thats why it's here)
832      m_TreeViewNotebook.set_current_page(1);      m_TreeViewNotebook.set_current_page(1);
833    
834        Gtk::Clipboard::get()->signal_owner_change().connect(
835            sigc::mem_fun(*this, &MainWindow::on_clipboard_owner_change)
836        );
837        updateClipboardPasteAvailable();
838        updateClipboardCopyAvailable();
839    
840        // setup macros and their keyboard accelerators
841        {
842            Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(
843                uiManager->get_widget("/MenuBar/MenuMacro")
844            )->get_submenu();
845    
846            const Gdk::ModifierType primaryModifierKey =
847    #if defined(__APPLE__)
848                Gdk::META_MASK; // Cmd key on Mac
849    #else
850                Gdk::CONTROL_MASK; // Ctrl key on all other OSs
851    #endif
852    
853            const Gdk::ModifierType noModifier = (Gdk::ModifierType)0;
854            Gtk::AccelMap::add_entry("<Macros>/macro_0", GDK_KEY_F1, noModifier);
855            Gtk::AccelMap::add_entry("<Macros>/macro_1", GDK_KEY_F2, noModifier);
856            Gtk::AccelMap::add_entry("<Macros>/macro_2", GDK_KEY_F3, noModifier);
857            Gtk::AccelMap::add_entry("<Macros>/macro_3", GDK_KEY_F4, noModifier);
858            Gtk::AccelMap::add_entry("<Macros>/macro_4", GDK_KEY_F5, noModifier);
859            Gtk::AccelMap::add_entry("<Macros>/macro_5", GDK_KEY_F6, noModifier);
860            Gtk::AccelMap::add_entry("<Macros>/macro_6", GDK_KEY_F7, noModifier);
861            Gtk::AccelMap::add_entry("<Macros>/macro_7", GDK_KEY_F8, noModifier);
862            Gtk::AccelMap::add_entry("<Macros>/macro_8", GDK_KEY_F9, noModifier);
863            Gtk::AccelMap::add_entry("<Macros>/macro_9", GDK_KEY_F10, noModifier);
864            Gtk::AccelMap::add_entry("<Macros>/macro_10", GDK_KEY_F11, noModifier);
865            Gtk::AccelMap::add_entry("<Macros>/macro_11", GDK_KEY_F12, noModifier);
866            Gtk::AccelMap::add_entry("<Macros>/SetupMacros", 'm', primaryModifierKey);
867    
868            Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();
869            menuMacro->set_accel_group(accelGroup);
870    
871            updateMacroMenu();
872        }
873  }  }
874    
875  MainWindow::~MainWindow()  MainWindow::~MainWindow()
876  {  {
877  }  }
878    
879    void MainWindow::updateMacroMenu() {
880        Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(
881            uiManager->get_widget("/MenuBar/MenuMacro")
882        )->get_submenu();
883    
884        // remove all entries from "Macro" menu
885        {
886            const std::vector<Gtk::Widget*> children = menuMacro->get_children();
887            for (int i = 0; i < children.size(); ++i) {
888                Gtk::Widget* child = children[i];
889                menuMacro->remove(*child);
890                delete child;
891            }
892        }
893    
894        // (re)load all macros from config file
895        try {
896            Settings::singleton()->loadMacros(m_macros);
897        } catch (Serialization::Exception e) {
898            std::cerr << "Exception while loading macros: " << e.Message << std::endl;
899        } catch (...) {
900            std::cerr << "Unknown exception while loading macros!" << std::endl;
901        }
902    
903        // add all configured macros as menu items to the "Macro" menu
904        for (int iMacro = 0; iMacro < m_macros.size(); ++iMacro) {
905            const Serialization::Archive& macro = m_macros[iMacro];
906            std::string name =
907                macro.name().empty() ?
908                    (std::string(_("Unnamed Macro")) + " " + ToString(iMacro+1)) : macro.name();
909            Gtk::MenuItem* item = new Gtk::MenuItem(name);
910            item->signal_activate().connect(
911                sigc::bind(
912                    sigc::mem_fun(*this, &MainWindow::onMacroSelected), iMacro
913                )
914            );
915            menuMacro->append(*item);
916            item->set_accel_path("<Macros>/macro_" + ToString(iMacro));
917        }
918        // if there are no macros configured at all, then show a dummy entry instead
919        if (m_macros.empty()) {
920            Gtk::MenuItem* item = new Gtk::MenuItem(_("No Macros"));
921            item->set_sensitive(false);
922            menuMacro->append(*item);
923        }
924    
925        // add separator line to menu
926        menuMacro->append(*new Gtk::SeparatorMenuItem);
927    
928        {
929            Gtk::MenuItem* item = new Gtk::MenuItem(_("Setup Macros ..."));
930            item->signal_activate().connect(
931                sigc::mem_fun(*this, &MainWindow::setupMacros)
932            );
933            menuMacro->append(*item);
934            item->set_accel_path("<Macros>/SetupMacros");
935        }
936    
937        menuMacro->show_all_children();
938    }
939    
940    void MainWindow::onMacroSelected(int iMacro) {
941        printf("onMacroSelected(%d)\n", iMacro);
942        if (iMacro < 0 || iMacro >= m_macros.size()) return;
943        Glib::ustring errorText;
944        try {
945            applyMacro(m_macros[iMacro]);
946        } catch (Serialization::Exception e) {
947            errorText = e.Message;
948        } catch (...) {
949            errorText = _("Unknown exception while applying macro");
950        }
951        if (!errorText.empty()) {
952            Glib::ustring txt = _("Applying macro failed:\n") + errorText;
953            Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
954            msg.run();
955        }
956    }
957    
958    void MainWindow::setupMacros() {
959        MacrosSetup* setup = new MacrosSetup();
960        setup->setMacros(m_macros);
961        setup->signal_macros_changed().connect(
962            sigc::mem_fun(*this, &MainWindow::onMacrosSetupChanged)
963        );
964        setup->show();
965    }
966    
967    void MainWindow::onMacrosSetupChanged(const std::vector<Serialization::Archive>& macros) {
968        m_macros = macros;
969        Settings::singleton()->saveMacros(m_macros);
970        updateMacroMenu();
971    }
972    
973  bool MainWindow::on_delete_event(GdkEventAny* event)  bool MainWindow::on_delete_event(GdkEventAny* event)
974  {  {
975      return !file_is_shared && file_is_changed && !close_confirmation_dialog();      return !file_is_shared && file_is_changed && !close_confirmation_dialog();
# Line 870  void MainWindow::update_dimregs() Line 1035  void MainWindow::update_dimregs()
1035          }          }
1036      }      }
1037    
1038        m_RegionChooser.setModifyAllRegions(all_regions);
1039      m_DimRegionChooser.setModifyAllRegions(all_regions);      m_DimRegionChooser.setModifyAllRegions(all_regions);
1040      m_DimRegionChooser.setModifyAllDimensionRegions(all_dimregs);      m_DimRegionChooser.setModifyAllDimensionRegions(all_dimregs);
1041      m_DimRegionChooser.setModifyBothChannels(stereo);      m_DimRegionChooser.setModifyBothChannels(stereo);
1042    
1043        updateClipboardCopyAvailable();
1044  }  }
1045    
1046  void MainWindow::dimreg_all_dimregs_toggled()  void MainWindow::dimreg_all_dimregs_toggled()
# Line 1175  bool MainWindow::close_confirmation_dial Line 1343  bool MainWindow::close_confirmation_dial
1343      g_free(msg);      g_free(msg);
1344      dialog.set_secondary_text(_("If you close without saving, your changes will be lost."));      dialog.set_secondary_text(_("If you close without saving, your changes will be lost."));
1345      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);
1346      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1347      dialog.add_button(file_has_name ? _("_Save") : _("Save _As"), Gtk::RESPONSE_YES);      dialog.add_button(file_has_name ? Gtk::Stock::SAVE : Gtk::Stock::SAVE_AS, Gtk::RESPONSE_YES);
1348      dialog.set_default_response(Gtk::RESPONSE_YES);      dialog.set_default_response(Gtk::RESPONSE_YES);
1349      int response = dialog.run();      int response = dialog.run();
1350      dialog.hide();      dialog.hide();
# Line 1207  bool MainWindow::leaving_shared_mode_dia Line 1375  bool MainWindow::leaving_shared_mode_dia
1375            "used by the sampler until you tell the sampler explicitly to "            "used by the sampler until you tell the sampler explicitly to "
1376            "load it."));            "load it."));
1377      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);
1378      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1379      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
1380      int response = dialog.run();      int response = dialog.run();
1381      dialog.hide();      dialog.hide();
# Line 1221  void MainWindow::on_action_file_open() Line 1389  void MainWindow::on_action_file_open()
1389      if (file_is_shared && !leaving_shared_mode_dialog()) return;      if (file_is_shared && !leaving_shared_mode_dialog()) return;
1390    
1391      Gtk::FileChooserDialog dialog(*this, _("Open file"));      Gtk::FileChooserDialog dialog(*this, _("Open file"));
1392      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1393      dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
1394      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
1395  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
1396      Gtk::FileFilter filter;      Gtk::FileFilter filter;
# Line 1417  void MainWindow::on_action_file_save_as( Line 1585  void MainWindow::on_action_file_save_as(
1585    
1586  bool MainWindow::file_save_as()  bool MainWindow::file_save_as()
1587  {  {
1588      Gtk::FileChooserDialog dialog(*this, _("Save As"), Gtk::FILE_CHOOSER_ACTION_SAVE);      Gtk::FileChooserDialog dialog(*this, _("Save as"), Gtk::FILE_CHOOSER_ACTION_SAVE);
1589      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1590      dialog.add_button(_("_Save"), Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);
1591      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
1592      dialog.set_do_overwrite_confirmation();      dialog.set_do_overwrite_confirmation();
1593    
# Line 1664  PropDialog::PropDialog() Line 1832  PropDialog::PropDialog()
1832        eSourceForm(_("Source form")),        eSourceForm(_("Source form")),
1833        eCommissioned(_("Commissioned")),        eCommissioned(_("Commissioned")),
1834        eSubject(_("Subject")),        eSubject(_("Subject")),
1835        quitButton(_("_Close"), true),        quitButton(Gtk::Stock::CLOSE),
1836        table(2, 1),        table(2, 1),
1837        m_file(NULL)        m_file(NULL)
1838  {  {
# Line 1787  void InstrumentProps::set_MIDIProgram(ui Line 1955  void InstrumentProps::set_MIDIProgram(ui
1955  }  }
1956    
1957  InstrumentProps::InstrumentProps() :  InstrumentProps::InstrumentProps() :
1958      quitButton(_("_Close"), true),      quitButton(Gtk::Stock::CLOSE),
1959      table(2,1),      table(2,1),
1960      eName(_("Name")),      eName(_("Name")),
1961      eIsDrum(_("Is drum")),      eIsDrum(_("Is drum")),
# Line 2676  void MainWindow::add_or_replace_sample(b Line 2844  void MainWindow::add_or_replace_sample(b
2844    
2845      // show 'browse for file' dialog      // show 'browse for file' dialog
2846      Gtk::FileChooserDialog dialog(*this, replace ? _("Replace Sample with") : _("Add Sample(s)"));      Gtk::FileChooserDialog dialog(*this, replace ? _("Replace Sample with") : _("Add Sample(s)"));
2847      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2848      dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
2849      dialog.set_select_multiple(!replace); // allow multi audio file selection only when adding new samples, does not make sense when replacing a specific sample      dialog.set_select_multiple(!replace); // allow multi audio file selection only when adding new samples, does not make sense when replacing a specific sample
2850    
2851      // matches all file types supported by libsndfile      // matches all file types supported by libsndfile
# Line 2877  void MainWindow::on_action_replace_all_s Line 3045  void MainWindow::on_action_replace_all_s
3045      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);
3046      description.show();      description.show();
3047      entryArea.show_all();      entryArea.show_all();
3048      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
3049      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);
3050      dialog.set_select_multiple(false);      dialog.set_select_multiple(false);
3051      if (current_sample_dir != "") {      if (current_sample_dir != "") {
# Line 3501  void MainWindow::on_action_merge_files() Line 3669  void MainWindow::on_action_merge_files()
3669      }      }
3670    
3671      Gtk::FileChooserDialog dialog(*this, _("Merge .gig files"));      Gtk::FileChooserDialog dialog(*this, _("Merge .gig files"));
3672      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
3673      dialog.add_button(_("Merge"), Gtk::RESPONSE_OK);      dialog.add_button(_("Merge"), Gtk::RESPONSE_OK);
3674      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
3675  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
# Line 3664  void MainWindow::select_next_dimension() Line 3832  void MainWindow::select_next_dimension()
3832      m_DimRegionChooser.select_next_dimension();      m_DimRegionChooser.select_next_dimension();
3833  }  }
3834    
3835    #define CLIPBOARD_DIMENSIONREGION_TARGET \
3836        ("libgig.DimensionRegion." + m_serializationArchive.rawDataFormat())
3837    
3838    void MainWindow::copy_selected_dimrgn() {
3839        gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
3840        if (!pDimRgn) {
3841            updateClipboardPasteAvailable();
3842            updateClipboardCopyAvailable();
3843            return;
3844        }
3845    
3846        std::vector<Gtk::TargetEntry> targets;
3847        targets.push_back( Gtk::TargetEntry(CLIPBOARD_DIMENSIONREGION_TARGET) );
3848    
3849        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
3850        clipboard->set(
3851            targets,
3852            sigc::mem_fun(*this, &MainWindow::on_clipboard_get),
3853            sigc::mem_fun(*this, &MainWindow::on_clipboard_clear)
3854        );
3855    
3856        m_serializationArchive.serialize(pDimRgn);
3857    
3858        updateClipboardPasteAvailable();
3859    }
3860    
3861    void MainWindow::paste_copied_dimrgn() {
3862        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
3863        clipboard->request_contents(
3864            CLIPBOARD_DIMENSIONREGION_TARGET,
3865            sigc::mem_fun(*this, &MainWindow::on_clipboard_received)
3866        );
3867        updateClipboardPasteAvailable();
3868    }
3869    
3870    void MainWindow::adjust_clipboard_content() {
3871        MacroEditor* editor = new MacroEditor();
3872        editor->setMacro(&m_serializationArchive);
3873        editor->show();
3874    }
3875    
3876    void MainWindow::updateClipboardPasteAvailable() {
3877        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
3878        clipboard->request_targets(
3879            sigc::mem_fun(*this, &MainWindow::on_clipboard_received_targets)
3880        );
3881    }
3882    
3883    void MainWindow::updateClipboardCopyAvailable() {
3884        bool bDimensionRegionCopyIsPossible = m_DimRegionChooser.get_main_dimregion();
3885        static_cast<Gtk::MenuItem*>(
3886            uiManager->get_widget("/MenuBar/MenuEdit/CopyDimRgn")
3887        )->set_sensitive(bDimensionRegionCopyIsPossible);
3888    }
3889    
3890    void MainWindow::on_clipboard_owner_change(GdkEventOwnerChange* event) {
3891        updateClipboardPasteAvailable();
3892    }
3893    
3894    void MainWindow::on_clipboard_get(Gtk::SelectionData& selection_data, guint /*info*/) {
3895        const std::string target = selection_data.get_target();
3896        if (target == CLIPBOARD_DIMENSIONREGION_TARGET) {
3897            selection_data.set(
3898                CLIPBOARD_DIMENSIONREGION_TARGET, 8 /* "format": probably unused*/,
3899                &m_serializationArchive.rawData()[0],
3900                m_serializationArchive.rawData().size()
3901            );
3902        } else {
3903            std::cerr << "Clipboard: content for unknown target '" << target << "' requested\n";
3904        }
3905    }
3906    
3907    void MainWindow::on_clipboard_clear() {
3908        m_serializationArchive.clear();
3909        updateClipboardPasteAvailable();
3910        updateClipboardCopyAvailable();
3911    }
3912    
3913    //NOTE: Might throw exception !!!
3914    void MainWindow::applyMacro(Serialization::Archive& macro) {
3915        gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
3916        if (!pDimRgn) return;
3917    
3918        for (std::set<gig::DimensionRegion*>::iterator itDimReg = dimreg_edit.dimregs.begin();
3919             itDimReg != dimreg_edit.dimregs.end(); ++itDimReg)
3920        {
3921            gig::DimensionRegion* pDimRgn = *itDimReg;
3922            dimreg_to_be_changed_signal.emit(pDimRgn);
3923            m_serializationArchive.deserialize(pDimRgn);
3924            dimreg_changed_signal.emit(pDimRgn);
3925        }
3926        //region_changed()
3927        file_changed();
3928        dimreg_changed();
3929    }
3930    
3931    void MainWindow::on_clipboard_received(const Gtk::SelectionData& selection_data) {
3932        const std::string target = selection_data.get_target();
3933        if (target == CLIPBOARD_DIMENSIONREGION_TARGET) {
3934            Glib::ustring errorText;
3935            try {
3936                m_serializationArchive.decode(
3937                    selection_data.get_data(), selection_data.get_length()
3938                );
3939                applyMacro(m_serializationArchive);
3940            } catch (Serialization::Exception e) {
3941                errorText = e.Message;
3942            } catch (...) {
3943                errorText = _("Unknown exception while pasting DimensionRegion");
3944            }
3945            if (!errorText.empty()) {
3946                Glib::ustring txt = _("Pasting DimensionRegion failed:\n") + errorText;
3947                Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
3948                msg.run();
3949            }
3950        }
3951    }
3952    
3953    void MainWindow::on_clipboard_received_targets(const std::vector<Glib::ustring>& targets) {
3954        const bool bDimensionRegionPasteIsPossible =
3955            std::find(targets.begin(), targets.end(),
3956                      CLIPBOARD_DIMENSIONREGION_TARGET) != targets.end();
3957    
3958        static_cast<Gtk::MenuItem*>(
3959            uiManager->get_widget("/MenuBar/MenuEdit/PasteDimRgn")
3960        )->set_sensitive(bDimensionRegionPasteIsPossible);
3961    
3962        static_cast<Gtk::MenuItem*>(
3963            uiManager->get_widget("/MenuBar/MenuEdit/AdjustClipboard")
3964        )->set_sensitive(bDimensionRegionPasteIsPossible);
3965    }
3966    
3967  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {
3968      return file_structure_to_be_changed_signal;      return file_structure_to_be_changed_signal;
3969  }  }

Legend:
Removed from v.3134  
changed lines
  Added in v.3158

  ViewVC Help
Powered by ViewVC