/[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 2566 by schoenebeck, Tue May 20 14:35:36 2014 UTC revision 2625 by schoenebeck, Wed Jun 11 21:22:24 2014 UTC
# Line 45  Line 45 
45  #include "mainwindow.h"  #include "mainwindow.h"
46  #include "Settings.h"  #include "Settings.h"
47  #include "CombineInstrumentsDialog.h"  #include "CombineInstrumentsDialog.h"
48    #include "scripteditor.h"
49    #include "scriptslots.h"
50    #include "ReferencesView.h"
51  #include "../../gfx/status_attached.xpm"  #include "../../gfx/status_attached.xpm"
52  #include "../../gfx/status_detached.xpm"  #include "../../gfx/status_detached.xpm"
53    
# Line 78  MainWindow::MainWindow() : Line 81  MainWindow::MainWindow() :
81      m_ScrolledWindowSamples.add(m_TreeViewSamples);      m_ScrolledWindowSamples.add(m_TreeViewSamples);
82      m_ScrolledWindowSamples.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);      m_ScrolledWindowSamples.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
83    
84        m_ScrolledWindowScripts.add(m_TreeViewScripts);
85        m_ScrolledWindowScripts.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
86    
87    
88      m_TreeViewNotebook.set_size_request(300);      m_TreeViewNotebook.set_size_request(300);
89    
# Line 98  MainWindow::MainWindow() : Line 104  MainWindow::MainWindow() :
104    
105      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));
106      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));
107        m_TreeViewNotebook.append_page(m_ScrolledWindowScripts, _("Scripts"));
108    
109      actionGroup = Gtk::ActionGroup::create();      actionGroup = Gtk::ActionGroup::create();
110    
# Line 130  MainWindow::MainWindow() : Line 136  MainWindow::MainWindow() :
136                       sigc::mem_fun(                       sigc::mem_fun(
137                           *this, &MainWindow::show_instr_props));                           *this, &MainWindow::show_instr_props));
138      actionGroup->add(Gtk::Action::create("MidiRules",      actionGroup->add(Gtk::Action::create("MidiRules",
139                                           _("_Midi Rules")),                                           _("_Midi Rules...")),
140                       sigc::mem_fun(                       sigc::mem_fun(
141                           *this, &MainWindow::show_midi_rules));                           *this, &MainWindow::show_midi_rules));
142        actionGroup->add(Gtk::Action::create("ScriptSlots",
143                                             _("_Script Slots...")),
144                         sigc::mem_fun(
145                             *this, &MainWindow::show_script_slots));
146      actionGroup->add(Gtk::Action::create("Quit", Gtk::Stock::QUIT),      actionGroup->add(Gtk::Action::create("Quit", Gtk::Stock::QUIT),
147                       sigc::mem_fun(                       sigc::mem_fun(
148                           *this, &MainWindow::on_action_quit));                           *this, &MainWindow::on_action_quit));
149      actionGroup->add(Gtk::Action::create("MenuInstrument", _("_Instrument")));      actionGroup->add(
150            Gtk::Action::create("MenuSample", _("_Sample")),
151            sigc::mem_fun(*this, &MainWindow::show_samples_tab)
152        );
153        actionGroup->add(
154            Gtk::Action::create("MenuInstrument", _("_Instrument")),
155            sigc::mem_fun(*this, &MainWindow::show_intruments_tab)
156        );
157        actionGroup->add(
158            Gtk::Action::create("MenuScript", _("S_cript")),
159            sigc::mem_fun(*this, &MainWindow::show_scripts_tab)
160        );
161        actionGroup->add(Gtk::Action::create("AllInstruments", _("_Select")));
162    
163      actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));      actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));
164    
# Line 227  MainWindow::MainWindow() : Line 248  MainWindow::MainWindow() :
248          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
249      );      );
250      actionGroup->add(      actionGroup->add(
251            Gtk::Action::create("ShowSampleRefs", _("Show References...")),
252            sigc::mem_fun(*this, &MainWindow::on_action_view_references)
253        );
254        actionGroup->add(
255          Gtk::Action::create("ReplaceAllSamplesInAllGroups",          Gtk::Action::create("ReplaceAllSamplesInAllGroups",
256                              _("Replace All Samples in All Groups...")),                              _("Replace All Samples in All Groups...")),
257          sigc::mem_fun(*this, &MainWindow::on_action_replace_all_samples_in_all_groups)          sigc::mem_fun(*this, &MainWindow::on_action_replace_all_samples_in_all_groups)
258      );      );
259        
260        // script right-click popup actions
261        actionGroup->add(
262            Gtk::Action::create("AddScriptGroup", _("Add _Group")),
263            sigc::mem_fun(*this, &MainWindow::on_action_add_script_group)
264        );
265        actionGroup->add(
266            Gtk::Action::create("AddScript", _("Add _Script")),
267            sigc::mem_fun(*this, &MainWindow::on_action_add_script)
268        );
269        actionGroup->add(
270            Gtk::Action::create("EditScript", _("_Edit Script...")),
271            sigc::mem_fun(*this, &MainWindow::on_action_edit_script)
272        );
273        actionGroup->add(
274            Gtk::Action::create("RemoveScript", Gtk::Stock::REMOVE),
275            sigc::mem_fun(*this, &MainWindow::on_action_remove_script)
276        );
277    
278      uiManager = Gtk::UIManager::create();      uiManager = Gtk::UIManager::create();
279      uiManager->insert_action_group(actionGroup);      uiManager->insert_action_group(actionGroup);
# Line 255  MainWindow::MainWindow() : Line 298  MainWindow::MainWindow() :
298          "      <menuitem action='CopySampleTune'/>"          "      <menuitem action='CopySampleTune'/>"
299          "      <menuitem action='CopySampleLoop'/>"          "      <menuitem action='CopySampleLoop'/>"
300          "    </menu>"          "    </menu>"
301            "    <menu action='MenuSample'>"
302            "      <menuitem action='SampleProperties'/>"
303            "      <menuitem action='AddGroup'/>"
304            "      <menuitem action='AddSample'/>"
305            "      <menuitem action='ShowSampleRefs'/>"
306            "      <menuitem action='ReplaceAllSamplesInAllGroups' />"
307            "      <separator/>"
308            "      <menuitem action='RemoveSample'/>"
309            "    </menu>"
310          "    <menu action='MenuInstrument'>"          "    <menu action='MenuInstrument'>"
311            "      <menu action='AllInstruments'>"
312            "      </menu>"
313            "      <separator/>"
314            "      <menuitem action='InstrProperties'/>"
315            "      <menuitem action='MidiRules'/>"
316            "      <menuitem action='ScriptSlots'/>"
317            "      <menuitem action='AddInstrument'/>"
318            "      <menuitem action='DupInstrument'/>"
319            "      <separator/>"
320            "      <menuitem action='RemoveInstrument'/>"
321            "    </menu>"
322            "    <menu action='MenuScript'>"
323            "      <menuitem action='AddScriptGroup'/>"
324            "      <menuitem action='AddScript'/>"
325            "      <menuitem action='EditScript'/>"
326            "      <separator/>"
327            "      <menuitem action='RemoveScript'/>"
328          "    </menu>"          "    </menu>"
329          "    <menu action='MenuView'>"          "    <menu action='MenuView'>"
330          "      <menuitem action='Statusbar'/>"          "      <menuitem action='Statusbar'/>"
# Line 274  MainWindow::MainWindow() : Line 343  MainWindow::MainWindow() :
343          "  <popup name='PopupMenu'>"          "  <popup name='PopupMenu'>"
344          "    <menuitem action='InstrProperties'/>"          "    <menuitem action='InstrProperties'/>"
345          "    <menuitem action='MidiRules'/>"          "    <menuitem action='MidiRules'/>"
346            "    <menuitem action='ScriptSlots'/>"
347          "    <menuitem action='AddInstrument'/>"          "    <menuitem action='AddInstrument'/>"
348          "    <menuitem action='DupInstrument'/>"          "    <menuitem action='DupInstrument'/>"
349          "    <separator/>"          "    <separator/>"
# Line 283  MainWindow::MainWindow() : Line 353  MainWindow::MainWindow() :
353          "    <menuitem action='SampleProperties'/>"          "    <menuitem action='SampleProperties'/>"
354          "    <menuitem action='AddGroup'/>"          "    <menuitem action='AddGroup'/>"
355          "    <menuitem action='AddSample'/>"          "    <menuitem action='AddSample'/>"
356            "    <menuitem action='ShowSampleRefs'/>"
357          "    <menuitem action='ReplaceAllSamplesInAllGroups' />"          "    <menuitem action='ReplaceAllSamplesInAllGroups' />"
358          "    <separator/>"          "    <separator/>"
359          "    <menuitem action='RemoveSample'/>"          "    <menuitem action='RemoveSample'/>"
360          "  </popup>"          "  </popup>"
361            "  <popup name='ScriptPopupMenu'>"
362            "    <menuitem action='AddScriptGroup'/>"
363            "    <menuitem action='AddScript'/>"
364            "    <menuitem action='EditScript'/>"
365            "    <separator/>"
366            "    <menuitem action='RemoveScript'/>"
367            "  </popup>"
368          "</ui>";          "</ui>";
369      uiManager->add_ui_from_string(ui_info);      uiManager->add_ui_from_string(ui_info);
370    
# Line 329  MainWindow::MainWindow() : Line 407  MainWindow::MainWindow() :
407    
408    
409      instrument_menu = static_cast<Gtk::MenuItem*>(      instrument_menu = static_cast<Gtk::MenuItem*>(
410          uiManager->get_widget("/MenuBar/MenuInstrument"))->get_submenu();          uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments"))->get_submenu();
411    
412      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");
413      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);
# Line 369  MainWindow::MainWindow() : Line 447  MainWindow::MainWindow() :
447      m_TreeViewSamples.set_model(m_refSamplesTreeModel);      m_TreeViewSamples.set_model(m_refSamplesTreeModel);
448      m_TreeViewSamples.set_tooltip_text(_("To actually use a sample, drag it from this list view to \"Sample\" -> \"Sample:\" on the region's settings pane on the right.\n\nRight click here for more actions on samples."));      m_TreeViewSamples.set_tooltip_text(_("To actually use a sample, drag it from this list view to \"Sample\" -> \"Sample:\" on the region's settings pane on the right.\n\nRight click here for more actions on samples."));
449      // m_TreeViewSamples.set_reorderable();      // m_TreeViewSamples.set_reorderable();
450      m_TreeViewSamples.append_column_editable("Samples", m_SamplesModel.m_col_name);      m_TreeViewSamples.append_column_editable(_("Name"), m_SamplesModel.m_col_name);
451      m_TreeViewSamples.set_headers_visible(false);      m_TreeViewSamples.append_column(_("Referenced"), m_SamplesModel.m_col_refcount);
452        {
453            Gtk::TreeViewColumn* column = m_TreeViewSamples.get_column(0);
454            Gtk::CellRendererText* cellrenderer =
455                dynamic_cast<Gtk::CellRendererText*>(column->get_first_cell_renderer());
456            column->add_attribute(
457                cellrenderer->property_foreground(), m_SamplesModel.m_color
458            );
459        }
460        {
461            Gtk::TreeViewColumn* column = m_TreeViewSamples.get_column(1);
462            Gtk::CellRendererText* cellrenderer =
463                dynamic_cast<Gtk::CellRendererText*>(column->get_first_cell_renderer());
464            column->add_attribute(
465                cellrenderer->property_foreground(), m_SamplesModel.m_color
466            );
467        }
468        m_TreeViewSamples.set_headers_visible(true);
469      m_TreeViewSamples.signal_button_press_event().connect_notify(      m_TreeViewSamples.signal_button_press_event().connect_notify(
470          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)
471      );      );
# Line 378  MainWindow::MainWindow() : Line 473  MainWindow::MainWindow() :
473          sigc::mem_fun(*this, &MainWindow::sample_name_changed)          sigc::mem_fun(*this, &MainWindow::sample_name_changed)
474      );      );
475    
476        // create scripts treeview (including its data model)
477        m_refScriptsTreeModel = ScriptsTreeStore::create(m_ScriptsModel);
478        m_TreeViewScripts.set_model(m_refScriptsTreeModel);
479        m_TreeViewScripts.set_tooltip_text(_(
480            "Note: instrument scripts are a LinuxSampler extension of the gig "
481            "format. This feature will not work with the GigaStudio software!"
482        ));
483        // m_TreeViewScripts.set_reorderable();
484        m_TreeViewScripts.append_column_editable("Samples", m_ScriptsModel.m_col_name);
485        m_TreeViewScripts.set_headers_visible(false);
486        m_TreeViewScripts.signal_button_press_event().connect_notify(
487            sigc::mem_fun(*this, &MainWindow::on_script_treeview_button_release)
488        );
489        m_refScriptsTreeModel->signal_row_changed().connect(
490            sigc::mem_fun(*this, &MainWindow::script_name_changed)
491        );
492    
493        // establish drag&drop between scripts tree view and ScriptSlots window
494        std::vector<Gtk::TargetEntry> drag_target_gig_script;
495        drag_target_gig_script.push_back(Gtk::TargetEntry("gig::Script"));
496        m_TreeViewScripts.drag_source_set(drag_target_gig_script);
497        m_TreeViewScripts.signal_drag_begin().connect(
498            sigc::mem_fun(*this, &MainWindow::on_scripts_treeview_drag_begin)
499        );
500        m_TreeViewScripts.signal_drag_data_get().connect(
501            sigc::mem_fun(*this, &MainWindow::on_scripts_treeview_drag_data_get)
502        );
503    
504      // establish drag&drop between samples tree view and dimension region 'Sample' text entry      // establish drag&drop between samples tree view and dimension region 'Sample' text entry
505      std::vector<Gtk::TargetEntry> drag_target_gig_sample;      std::vector<Gtk::TargetEntry> drag_target_gig_sample;
506      drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));      drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));
# Line 411  MainWindow::MainWindow() : Line 534  MainWindow::MainWindow() :
534          dimreg_changed_signal.make_slot());          dimreg_changed_signal.make_slot());
535      dimreg_edit.signal_sample_ref_changed().connect(      dimreg_edit.signal_sample_ref_changed().connect(
536          sample_ref_changed_signal.make_slot());          sample_ref_changed_signal.make_slot());
537        sample_ref_changed_signal.connect(
538            sigc::mem_fun(*this, &MainWindow::on_sample_ref_changed)
539        );
540        samples_to_be_removed_signal.connect(
541            sigc::mem_fun(*this, &MainWindow::on_samples_to_be_removed)
542        );
543    
544      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(
545          sigc::hide(          sigc::hide(
# Line 634  void MainWindow::__clear() { Line 763  void MainWindow::__clear() {
763      // clear the samples and instruments tree views      // clear the samples and instruments tree views
764      m_refTreeModel->clear();      m_refTreeModel->clear();
765      m_refSamplesTreeModel->clear();      m_refSamplesTreeModel->clear();
766        m_refScriptsTreeModel->clear();
767      // remove all entries from "Instrument" menu      // remove all entries from "Instrument" menu
768      while (!instrument_menu->get_children().empty()) {      while (!instrument_menu->get_children().empty()) {
769          remove_instrument_from_menu(0);          remove_instrument_from_menu(0);
# Line 648  void MainWindow::__refreshEntireGUI() { Line 778  void MainWindow::__refreshEntireGUI() {
778      // clear the samples and instruments tree views      // clear the samples and instruments tree views
779      m_refTreeModel->clear();      m_refTreeModel->clear();
780      m_refSamplesTreeModel->clear();      m_refSamplesTreeModel->clear();
781        m_refScriptsTreeModel->clear();
782      // remove all entries from "Instrument" menu      // remove all entries from "Instrument" menu
783      while (!instrument_menu->get_children().empty()) {      while (!instrument_menu->get_children().empty()) {
784          remove_instrument_from_menu(0);          remove_instrument_from_menu(0);
# Line 1154  void PropDialog::set_file(gig::File* fil Line 1285  void PropDialog::set_file(gig::File* fil
1285      }      }
1286      std::vector<const char*> texts;      std::vector<const char*> texts;
1287      for (int i = 0; i < txts.size(); ++i) texts.push_back(txts[i].c_str());      for (int i = 0; i < txts.size(); ++i) texts.push_back(txts[i].c_str());
1288      texts.push_back(NULL); values.push_back(NULL);      texts.push_back(NULL); values.push_back(0);
1289      eFileFormat.set_choices(&texts[0], &values[0]);      eFileFormat.set_choices(&texts[0], &values[0]);
1290      eFileFormat.set_value(major);      eFileFormat.set_value(major);
1291  }  }
# Line 1295  void MainWindow::file_changed() Line 1426  void MainWindow::file_changed()
1426      }      }
1427  }  }
1428    
1429    void MainWindow::updateSampleRefCountMap(gig::File* gig) {
1430        sample_ref_count.clear();
1431        
1432        if (!gig) return;
1433    
1434        for (gig::Instrument* instrument = gig->GetFirstInstrument(); instrument;
1435             instrument = gig->GetNextInstrument())
1436        {
1437            for (gig::Region* rgn = instrument->GetFirstRegion(); rgn;
1438                 rgn = instrument->GetNextRegion())
1439            {
1440                for (int i = 0; i < 256; ++i) {
1441                    if (!rgn->pDimensionRegions[i]) continue;
1442                    if (rgn->pDimensionRegions[i]->pSample) {
1443                        sample_ref_count[rgn->pDimensionRegions[i]->pSample]++;
1444                    }
1445                }
1446            }
1447        }
1448    }
1449    
1450  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)
1451  {  {
1452      file = 0;      file = 0;
# Line 1321  void MainWindow::load_gig(gig::File* gig Line 1473  void MainWindow::load_gig(gig::File* gig
1473          add_instrument_to_menu(name);          add_instrument_to_menu(name);
1474      }      }
1475      instrument_name_connection.unblock();      instrument_name_connection.unblock();
1476      uiManager->get_widget("/MenuBar/MenuInstrument")->show();      uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments")->show();
1477    
1478        updateSampleRefCountMap(gig);
1479    
1480      for (gig::Group* group = gig->GetFirstGroup(); group; group = gig->GetNextGroup()) {      for (gig::Group* group = gig->GetFirstGroup(); group; group = gig->GetNextGroup()) {
1481          if (group->Name != "") {          if (group->Name != "") {
# Line 1339  void MainWindow::load_gig(gig::File* gig Line 1493  void MainWindow::load_gig(gig::File* gig
1493                      gig_to_utf8(sample->pInfo->Name);                      gig_to_utf8(sample->pInfo->Name);
1494                  rowSample[m_SamplesModel.m_col_sample] = sample;                  rowSample[m_SamplesModel.m_col_sample] = sample;
1495                  rowSample[m_SamplesModel.m_col_group]  = NULL;                  rowSample[m_SamplesModel.m_col_group]  = NULL;
1496                    int refcount = sample_ref_count.count(sample) ? sample_ref_count[sample] : 0;
1497                    rowSample[m_SamplesModel.m_col_refcount] = ToString(refcount) + " " + _("Refs.");
1498                    rowSample[m_SamplesModel.m_color] = refcount ? "black" : "red";
1499              }              }
1500          }          }
1501      }      }
1502        
1503        for (int i = 0; gig->GetScriptGroup(i); ++i) {
1504            gig::ScriptGroup* group = gig->GetScriptGroup(i);
1505    
1506            Gtk::TreeModel::iterator iterGroup = m_refScriptsTreeModel->append();
1507            Gtk::TreeModel::Row rowGroup = *iterGroup;
1508            rowGroup[m_ScriptsModel.m_col_name]   = gig_to_utf8(group->Name);
1509            rowGroup[m_ScriptsModel.m_col_group]  = group;
1510            rowGroup[m_ScriptsModel.m_col_script] = NULL;
1511            for (int s = 0; group->GetScript(s); ++s) {
1512                gig::Script* script = group->GetScript(s);
1513    
1514                Gtk::TreeModel::iterator iterScript =
1515                    m_refScriptsTreeModel->append(rowGroup.children());
1516                Gtk::TreeModel::Row rowScript = *iterScript;
1517                rowScript[m_ScriptsModel.m_col_name] = gig_to_utf8(script->Name);
1518                rowScript[m_ScriptsModel.m_col_script] = script;
1519                rowScript[m_ScriptsModel.m_col_group]  = NULL;
1520            }
1521        }
1522        // unfold all sample groups & script groups by default
1523        m_TreeViewSamples.expand_all();
1524        m_TreeViewScripts.expand_all();
1525    
1526      file = gig;      file = gig;
1527    
# Line 1410  void MainWindow::show_midi_rules() Line 1590  void MainWindow::show_midi_rules()
1590      }      }
1591  }  }
1592    
1593    void MainWindow::show_script_slots() {
1594        if (!file) return;
1595        // get selected instrument
1596        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
1597        Gtk::TreeModel::iterator it = sel->get_selected();
1598        if (!it) return;
1599        Gtk::TreeModel::Row row = *it;
1600        gig::Instrument* instrument = row[m_Columns.m_col_instr];
1601        if (!instrument) return;
1602    
1603        ScriptSlots* window = new ScriptSlots;
1604        window->setInstrument(instrument);
1605        //window->reparent(*this);
1606        window->show();
1607    }
1608    
1609  void MainWindow::on_action_view_status_bar() {  void MainWindow::on_action_view_status_bar() {
1610      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
1611          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));
# Line 1457  void MainWindow::on_button_release(GdkEv Line 1653  void MainWindow::on_button_release(GdkEv
1653          show_instr_props();          show_instr_props();
1654      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
1655          // gig v2 files have no midi rules          // gig v2 files have no midi rules
1656            const bool bEnabled = !(file->pVersion && file->pVersion->major == 2);
1657            static_cast<Gtk::MenuItem*>(
1658                uiManager->get_widget("/MenuBar/MenuInstrument/MidiRules"))->set_sensitive(
1659                    bEnabled
1660                );
1661          static_cast<Gtk::MenuItem*>(          static_cast<Gtk::MenuItem*>(
1662              uiManager->get_widget("/PopupMenu/MidiRules"))->set_sensitive(              uiManager->get_widget("/PopupMenu/MidiRules"))->set_sensitive(
1663                  !(file->pVersion && file->pVersion->major == 2));                  bEnabled
1664                );
1665          popup_menu->popup(button->button, button->time);          popup_menu->popup(button->button, button->time);
1666      }      }
1667  }  }
# Line 1493  void MainWindow::on_sample_treeview_butt Line 1695  void MainWindow::on_sample_treeview_butt
1695              group_selected  = row[m_SamplesModel.m_col_group];              group_selected  = row[m_SamplesModel.m_col_group];
1696              sample_selected = row[m_SamplesModel.m_col_sample];              sample_selected = row[m_SamplesModel.m_col_sample];
1697          }          }
1698            
1699                
1700          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->
1701              set_sensitive(group_selected || sample_selected);              set_sensitive(group_selected || sample_selected);
1702          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->
1703              set_sensitive(group_selected || sample_selected);              set_sensitive(group_selected || sample_selected);
1704          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddGroup"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddGroup"))->
1705              set_sensitive(file);              set_sensitive(file);
1706            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/ShowSampleRefs"))->
1707                set_sensitive(sample_selected);
1708          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->
1709              set_sensitive(group_selected || sample_selected);              set_sensitive(group_selected || sample_selected);
1710          // show sample popup          // show sample popup
1711          sample_popup->popup(button->button, button->time);          sample_popup->popup(button->button, button->time);
1712    
1713            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/SampleProperties"))->
1714                set_sensitive(group_selected || sample_selected);
1715            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddSample"))->
1716                set_sensitive(group_selected || sample_selected);
1717            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddGroup"))->
1718                set_sensitive(file);
1719            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/ShowSampleRefs"))->
1720                set_sensitive(sample_selected);
1721            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/RemoveSample"))->
1722                set_sensitive(group_selected || sample_selected);
1723      }      }
1724  }  }
1725    
1726    void MainWindow::on_script_treeview_button_release(GdkEventButton* button) {
1727        if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
1728            Gtk::Menu* script_popup =
1729                dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/ScriptPopupMenu"));
1730            // update enabled/disabled state of sample popup items
1731            Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
1732            Gtk::TreeModel::iterator it = sel->get_selected();
1733            bool group_selected  = false;
1734            bool script_selected = false;
1735            if (it) {
1736                Gtk::TreeModel::Row row = *it;
1737                group_selected  = row[m_ScriptsModel.m_col_group];
1738                script_selected = row[m_ScriptsModel.m_col_script];
1739            }
1740            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScript"))->
1741                set_sensitive(group_selected || script_selected);
1742            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScriptGroup"))->
1743                set_sensitive(file);
1744            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/EditScript"))->
1745                set_sensitive(script_selected);    
1746            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/RemoveScript"))->
1747                set_sensitive(group_selected || script_selected);
1748            // show sample popup
1749            script_popup->popup(button->button, button->time);
1750    
1751            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScript"))->
1752                set_sensitive(group_selected || script_selected);
1753            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScriptGroup"))->
1754                set_sensitive(file);
1755            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/EditScript"))->
1756                set_sensitive(script_selected);    
1757            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/RemoveScript"))->
1758                set_sensitive(group_selected || script_selected);
1759        }
1760    }
1761    
1762  Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(  Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(
1763      const Glib::ustring& name, int position) {      const Glib::ustring& name, int position) {
# Line 1653  void MainWindow::on_action_sample_proper Line 1905  void MainWindow::on_action_sample_proper
1905      msg.run();      msg.run();
1906  }  }
1907    
1908    void MainWindow::on_action_add_script_group() {
1909        static int __script_indexer = 0;
1910        if (!file) return;
1911        gig::ScriptGroup* group = file->AddScriptGroup();
1912        group->Name = gig_from_utf8(_("Unnamed Group"));
1913        if (__script_indexer) group->Name += " " + ToString(__script_indexer);
1914        __script_indexer++;
1915        // update sample tree view
1916        Gtk::TreeModel::iterator iterGroup = m_refScriptsTreeModel->append();
1917        Gtk::TreeModel::Row rowGroup = *iterGroup;
1918        rowGroup[m_ScriptsModel.m_col_name] = gig_to_utf8(group->Name);
1919        rowGroup[m_ScriptsModel.m_col_script] = NULL;
1920        rowGroup[m_ScriptsModel.m_col_group] = group;
1921        file_changed();
1922    }
1923    
1924    void MainWindow::on_action_add_script() {
1925        if (!file) return;
1926        // get selected group
1927        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
1928        Gtk::TreeModel::iterator it = sel->get_selected();
1929        if (!it) return;
1930        Gtk::TreeModel::Row row = *it;
1931        gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
1932        if (!group) { // not a group, but a script is selected (probably)
1933            gig::Script* script = row[m_ScriptsModel.m_col_script];
1934            if (!script) return;
1935            it = row.parent(); // resolve parent (that is the script's group)
1936            if (!it) return;
1937            row = *it;
1938            group = row[m_ScriptsModel.m_col_group];
1939            if (!group) return;
1940        }
1941    
1942        // add a new script to the .gig file
1943        gig::Script* script = group->AddScript();    
1944        Glib::ustring name = _("Unnamed Script");
1945        script->Name = gig_from_utf8(name);
1946    
1947        // add script to the tree view
1948        Gtk::TreeModel::iterator iterScript =
1949            m_refScriptsTreeModel->append(row.children());
1950        Gtk::TreeModel::Row rowScript = *iterScript;
1951        rowScript[m_ScriptsModel.m_col_name] = name;
1952        rowScript[m_ScriptsModel.m_col_script] = script;
1953        rowScript[m_ScriptsModel.m_col_group]  = NULL;
1954    
1955        // unfold group of new script item in treeview
1956        Gtk::TreeModel::Path path(iterScript);
1957        m_TreeViewScripts.expand_to_path(path);
1958    }
1959    
1960    void MainWindow::on_action_edit_script() {
1961        if (!file) return;
1962        // get selected script
1963        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
1964        Gtk::TreeModel::iterator it = sel->get_selected();
1965        if (!it) return;
1966        Gtk::TreeModel::Row row = *it;
1967        gig::Script* script = row[m_ScriptsModel.m_col_script];
1968        if (!script) return;
1969    
1970        ScriptEditor* editor = new ScriptEditor;
1971        editor->setScript(script);
1972        //editor->reparent(*this);
1973        editor->show();
1974    }
1975    
1976    void MainWindow::on_action_remove_script() {
1977        if (!file) return;
1978        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
1979        Gtk::TreeModel::iterator it = sel->get_selected();
1980        if (it) {
1981            Gtk::TreeModel::Row row = *it;
1982            gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
1983            gig::Script* script     = row[m_ScriptsModel.m_col_script];
1984            Glib::ustring name      = row[m_ScriptsModel.m_col_name];
1985            try {
1986                // remove script group or script from the gig file
1987                if (group) {
1988                    // notify everybody that we're going to remove these samples
1989    //TODO:         scripts_to_be_removed_signal.emit(members);
1990                    // delete the group in the .gig file including the
1991                    // samples that belong to the group
1992                    file->DeleteScriptGroup(group);
1993                    // notify that we're done with removal
1994    //TODO:         scripts_removed_signal.emit();
1995                    file_changed();
1996                } else if (script) {
1997                    // notify everybody that we're going to remove this sample
1998    //TODO:         std::list<gig::Script*> lscripts;
1999    //TODO:         lscripts.push_back(script);
2000    //TODO:         scripts_to_be_removed_signal.emit(lscripts);
2001                    // remove sample from the .gig file
2002                    script->GetGroup()->DeleteScript(script);
2003                    // notify that we're done with removal
2004    //TODO:         scripts_removed_signal.emit();
2005                    dimreg_changed();
2006                    file_changed();
2007                }
2008                // remove respective row(s) from samples tree view
2009                m_refScriptsTreeModel->erase(it);
2010            } catch (RIFF::Exception e) {
2011                // pretend we're done with removal (i.e. to avoid dead locks)
2012    //TODO:     scripts_removed_signal.emit();
2013                // show error message
2014                Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
2015                msg.run();
2016            }
2017        }
2018    }
2019    
2020  void MainWindow::on_action_add_group() {  void MainWindow::on_action_add_group() {
2021      static int __sample_indexer = 0;      static int __sample_indexer = 0;
2022      if (!file) return;      if (!file) return;
# Line 2022  void MainWindow::on_action_remove_sample Line 2386  void MainWindow::on_action_remove_sample
2386      }      }
2387  }  }
2388    
2389    // see comment on on_sample_treeview_drag_begin()
2390    void MainWindow::on_scripts_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
2391    {
2392        first_call_to_drag_data_get = true;
2393    }
2394    
2395    void MainWindow::on_scripts_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
2396                                                       Gtk::SelectionData& selection_data, guint, guint)
2397    {
2398        if (!first_call_to_drag_data_get) return;
2399        first_call_to_drag_data_get = false;
2400    
2401        // get selected script
2402        gig::Script* script = NULL;
2403        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2404        Gtk::TreeModel::iterator it = sel->get_selected();
2405        if (it) {
2406            Gtk::TreeModel::Row row = *it;
2407            script = row[m_ScriptsModel.m_col_script];
2408        }
2409        // pass the gig::Script as pointer
2410        selection_data.set(selection_data.get_target(), 0/*unused*/,
2411                           (const guchar*)&script,
2412                           sizeof(script)/*length of data in bytes*/);
2413    }
2414    
2415  // For some reason drag_data_get gets called two times for each  // For some reason drag_data_get gets called two times for each
2416  // drag'n'drop (at least when target is an Entry). This work-around  // drag'n'drop (at least when target is an Entry). This work-around
2417  // makes sure the code in drag_data_get and drop_drag_data_received is  // makes sure the code in drag_data_get and drop_drag_data_received is
# Line 2150  void MainWindow::sample_name_changed(con Line 2540  void MainWindow::sample_name_changed(con
2540      }      }
2541  }  }
2542    
2543    void MainWindow::script_name_changed(const Gtk::TreeModel::Path& path,
2544                                         const Gtk::TreeModel::iterator& iter) {
2545        if (!iter) return;
2546        Gtk::TreeModel::Row row = *iter;
2547        Glib::ustring name      = row[m_ScriptsModel.m_col_name];
2548        gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
2549        gig::Script* script     = row[m_ScriptsModel.m_col_script];
2550        gig::String gigname(gig_from_utf8(name));
2551        if (group) {
2552            if (group->Name != gigname) {
2553                group->Name = gigname;
2554                printf("script group name changed\n");
2555                file_changed();
2556            }
2557        } else if (script) {
2558            if (script->Name != gigname) {
2559                script->Name = gigname;
2560                printf("script name changed\n");
2561                file_changed();
2562            }
2563        }
2564    }
2565    
2566  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,
2567                                           const Gtk::TreeModel::iterator& iter) {                                           const Gtk::TreeModel::iterator& iter) {
2568      if (!iter) return;      if (!iter) return;
# Line 2196  void MainWindow::on_action_combine_instr Line 2609  void MainWindow::on_action_combine_instr
2609      delete d;      delete d;
2610  }  }
2611    
2612    void MainWindow::on_action_view_references() {
2613        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
2614        Gtk::TreeModel::iterator it = sel->get_selected();
2615        if (!it) return;
2616        Gtk::TreeModel::Row row = *it;
2617        gig::Sample* sample = row[m_SamplesModel.m_col_sample];
2618        if (!sample) return;
2619    
2620        ReferencesView* d = new ReferencesView(*this);
2621        d->setSample(sample);
2622        d->show_all();
2623        d->resize(500, 400);
2624        d->run();
2625        delete d;
2626    }
2627    
2628  void MainWindow::mergeFiles(const std::vector<std::string>& filenames) {  void MainWindow::mergeFiles(const std::vector<std::string>& filenames) {
2629      struct _Source {      struct _Source {
2630          std::vector<RIFF::File*> riffs;          std::vector<RIFF::File*> riffs;
# Line 2356  void MainWindow::set_file_is_shared(bool Line 2785  void MainWindow::set_file_is_shared(bool
2785      }      }
2786  }  }
2787    
2788    void MainWindow::on_sample_ref_count_incremented(gig::Sample* sample, int offset) {
2789        if (!sample) return;
2790        sample_ref_count[sample] += offset;
2791        const int refcount = sample_ref_count[sample];
2792    
2793        Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewSamples.get_model();
2794        for (int g = 0; g < model->children().size(); ++g) {
2795            Gtk::TreeModel::Row rowGroup = model->children()[g];
2796            for (int s = 0; s < rowGroup.children().size(); ++s) {
2797                Gtk::TreeModel::Row rowSample = rowGroup.children()[s];
2798                if (rowSample[m_SamplesModel.m_col_sample] != sample) continue;
2799                rowSample[m_SamplesModel.m_col_refcount] = ToString(refcount) + " " + _("Refs.");
2800                rowSample[m_SamplesModel.m_color] = refcount ? "black" : "red";
2801            }
2802        }
2803    }
2804    
2805    void MainWindow::on_sample_ref_changed(gig::Sample* oldSample, gig::Sample* newSample) {
2806        on_sample_ref_count_incremented(oldSample, -1);
2807        on_sample_ref_count_incremented(newSample, +1);
2808    }
2809    
2810    void MainWindow::on_samples_to_be_removed(std::list<gig::Sample*> samples) {
2811        // just in case a new sample is added later with exactly the same memory
2812        // address, which would lead to incorrect refcount if not deleted here
2813        for (std::list<gig::Sample*>::const_iterator it = samples.begin();
2814             it != samples.end(); it != samples.end())
2815        {
2816            sample_ref_count.erase(*it);
2817        }
2818    }
2819    
2820    void MainWindow::show_samples_tab() {
2821        m_TreeViewNotebook.set_current_page(0);
2822    }
2823    
2824    void MainWindow::show_intruments_tab() {
2825        m_TreeViewNotebook.set_current_page(1);
2826    }
2827    
2828    void MainWindow::show_scripts_tab() {
2829        m_TreeViewNotebook.set_current_page(2);
2830    }
2831    
2832  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {
2833      return file_structure_to_be_changed_signal;      return file_structure_to_be_changed_signal;
2834  }  }

Legend:
Removed from v.2566  
changed lines
  Added in v.2625

  ViewVC Help
Powered by ViewVC