/[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 2442 by persson, Sun Apr 14 07:29:59 2013 UTC revision 2550 by schoenebeck, Wed May 14 01:31:30 2014 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006-2013 Andreas Persson   * Copyright (C) 2006-2014 Andreas Persson
3   *   *
4   * This program is free software; you can redistribute it and/or   * This program is free software; you can redistribute it and/or
5   * modify it under the terms of the GNU General Public License as   * modify it under the terms of the GNU General Public License as
# Line 42  Line 42 
42  #include <sndfile.h>  #include <sndfile.h>
43    
44  #include "mainwindow.h"  #include "mainwindow.h"
45    #include "Settings.h"
46    #include "CombineInstrumentsDialog.h"
47  #include "../../gfx/status_attached.xpm"  #include "../../gfx/status_attached.xpm"
48  #include "../../gfx/status_detached.xpm"  #include "../../gfx/status_detached.xpm"
49    
# Line 89  MainWindow::MainWindow() : Line 90  MainWindow::MainWindow() :
90      dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);      dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);
91      m_HPaned.add2(dimreg_vbox);      m_HPaned.add2(dimreg_vbox);
92    
93        dimreg_label.set_tooltip_text(_("To automatically apply your changes above globally to the entire instrument, check all 3 check boxes on the right."));
94        dimreg_all_regions.set_tooltip_text(_("If checked: all changes you perform above will automatically be applied to all regions of this instrument as well."));
95        dimreg_all_dimregs.set_tooltip_text(_("If checked: all changes you perform above will automatically be applied as well to all dimension splits of the region selected below."));
96        dimreg_stereo.set_tooltip_text(_("If checked: all changes you perform above will automatically be applied to both audio channel splits (only if a \"stereo\" dimension is defined below)."));
97    
98      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));
99      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));
# Line 123  MainWindow::MainWindow() : Line 128  MainWindow::MainWindow() :
128                                           Gtk::Stock::PROPERTIES),                                           Gtk::Stock::PROPERTIES),
129                       sigc::mem_fun(                       sigc::mem_fun(
130                           *this, &MainWindow::show_instr_props));                           *this, &MainWindow::show_instr_props));
131        actionGroup->add(Gtk::Action::create("MidiRules",
132                                             _("_Midi Rules")),
133                         sigc::mem_fun(
134                             *this, &MainWindow::show_midi_rules));
135      actionGroup->add(Gtk::Action::create("Quit", Gtk::Stock::QUIT),      actionGroup->add(Gtk::Action::create("Quit", Gtk::Stock::QUIT),
136                       sigc::mem_fun(                       sigc::mem_fun(
137                           *this, &MainWindow::on_action_quit));                           *this, &MainWindow::on_action_quit));
138      actionGroup->add(Gtk::Action::create("MenuInstrument", _("_Instrument")));      actionGroup->add(Gtk::Action::create("MenuInstrument", _("_Instrument")));
139    
140      actionGroup->add(Gtk::Action::create("MenuView", _("_View")));  
141        actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));
142    
143      Glib::RefPtr<Gtk::ToggleAction> toggle_action =      Glib::RefPtr<Gtk::ToggleAction> toggle_action =
144            Gtk::ToggleAction::create("CopySampleUnity", _("Copy Sample's _Unity Note"));
145        toggle_action->set_active(true);
146        actionGroup->add(toggle_action);
147    
148        toggle_action =
149            Gtk::ToggleAction::create("CopySampleTune", _("Copy Sample's _Fine Tune"));
150        toggle_action->set_active(true);
151        actionGroup->add(toggle_action);
152    
153        toggle_action =
154            Gtk::ToggleAction::create("CopySampleLoop", _("Copy Sample's _Loop Points"));
155        toggle_action->set_active(true);
156        actionGroup->add(toggle_action);
157    
158    
159        actionGroup->add(Gtk::Action::create("MenuView", _("_View")));
160        toggle_action =
161          Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));          Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));
162      toggle_action->set_active(true);      toggle_action->set_active(true);
163      actionGroup->add(toggle_action,      actionGroup->add(toggle_action,
# Line 155  MainWindow::MainWindow() : Line 183  MainWindow::MainWindow() :
183          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
184      );      );
185    
186    
187        actionGroup->add(Gtk::Action::create("MenuSettings", _("_Settings")));
188        
189        toggle_action =
190            Gtk::ToggleAction::create("WarnUserOnExtensions", _("Show warning on format _extensions"));
191        toggle_action->set_active(Settings::singleton()->warnUserOnExtensions);
192        actionGroup->add(
193            toggle_action,
194            sigc::mem_fun(*this, &MainWindow::on_action_warn_user_on_extensions)
195        );
196    
197    
198        actionGroup->add(Gtk::Action::create("MenuTools", _("_Tools")));
199    
200        actionGroup->add(
201            Gtk::Action::create("CombineInstruments", _("_Combine Instruments...")),
202            sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
203        );
204    
205    
206      // sample right-click popup actions      // sample right-click popup actions
207      actionGroup->add(      actionGroup->add(
208          Gtk::Action::create("SampleProperties", Gtk::Stock::PROPERTIES),          Gtk::Action::create("SampleProperties", Gtk::Stock::PROPERTIES),
# Line 196  MainWindow::MainWindow() : Line 244  MainWindow::MainWindow() :
244          "      <separator/>"          "      <separator/>"
245          "      <menuitem action='Quit'/>"          "      <menuitem action='Quit'/>"
246          "    </menu>"          "    </menu>"
247            "    <menu action='MenuEdit'>"
248            "      <menuitem action='CopySampleUnity'/>"
249            "      <menuitem action='CopySampleTune'/>"
250            "      <menuitem action='CopySampleLoop'/>"
251            "    </menu>"
252          "    <menu action='MenuInstrument'>"          "    <menu action='MenuInstrument'>"
253          "    </menu>"          "    </menu>"
254          "    <menu action='MenuView'>"          "    <menu action='MenuView'>"
255          "      <menuitem action='Statusbar'/>"          "      <menuitem action='Statusbar'/>"
256          "    </menu>"          "    </menu>"
257            "    <menu action='MenuTools'>"
258            "      <menuitem action='CombineInstruments'/>"
259            "    </menu>"
260            "    <menu action='MenuSettings'>"
261            "      <menuitem action='WarnUserOnExtensions'/>"
262            "    </menu>"
263          "    <menu action='MenuHelp'>"          "    <menu action='MenuHelp'>"
264          "      <menuitem action='About'/>"          "      <menuitem action='About'/>"
265          "    </menu>"          "    </menu>"
266          "  </menubar>"          "  </menubar>"
267          "  <popup name='PopupMenu'>"          "  <popup name='PopupMenu'>"
268          "    <menuitem action='InstrProperties'/>"          "    <menuitem action='InstrProperties'/>"
269            "    <menuitem action='MidiRules'/>"
270          "    <menuitem action='AddInstrument'/>"          "    <menuitem action='AddInstrument'/>"
271          "    <menuitem action='DupInstrument'/>"          "    <menuitem action='DupInstrument'/>"
272          "    <separator/>"          "    <separator/>"
# Line 224  MainWindow::MainWindow() : Line 284  MainWindow::MainWindow() :
284      uiManager->add_ui_from_string(ui_info);      uiManager->add_ui_from_string(ui_info);
285    
286      popup_menu = dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/PopupMenu"));      popup_menu = dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/PopupMenu"));
287        
288        // Set tooltips for menu items (for some reason, setting a tooltip on the
289        // respective Gtk::Action objects above will simply be ignored, no matter
290        // if using Gtk::Action::set_tooltip() or passing the tooltip string on
291        // Gtk::Action::create()).
292        {
293            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
294                uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
295            item->set_tooltip_text(_("Used when dragging a sample to a region's sample reference field. You may disable this for example if you want to replace an existing sample in a region with a new sample, but don't want that the region's current unity note setting will be altered by this action."));
296        }
297        {
298            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
299                uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));
300            item->set_tooltip_text(_("Used when dragging a sample to a region's sample reference field. You may disable this for example if you want to replace an existing sample in a region with a new sample, but don't want that the region's current sample playback tuning will be altered by this action."));
301        }
302        {
303            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
304                uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
305            item->set_tooltip_text(_("Used when dragging a sample to a region's sample reference field. You may disable this for example if you want to replace an existing sample in a region with a new sample, but don't want that the region's current loop informations to be altered by this action."));
306        }
307        {
308            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
309                uiManager->get_widget("/MenuBar/MenuSettings/WarnUserOnExtensions"));
310            item->set_tooltip_text(_("If checked, a warning will be shown whenever you try to use a feature which is based on a LinuxSampler extension ontop of the original gig format, which would not work with the Gigasampler/GigaStudio application."));
311        }
312    
313      instrument_menu = static_cast<Gtk::MenuItem*>(      instrument_menu = static_cast<Gtk::MenuItem*>(
314          uiManager->get_widget("/MenuBar/MenuInstrument"))->get_submenu();          uiManager->get_widget("/MenuBar/MenuInstrument"))->get_submenu();
# Line 252  MainWindow::MainWindow() : Line 337  MainWindow::MainWindow() :
337      // Create the Tree model:      // Create the Tree model:
338      m_refTreeModel = Gtk::ListStore::create(m_Columns);      m_refTreeModel = Gtk::ListStore::create(m_Columns);
339      m_TreeView.set_model(m_refTreeModel);      m_TreeView.set_model(m_refTreeModel);
340        m_TreeView.set_tooltip_text(_("Right click here for actions on instruments & MIDI Rules."));
341      instrument_name_connection = m_refTreeModel->signal_row_changed().connect(      instrument_name_connection = m_refTreeModel->signal_row_changed().connect(
342          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)
343      );      );
# Line 263  MainWindow::MainWindow() : Line 349  MainWindow::MainWindow() :
349      // create samples treeview (including its data model)      // create samples treeview (including its data model)
350      m_refSamplesTreeModel = SamplesTreeStore::create(m_SamplesModel);      m_refSamplesTreeModel = SamplesTreeStore::create(m_SamplesModel);
351      m_TreeViewSamples.set_model(m_refSamplesTreeModel);      m_TreeViewSamples.set_model(m_refSamplesTreeModel);
352        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."));
353      // m_TreeViewSamples.set_reorderable();      // m_TreeViewSamples.set_reorderable();
354      m_TreeViewSamples.append_column_editable("Samples", m_SamplesModel.m_col_name);      m_TreeViewSamples.append_column_editable("Samples", m_SamplesModel.m_col_name);
355      m_TreeViewSamples.set_headers_visible(false);      m_TreeViewSamples.set_headers_visible(false);
# Line 297  MainWindow::MainWindow() : Line 384  MainWindow::MainWindow() :
384          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
385      propDialog.signal_changed().connect(      propDialog.signal_changed().connect(
386          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
387        midiRules.signal_changed().connect(
388            sigc::mem_fun(*this, &MainWindow::file_changed));
389    
390      dimreg_edit.signal_dimreg_to_be_changed().connect(      dimreg_edit.signal_dimreg_to_be_changed().connect(
391          dimreg_to_be_changed_signal.make_slot());          dimreg_to_be_changed_signal.make_slot());
# Line 345  MainWindow::MainWindow() : Line 434  MainWindow::MainWindow() :
434    
435      // start with a new gig file by default      // start with a new gig file by default
436      on_action_file_new();      on_action_file_new();
437    
438        // select 'Instruments' tab by default
439        // (gtk allows this only if the tab childs are visible, thats why it's here)
440        m_TreeViewNotebook.set_current_page(1);
441  }  }
442    
443  MainWindow::~MainWindow()  MainWindow::~MainWindow()
# Line 545  void MainWindow::on_action_file_new() Line 638  void MainWindow::on_action_file_new()
638      gig::File* pFile = new gig::File;      gig::File* pFile = new gig::File;
639      // already add one new instrument by default      // already add one new instrument by default
640      gig::Instrument* pInstrument = pFile->AddInstrument();      gig::Instrument* pInstrument = pFile->AddInstrument();
641      pInstrument->pInfo->Name = _("Unnamed Instrument");      pInstrument->pInfo->Name = gig_from_utf8(_("Unnamed Instrument"));
642      // update GUI with that new gig::File      // update GUI with that new gig::File
643      load_gig(pFile, 0 /*no file name yet*/);      load_gig(pFile, 0 /*no file name yet*/);
644  }  }
# Line 897  void MainWindow::on_action_file_properti Line 990  void MainWindow::on_action_file_properti
990      propDialog.deiconify();      propDialog.deiconify();
991  }  }
992    
993    void MainWindow::on_action_warn_user_on_extensions() {
994        Settings::singleton()->warnUserOnExtensions =
995            !Settings::singleton()->warnUserOnExtensions;
996    }
997    
998  void MainWindow::on_action_help_about()  void MainWindow::on_action_help_about()
999  {  {
1000      Gtk::AboutDialog dialog;      Gtk::AboutDialog dialog;
# Line 906  void MainWindow::on_action_help_about() Line 1004  void MainWindow::on_action_help_about()
1004      dialog.set_name("Gigedit");      dialog.set_name("Gigedit");
1005  #endif  #endif
1006      dialog.set_version(VERSION);      dialog.set_version(VERSION);
1007      dialog.set_copyright("Copyright (C) 2006-2013 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2014 Andreas Persson");
1008      dialog.set_comments(_(      const std::string sComment =
1009          "Released under the GNU General Public License.\n"          _("Built " __DATE__ "\nUsing ") +
1010          "\n"          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +
1011          "Please notice that this is still a very young instrument editor. "          _(
1012          "So better backup your Gigasampler files before editing them with "              "Gigedit is released under the GNU General Public License.\n"
1013          "this application.\n"              "\n"
1014          "\n"              "Please notice that this is still a very young instrument editor. "
1015          "Please report bugs to: http://bugs.linuxsampler.org")              "So better backup your Gigasampler files before editing them with "
1016      );              "this application.\n"
1017                "\n"
1018                "Please report bugs to: http://bugs.linuxsampler.org"
1019            );
1020        dialog.set_comments(sComment.c_str());
1021      dialog.set_website("http://www.linuxsampler.org");      dialog.set_website("http://www.linuxsampler.org");
1022      dialog.set_website_label("http://www.linuxsampler.org");      dialog.set_website_label("http://www.linuxsampler.org");
1023      dialog.run();      dialog.run();
# Line 1003  void PropDialog::set_info(DLS::Info* inf Line 1105  void PropDialog::set_info(DLS::Info* inf
1105  }  }
1106    
1107    
1108    void InstrumentProps::set_Name(const gig::String& name)
1109    {
1110        m->pInfo->Name = name;
1111    }
1112    
1113    void InstrumentProps::update_name()
1114    {
1115        update_model++;
1116        eName.set_value(m->pInfo->Name);
1117        update_model--;
1118    }
1119    
1120  void InstrumentProps::set_IsDrum(bool value)  void InstrumentProps::set_IsDrum(bool value)
1121  {  {
1122      m->IsDrum = value;      m->IsDrum = value;
# Line 1045  InstrumentProps::InstrumentProps() : Line 1159  InstrumentProps::InstrumentProps() :
1159            "\"keyswitching\" dimension")            "\"keyswitching\" dimension")
1160      );      );
1161    
1162        connect(eName, &InstrumentProps::set_Name);
1163      connect(eIsDrum, &InstrumentProps::set_IsDrum);      connect(eIsDrum, &InstrumentProps::set_IsDrum);
1164      connect(eMIDIBank, &InstrumentProps::set_MIDIBank);      connect(eMIDIBank, &InstrumentProps::set_MIDIBank);
1165      connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);      connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);
# Line 1057  InstrumentProps::InstrumentProps() : Line 1172  InstrumentProps::InstrumentProps() :
1172      connect(eDimensionKeyRangeLow, eDimensionKeyRangeHigh,      connect(eDimensionKeyRangeLow, eDimensionKeyRangeHigh,
1173              &gig::Instrument::DimensionKeyRange);              &gig::Instrument::DimensionKeyRange);
1174    
1175        eName.signal_value_changed().connect(sig_name_changed.make_slot());
1176    
1177      table.set_col_spacings(5);      table.set_col_spacings(5);
1178    
1179      table.add(eName);      table.add(eName);
# Line 1097  void InstrumentProps::set_instrument(gig Line 1214  void InstrumentProps::set_instrument(gig
1214      update(instrument);      update(instrument);
1215    
1216      update_model++;      update_model++;
1217        eName.set_value(instrument->pInfo->Name);
1218      eIsDrum.set_value(instrument->IsDrum);      eIsDrum.set_value(instrument->IsDrum);
1219      eMIDIBank.set_value(instrument->MIDIBank);      eMIDIBank.set_value(instrument->MIDIBank);
1220      eMIDIProgram.set_value(instrument->MIDIProgram);      eMIDIProgram.set_value(instrument->MIDIProgram);
# Line 1127  void MainWindow::load_gig(gig::File* gig Line 1245  void MainWindow::load_gig(gig::File* gig
1245      instrument_name_connection.block();      instrument_name_connection.block();
1246      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;
1247           instrument = gig->GetNextInstrument()) {           instrument = gig->GetNextInstrument()) {
1248          Glib::ustring name(instrument->pInfo->Name);          Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
1249    
1250          Gtk::TreeModel::iterator iter = m_refTreeModel->append();          Gtk::TreeModel::iterator iter = m_refTreeModel->append();
1251          Gtk::TreeModel::Row row = *iter;          Gtk::TreeModel::Row row = *iter;
# Line 1143  void MainWindow::load_gig(gig::File* gig Line 1261  void MainWindow::load_gig(gig::File* gig
1261          if (group->Name != "") {          if (group->Name != "") {
1262              Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();              Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();
1263              Gtk::TreeModel::Row rowGroup = *iterGroup;              Gtk::TreeModel::Row rowGroup = *iterGroup;
1264              rowGroup[m_SamplesModel.m_col_name]   = group->Name.c_str();              rowGroup[m_SamplesModel.m_col_name]   = gig_to_utf8(group->Name);
1265              rowGroup[m_SamplesModel.m_col_group]  = group;              rowGroup[m_SamplesModel.m_col_group]  = group;
1266              rowGroup[m_SamplesModel.m_col_sample] = NULL;              rowGroup[m_SamplesModel.m_col_sample] = NULL;
1267              for (gig::Sample* sample = group->GetFirstSample();              for (gig::Sample* sample = group->GetFirstSample();
# Line 1151  void MainWindow::load_gig(gig::File* gig Line 1269  void MainWindow::load_gig(gig::File* gig
1269                  Gtk::TreeModel::iterator iterSample =                  Gtk::TreeModel::iterator iterSample =
1270                      m_refSamplesTreeModel->append(rowGroup.children());                      m_refSamplesTreeModel->append(rowGroup.children());
1271                  Gtk::TreeModel::Row rowSample = *iterSample;                  Gtk::TreeModel::Row rowSample = *iterSample;
1272                  rowSample[m_SamplesModel.m_col_name]   = sample->pInfo->Name.c_str();                  rowSample[m_SamplesModel.m_col_name] =
1273                        gig_to_utf8(sample->pInfo->Name);
1274                  rowSample[m_SamplesModel.m_col_sample] = sample;                  rowSample[m_SamplesModel.m_col_sample] = sample;
1275                  rowSample[m_SamplesModel.m_col_group]  = NULL;                  rowSample[m_SamplesModel.m_col_group]  = NULL;
1276              }              }
# Line 1163  void MainWindow::load_gig(gig::File* gig Line 1282  void MainWindow::load_gig(gig::File* gig
1282      // select the first instrument      // select the first instrument
1283      m_TreeView.get_selection()->select(Gtk::TreePath("0"));      m_TreeView.get_selection()->select(Gtk::TreePath("0"));
1284    
1285        instr_props_set_instrument();
1286      gig::Instrument* instrument = get_instrument();      gig::Instrument* instrument = get_instrument();
1287      if (instrument) {      if (instrument) {
1288            midiRules.set_instrument(instrument);
1289        }
1290    }
1291    
1292    bool MainWindow::instr_props_set_instrument()
1293    {
1294        instrumentProps.signal_name_changed().clear();
1295    
1296        Gtk::TreeModel::const_iterator it =
1297            m_TreeView.get_selection()->get_selected();
1298        if (it) {
1299            Gtk::TreeModel::Row row = *it;
1300            gig::Instrument* instrument = row[m_Columns.m_col_instr];
1301    
1302          instrumentProps.set_instrument(instrument);          instrumentProps.set_instrument(instrument);
1303    
1304            // make sure instrument tree is updated when user changes the
1305            // instrument name in instrument properties window
1306            instrumentProps.signal_name_changed().connect(
1307                sigc::bind(
1308                    sigc::mem_fun(*this,
1309                                  &MainWindow::instr_name_changed_by_instr_props),
1310                    it));
1311        } else {
1312            instrumentProps.hide();
1313      }      }
1314        return it;
1315  }  }
1316    
1317  void MainWindow::show_instr_props()  void MainWindow::show_instr_props()
1318  {  {
1319      gig::Instrument* instrument = get_instrument();      if (instr_props_set_instrument()) {
     if (instrument)  
     {  
         instrumentProps.set_instrument(instrument);  
1320          instrumentProps.show();          instrumentProps.show();
1321          instrumentProps.deiconify();          instrumentProps.deiconify();
1322      }      }
1323  }  }
1324    
1325    void MainWindow::instr_name_changed_by_instr_props(Gtk::TreeModel::iterator& it)
1326    {
1327        Gtk::TreeModel::Row row = *it;
1328        Glib::ustring name = row[m_Columns.m_col_name];
1329    
1330        gig::Instrument* instrument = row[m_Columns.m_col_instr];
1331        Glib::ustring gigname(gig_to_utf8(instrument->pInfo->Name));
1332        if (gigname != name) {
1333            row[m_Columns.m_col_name] = gigname;
1334        }
1335    }
1336    
1337    void MainWindow::show_midi_rules()
1338    {
1339        if (gig::Instrument* instrument = get_instrument())
1340        {
1341            midiRules.set_instrument(instrument);
1342            midiRules.show();
1343            midiRules.deiconify();
1344        }
1345    }
1346    
1347  void MainWindow::on_action_view_status_bar() {  void MainWindow::on_action_view_status_bar() {
1348      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
1349          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));
# Line 1191  void MainWindow::on_action_view_status_b Line 1355  void MainWindow::on_action_view_status_b
1355      else                    m_StatusBar.hide();      else                    m_StatusBar.hide();
1356  }  }
1357    
1358    bool MainWindow::is_copy_samples_unity_note_enabled() const {
1359        Gtk::CheckMenuItem* item =
1360            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
1361        if (!item) {
1362            std::cerr << "/MenuBar/MenuEdit/CopySampleUnity == NULL\n";
1363            return true;
1364        }
1365        return item->get_active();
1366    }
1367    
1368    bool MainWindow::is_copy_samples_fine_tune_enabled() const {
1369        Gtk::CheckMenuItem* item =
1370            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));
1371        if (!item) {
1372            std::cerr << "/MenuBar/MenuEdit/CopySampleTune == NULL\n";
1373            return true;
1374        }
1375        return item->get_active();
1376    }
1377    
1378    bool MainWindow::is_copy_samples_loop_enabled() const {
1379        Gtk::CheckMenuItem* item =
1380            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
1381        if (!item) {
1382            std::cerr << "/MenuBar/MenuEdit/CopySampleLoop == NULL\n";
1383            return true;
1384        }
1385        return item->get_active();
1386    }
1387    
1388  void MainWindow::on_button_release(GdkEventButton* button)  void MainWindow::on_button_release(GdkEventButton* button)
1389  {  {
1390      if (button->type == GDK_2BUTTON_PRESS) {      if (button->type == GDK_2BUTTON_PRESS) {
1391          show_instr_props();          show_instr_props();
1392      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
1393            // gig v2 files have no midi rules
1394            static_cast<Gtk::MenuItem*>(
1395                uiManager->get_widget("/PopupMenu/MidiRules"))->set_sensitive(
1396                    !(file->pVersion && file->pVersion->major == 2));
1397          popup_menu->popup(button->button, button->time);          popup_menu->popup(button->button, button->time);
1398      }      }
1399  }  }
# Line 1276  void MainWindow::remove_instrument_from_ Line 1474  void MainWindow::remove_instrument_from_
1474  }  }
1475    
1476  void MainWindow::add_instrument(gig::Instrument* instrument) {  void MainWindow::add_instrument(gig::Instrument* instrument) {
1477      const char* name = instrument->pInfo->Name.c_str();      const Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
1478    
1479      // update instrument tree view      // update instrument tree view
1480      instrument_name_connection.block();      instrument_name_connection.block();
# Line 1298  void MainWindow::on_action_add_instrumen Line 1496  void MainWindow::on_action_add_instrumen
1496      if (!file) return;      if (!file) return;
1497      gig::Instrument* instrument = file->AddInstrument();      gig::Instrument* instrument = file->AddInstrument();
1498      __instrument_indexer++;      __instrument_indexer++;
1499      instrument->pInfo->Name =      instrument->pInfo->Name = gig_from_utf8(_("Unnamed Instrument ") +
1500          _("Unnamed Instrument ") + ToString(__instrument_indexer);                                              ToString(__instrument_indexer));
1501    
1502      add_instrument(instrument);      add_instrument(instrument);
1503  }  }
# Line 1319  void MainWindow::on_action_duplicate_ins Line 1517  void MainWindow::on_action_duplicate_ins
1517      // duplicate the orginal instrument      // duplicate the orginal instrument
1518      gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);      gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);
1519      instrNew->pInfo->Name =      instrNew->pInfo->Name =
1520          instrOrig->pInfo->Name + " (" + _("Copy") + ")";          instrOrig->pInfo->Name +
1521            gig_from_utf8(Glib::ustring(" (") + _("Copy") + ")");
1522    
1523      add_instrument(instrNew);      add_instrument(instrNew);
1524  }  }
# Line 1366  void MainWindow::on_action_remove_instru Line 1565  void MainWindow::on_action_remove_instru
1565                      Gtk::TreePath(ToString(index)));                      Gtk::TreePath(ToString(index)));
1566              }              }
1567  #endif  #endif
1568                instr_props_set_instrument();
1569              instr = get_instrument();              instr = get_instrument();
1570              if (instr) {              if (instr) {
1571                  instrumentProps.set_instrument(instr);                  midiRules.set_instrument(instr);
1572              } else {              } else {
1573                  instrumentProps.hide();                  midiRules.hide();
1574              }              }
1575          } catch (RIFF::Exception e) {          } catch (RIFF::Exception e) {
1576              Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);              Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
# Line 1391  void MainWindow::on_action_add_group() { Line 1591  void MainWindow::on_action_add_group() {
1591      static int __sample_indexer = 0;      static int __sample_indexer = 0;
1592      if (!file) return;      if (!file) return;
1593      gig::Group* group = file->AddGroup();      gig::Group* group = file->AddGroup();
1594      group->Name = _("Unnamed Group");      group->Name = gig_from_utf8(_("Unnamed Group"));
1595      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);
1596      __sample_indexer++;      __sample_indexer++;
1597      // update sample tree view      // update sample tree view
1598      Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();      Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();
1599      Gtk::TreeModel::Row rowGroup = *iterGroup;      Gtk::TreeModel::Row rowGroup = *iterGroup;
1600      rowGroup[m_SamplesModel.m_col_name] = group->Name.c_str();      rowGroup[m_SamplesModel.m_col_name] = gig_to_utf8(group->Name);
1601      rowGroup[m_SamplesModel.m_col_sample] = NULL;      rowGroup[m_SamplesModel.m_col_sample] = NULL;
1602      rowGroup[m_SamplesModel.m_col_group] = group;      rowGroup[m_SamplesModel.m_col_group] = group;
1603      file_changed();      file_changed();
# Line 1506  void MainWindow::on_action_add_sample() Line 1706  void MainWindow::on_action_add_sample()
1706                          break;                          break;
1707                      }                      }
1708                  }                  }
1709                  sample->pInfo->Name = filename;                  sample->pInfo->Name = gig_from_utf8(filename);
1710                  sample->Channels = info.channels;                  sample->Channels = info.channels;
1711                  sample->BitDepth = bitdepth;                  sample->BitDepth = bitdepth;
1712                  sample->FrameSize = bitdepth / 8/*1 byte are 8 bits*/ * info.channels;                  sample->FrameSize = bitdepth / 8/*1 byte are 8 bits*/ * info.channels;
# Line 1520  void MainWindow::on_action_add_sample() Line 1720  void MainWindow::on_action_add_sample()
1720                                 &instrument, sizeof(instrument)) != SF_FALSE)                                 &instrument, sizeof(instrument)) != SF_FALSE)
1721                  {                  {
1722                      sample->MIDIUnityNote = instrument.basenote;                      sample->MIDIUnityNote = instrument.basenote;
1723                        sample->FineTune      = instrument.detune;
1724    
1725                      if (instrument.loop_count && instrument.loops[0].mode != SF_LOOP_NONE) {                      if (instrument.loop_count && instrument.loops[0].mode != SF_LOOP_NONE) {
1726                          sample->Loops = 1;                          sample->Loops = 1;
# Line 1557  void MainWindow::on_action_add_sample() Line 1758  void MainWindow::on_action_add_sample()
1758                  Gtk::TreeModel::iterator iterSample =                  Gtk::TreeModel::iterator iterSample =
1759                      m_refSamplesTreeModel->append(row.children());                      m_refSamplesTreeModel->append(row.children());
1760                  Gtk::TreeModel::Row rowSample = *iterSample;                  Gtk::TreeModel::Row rowSample = *iterSample;
1761                  rowSample[m_SamplesModel.m_col_name]   = filename;                  rowSample[m_SamplesModel.m_col_name] =
1762                        gig_to_utf8(sample->pInfo->Name);
1763                  rowSample[m_SamplesModel.m_col_sample] = sample;                  rowSample[m_SamplesModel.m_col_sample] = sample;
1764                  rowSample[m_SamplesModel.m_col_group]  = NULL;                  rowSample[m_SamplesModel.m_col_group]  = NULL;
1765                  // close sound file                  // close sound file
# Line 1628  void MainWindow::on_action_replace_all_s Line 1830  void MainWindow::on_action_replace_all_s
1830               sample; sample = file->GetNextSample())               sample; sample = file->GetNextSample())
1831          {          {
1832              std::string filename =              std::string filename =
1833                  folder + G_DIR_SEPARATOR_S + sample->pInfo->Name +                  folder + G_DIR_SEPARATOR_S +
1834                  postfixEntryBox.get_text().raw();                  Glib::filename_from_utf8(gig_to_utf8(sample->pInfo->Name) +
1835                                             postfixEntryBox.get_text());
1836              SF_INFO info;              SF_INFO info;
1837              info.format = 0;              info.format = 0;
1838              SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);              SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);
# Line 1663  void MainWindow::on_action_replace_all_s Line 1866  void MainWindow::on_action_replace_all_s
1866              catch (std::string what)              catch (std::string what)
1867              {              {
1868                  if (!error_files.empty()) error_files += "\n";                  if (!error_files.empty()) error_files += "\n";
1869                      error_files += filename += " (" + what + ")";                  error_files += Glib::filename_to_utf8(filename) +
1870                        " (" + what + ")";
1871              }              }
1872          }          }
1873          // show error message box when some file(s) could not be opened / added          // show error message box when some file(s) could not be opened / added
# Line 1688  void MainWindow::on_action_remove_sample Line 1892  void MainWindow::on_action_remove_sample
1892          try {          try {
1893              // remove group or sample from the gig file              // remove group or sample from the gig file
1894              if (group) {              if (group) {
1895                  // temporarily remember the samples that bolong to                  // temporarily remember the samples that belong to
1896                  // that group (we need that to clean the queue)                  // that group (we need that to clean the queue)
1897                  std::list<gig::Sample*> members;                  std::list<gig::Sample*> members;
1898                  for (gig::Sample* pSample = group->GetFirstSample();                  for (gig::Sample* pSample = group->GetFirstSample();
# Line 1810  void MainWindow::on_sample_label_drop_dr Line 2014  void MainWindow::on_sample_label_drop_dr
2014          bool channels_changed = false;          bool channels_changed = false;
2015          if (sample->Channels == 1 && stereo_dimension) {          if (sample->Channels == 1 && stereo_dimension) {
2016              // remove the samplechannel dimension              // remove the samplechannel dimension
2017    /* commented out, because it makes it impossible building up an instrument from scratch using two separate L/R samples
2018              region->DeleteDimension(stereo_dimension);              region->DeleteDimension(stereo_dimension);
2019              channels_changed = true;              channels_changed = true;
2020              region_changed();              region_changed();
2021    */
2022          }          }
2023          dimreg_edit.set_sample(sample);          dimreg_edit.set_sample(
2024                sample,
2025                is_copy_samples_unity_note_enabled(),
2026                is_copy_samples_fine_tune_enabled(),
2027                is_copy_samples_loop_enabled()
2028            );
2029    
2030          if (sample->Channels == 2 && !stereo_dimension) {          if (sample->Channels == 2 && !stereo_dimension) {
2031              // add samplechannel dimension              // add samplechannel dimension
# Line 1857  void MainWindow::sample_name_changed(con Line 2068  void MainWindow::sample_name_changed(con
2068      Glib::ustring name  = row[m_SamplesModel.m_col_name];      Glib::ustring name  = row[m_SamplesModel.m_col_name];
2069      gig::Group* group   = row[m_SamplesModel.m_col_group];      gig::Group* group   = row[m_SamplesModel.m_col_group];
2070      gig::Sample* sample = row[m_SamplesModel.m_col_sample];      gig::Sample* sample = row[m_SamplesModel.m_col_sample];
2071        gig::String gigname(gig_from_utf8(name));
2072      if (group) {      if (group) {
2073          if (group->Name != name) {          if (group->Name != gigname) {
2074              group->Name = name;              group->Name = gigname;
2075              printf("group name changed\n");              printf("group name changed\n");
2076              file_changed();              file_changed();
2077          }          }
2078      } else if (sample) {      } else if (sample) {
2079          if (sample->pInfo->Name != name.raw()) {          if (sample->pInfo->Name != gigname) {
2080              sample->pInfo->Name = name.raw();              sample->pInfo->Name = gigname;
2081              printf("sample name changed\n");              printf("sample name changed\n");
2082              file_changed();              file_changed();
2083          }          }
# Line 1893  void MainWindow::instrument_name_changed Line 2105  void MainWindow::instrument_name_changed
2105    
2106      // change name in gig      // change name in gig
2107      gig::Instrument* instrument = row[m_Columns.m_col_instr];      gig::Instrument* instrument = row[m_Columns.m_col_instr];
2108      if (instrument && instrument->pInfo->Name != name.raw()) {      gig::String gigname(gig_from_utf8(name));
2109          instrument->pInfo->Name = name.raw();      if (instrument && instrument->pInfo->Name != gigname) {
2110            instrument->pInfo->Name = gigname;
2111    
2112            // change name in the instrument properties window
2113            if (instrumentProps.get_instrument() == instrument) {
2114                instrumentProps.update_name();
2115            }
2116    
2117          file_changed();          file_changed();
2118      }      }
2119  }  }
2120    
2121    void MainWindow::on_action_combine_instruments() {
2122        CombineInstrumentsDialog* d = new CombineInstrumentsDialog(*this, file);
2123        d->show_all();
2124        d->resize(500, 400);
2125        d->run();
2126        if (d->fileWasChanged()) {
2127            // update GUI with new instrument just created
2128            add_instrument(d->newCombinedInstrument());
2129        }
2130        delete d;
2131    }
2132    
2133  void MainWindow::set_file_is_shared(bool b) {  void MainWindow::set_file_is_shared(bool b) {
2134      this->file_is_shared = b;      this->file_is_shared = b;
2135    

Legend:
Removed from v.2442  
changed lines
  Added in v.2550

  ViewVC Help
Powered by ViewVC