/[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 3106 by schoenebeck, Sat Feb 11 17:04:48 2017 UTC revision 3340 by schoenebeck, Mon Jul 31 11:20:18 2017 UTC
# Line 32  Line 32 
32  #include <glibmm/dispatcher.h>  #include <glibmm/dispatcher.h>
33  #include <glibmm/miscutils.h>  #include <glibmm/miscutils.h>
34  #include <glibmm/stringutils.h>  #include <glibmm/stringutils.h>
35    #include <glibmm/regex.h>
36  #include <gtkmm/aboutdialog.h>  #include <gtkmm/aboutdialog.h>
37  #include <gtkmm/filechooserdialog.h>  #include <gtkmm/filechooserdialog.h>
38  #include <gtkmm/messagedialog.h>  #include <gtkmm/messagedialog.h>
39    #include <gtkmm/stock.h>
40  #include <gtkmm/targetentry.h>  #include <gtkmm/targetentry.h>
41  #include <gtkmm/main.h>  #include <gtkmm/main.h>
42  #include <gtkmm/toggleaction.h>  #include <gtkmm/toggleaction.h>
43    #include <gtkmm/accelmap.h>
44  #if GTKMM_MAJOR_VERSION < 3  #if GTKMM_MAJOR_VERSION < 3
45  #include "wrapLabel.hh"  #include "wrapLabel.hh"
46  #endif  #endif
# Line 58  Line 61 
61  #include "../../gfx/status_attached.xpm"  #include "../../gfx/status_attached.xpm"
62  #include "../../gfx/status_detached.xpm"  #include "../../gfx/status_detached.xpm"
63  #include "gfx/builtinpix.h"  #include "gfx/builtinpix.h"
64    #include "MacroEditor.h"
65    #include "MacrosSetup.h"
66    #if defined(__APPLE__)
67    # include "MacHelper.h"
68    #endif
69    
70    static const Gdk::ModifierType primaryModifierKey =
71        #if defined(__APPLE__)
72        Gdk::META_MASK; // Cmd key on Mac
73        #else
74        Gdk::CONTROL_MASK; // Ctrl key on all other OSs
75        #endif
76    
77  MainWindow::MainWindow() :  MainWindow::MainWindow() :
78      m_DimRegionChooser(*this),      m_DimRegionChooser(*this),
# Line 65  MainWindow::MainWindow() : Line 80  MainWindow::MainWindow() :
80      dimreg_all_regions(_("all regions")),      dimreg_all_regions(_("all regions")),
81      dimreg_all_dimregs(_("all dimension splits")),      dimreg_all_dimregs(_("all dimension splits")),
82      dimreg_stereo(_("both channels")),      dimreg_stereo(_("both channels")),
83        labelLegend(_("Legend:")),
84      labelNoSample(_(" No Sample")),      labelNoSample(_(" No Sample")),
85      labelMissingSample(_(" Missing some Sample(s)")),      labelMissingSample(_(" Missing some Sample(s)")),
86      labelLooped(_(" Looped")),      labelLooped(_(" Looped")),
# Line 72  MainWindow::MainWindow() : Line 88  MainWindow::MainWindow() :
88  {  {
89      loadBuiltInPix();      loadBuiltInPix();
90    
91        this->file = NULL;
92    
93  //    set_border_width(5);  //    set_border_width(5);
94  //    set_default_size(400, 200);  
95        if (!Settings::singleton()->autoRestoreWindowDimension) {
96            set_default_size(800, 600);
97            set_position(Gtk::WIN_POS_CENTER);
98        }
99    
100      add(m_VBox);      add(m_VBox);
101    
# Line 100  MainWindow::MainWindow() : Line 122  MainWindow::MainWindow() :
122    
123      m_TreeViewNotebook.set_size_request(300);      m_TreeViewNotebook.set_size_request(300);
124    
125      m_HPaned.add1(m_TreeViewNotebook);      m_searchLabel.set_text(Glib::ustring(" ") + _("Filter:"));
126        m_searchField.pack_start(m_searchLabel, Gtk::PACK_SHRINK);
127        m_searchField.pack_start(m_searchText);
128        m_searchField.set_spacing(5);
129    
130        m_left_vbox.pack_start(m_TreeViewNotebook);
131        m_left_vbox.pack_start(m_searchField, Gtk::PACK_SHRINK);
132    
133        m_HPaned.add1(m_left_vbox);
134    
135      dimreg_hbox.add(dimreg_label);      dimreg_hbox.add(dimreg_label);
136      dimreg_hbox.add(dimreg_all_regions);      dimreg_hbox.add(dimreg_all_regions);
137      dimreg_hbox.add(dimreg_all_dimregs);      dimreg_hbox.add(dimreg_all_dimregs);
# Line 109  MainWindow::MainWindow() : Line 140  MainWindow::MainWindow() :
140      dimreg_vbox.add(dimreg_edit);      dimreg_vbox.add(dimreg_edit);
141      dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);      dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);
142      {      {
143            legend_hbox.add(labelLegend);
144    
145          imageNoSample.set(redDot);          imageNoSample.set(redDot);
146          imageNoSample.set_alignment(Gtk::ALIGN_RIGHT);          imageNoSample.set_alignment(Gtk::ALIGN_END);
147          labelNoSample.set_alignment(Gtk::ALIGN_LEFT);          labelNoSample.set_alignment(Gtk::ALIGN_START);
148          legend_hbox.add(imageNoSample);          legend_hbox.add(imageNoSample);
149          legend_hbox.add(labelNoSample);          legend_hbox.add(labelNoSample);
150    
151          imageMissingSample.set(yellowDot);          imageMissingSample.set(yellowDot);
152          imageMissingSample.set_alignment(Gtk::ALIGN_RIGHT);          imageMissingSample.set_alignment(Gtk::ALIGN_END);
153          labelMissingSample.set_alignment(Gtk::ALIGN_LEFT);          labelMissingSample.set_alignment(Gtk::ALIGN_START);
154          legend_hbox.add(imageMissingSample);          legend_hbox.add(imageMissingSample);
155          legend_hbox.add(labelMissingSample);          legend_hbox.add(labelMissingSample);
156    
157          imageLooped.set(blackLoop);          imageLooped.set(blackLoop);
158          imageLooped.set_alignment(Gtk::ALIGN_RIGHT);          imageLooped.set_alignment(Gtk::ALIGN_END);
159          labelLooped.set_alignment(Gtk::ALIGN_LEFT);          labelLooped.set_alignment(Gtk::ALIGN_START);
160          legend_hbox.add(imageLooped);          legend_hbox.add(imageLooped);
161          legend_hbox.add(labelLooped);          legend_hbox.add(labelLooped);
162    
163          imageSomeLoops.set(grayLoop);          imageSomeLoops.set(grayLoop);
164          imageSomeLoops.set_alignment(Gtk::ALIGN_RIGHT);          imageSomeLoops.set_alignment(Gtk::ALIGN_END);
165          labelSomeLoops.set_alignment(Gtk::ALIGN_LEFT);          labelSomeLoops.set_alignment(Gtk::ALIGN_START);
166          legend_hbox.add(imageSomeLoops);          legend_hbox.add(imageSomeLoops);
167          legend_hbox.add(labelSomeLoops);          legend_hbox.add(labelSomeLoops);
168    
# Line 150  MainWindow::MainWindow() : Line 183  MainWindow::MainWindow() :
183      actionGroup = Gtk::ActionGroup::create();      actionGroup = Gtk::ActionGroup::create();
184    
185      actionGroup->add(Gtk::Action::create("MenuFile", _("_File")));      actionGroup->add(Gtk::Action::create("MenuFile", _("_File")));
186      actionGroup->add(Gtk::Action::create("New", _("_New")),      actionGroup->add(Gtk::Action::create("New", Gtk::Stock::NEW),
                      Gtk::AccelKey("<control>n"),  
187                       sigc::mem_fun(                       sigc::mem_fun(
188                           *this, &MainWindow::on_action_file_new));                           *this, &MainWindow::on_action_file_new));
189      actionGroup->add(Gtk::Action::create("Open", _("_Open...")),      Glib::RefPtr<Gtk::Action> action =
190                       Gtk::AccelKey("<control>o"),          Gtk::Action::create("Open", Gtk::Stock::OPEN);
191        action->property_label() = action->property_label() + "...";
192        actionGroup->add(action,
193                       sigc::mem_fun(                       sigc::mem_fun(
194                           *this, &MainWindow::on_action_file_open));                           *this, &MainWindow::on_action_file_open));
195      actionGroup->add(Gtk::Action::create("Save", _("_Save")),      actionGroup->add(Gtk::Action::create("Save", Gtk::Stock::SAVE),
                      Gtk::AccelKey("<control>s"),  
196                       sigc::mem_fun(                       sigc::mem_fun(
197                           *this, &MainWindow::on_action_file_save));                           *this, &MainWindow::on_action_file_save));
198      actionGroup->add(Gtk::Action::create("SaveAs", _("Save _As...")),      action = Gtk::Action::create("SaveAs", Gtk::Stock::SAVE_AS);
199        action->property_label() = action->property_label() + "...";
200        actionGroup->add(action,
201                       Gtk::AccelKey("<shift><control>s"),                       Gtk::AccelKey("<shift><control>s"),
202                       sigc::mem_fun(                       sigc::mem_fun(
203                           *this, &MainWindow::on_action_file_save_as));                           *this, &MainWindow::on_action_file_save_as));
204      actionGroup->add(Gtk::Action::create("Properties",      actionGroup->add(Gtk::Action::create("Properties",
205                                           _("_Properties")),                                           Gtk::Stock::PROPERTIES),
206                       sigc::mem_fun(                       sigc::mem_fun(
207                           *this, &MainWindow::on_action_file_properties));                           *this, &MainWindow::on_action_file_properties));
208      actionGroup->add(Gtk::Action::create("InstrProperties",      actionGroup->add(Gtk::Action::create("InstrProperties",
209                                           _("_Properties")),                                           Gtk::Stock::PROPERTIES),
210                       sigc::mem_fun(                       sigc::mem_fun(
211                           *this, &MainWindow::show_instr_props));                           *this, &MainWindow::show_instr_props));
212      actionGroup->add(Gtk::Action::create("MidiRules",      actionGroup->add(Gtk::Action::create("MidiRules",
# Line 182  MainWindow::MainWindow() : Line 217  MainWindow::MainWindow() :
217                                           _("_Script Slots...")),                                           _("_Script Slots...")),
218                       sigc::mem_fun(                       sigc::mem_fun(
219                           *this, &MainWindow::show_script_slots));                           *this, &MainWindow::show_script_slots));
220      actionGroup->add(Gtk::Action::create("Quit", _("_Quit")),      actionGroup->add(Gtk::Action::create("Quit", Gtk::Stock::QUIT),
                      Gtk::AccelKey("<control>q"),  
221                       sigc::mem_fun(                       sigc::mem_fun(
222                           *this, &MainWindow::on_action_quit));                           *this, &MainWindow::on_action_quit));
223      actionGroup->add(      actionGroup->add(
# Line 195  MainWindow::MainWindow() : Line 229  MainWindow::MainWindow() :
229          sigc::mem_fun(*this, &MainWindow::show_intruments_tab)          sigc::mem_fun(*this, &MainWindow::show_intruments_tab)
230      );      );
231      actionGroup->add(      actionGroup->add(
232          Gtk::Action::create("MenuScript", _("S_cript")),          Gtk::Action::create("MenuScript", _("Scr_ipt")),
233          sigc::mem_fun(*this, &MainWindow::show_scripts_tab)          sigc::mem_fun(*this, &MainWindow::show_scripts_tab)
234      );      );
235      actionGroup->add(Gtk::Action::create("AllInstruments", _("_Select")));      actionGroup->add(Gtk::Action::create("AllInstruments", _("_Select")));
236        actionGroup->add(Gtk::Action::create("AssignScripts", _("Assign Script")));
237    
238      actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));      actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));
239    
240        const Gdk::ModifierType primaryModifierKey =
241    #if defined(__APPLE__)
242        Gdk::META_MASK; // Cmd key on Mac
243    #else
244        Gdk::CONTROL_MASK; // Ctrl key on all other OSs
245    #endif
246    
247        actionGroup->add(Gtk::Action::create("CopyDimRgn",
248                                             _("Copy selected dimension region")),
249                         Gtk::AccelKey(GDK_KEY_c, Gdk::MOD1_MASK),
250                         sigc::mem_fun(*this, &MainWindow::copy_selected_dimrgn));
251    
252        actionGroup->add(Gtk::Action::create("PasteDimRgn",
253                                             _("Paste dimension region")),
254                         Gtk::AccelKey(GDK_KEY_v, Gdk::MOD1_MASK),
255                         sigc::mem_fun(*this, &MainWindow::paste_copied_dimrgn));
256    
257        actionGroup->add(Gtk::Action::create("AdjustClipboard",
258                                             _("Adjust Clipboard Content")),
259                         Gtk::AccelKey(GDK_KEY_x, Gdk::MOD1_MASK),
260                         sigc::mem_fun(*this, &MainWindow::adjust_clipboard_content));
261    
262        actionGroup->add(Gtk::Action::create("SelectPrevInstr",
263                                             _("Select Previous Instrument")),
264                         Gtk::AccelKey(GDK_KEY_Up, primaryModifierKey),
265                         sigc::mem_fun(*this, &MainWindow::select_prev_instrument));
266    
267        actionGroup->add(Gtk::Action::create("SelectNextInstr",
268                                             _("Select Next Instrument")),
269                         Gtk::AccelKey(GDK_KEY_Down, primaryModifierKey),
270                         sigc::mem_fun(*this, &MainWindow::select_next_instrument));
271    
272        actionGroup->add(Gtk::Action::create("SelectPrevRegion",
273                                             _("Select Previous Region")),
274                         Gtk::AccelKey(GDK_KEY_Left, primaryModifierKey),
275                         sigc::mem_fun(*this, &MainWindow::select_prev_region));
276    
277        actionGroup->add(Gtk::Action::create("SelectNextRegion",
278                                             _("Select Next Region")),
279                         Gtk::AccelKey(GDK_KEY_Right, primaryModifierKey),
280                         sigc::mem_fun(*this, &MainWindow::select_next_region));
281    
282        actionGroup->add(Gtk::Action::create("SelectPrevDimRgnZone",
283                                             _("Select Previous Dimension Region Zone")),
284                         Gtk::AccelKey(GDK_KEY_Left, Gdk::MOD1_MASK),
285                         sigc::mem_fun(*this, &MainWindow::select_prev_dim_rgn_zone));
286    
287        actionGroup->add(Gtk::Action::create("SelectNextDimRgnZone",
288                                             _("Select Next Dimension Region Zone")),
289                         Gtk::AccelKey(GDK_KEY_Right, Gdk::MOD1_MASK),
290                         sigc::mem_fun(*this, &MainWindow::select_next_dim_rgn_zone));
291    
292        actionGroup->add(Gtk::Action::create("SelectPrevDimension",
293                                             _("Select Previous Dimension")),
294                         Gtk::AccelKey(GDK_KEY_Up, Gdk::MOD1_MASK),
295                         sigc::mem_fun(*this, &MainWindow::select_prev_dimension));
296    
297        actionGroup->add(Gtk::Action::create("SelectNextDimension",
298                                             _("Select Next Dimension")),
299                         Gtk::AccelKey(GDK_KEY_Down, Gdk::MOD1_MASK),
300                         sigc::mem_fun(*this, &MainWindow::select_next_dimension));
301    
302        actionGroup->add(Gtk::Action::create("SelectAddPrevDimRgnZone",
303                                             _("Add Previous Dimension Region Zone to Selection")),
304                         Gtk::AccelKey(GDK_KEY_Left, Gdk::MOD1_MASK | Gdk::SHIFT_MASK),
305                         sigc::mem_fun(*this, &MainWindow::select_add_prev_dim_rgn_zone));
306    
307        actionGroup->add(Gtk::Action::create("SelectAddNextDimRgnZone",
308                                             _("Add Next Dimension Region Zone to Selection")),
309                         Gtk::AccelKey(GDK_KEY_Right, Gdk::MOD1_MASK | Gdk::SHIFT_MASK),
310                         sigc::mem_fun(*this, &MainWindow::select_add_next_dim_rgn_zone));
311    
312      Glib::RefPtr<Gtk::ToggleAction> toggle_action =      Glib::RefPtr<Gtk::ToggleAction> toggle_action =
313          Gtk::ToggleAction::create("CopySampleUnity", _("Copy Sample's _Unity Note"));          Gtk::ToggleAction::create("CopySampleUnity", _("Copy Sample's _Unity Note"));
314      toggle_action->set_active(true);      toggle_action->set_active(true);
# Line 218  MainWindow::MainWindow() : Line 325  MainWindow::MainWindow() :
325      actionGroup->add(toggle_action);      actionGroup->add(toggle_action);
326    
327    
328      actionGroup->add(Gtk::Action::create("MenuView", _("_View")));      actionGroup->add(Gtk::Action::create("MenuMacro", _("_Macro")));
329    
330    
331        actionGroup->add(Gtk::Action::create("MenuView", _("Vie_w")));
332      toggle_action =      toggle_action =
333          Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));          Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));
334      toggle_action->set_active(true);      toggle_action->set_active(true);
# Line 245  MainWindow::MainWindow() : Line 355  MainWindow::MainWindow() :
355          sigc::mem_fun(*this, &MainWindow::on_action_refresh_all)          sigc::mem_fun(*this, &MainWindow::on_action_refresh_all)
356      );                      );                
357    
358      actionGroup->add(Gtk::Action::create("MenuHelp", _("_Help")));      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);
359      actionGroup->add(Gtk::Action::create("About", _("_About")),      actionGroup->add(Gtk::Action::create("MenuHelp",
360                                             action->property_label()));
361        actionGroup->add(Gtk::Action::create("About", Gtk::Stock::ABOUT),
362                       sigc::mem_fun(                       sigc::mem_fun(
363                           *this, &MainWindow::on_action_help_about));                           *this, &MainWindow::on_action_help_about));
364      actionGroup->add(      actionGroup->add(
# Line 258  MainWindow::MainWindow() : Line 370  MainWindow::MainWindow() :
370          sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)
371      );      );
372      actionGroup->add(      actionGroup->add(
373          Gtk::Action::create("RemoveInstrument", _("_Remove")),          Gtk::Action::create("CombInstruments", _("_Combine Instruments ...")),
374            Gtk::AccelKey(GDK_KEY_j, primaryModifierKey),
375            sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
376        );
377        actionGroup->add(
378            Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),
379          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
380      );      );
381    
# Line 305  MainWindow::MainWindow() : Line 422  MainWindow::MainWindow() :
422    
423      // sample right-click popup actions      // sample right-click popup actions
424      actionGroup->add(      actionGroup->add(
425          Gtk::Action::create("SampleProperties", _("_Properties")),          Gtk::Action::create("SampleProperties", Gtk::Stock::PROPERTIES),
426          sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)          sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)
427      );      );
428      actionGroup->add(      actionGroup->add(
# Line 317  MainWindow::MainWindow() : Line 434  MainWindow::MainWindow() :
434          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)
435      );      );
436      actionGroup->add(      actionGroup->add(
437          Gtk::Action::create("RemoveSample", _("_Remove")),          Gtk::Action::create("RemoveSample", Gtk::Stock::REMOVE),
438          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
439      );      );
440      actionGroup->add(      actionGroup->add(
# Line 353  MainWindow::MainWindow() : Line 470  MainWindow::MainWindow() :
470          sigc::mem_fun(*this, &MainWindow::on_action_edit_script)          sigc::mem_fun(*this, &MainWindow::on_action_edit_script)
471      );      );
472      actionGroup->add(      actionGroup->add(
473          Gtk::Action::create("RemoveScript", _("_Remove")),          Gtk::Action::create("RemoveScript", Gtk::Stock::REMOVE),
474          sigc::mem_fun(*this, &MainWindow::on_action_remove_script)          sigc::mem_fun(*this, &MainWindow::on_action_remove_script)
475      );      );
476    
# Line 376  MainWindow::MainWindow() : Line 493  MainWindow::MainWindow() :
493          "      <menuitem action='Quit'/>"          "      <menuitem action='Quit'/>"
494          "    </menu>"          "    </menu>"
495          "    <menu action='MenuEdit'>"          "    <menu action='MenuEdit'>"
496            "      <menuitem action='CopyDimRgn'/>"
497            "      <menuitem action='AdjustClipboard'/>"
498            "      <menuitem action='PasteDimRgn'/>"
499            "      <separator/>"
500            "      <menuitem action='SelectPrevInstr'/>"
501            "      <menuitem action='SelectNextInstr'/>"
502            "      <separator/>"
503            "      <menuitem action='SelectPrevRegion'/>"
504            "      <menuitem action='SelectNextRegion'/>"
505            "      <separator/>"
506            "      <menuitem action='SelectPrevDimension'/>"
507            "      <menuitem action='SelectNextDimension'/>"
508            "      <menuitem action='SelectPrevDimRgnZone'/>"
509            "      <menuitem action='SelectNextDimRgnZone'/>"
510            "      <menuitem action='SelectAddPrevDimRgnZone'/>"
511            "      <menuitem action='SelectAddNextDimRgnZone'/>"
512            "      <separator/>"
513          "      <menuitem action='CopySampleUnity'/>"          "      <menuitem action='CopySampleUnity'/>"
514          "      <menuitem action='CopySampleTune'/>"          "      <menuitem action='CopySampleTune'/>"
515          "      <menuitem action='CopySampleLoop'/>"          "      <menuitem action='CopySampleLoop'/>"
516          "    </menu>"          "    </menu>"
517            "    <menu action='MenuMacro'>"
518            "    </menu>"
519          "    <menu action='MenuSample'>"          "    <menu action='MenuSample'>"
520          "      <menuitem action='SampleProperties'/>"          "      <menuitem action='SampleProperties'/>"
521          "      <menuitem action='AddGroup'/>"          "      <menuitem action='AddGroup'/>"
# Line 398  MainWindow::MainWindow() : Line 534  MainWindow::MainWindow() :
534          "      <menuitem action='InstrProperties'/>"          "      <menuitem action='InstrProperties'/>"
535          "      <menuitem action='MidiRules'/>"          "      <menuitem action='MidiRules'/>"
536          "      <menuitem action='ScriptSlots'/>"          "      <menuitem action='ScriptSlots'/>"
537            "      <menu action='AssignScripts'/>"
538          "      <menuitem action='AddInstrument'/>"          "      <menuitem action='AddInstrument'/>"
539          "      <menuitem action='DupInstrument'/>"          "      <menuitem action='DupInstrument'/>"
540            "      <menuitem action='CombInstruments'/>"
541          "      <separator/>"          "      <separator/>"
542          "      <menuitem action='RemoveInstrument'/>"          "      <menuitem action='RemoveInstrument'/>"
543          "    </menu>"          "    </menu>"
# Line 436  MainWindow::MainWindow() : Line 574  MainWindow::MainWindow() :
574          "    <menuitem action='ScriptSlots'/>"          "    <menuitem action='ScriptSlots'/>"
575          "    <menuitem action='AddInstrument'/>"          "    <menuitem action='AddInstrument'/>"
576          "    <menuitem action='DupInstrument'/>"          "    <menuitem action='DupInstrument'/>"
577            "    <menuitem action='CombInstruments'/>"
578          "    <separator/>"          "    <separator/>"
579          "    <menuitem action='RemoveInstrument'/>"          "    <menuitem action='RemoveInstrument'/>"
580          "  </popup>"          "  </popup>"
# Line 530  MainWindow::MainWindow() : Line 669  MainWindow::MainWindow() :
669      instrument_menu = static_cast<Gtk::MenuItem*>(      instrument_menu = static_cast<Gtk::MenuItem*>(
670          uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments"))->get_submenu();          uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments"))->get_submenu();
671    
672        assign_scripts_menu = static_cast<Gtk::MenuItem*>(
673            uiManager->get_widget("/MenuBar/MenuInstrument/AssignScripts"))->get_submenu();
674    
675      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");
676      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);
677      m_VBox.pack_start(m_HPaned);      m_VBox.pack_start(m_HPaned);
# Line 553  MainWindow::MainWindow() : Line 695  MainWindow::MainWindow() :
695    
696      // Create the Tree model:      // Create the Tree model:
697      m_refTreeModel = Gtk::ListStore::create(m_Columns);      m_refTreeModel = Gtk::ListStore::create(m_Columns);
698      m_TreeView.set_model(m_refTreeModel);      m_refTreeModelFilter = Gtk::TreeModelFilter::create(m_refTreeModel);
699        m_refTreeModelFilter->set_visible_func(
700            sigc::mem_fun(*this, &MainWindow::instrument_row_visible)
701        );
702        m_TreeView.set_model(m_refTreeModelFilter);
703    
704      m_TreeView.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);      m_TreeView.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);
705      m_TreeView.set_tooltip_text(_("Right click here for actions on instruments & MIDI Rules. Drag & drop to change the order of instruments."));      m_TreeView.set_tooltip_text(_("Right click here for actions on instruments & MIDI Rules. Drag & drop to change the order of instruments."));
706      instrument_name_connection = m_refTreeModel->signal_row_changed().connect(      instrument_name_connection = m_refTreeModel->signal_row_changed().connect(
# Line 563  MainWindow::MainWindow() : Line 710  MainWindow::MainWindow() :
710      // Add the TreeView's view columns:      // Add the TreeView's view columns:
711      m_TreeView.append_column(_("Nr"), m_Columns.m_col_nr);      m_TreeView.append_column(_("Nr"), m_Columns.m_col_nr);
712      m_TreeView.append_column_editable(_("Instrument"), m_Columns.m_col_name);      m_TreeView.append_column_editable(_("Instrument"), m_Columns.m_col_name);
713        m_TreeView.append_column(_("Scripts"), m_Columns.m_col_scripts);
714      m_TreeView.set_headers_visible(true);      m_TreeView.set_headers_visible(true);
715            
716      // establish drag&drop within the instrument tree view, allowing to reorder      // establish drag&drop within the instrument tree view, allowing to reorder
# Line 728  MainWindow::MainWindow() : Line 876  MainWindow::MainWindow() :
876      dimreg_stereo.signal_toggled().connect(      dimreg_stereo.signal_toggled().connect(
877          sigc::mem_fun(*this, &MainWindow::update_dimregs));          sigc::mem_fun(*this, &MainWindow::update_dimregs));
878    
879        m_searchText.signal_changed().connect(
880            sigc::mem_fun(m_refTreeModelFilter.operator->(), &Gtk::TreeModelFilter::refilter)
881        );
882    
883      file = 0;      file = 0;
884      file_is_changed = false;      file_is_changed = false;
885    
# Line 736  MainWindow::MainWindow() : Line 888  MainWindow::MainWindow() :
888      // start with a new gig file by default      // start with a new gig file by default
889      on_action_file_new();      on_action_file_new();
890    
891        m_TreeViewNotebook.signal_switch_page().connect(
892            sigc::mem_fun(*this, &MainWindow::on_notebook_tab_switched)
893        );
894    
895      // select 'Instruments' tab by default      // select 'Instruments' tab by default
896      // (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)
897      m_TreeViewNotebook.set_current_page(1);      m_TreeViewNotebook.set_current_page(1);
898    
899        Gtk::Clipboard::get()->signal_owner_change().connect(
900            sigc::mem_fun(*this, &MainWindow::on_clipboard_owner_change)
901        );
902        updateClipboardPasteAvailable();
903        updateClipboardCopyAvailable();
904    
905        // setup macros and their keyboard accelerators
906        {
907            Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(
908                uiManager->get_widget("/MenuBar/MenuMacro")
909            )->get_submenu();
910    
911            const Gdk::ModifierType noModifier = (Gdk::ModifierType)0;
912            Gtk::AccelMap::add_entry("<Macros>/macro_0", GDK_KEY_F1, noModifier);
913            Gtk::AccelMap::add_entry("<Macros>/macro_1", GDK_KEY_F2, noModifier);
914            Gtk::AccelMap::add_entry("<Macros>/macro_2", GDK_KEY_F3, noModifier);
915            Gtk::AccelMap::add_entry("<Macros>/macro_3", GDK_KEY_F4, noModifier);
916            Gtk::AccelMap::add_entry("<Macros>/macro_4", GDK_KEY_F5, noModifier);
917            Gtk::AccelMap::add_entry("<Macros>/macro_5", GDK_KEY_F6, noModifier);
918            Gtk::AccelMap::add_entry("<Macros>/macro_6", GDK_KEY_F7, noModifier);
919            Gtk::AccelMap::add_entry("<Macros>/macro_7", GDK_KEY_F8, noModifier);
920            Gtk::AccelMap::add_entry("<Macros>/macro_8", GDK_KEY_F9, noModifier);
921            Gtk::AccelMap::add_entry("<Macros>/macro_9", GDK_KEY_F10, noModifier);
922            Gtk::AccelMap::add_entry("<Macros>/macro_10", GDK_KEY_F11, noModifier);
923            Gtk::AccelMap::add_entry("<Macros>/macro_11", GDK_KEY_F12, noModifier);
924            Gtk::AccelMap::add_entry("<Macros>/SetupMacros", 'm', primaryModifierKey);
925    
926            Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();
927            menuMacro->set_accel_group(accelGroup);
928    
929            updateMacroMenu();
930        }
931    
932        // setup "Assign Scripts" keyboard accelerators
933        {
934            Gtk::AccelMap::add_entry("<Scripts>/script_0", GDK_KEY_F1, Gdk::SHIFT_MASK);
935            Gtk::AccelMap::add_entry("<Scripts>/script_1", GDK_KEY_F2, Gdk::SHIFT_MASK);
936            Gtk::AccelMap::add_entry("<Scripts>/script_2", GDK_KEY_F3, Gdk::SHIFT_MASK);
937            Gtk::AccelMap::add_entry("<Scripts>/script_3", GDK_KEY_F4, Gdk::SHIFT_MASK);
938            Gtk::AccelMap::add_entry("<Scripts>/script_4", GDK_KEY_F5, Gdk::SHIFT_MASK);
939            Gtk::AccelMap::add_entry("<Scripts>/script_5", GDK_KEY_F6, Gdk::SHIFT_MASK);
940            Gtk::AccelMap::add_entry("<Scripts>/script_6", GDK_KEY_F7, Gdk::SHIFT_MASK);
941            Gtk::AccelMap::add_entry("<Scripts>/script_7", GDK_KEY_F8, Gdk::SHIFT_MASK);
942            Gtk::AccelMap::add_entry("<Scripts>/script_8", GDK_KEY_F9, Gdk::SHIFT_MASK);
943            Gtk::AccelMap::add_entry("<Scripts>/script_9", GDK_KEY_F10, Gdk::SHIFT_MASK);
944            Gtk::AccelMap::add_entry("<Scripts>/script_10", GDK_KEY_F11, Gdk::SHIFT_MASK);
945            Gtk::AccelMap::add_entry("<Scripts>/script_11", GDK_KEY_F12, Gdk::SHIFT_MASK);
946    
947            Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();
948            assign_scripts_menu->set_accel_group(accelGroup);
949        }
950    
951        Glib::signal_idle().connect_once(
952            sigc::mem_fun(*this, &MainWindow::bringToFront),
953            200
954        );
955  }  }
956    
957  MainWindow::~MainWindow()  MainWindow::~MainWindow()
958  {  {
959  }  }
960    
961    void MainWindow::bringToFront() {
962        #if defined(__APPLE__)
963        macRaiseAppWindow();
964        #endif
965        raise();
966        present();
967    }
968    
969    void MainWindow::updateMacroMenu() {
970        Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(
971            uiManager->get_widget("/MenuBar/MenuMacro")
972        )->get_submenu();
973    
974        // remove all entries from "Macro" menu
975        {
976            const std::vector<Gtk::Widget*> children = menuMacro->get_children();
977            for (int i = 0; i < children.size(); ++i) {
978                Gtk::Widget* child = children[i];
979                menuMacro->remove(*child);
980                delete child;
981            }
982        }
983    
984        // (re)load all macros from config file
985        try {
986            Settings::singleton()->loadMacros(m_macros);
987        } catch (Serialization::Exception e) {
988            std::cerr << "Exception while loading macros: " << e.Message << std::endl;
989        } catch (...) {
990            std::cerr << "Unknown exception while loading macros!" << std::endl;
991        }
992    
993        // add all configured macros as menu items to the "Macro" menu
994        for (int iMacro = 0; iMacro < m_macros.size(); ++iMacro) {
995            const Serialization::Archive& macro = m_macros[iMacro];
996            std::string name =
997                macro.name().empty() ?
998                    (std::string(_("Unnamed Macro")) + " " + ToString(iMacro+1)) : macro.name();
999            Gtk::MenuItem* item = new Gtk::MenuItem(name);
1000            item->signal_activate().connect(
1001                sigc::bind(
1002                    sigc::mem_fun(*this, &MainWindow::onMacroSelected), iMacro
1003                )
1004            );
1005            menuMacro->append(*item);
1006            item->set_accel_path("<Macros>/macro_" + ToString(iMacro));
1007            Glib::ustring comment = macro.comment();
1008            if (!comment.empty())
1009                item->set_tooltip_text(comment);
1010        }
1011        // if there are no macros configured at all, then show a dummy entry instead
1012        if (m_macros.empty()) {
1013            Gtk::MenuItem* item = new Gtk::MenuItem(_("No Macros"));
1014            item->set_sensitive(false);
1015            menuMacro->append(*item);
1016        }
1017    
1018        // add separator line to menu
1019        menuMacro->append(*new Gtk::SeparatorMenuItem);
1020    
1021        {
1022            Gtk::MenuItem* item = new Gtk::MenuItem(_("Setup Macros ..."));
1023            item->signal_activate().connect(
1024                sigc::mem_fun(*this, &MainWindow::setupMacros)
1025            );
1026            menuMacro->append(*item);
1027            item->set_accel_path("<Macros>/SetupMacros");
1028        }
1029    
1030        menuMacro->show_all_children();
1031    }
1032    
1033    void MainWindow::onMacroSelected(int iMacro) {
1034        printf("onMacroSelected(%d)\n", iMacro);
1035        if (iMacro < 0 || iMacro >= m_macros.size()) return;
1036        Glib::ustring errorText;
1037        try {
1038            applyMacro(m_macros[iMacro]);
1039        } catch (Serialization::Exception e) {
1040            errorText = e.Message;
1041        } catch (...) {
1042            errorText = _("Unknown exception while applying macro");
1043        }
1044        if (!errorText.empty()) {
1045            Glib::ustring txt = _("Applying macro failed:\n") + errorText;
1046            Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1047            msg.run();
1048        }
1049    }
1050    
1051    void MainWindow::setupMacros() {
1052        MacrosSetup* setup = new MacrosSetup();
1053        gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
1054        setup->setMacros(m_macros, &m_serializationArchive, pDimRgn);
1055        setup->signal_macros_changed().connect(
1056            sigc::mem_fun(*this, &MainWindow::onMacrosSetupChanged)
1057        );
1058        setup->show();
1059    }
1060    
1061    void MainWindow::onMacrosSetupChanged(const std::vector<Serialization::Archive>& macros) {
1062        m_macros = macros;
1063        Settings::singleton()->saveMacros(m_macros);
1064        updateMacroMenu();
1065    }
1066    
1067    void MainWindow::on_notebook_tab_switched(GtkNotebookPage* page, guint page_num) {
1068        bool isInstrumentsPage = (page_num == 1);
1069        // so far we only support filtering for the instruments list, so hide the
1070        // filter text entry field if another tab is selected
1071        m_searchField.set_visible(isInstrumentsPage);
1072    }
1073    
1074  bool MainWindow::on_delete_event(GdkEventAny* event)  bool MainWindow::on_delete_event(GdkEventAny* event)
1075  {  {
1076      return !file_is_shared && file_is_changed && !close_confirmation_dialog();      return !file_is_shared && file_is_changed && !close_confirmation_dialog();
# Line 810  void MainWindow::update_dimregs() Line 1136  void MainWindow::update_dimregs()
1136          }          }
1137      }      }
1138    
1139        m_RegionChooser.setModifyAllRegions(all_regions);
1140      m_DimRegionChooser.setModifyAllRegions(all_regions);      m_DimRegionChooser.setModifyAllRegions(all_regions);
1141      m_DimRegionChooser.setModifyAllDimensionRegions(all_dimregs);      m_DimRegionChooser.setModifyAllDimensionRegions(all_dimregs);
1142      m_DimRegionChooser.setModifyBothChannels(stereo);      m_DimRegionChooser.setModifyBothChannels(stereo);
1143    
1144        updateClipboardCopyAvailable();
1145  }  }
1146    
1147  void MainWindow::dimreg_all_dimregs_toggled()  void MainWindow::dimreg_all_dimregs_toggled()
# Line 842  void MainWindow::on_sel_change() Line 1171  void MainWindow::on_sel_change()
1171          }          }
1172      }      }
1173    
1174        updateScriptListOfMenu();
1175    
1176      m_RegionChooser.set_instrument(get_instrument());      m_RegionChooser.set_instrument(get_instrument());
1177    
1178      if (Settings::singleton()->syncSamplerInstrumentSelection) {      if (Settings::singleton()->syncSamplerInstrumentSelection) {
# Line 972  void Saver::thread_function() Line 1303  void Saver::thread_function()
1303                  // save the file as separate temporary file first,                  // save the file as separate temporary file first,
1304                  // then move the saved file over the old file                  // then move the saved file over the old file
1305                  // (may result in performance speedup during save)                  // (may result in performance speedup during save)
1306                  String tmpname = filename + ".TMP";                  gig::String tmpname = filename + ".TMP";
1307                  gig->Save(tmpname, &progress);                  gig->Save(tmpname, &progress);
1308                  #if defined(WIN32)                  #if defined(WIN32)
1309                  if (!DeleteFile(filename.c_str())) {                  if (!DeleteFile(filename.c_str())) {
# Line 980  void Saver::thread_function() Line 1311  void Saver::thread_function()
1311                  }                  }
1312                  #else // POSIX ...                  #else // POSIX ...
1313                  if (unlink(filename.c_str())) {                  if (unlink(filename.c_str())) {
1314                      throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file): " + String(strerror(errno)));                      throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file): " + gig::String(strerror(errno)));
1315                  }                  }
1316                  #endif                  #endif
1317                  if (rename(tmpname.c_str(), filename.c_str())) {                  if (rename(tmpname.c_str(), filename.c_str())) {
1318                      #if defined(WIN32)                      #if defined(WIN32)
1319                      throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file).");                      throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file).");
1320                      #else                      #else
1321                      throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file): " + String(strerror(errno)));                      throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file): " + gig::String(strerror(errno)));
1322                      #endif                      #endif
1323                  }                  }
1324              }              }
# Line 1115  bool MainWindow::close_confirmation_dial Line 1446  bool MainWindow::close_confirmation_dial
1446      g_free(msg);      g_free(msg);
1447      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."));
1448      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);
1449      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1450      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);
1451      dialog.set_default_response(Gtk::RESPONSE_YES);      dialog.set_default_response(Gtk::RESPONSE_YES);
1452      int response = dialog.run();      int response = dialog.run();
1453      dialog.hide();      dialog.hide();
# Line 1147  bool MainWindow::leaving_shared_mode_dia Line 1478  bool MainWindow::leaving_shared_mode_dia
1478            "used by the sampler until you tell the sampler explicitly to "            "used by the sampler until you tell the sampler explicitly to "
1479            "load it."));            "load it."));
1480      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);
1481      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1482      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
1483      int response = dialog.run();      int response = dialog.run();
1484      dialog.hide();      dialog.hide();
# Line 1161  void MainWindow::on_action_file_open() Line 1492  void MainWindow::on_action_file_open()
1492      if (file_is_shared && !leaving_shared_mode_dialog()) return;      if (file_is_shared && !leaving_shared_mode_dialog()) return;
1493    
1494      Gtk::FileChooserDialog dialog(*this, _("Open file"));      Gtk::FileChooserDialog dialog(*this, _("Open file"));
1495      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1496      dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
1497      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
1498  #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
1499      Gtk::FileFilter filter;      Gtk::FileFilter filter;
# Line 1357  void MainWindow::on_action_file_save_as( Line 1688  void MainWindow::on_action_file_save_as(
1688    
1689  bool MainWindow::file_save_as()  bool MainWindow::file_save_as()
1690  {  {
1691      Gtk::FileChooserDialog dialog(*this, _("Save As"), Gtk::FILE_CHOOSER_ACTION_SAVE);      Gtk::FileChooserDialog dialog(*this, _("Save as"), Gtk::FILE_CHOOSER_ACTION_SAVE);
1692      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1693      dialog.add_button(_("_Save"), Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);
1694      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
1695      dialog.set_do_overwrite_confirmation();      dialog.set_do_overwrite_confirmation();
1696    
# Line 1445  void MainWindow::__import_queued_samples Line 1776  void MainWindow::__import_queued_samples
1776      std::cout << "Starting sample import\n" << std::flush;      std::cout << "Starting sample import\n" << std::flush;
1777      Glib::ustring error_files;      Glib::ustring error_files;
1778      printf("Samples to import: %d\n", int(m_SampleImportQueue.size()));      printf("Samples to import: %d\n", int(m_SampleImportQueue.size()));
1779      for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();      for (std::map<gig::Sample*, SampleImportItem>::iterator iter = m_SampleImportQueue.begin();
1780           iter != m_SampleImportQueue.end(); ) {           iter != m_SampleImportQueue.end(); ) {
1781          printf("Importing sample %s\n",(*iter).sample_path.c_str());          printf("Importing sample %s\n",iter->second.sample_path.c_str());
1782          SF_INFO info;          SF_INFO info;
1783          info.format = 0;          info.format = 0;
1784          SNDFILE* hFile = sf_open((*iter).sample_path.c_str(), SFM_READ, &info);          SNDFILE* hFile = sf_open(iter->second.sample_path.c_str(), SFM_READ, &info);
1785          sf_command(hFile, SFC_SET_SCALE_FLOAT_INT_READ, 0, SF_TRUE);          sf_command(hFile, SFC_SET_SCALE_FLOAT_INT_READ, 0, SF_TRUE);
1786          try {          try {
1787              if (!hFile) throw std::string(_("could not open file"));              if (!hFile) throw std::string(_("could not open file"));
# Line 1473  void MainWindow::__import_queued_samples Line 1804  void MainWindow::__import_queued_samples
1804                      throw std::string(_("format not supported")); // unsupported subformat (yet?)                      throw std::string(_("format not supported")); // unsupported subformat (yet?)
1805              }              }
1806    
1807                // reset write position for sample
1808                iter->first->SetPos(0);
1809    
1810              const int bufsize = 10000;              const int bufsize = 10000;
1811              switch (bitdepth) {              switch (bitdepth) {
1812                  case 16: {                  case 16: {
# Line 1482  void MainWindow::__import_queued_samples Line 1816  void MainWindow::__import_queued_samples
1816                          // libsndfile does the conversion for us (if needed)                          // libsndfile does the conversion for us (if needed)
1817                          int n = sf_readf_short(hFile, buffer, bufsize);                          int n = sf_readf_short(hFile, buffer, bufsize);
1818                          // write from buffer directly (physically) into .gig file                          // write from buffer directly (physically) into .gig file
1819                          iter->gig_sample->Write(buffer, n);                          iter->first->Write(buffer, n);
1820                          cnt -= n;                          cnt -= n;
1821                      }                      }
1822                      delete[] buffer;                      delete[] buffer;
# Line 1502  void MainWindow::__import_queued_samples Line 1836  void MainWindow::__import_queued_samples
1836                              dstbuf[j++] = srcbuf[i] >> 24;                              dstbuf[j++] = srcbuf[i] >> 24;
1837                          }                          }
1838                          // write from buffer directly (physically) into .gig file                          // write from buffer directly (physically) into .gig file
1839                          iter->gig_sample->Write(dstbuf, n);                          iter->first->Write(dstbuf, n);
1840                          cnt -= n;                          cnt -= n;
1841                      }                      }
1842                      delete[] srcbuf;                      delete[] srcbuf;
# Line 1513  void MainWindow::__import_queued_samples Line 1847  void MainWindow::__import_queued_samples
1847              // cleanup              // cleanup
1848              sf_close(hFile);              sf_close(hFile);
1849              // let the sampler re-cache the sample if needed              // let the sampler re-cache the sample if needed
1850              sample_changed_signal.emit(iter->gig_sample);              sample_changed_signal.emit(iter->first);
1851              // on success we remove the sample from the import queue,              // on success we remove the sample from the import queue,
1852              // otherwise keep it, maybe it works the next time ?              // otherwise keep it, maybe it works the next time ?
1853              std::list<SampleImportItem>::iterator cur = iter;              std::map<gig::Sample*, SampleImportItem>::iterator cur = iter;
1854              ++iter;              ++iter;
1855              m_SampleImportQueue.erase(cur);              m_SampleImportQueue.erase(cur);
1856          } catch (std::string what) {          } catch (std::string what) {
1857              // remember the files that made trouble (and their cause)              // remember the files that made trouble (and their cause)
1858              if (!error_files.empty()) error_files += "\n";              if (!error_files.empty()) error_files += "\n";
1859              error_files += (*iter).sample_path += " (" + what + ")";              error_files += iter->second.sample_path += " (" + what + ")";
1860              ++iter;              ++iter;
1861          }          }
1862      }      }
# Line 1580  void MainWindow::on_action_help_about() Line 1914  void MainWindow::on_action_help_about()
1914      dialog.set_comments(sComment.c_str());      dialog.set_comments(sComment.c_str());
1915      dialog.set_website("http://www.linuxsampler.org");      dialog.set_website("http://www.linuxsampler.org");
1916      dialog.set_website_label("http://www.linuxsampler.org");      dialog.set_website_label("http://www.linuxsampler.org");
1917        dialog.set_position(Gtk::WIN_POS_CENTER);
1918      dialog.run();      dialog.run();
1919  }  }
1920    
# Line 1601  PropDialog::PropDialog() Line 1936  PropDialog::PropDialog()
1936        eSourceForm(_("Source form")),        eSourceForm(_("Source form")),
1937        eCommissioned(_("Commissioned")),        eCommissioned(_("Commissioned")),
1938        eSubject(_("Subject")),        eSubject(_("Subject")),
1939        quitButton(_("_Close"), true),        quitButton(Gtk::Stock::CLOSE),
1940        table(2, 1),        table(2, 1),
1941        m_file(NULL)        m_file(NULL)
1942  {  {
1943        if (!Settings::singleton()->autoRestoreWindowDimension) {
1944            set_default_size(470, 390);
1945            set_position(Gtk::WIN_POS_MOUSE);
1946        }
1947    
1948      set_title(_("File Properties"));      set_title(_("File Properties"));
1949      eName.set_width_chars(50);      eName.set_width_chars(50);
1950    
# Line 1724  void InstrumentProps::set_MIDIProgram(ui Line 2064  void InstrumentProps::set_MIDIProgram(ui
2064  }  }
2065    
2066  InstrumentProps::InstrumentProps() :  InstrumentProps::InstrumentProps() :
2067      quitButton(_("_Close"), true),      quitButton(Gtk::Stock::CLOSE),
2068      table(2,1),      table(2,1),
2069      eName(_("Name")),      eName(_("Name")),
2070      eIsDrum(_("Is drum")),      eIsDrum(_("Is drum")),
# Line 1739  InstrumentProps::InstrumentProps() : Line 2079  InstrumentProps::InstrumentProps() :
2079      eDimensionKeyRangeLow(_("Keyswitching range low")),      eDimensionKeyRangeLow(_("Keyswitching range low")),
2080      eDimensionKeyRangeHigh(_("Keyswitching range high"))      eDimensionKeyRangeHigh(_("Keyswitching range high"))
2081  {  {
2082        if (!Settings::singleton()->autoRestoreWindowDimension) {
2083            //set_default_size(470, 390);
2084            set_position(Gtk::WIN_POS_MOUSE);
2085        }
2086    
2087      set_title(_("Instrument Properties"));      set_title(_("Instrument Properties"));
2088    
2089      eDimensionKeyRangeLow.set_tip(      eDimensionKeyRangeLow.set_tip(
# Line 1863  void MainWindow::load_gig(gig::File* gig Line 2208  void MainWindow::load_gig(gig::File* gig
2208      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;
2209           instrument = gig->GetNextInstrument(), ++index) {           instrument = gig->GetNextInstrument(), ++index) {
2210          Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));          Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
2211            const int iScriptSlots = instrument->ScriptSlotCount();
2212    
2213          Gtk::TreeModel::iterator iter = m_refTreeModel->append();          Gtk::TreeModel::iterator iter = m_refTreeModel->append();
2214          Gtk::TreeModel::Row row = *iter;          Gtk::TreeModel::Row row = *iter;
2215          row[m_Columns.m_col_nr] = index;          row[m_Columns.m_col_nr] = index;
2216          row[m_Columns.m_col_name] = name;          row[m_Columns.m_col_name] = name;
2217          row[m_Columns.m_col_instr] = instrument;          row[m_Columns.m_col_instr] = instrument;
2218            row[m_Columns.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
2219    
2220          add_instrument_to_menu(name);          add_instrument_to_menu(name);
2221      }      }
# Line 2007  void MainWindow::show_script_slots() { Line 2354  void MainWindow::show_script_slots() {
2354    
2355      ScriptSlots* window = new ScriptSlots;      ScriptSlots* window = new ScriptSlots;
2356      window->setInstrument(instrument);      window->setInstrument(instrument);
2357        window->signal_script_slots_changed().connect(
2358            sigc::mem_fun(*this, &MainWindow::onScriptSlotsModified)
2359        );
2360      //window->reparent(*this);      //window->reparent(*this);
2361      window->show();      window->show();
2362  }  }
2363    
2364    void MainWindow::onScriptSlotsModified(gig::Instrument* pInstrument) {
2365        if (!pInstrument) return;
2366        const int iScriptSlots = pInstrument->ScriptSlotCount();
2367    
2368        //NOTE: This is a big mess! Sometimes GTK requires m_TreeView.get_model(), here we need m_refTreeModelFilter->get_model(), otherwise accessing children below causes an error!
2369        //Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();
2370        Glib::RefPtr<Gtk::TreeModel> model = m_refTreeModelFilter->get_model();
2371    
2372        for (int i = 0; i < model->children().size(); ++i) {
2373            Gtk::TreeModel::Row row = model->children()[i];
2374            if (row[m_Columns.m_col_instr] != pInstrument) continue;
2375            row[m_Columns.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
2376            break;
2377        }
2378    
2379        // causes the sampler to reload the instrument with the new script
2380        on_sel_change();
2381    }
2382    
2383    void MainWindow::assignScript(gig::Script* pScript) {
2384        if (!pScript) {
2385            printf("assignScript() : !script\n");
2386            return;
2387        }
2388        printf("assignScript('%s')\n", pScript->Name.c_str());
2389    
2390        gig::Instrument* pInstrument = get_instrument();
2391        if (!pInstrument) {
2392            printf("!instrument\n");
2393            return;
2394        }
2395    
2396        pInstrument->AddScriptSlot(pScript);
2397    
2398        onScriptSlotsModified(pInstrument);
2399    }
2400    
2401  void MainWindow::on_action_refresh_all() {  void MainWindow::on_action_refresh_all() {
2402      __refreshEntireGUI();      __refreshEntireGUI();
2403  }  }
# Line 2113  void MainWindow::on_instrument_selection Line 2500  void MainWindow::on_instrument_selection
2500  void MainWindow::select_instrument(gig::Instrument* instrument) {  void MainWindow::select_instrument(gig::Instrument* instrument) {
2501      if (!instrument) return;      if (!instrument) return;
2502    
2503        //NOTE: This is a big mess! Sometimes GTK requires m_refTreeModelFilter->get_model(), here we need m_TreeView.get_model(), otherwise treeview selection below causes an error!
2504      Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();      Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();
2505        //Glib::RefPtr<Gtk::TreeModel> model = m_refTreeModelFilter->get_model();
2506    
2507      for (int i = 0; i < model->children().size(); ++i) {      for (int i = 0; i < model->children().size(); ++i) {
2508          Gtk::TreeModel::Row row = model->children()[i];          Gtk::TreeModel::Row row = model->children()[i];
2509          if (row[m_Columns.m_col_instr] == instrument) {          if (row[m_Columns.m_col_instr] == instrument) {
# Line 2135  bool MainWindow::select_dimension_region Line 2525  bool MainWindow::select_dimension_region
2525      gig::Region* pRegion = (gig::Region*) dimRgn->GetParent();      gig::Region* pRegion = (gig::Region*) dimRgn->GetParent();
2526      gig::Instrument* pInstrument = (gig::Instrument*) pRegion->GetParent();      gig::Instrument* pInstrument = (gig::Instrument*) pRegion->GetParent();
2527    
2528        //NOTE: This is a big mess! Sometimes GTK requires m_refTreeModelFilter->get_model(), here we need m_TreeView.get_model(), otherwise treeview selection below causes an error!
2529      Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();      Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();
2530        //Glib::RefPtr<Gtk::TreeModel> model = m_refTreeModelFilter->get_model();
2531    
2532      for (int i = 0; i < model->children().size(); ++i) {      for (int i = 0; i < model->children().size(); ++i) {
2533          Gtk::TreeModel::Row row = model->children()[i];          Gtk::TreeModel::Row row = model->children()[i];
2534          if (row[m_Columns.m_col_instr] == pInstrument) {          if (row[m_Columns.m_col_instr] == pInstrument) {
# Line 2283  void MainWindow::on_script_treeview_butt Line 2676  void MainWindow::on_script_treeview_butt
2676      }      }
2677  }  }
2678    
2679    void MainWindow::updateScriptListOfMenu() {
2680        // remove all entries from "Assign Script" menu
2681        {
2682            const std::vector<Gtk::Widget*> children = assign_scripts_menu->get_children();
2683            for (int i = 0; i < children.size(); ++i) {
2684                Gtk::Widget* child = children[i];
2685                assign_scripts_menu->remove(*child);
2686                delete child;
2687            }
2688        }
2689    
2690        int iTotalScripts = 0;
2691    
2692        if (!file) goto noScripts;
2693    
2694        // add all configured macros as menu items to the "Macro" menu
2695        for (int iGroup = 0; file->GetScriptGroup(iGroup); ++iGroup) {
2696            gig::ScriptGroup* pGroup = file->GetScriptGroup(iGroup);
2697            for (int iScript = 0; pGroup->GetScript(iScript); ++iScript, ++iTotalScripts) {
2698                gig::Script* pScript = pGroup->GetScript(iScript);
2699                std::string name = pScript->Name;
2700    
2701                Gtk::MenuItem* item = new Gtk::MenuItem(name);
2702                item->signal_activate().connect(
2703                    sigc::bind(
2704                        sigc::mem_fun(*this, &MainWindow::assignScript), pScript
2705                    )
2706                );
2707                assign_scripts_menu->append(*item);
2708                item->set_accel_path("<Scripts>/script_" + ToString(iTotalScripts));
2709                //item->set_tooltip_text(comment);
2710            }
2711        }
2712    
2713        noScripts:
2714    
2715        // if there are no macros configured at all, then show a dummy entry instead
2716        if (!iTotalScripts) {
2717            Gtk::MenuItem* item = new Gtk::MenuItem(_("No Scripts"));
2718            item->set_sensitive(false);
2719            assign_scripts_menu->append(*item);
2720        }
2721    
2722        assign_scripts_menu->show_all_children();
2723    }
2724    
2725  Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(  Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(
2726      const Glib::ustring& name, int position) {      const Glib::ustring& name, int position) {
2727    
# Line 2325  void MainWindow::add_instrument(gig::Ins Line 2764  void MainWindow::add_instrument(gig::Ins
2764      rowInstr[m_Columns.m_col_nr] = m_refTreeModel->children().size() - 1;      rowInstr[m_Columns.m_col_nr] = m_refTreeModel->children().size() - 1;
2765      rowInstr[m_Columns.m_col_name] = name;      rowInstr[m_Columns.m_col_name] = name;
2766      rowInstr[m_Columns.m_col_instr] = instrument;      rowInstr[m_Columns.m_col_instr] = instrument;
2767        rowInstr[m_Columns.m_col_scripts] = "";
2768      instrument_name_connection.unblock();      instrument_name_connection.unblock();
2769    
2770      add_instrument_to_menu(name);      add_instrument_to_menu(name);
2771        select_instrument(instrument);
     m_TreeView.get_selection()->select(iterInstr);  
   
2772      file_changed();      file_changed();
2773  }  }
2774    
# Line 2613  void MainWindow::add_or_replace_sample(b Line 3051  void MainWindow::add_or_replace_sample(b
3051    
3052      // show 'browse for file' dialog      // show 'browse for file' dialog
3053      Gtk::FileChooserDialog dialog(*this, replace ? _("Replace Sample with") : _("Add Sample(s)"));      Gtk::FileChooserDialog dialog(*this, replace ? _("Replace Sample with") : _("Add Sample(s)"));
3054      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
3055      dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
3056      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
3057    
3058      // matches all file types supported by libsndfile      // matches all file types supported by libsndfile
# Line 2744  void MainWindow::add_or_replace_sample(b Line 3182  void MainWindow::add_or_replace_sample(b
3182                  SampleImportItem sched_item;                  SampleImportItem sched_item;
3183                  sched_item.gig_sample  = sample;                  sched_item.gig_sample  = sample;
3184                  sched_item.sample_path = *iter;                  sched_item.sample_path = *iter;
3185                  m_SampleImportQueue.push_back(sched_item);                  m_SampleImportQueue[sample] = sched_item;
3186                  // add sample to the tree view                  // add sample to the tree view
3187                  if (replace) {                  if (replace) {
3188                      row[m_SamplesModel.m_col_name] = gig_to_utf8(sample->pInfo->Name);                      row[m_SamplesModel.m_col_name] = gig_to_utf8(sample->pInfo->Name);
# Line 2814  void MainWindow::on_action_replace_all_s Line 3252  void MainWindow::on_action_replace_all_s
3252      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);
3253      description.show();      description.show();
3254      entryArea.show_all();      entryArea.show_all();
3255      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
3256      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);
3257      dialog.set_select_multiple(false);      dialog.set_select_multiple(false);
3258      if (current_sample_dir != "") {      if (current_sample_dir != "") {
# Line 2854  void MainWindow::on_action_replace_all_s Line 3292  void MainWindow::on_action_replace_all_s
3292                  SampleImportItem sched_item;                  SampleImportItem sched_item;
3293                  sched_item.gig_sample  = sample;                  sched_item.gig_sample  = sample;
3294                  sched_item.sample_path = filename;                  sched_item.sample_path = filename;
3295                  m_SampleImportQueue.push_back(sched_item);                  m_SampleImportQueue[sample] = sched_item;
3296                  sf_close(hFile);                  sf_close(hFile);
3297                  file_changed();                  file_changed();
3298              }              }
# Line 2906  void MainWindow::on_action_remove_sample Line 3344  void MainWindow::on_action_remove_sample
3344                  // if sample(s) were just previously added, remove                  // if sample(s) were just previously added, remove
3345                  // them from the import queue                  // them from the import queue
3346                  for (std::list<gig::Sample*>::iterator member = members.begin();                  for (std::list<gig::Sample*>::iterator member = members.begin();
3347                       member != members.end(); ++member) {                       member != members.end(); ++member)
3348                      for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();                  {
3349                           iter != m_SampleImportQueue.end(); ++iter) {                      if (m_SampleImportQueue.count(*member)) {
3350                          if ((*iter).gig_sample == *member) {                          printf("Removing previously added sample '%s' from group '%s'\n",
3351                              printf("Removing previously added sample '%s' from group '%s'\n",                                 m_SampleImportQueue[sample].sample_path.c_str(), name.c_str());
3352                                     (*iter).sample_path.c_str(), name.c_str());                          m_SampleImportQueue.erase(*member);
                             m_SampleImportQueue.erase(iter);  
                             break;  
                         }  
3353                      }                      }
3354                  }                  }
3355                  file_changed();                  file_changed();
# Line 2929  void MainWindow::on_action_remove_sample Line 3364  void MainWindow::on_action_remove_sample
3364                  samples_removed_signal.emit();                  samples_removed_signal.emit();
3365                  // if sample was just previously added, remove it from                  // if sample was just previously added, remove it from
3366                  // the import queue                  // the import queue
3367                  for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();                  if (m_SampleImportQueue.count(sample)) {
3368                       iter != m_SampleImportQueue.end(); ++iter) {                      printf("Removing previously added sample '%s'\n",
3369                      if ((*iter).gig_sample == sample) {                             m_SampleImportQueue[sample].sample_path.c_str());
3370                          printf("Removing previously added sample '%s'\n",                      m_SampleImportQueue.erase(sample);
                                (*iter).sample_path.c_str());  
                         m_SampleImportQueue.erase(iter);  
                         break;  
                     }  
3371                  }                  }
3372                  dimreg_changed();                  dimreg_changed();
3373                  file_changed();                  file_changed();
# Line 2992  void MainWindow::on_action_remove_unused Line 3423  void MainWindow::on_action_remove_unused
3423              gig::Sample* sample = *itSample;              gig::Sample* sample = *itSample;
3424              // remove sample from the .gig file              // remove sample from the .gig file
3425              file->DeleteSample(sample);              file->DeleteSample(sample);
3426              // if sample was just previously added, remove it fro the import queue              // if sample was just previously added, remove it from the import queue
3427              for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();              if (m_SampleImportQueue.count(sample)) {
3428                   iter != m_SampleImportQueue.end(); ++iter)                  printf("Removing previously added sample '%s'\n",
3429              {                         m_SampleImportQueue[sample].sample_path.c_str());
3430                  if ((*iter).gig_sample == sample) {                  m_SampleImportQueue.erase(sample);
                     printf("Removing previously added sample '%s'\n",  
                            (*iter).sample_path.c_str());  
                     m_SampleImportQueue.erase(iter);  
                     break;  
                 }  
3431              }              }
3432          }          }
3433      } catch (RIFF::Exception e) {      } catch (RIFF::Exception e) {
# Line 3312  void MainWindow::instrument_name_changed Line 3738  void MainWindow::instrument_name_changed
3738      }      }
3739  }  }
3740    
3741    bool MainWindow::instrument_row_visible(const Gtk::TreeModel::const_iterator& iter) {
3742        if (!iter)
3743            return true;
3744    
3745        Glib::ustring pattern = m_searchText.get_text().lowercase();
3746        trim(pattern);
3747        if (pattern.empty()) return true;
3748    
3749        Gtk::TreeModel::Row row = *iter;
3750        Glib::ustring name = row[m_Columns.m_col_name];
3751        name = name.lowercase();
3752    
3753        std::vector<Glib::ustring> tokens = Glib::Regex::split_simple(" ", pattern);
3754        for (int t = 0; t < tokens.size(); ++t)
3755            if (name.find(tokens[t]) == Glib::ustring::npos)
3756                return false;
3757    
3758        return true;
3759    }
3760    
3761  void MainWindow::on_action_combine_instruments() {  void MainWindow::on_action_combine_instruments() {
3762      CombineInstrumentsDialog* d = new CombineInstrumentsDialog(*this, file);      CombineInstrumentsDialog* d = new CombineInstrumentsDialog(*this, file);
3763    
3764        // take over selection from instruments list view for the combine dialog's
3765        // list view as pre-selection
3766        std::set<int> indeces;
3767        {
3768            Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
3769            std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
3770            for (int r = 0; r < rows.size(); ++r) {
3771                Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[r]);
3772                if (it) {
3773                    Gtk::TreeModel::Row row = *it;
3774                    int index = row[m_Columns.m_col_nr];
3775                    indeces.insert(index);
3776                }
3777            }
3778        }
3779        d->setSelectedInstruments(indeces);
3780    
3781      d->show_all();      d->show_all();
     d->resize(500, 400);  
3782      d->run();      d->run();
3783      if (d->fileWasChanged()) {      if (d->fileWasChanged()) {
3784          // update GUI with new instrument just created          // update GUI with new instrument just created
# Line 3450  void MainWindow::on_action_merge_files() Line 3913  void MainWindow::on_action_merge_files()
3913      }      }
3914    
3915      Gtk::FileChooserDialog dialog(*this, _("Merge .gig files"));      Gtk::FileChooserDialog dialog(*this, _("Merge .gig files"));
3916      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
3917      dialog.add_button(_("Merge"), Gtk::RESPONSE_OK);      dialog.add_button(_("Merge"), Gtk::RESPONSE_OK);
3918      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
3919  #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 3577  void MainWindow::show_scripts_tab() { Line 4040  void MainWindow::show_scripts_tab() {
4040      m_TreeViewNotebook.set_current_page(2);      m_TreeViewNotebook.set_current_page(2);
4041  }  }
4042    
4043    void MainWindow::select_instrument_by_dir(int dir) {
4044        if (!file) return;
4045        gig::Instrument* pInstrument = get_instrument();
4046        if (!pInstrument) {
4047            select_instrument( file->GetInstrument(0) );
4048            return;
4049        }
4050        for (int i = 0; file->GetInstrument(i); ++i) {
4051            if (file->GetInstrument(i) == pInstrument) {
4052                select_instrument( file->GetInstrument(i + dir) );
4053                return;
4054            }
4055        }
4056    }
4057    
4058    void MainWindow::select_prev_instrument() {
4059        select_instrument_by_dir(-1);
4060    }
4061    
4062    void MainWindow::select_next_instrument() {
4063        select_instrument_by_dir(1);
4064    }
4065    
4066    void MainWindow::select_prev_region() {
4067        m_RegionChooser.select_prev_region();
4068    }
4069    
4070    void MainWindow::select_next_region() {
4071        m_RegionChooser.select_next_region();
4072    }
4073    
4074    void MainWindow::select_next_dim_rgn_zone() {
4075        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
4076        m_DimRegionChooser.select_next_dimzone();
4077    }
4078    
4079    void MainWindow::select_prev_dim_rgn_zone() {
4080        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
4081        m_DimRegionChooser.select_prev_dimzone();
4082    }
4083    
4084    void MainWindow::select_add_next_dim_rgn_zone() {
4085        m_DimRegionChooser.select_next_dimzone(true);
4086    }
4087    
4088    void MainWindow::select_add_prev_dim_rgn_zone() {
4089        m_DimRegionChooser.select_prev_dimzone(true);
4090    }
4091    
4092    void MainWindow::select_prev_dimension() {
4093        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
4094        m_DimRegionChooser.select_prev_dimension();
4095    }
4096    
4097    void MainWindow::select_next_dimension() {
4098        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
4099        m_DimRegionChooser.select_next_dimension();
4100    }
4101    
4102    #define CLIPBOARD_DIMENSIONREGION_TARGET \
4103        ("libgig.DimensionRegion." + m_serializationArchive.rawDataFormat())
4104    
4105    void MainWindow::copy_selected_dimrgn() {
4106        gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
4107        if (!pDimRgn) {
4108            updateClipboardPasteAvailable();
4109            updateClipboardCopyAvailable();
4110            return;
4111        }
4112    
4113        std::vector<Gtk::TargetEntry> targets;
4114        targets.push_back( Gtk::TargetEntry(CLIPBOARD_DIMENSIONREGION_TARGET) );
4115    
4116        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
4117        clipboard->set(
4118            targets,
4119            sigc::mem_fun(*this, &MainWindow::on_clipboard_get),
4120            sigc::mem_fun(*this, &MainWindow::on_clipboard_clear)
4121        );
4122    
4123        m_serializationArchive.serialize(pDimRgn);
4124    
4125        updateClipboardPasteAvailable();
4126    }
4127    
4128    void MainWindow::paste_copied_dimrgn() {
4129        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
4130        clipboard->request_contents(
4131            CLIPBOARD_DIMENSIONREGION_TARGET,
4132            sigc::mem_fun(*this, &MainWindow::on_clipboard_received)
4133        );
4134        updateClipboardPasteAvailable();
4135    }
4136    
4137    void MainWindow::adjust_clipboard_content() {
4138        MacroEditor* editor = new MacroEditor();
4139        editor->setMacro(&m_serializationArchive, true);
4140        editor->show();
4141    }
4142    
4143    void MainWindow::updateClipboardPasteAvailable() {
4144        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
4145        clipboard->request_targets(
4146            sigc::mem_fun(*this, &MainWindow::on_clipboard_received_targets)
4147        );
4148    }
4149    
4150    void MainWindow::updateClipboardCopyAvailable() {
4151        bool bDimensionRegionCopyIsPossible = m_DimRegionChooser.get_main_dimregion();
4152        static_cast<Gtk::MenuItem*>(
4153            uiManager->get_widget("/MenuBar/MenuEdit/CopyDimRgn")
4154        )->set_sensitive(bDimensionRegionCopyIsPossible);
4155    }
4156    
4157    void MainWindow::on_clipboard_owner_change(GdkEventOwnerChange* event) {
4158        updateClipboardPasteAvailable();
4159    }
4160    
4161    void MainWindow::on_clipboard_get(Gtk::SelectionData& selection_data, guint /*info*/) {
4162        const std::string target = selection_data.get_target();
4163        if (target == CLIPBOARD_DIMENSIONREGION_TARGET) {
4164            selection_data.set(
4165                CLIPBOARD_DIMENSIONREGION_TARGET, 8 /* "format": probably unused*/,
4166                &m_serializationArchive.rawData()[0],
4167                m_serializationArchive.rawData().size()
4168            );
4169        } else {
4170            std::cerr << "Clipboard: content for unknown target '" << target << "' requested\n";
4171        }
4172    }
4173    
4174    void MainWindow::on_clipboard_clear() {
4175        m_serializationArchive.clear();
4176        updateClipboardPasteAvailable();
4177        updateClipboardCopyAvailable();
4178    }
4179    
4180    //NOTE: Might throw exception !!!
4181    void MainWindow::applyMacro(Serialization::Archive& macro) {
4182        gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
4183        if (!pDimRgn) return;
4184    
4185        for (std::set<gig::DimensionRegion*>::iterator itDimReg = dimreg_edit.dimregs.begin();
4186             itDimReg != dimreg_edit.dimregs.end(); ++itDimReg)
4187        {
4188            gig::DimensionRegion* pDimRgn = *itDimReg;
4189            DimRegionChangeGuard(this, pDimRgn);
4190            macro.deserialize(pDimRgn);
4191        }
4192        //region_changed()
4193        file_changed();
4194        dimreg_changed();
4195    }
4196    
4197    void MainWindow::on_clipboard_received(const Gtk::SelectionData& selection_data) {
4198        const std::string target = selection_data.get_target();
4199        if (target == CLIPBOARD_DIMENSIONREGION_TARGET) {
4200            Glib::ustring errorText;
4201            try {
4202                m_serializationArchive.decode(
4203                    selection_data.get_data(), selection_data.get_length()
4204                );
4205                applyMacro(m_serializationArchive);
4206            } catch (Serialization::Exception e) {
4207                errorText = e.Message;
4208            } catch (...) {
4209                errorText = _("Unknown exception while pasting DimensionRegion");
4210            }
4211            if (!errorText.empty()) {
4212                Glib::ustring txt = _("Pasting DimensionRegion failed:\n") + errorText;
4213                Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
4214                msg.run();
4215            }
4216        }
4217    }
4218    
4219    void MainWindow::on_clipboard_received_targets(const std::vector<Glib::ustring>& targets) {
4220        const bool bDimensionRegionPasteIsPossible =
4221            std::find(targets.begin(), targets.end(),
4222                      CLIPBOARD_DIMENSIONREGION_TARGET) != targets.end();
4223    
4224        static_cast<Gtk::MenuItem*>(
4225            uiManager->get_widget("/MenuBar/MenuEdit/PasteDimRgn")
4226        )->set_sensitive(bDimensionRegionPasteIsPossible);
4227    
4228        static_cast<Gtk::MenuItem*>(
4229            uiManager->get_widget("/MenuBar/MenuEdit/AdjustClipboard")
4230        )->set_sensitive(bDimensionRegionPasteIsPossible);
4231    }
4232    
4233  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {
4234      return file_structure_to_be_changed_signal;      return file_structure_to_be_changed_signal;
4235  }  }

Legend:
Removed from v.3106  
changed lines
  Added in v.3340

  ViewVC Help
Powered by ViewVC