/[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 3409 by schoenebeck, Tue Jan 23 16:30:56 2018 UTC revision 3809 by schoenebeck, Fri Aug 14 11:35:58 2020 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006-2017 Andreas Persson   * Copyright (C) 2006-2020 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 21  Line 21 
21  #include <cstring>  #include <cstring>
22    
23  #include "compat.h"  #include "compat.h"
 // threads.h must be included first to be able to build with  
 // G_DISABLE_DEPRECATED  
 #if (GLIBMM_MAJOR_VERSION == 2 && GLIBMM_MINOR_VERSION == 31 && GLIBMM_MICRO_VERSION >= 2) || \  
     (GLIBMM_MAJOR_VERSION == 2 && GLIBMM_MINOR_VERSION > 31) || GLIBMM_MAJOR_VERSION > 2  
 #include <glibmm/threads.h>  
 #endif  
24    
25  #include <glibmm/convert.h>  #include <glibmm/convert.h>
26  #include <glibmm/dispatcher.h>  #include <glibmm/dispatcher.h>
# Line 102  MainWindow::MainWindow() : Line 96  MainWindow::MainWindow() :
96    
97      if (!Settings::singleton()->autoRestoreWindowDimension) {      if (!Settings::singleton()->autoRestoreWindowDimension) {
98  #if GTKMM_MAJOR_VERSION >= 3  #if GTKMM_MAJOR_VERSION >= 3
99          set_default_size(895, 600);          set_default_size(1010, -1);
100  #else  #else
101          set_default_size(800, 600);          set_default_size(915, -1);
102  #endif  #endif
103          set_position(Gtk::WIN_POS_CENTER);          set_position(Gtk::WIN_POS_CENTER);
104      }      }
# Line 112  MainWindow::MainWindow() : Line 106  MainWindow::MainWindow() :
106      add(m_VBox);      add(m_VBox);
107    
108      // Handle selection      // Handle selection
109      m_TreeView.get_selection()->signal_changed().connect(      m_TreeViewInstruments.get_selection()->signal_changed().connect(
110          sigc::mem_fun(*this, &MainWindow::on_sel_change));          sigc::mem_fun(*this, &MainWindow::on_sel_change));
111    
112      // m_TreeView.set_reorderable();      // m_TreeViewInstruments.set_reorderable();
113    
114  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
115      m_TreeView.signal_button_press_event().connect(      m_TreeViewInstruments.signal_button_press_event().connect(
116          sigc::mem_fun(*this, &MainWindow::on_button_release));          sigc::mem_fun(*this, &MainWindow::on_button_release));
117  #else  #else
118      m_TreeView.signal_button_press_event().connect_notify(      m_TreeViewInstruments.signal_button_press_event().connect_notify(
119          sigc::mem_fun(*this, &MainWindow::on_button_release));          sigc::mem_fun(*this, &MainWindow::on_button_release));
120  #endif  #endif
121    
122      // Add the TreeView tab, inside a ScrolledWindow, with the button underneath:      // Add the TreeView tab, inside a ScrolledWindow, with the button underneath:
123      m_ScrolledWindow.add(m_TreeView);      m_ScrolledWindow.add(m_TreeViewInstruments);
124  //    m_ScrolledWindow.set_size_request(200, 600);  //    m_ScrolledWindow.set_size_request(200, 600);
125      m_ScrolledWindow.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);      m_ScrolledWindow.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
126    
# Line 457  MainWindow::MainWindow() : Line 451  MainWindow::MainWindow() :
451          m_actionGroup->add_action_bool("Statusbar", sigc::mem_fun(*this, &MainWindow::on_action_view_status_bar), true);          m_actionGroup->add_action_bool("Statusbar", sigc::mem_fun(*this, &MainWindow::on_action_view_status_bar), true);
452      m_actionToggleRestoreWinDim =      m_actionToggleRestoreWinDim =
453          m_actionGroup->add_action_bool("AutoRestoreWinDim", sigc::mem_fun(*this, &MainWindow::on_auto_restore_win_dim), Settings::singleton()->autoRestoreWindowDimension);          m_actionGroup->add_action_bool("AutoRestoreWinDim", sigc::mem_fun(*this, &MainWindow::on_auto_restore_win_dim), Settings::singleton()->autoRestoreWindowDimension);
454        m_actionInstrDoubleClickOpensProps =
455            m_actionGroup->add_action_bool(
456                "OpenInstrPropsByDoubleClick",
457                sigc::mem_fun(*this, &MainWindow::on_instr_double_click_opens_props),
458                Settings::singleton()->instrumentDoubleClickOpensProps
459            );
460      m_actionToggleShowTooltips = m_actionGroup->add_action_bool(      m_actionToggleShowTooltips = m_actionGroup->add_action_bool(
461          "ShowTooltips", sigc::mem_fun(*this, &MainWindow::on_action_show_tooltips),          "ShowTooltips", sigc::mem_fun(*this, &MainWindow::on_action_show_tooltips),
462          Settings::singleton()->showTooltips          Settings::singleton()->showTooltips
# Line 484  MainWindow::MainWindow() : Line 484  MainWindow::MainWindow() :
484                           *this, &MainWindow::on_auto_restore_win_dim));                           *this, &MainWindow::on_auto_restore_win_dim));
485    
486      toggle_action =      toggle_action =
487            Gtk::ToggleAction::create("OpenInstrPropsByDoubleClick", _("Instrument Properties by Double Click"));
488        toggle_action->set_active(Settings::singleton()->instrumentDoubleClickOpensProps);
489        actionGroup->add(toggle_action,
490                         sigc::mem_fun(
491                             *this, &MainWindow::on_instr_double_click_opens_props));
492    
493        toggle_action =
494          Gtk::ToggleAction::create("ShowTooltips", _("Tooltips for Beginners"));          Gtk::ToggleAction::create("ShowTooltips", _("Tooltips for Beginners"));
495      toggle_action->set_active(Settings::singleton()->showTooltips);      toggle_action->set_active(Settings::singleton()->showTooltips);
496      actionGroup->add(      actionGroup->add(
# Line 515  MainWindow::MainWindow() : Line 522  MainWindow::MainWindow() :
522          "DupInstrument", sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)          "DupInstrument", sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)
523      );      );
524      m_actionGroup->add_action(      m_actionGroup->add_action(
525            "MoveInstrument", sigc::mem_fun(*this, &MainWindow::on_action_move_instr)
526        );
527        m_actionGroup->add_action(
528          "CombInstruments", sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)          "CombInstruments", sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
529      );      );
530      m_actionGroup->add_action(      m_actionGroup->add_action(
# Line 536  MainWindow::MainWindow() : Line 546  MainWindow::MainWindow() :
546          sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)
547      );      );
548      actionGroup->add(      actionGroup->add(
549            Gtk::Action::create("MoveInstrument", _("Move _Instrument To ...")),
550            Gtk::AccelKey(GDK_KEY_i, primaryModifierKey),
551            sigc::mem_fun(*this, &MainWindow::on_action_move_instr)
552        );
553        actionGroup->add(
554          Gtk::Action::create("CombInstruments", _("_Combine Instruments ...")),          Gtk::Action::create("CombInstruments", _("_Combine Instruments ...")),
555          Gtk::AccelKey(GDK_KEY_j, primaryModifierKey),          Gtk::AccelKey(GDK_KEY_j, primaryModifierKey),
556          sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)          sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
# Line 891  MainWindow::MainWindow() : Line 906  MainWindow::MainWindow() :
906          "          <attribute name='label' translatable='yes'>Duplicate Instrument</attribute>"          "          <attribute name='label' translatable='yes'>Duplicate Instrument</attribute>"
907          "          <attribute name='action'>AppMenu.DupInstrument</attribute>"          "          <attribute name='action'>AppMenu.DupInstrument</attribute>"
908          "        </item>"          "        </item>"
909            "        <item id='MoveInstrument'>"
910            "          <attribute name='label' translatable='yes'>Move Instrument To ...</attribute>"
911            "          <attribute name='action'>AppMenu.MoveInstrument</attribute>"
912            "        </item>"
913          "        <item id='CombInstruments'>"          "        <item id='CombInstruments'>"
914          "          <attribute name='label' translatable='yes'>Combine Instrument</attribute>"          "          <attribute name='label' translatable='yes'>Combine Instrument</attribute>"
915          "          <attribute name='action'>AppMenu.CombInstruments</attribute>"          "          <attribute name='action'>AppMenu.CombInstruments</attribute>"
# Line 941  MainWindow::MainWindow() : Line 960  MainWindow::MainWindow() :
960          "          <attribute name='label' translatable='yes'>Auto restore Window Dimensions</attribute>"          "          <attribute name='label' translatable='yes'>Auto restore Window Dimensions</attribute>"
961          "          <attribute name='action'>AppMenu.AutoRestoreWinDim</attribute>"          "          <attribute name='action'>AppMenu.AutoRestoreWinDim</attribute>"
962          "        </item>"          "        </item>"
963            "        <item id='OpenInstrPropsByDoubleClick'>"
964            "          <attribute name='label' translatable='yes'>Instrument Properties by Double Click</attribute>"
965            "          <attribute name='action'>AppMenu.OpenInstrPropsByDoubleClick</attribute>"
966            "        </item>"
967          "      </section>"          "      </section>"
968          "      <section>"          "      <section>"
969          "        <item id='RefreshAll'>"          "        <item id='RefreshAll'>"
# Line 1016  MainWindow::MainWindow() : Line 1039  MainWindow::MainWindow() :
1039          "        <attribute name='label' translatable='yes'>Duplicate Instrument</attribute>"          "        <attribute name='label' translatable='yes'>Duplicate Instrument</attribute>"
1040          "        <attribute name='action'>AppMenu.DupInstrument</attribute>"          "        <attribute name='action'>AppMenu.DupInstrument</attribute>"
1041          "      </item>"          "      </item>"
1042            "      <item id='MoveInstrument'>"
1043            "        <attribute name='label' translatable='yes'>Move Instrument To ...</attribute>"
1044            "        <attribute name='action'>AppMenu.MoveInstrument</attribute>"
1045            "      </item>"
1046          "      <item id='CombInstruments'>"          "      <item id='CombInstruments'>"
1047          "        <attribute name='label' translatable='yes'>Combine Instruments</attribute>"          "        <attribute name='label' translatable='yes'>Combine Instruments</attribute>"
1048          "        <attribute name='action'>AppMenu.CombInstruments</attribute>"          "        <attribute name='action'>AppMenu.CombInstruments</attribute>"
# Line 1154  MainWindow::MainWindow() : Line 1181  MainWindow::MainWindow() :
1181          "      <menu action='AssignScripts'/>"          "      <menu action='AssignScripts'/>"
1182          "      <menuitem action='AddInstrument'/>"          "      <menuitem action='AddInstrument'/>"
1183          "      <menuitem action='DupInstrument'/>"          "      <menuitem action='DupInstrument'/>"
1184            "      <menuitem action='MoveInstrument'/>"
1185          "      <menuitem action='CombInstruments'/>"          "      <menuitem action='CombInstruments'/>"
1186          "      <separator/>"          "      <separator/>"
1187          "      <menuitem action='RemoveInstrument'/>"          "      <menuitem action='RemoveInstrument'/>"
# Line 1169  MainWindow::MainWindow() : Line 1197  MainWindow::MainWindow() :
1197          "      <menuitem action='Statusbar'/>"          "      <menuitem action='Statusbar'/>"
1198          "      <menuitem action='ShowTooltips'/>"          "      <menuitem action='ShowTooltips'/>"
1199          "      <menuitem action='AutoRestoreWinDim'/>"          "      <menuitem action='AutoRestoreWinDim'/>"
1200            "      <menuitem action='OpenInstrPropsByDoubleClick'/>"
1201          "      <separator/>"          "      <separator/>"
1202          "      <menuitem action='RefreshAll'/>"          "      <menuitem action='RefreshAll'/>"
1203          "    </menu>"          "    </menu>"
# Line 1192  MainWindow::MainWindow() : Line 1221  MainWindow::MainWindow() :
1221          "    <menuitem action='ScriptSlots'/>"          "    <menuitem action='ScriptSlots'/>"
1222          "    <menuitem action='AddInstrument'/>"          "    <menuitem action='AddInstrument'/>"
1223          "    <menuitem action='DupInstrument'/>"          "    <menuitem action='DupInstrument'/>"
1224            "    <menuitem action='MoveInstrument'/>"
1225          "    <menuitem action='CombInstruments'/>"          "    <menuitem action='CombInstruments'/>"
1226          "    <separator/>"          "    <separator/>"
1227          "    <menuitem action='RemoveInstrument'/>"          "    <menuitem action='RemoveInstrument'/>"
# Line 1292  MainWindow::MainWindow() : Line 1322  MainWindow::MainWindow() :
1322      }      }
1323      {      {
1324          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1325                uiManager->get_widget("/MenuBar/MenuView/OpenInstrPropsByDoubleClick"));
1326            item->set_tooltip_text(_("If checked, double clicking an instrument opens its properties dialog."));
1327        }
1328        {
1329            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1330              uiManager->get_widget("/MenuBar/MenuTools/CombineInstruments"));              uiManager->get_widget("/MenuBar/MenuTools/CombineInstruments"));
1331          item->set_tooltip_text(_("Create combi sounds out of individual sounds of this .gig file."));          item->set_tooltip_text(_("Create combi sounds out of individual sounds of this .gig file."));
1332      }      }
# Line 1348  MainWindow::MainWindow() : Line 1383  MainWindow::MainWindow() :
1383    
1384    
1385      // Create the Tree model:      // Create the Tree model:
1386      m_refTreeModel = Gtk::ListStore::create(m_Columns);      m_refInstrumentsTreeModel = Gtk::ListStore::create(m_InstrumentsModel);
1387      m_refTreeModelFilter = Gtk::TreeModelFilter::create(m_refTreeModel);      m_refInstrumentsModelFilter = Gtk::TreeModelFilter::create(m_refInstrumentsTreeModel);
1388      m_refTreeModelFilter->set_visible_func(      m_refInstrumentsModelFilter->set_visible_func(
1389          sigc::mem_fun(*this, &MainWindow::instrument_row_visible)          sigc::mem_fun(*this, &MainWindow::instrument_row_visible)
1390      );      );
1391      m_TreeView.set_model(m_refTreeModelFilter);      m_TreeViewInstruments.set_model(m_refInstrumentsModelFilter);
1392    
1393      m_TreeView.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);      m_TreeViewInstruments.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);
1394      m_TreeView.set_tooltip_text(_("Right click here for actions on instruments & MIDI Rules. Drag & drop to change the order of instruments."));      m_TreeViewInstruments.set_has_tooltip(true);
1395      instrument_name_connection = m_refTreeModel->signal_row_changed().connect(      m_TreeViewInstruments.signal_query_tooltip().connect(
1396            sigc::mem_fun(*this, &MainWindow::onQueryTreeViewTooltip)
1397        );
1398        instrument_name_connection = m_refInstrumentsTreeModel->signal_row_changed().connect(
1399          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)
1400      );      );
1401    
1402      // Add the TreeView's view columns:      // Add the TreeView's view columns:
1403      m_TreeView.append_column(_("Nr"), m_Columns.m_col_nr);      m_TreeViewInstruments.append_column(_("Nr"), m_InstrumentsModel.m_col_nr);
1404      m_TreeView.append_column_editable(_("Instrument"), m_Columns.m_col_name);      m_TreeViewInstruments.append_column_editable(_("Instrument"), m_InstrumentsModel.m_col_name);
1405      m_TreeView.append_column(_("Scripts"), m_Columns.m_col_scripts);      m_TreeViewInstruments.append_column(_("Scripts"), m_InstrumentsModel.m_col_scripts);
1406      m_TreeView.set_headers_visible(true);      m_TreeViewInstruments.set_headers_visible(true);
1407            
1408      // establish drag&drop within the instrument tree view, allowing to reorder      // establish drag&drop within the instrument tree view, allowing to reorder
1409      // the sequence of instruments within the gig file      // the sequence of instruments within the gig file
1410      {      {
1411          std::vector<Gtk::TargetEntry> drag_target_instrument;          std::vector<Gtk::TargetEntry> drag_target_instrument;
1412          drag_target_instrument.push_back(Gtk::TargetEntry("gig::Instrument"));          drag_target_instrument.push_back(Gtk::TargetEntry("gig::Instrument"));
1413          m_TreeView.drag_source_set(drag_target_instrument);          m_TreeViewInstruments.drag_source_set(drag_target_instrument);
1414          m_TreeView.drag_dest_set(drag_target_instrument);          m_TreeViewInstruments.drag_dest_set(drag_target_instrument);
1415          m_TreeView.signal_drag_begin().connect(          m_TreeViewInstruments.signal_drag_begin().connect(
1416              sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_begin)              sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_begin)
1417          );          );
1418          m_TreeView.signal_drag_data_get().connect(          m_TreeViewInstruments.signal_drag_data_get().connect(
1419              sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_data_get)              sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_data_get)
1420          );          );
1421          m_TreeView.signal_drag_data_received().connect(          m_TreeViewInstruments.signal_drag_data_received().connect(
1422              sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drop_drag_data_received)              sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drop_drag_data_received)
1423          );          );
1424      }      }
# Line 1487  MainWindow::MainWindow() : Line 1525  MainWindow::MainWindow() :
1525          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
1526      instrumentProps.signal_changed().connect(      instrumentProps.signal_changed().connect(
1527          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
1528      propDialog.signal_changed().connect(      sampleProps.signal_changed().connect(
1529            sigc::mem_fun(*this, &MainWindow::file_changed));
1530        fileProps.signal_changed().connect(
1531          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
1532      midiRules.signal_changed().connect(      midiRules.signal_changed().connect(
1533          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
# Line 1509  MainWindow::MainWindow() : Line 1549  MainWindow::MainWindow() :
1549          sigc::mem_fun(*this, &MainWindow::select_sample)          sigc::mem_fun(*this, &MainWindow::select_sample)
1550      );      );
1551    
1552        dimreg_edit.editScriptSlotsButton.signal_clicked().connect(
1553            sigc::mem_fun(*this, &MainWindow::show_script_slots)
1554        );
1555        // simply sending the same signal (pair) to the sampler on 'patch' variable
1556        // changes as the already existing signal (pair) when the user edits the
1557        // script's source code, because the sampler would reload the source code
1558        // and the 'patch' variables from the instrument on this signal anyway
1559        dimreg_edit.scriptVars.signal_vars_to_be_changed.connect(
1560            [this](gig::Instrument* instr) {
1561                for (int i = 0; i < instr->ScriptSlotCount(); ++i) {
1562                    gig::Script* script = instr->GetScriptOfSlot(i);
1563                    signal_script_to_be_changed.emit(script);
1564                }
1565            }
1566        );
1567        dimreg_edit.scriptVars.signal_vars_changed.connect(
1568            [this](gig::Instrument* instr) {
1569                for (int i = 0; i < instr->ScriptSlotCount(); ++i) {
1570                    gig::Script* script = instr->GetScriptOfSlot(i);
1571                    signal_script_changed.emit(script);
1572                }
1573            }
1574        );
1575        dimreg_edit.scriptVars.signal_edit_script.connect(
1576            [this](gig::Script* script) {
1577                editScript(script);
1578            }
1579        );
1580    
1581      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(
1582          sigc::hide(          sigc::hide(
1583              sigc::bind(              sigc::bind(
1584                  file_structure_to_be_changed_signal.make_slot(),                  file_structure_to_be_changed_signal.make_slot(),
1585    #if SIGCXX_MAJOR_VERSION > 2 || (SIGCXX_MAJOR_VERSION == 2 && SIGCXX_MINOR_VERSION >= 8)
1586                    std::ref(this->file)
1587    #else
1588                  sigc::ref(this->file)                  sigc::ref(this->file)
1589    #endif
1590              )              )
1591          )          )
1592      );      );
# Line 1521  MainWindow::MainWindow() : Line 1594  MainWindow::MainWindow() :
1594          sigc::hide(          sigc::hide(
1595              sigc::bind(              sigc::bind(
1596                  file_structure_changed_signal.make_slot(),                  file_structure_changed_signal.make_slot(),
1597    #if SIGCXX_MAJOR_VERSION > 2 || (SIGCXX_MAJOR_VERSION == 2 && SIGCXX_MINOR_VERSION >= 8)
1598                    std::ref(this->file)
1599    #else
1600                  sigc::ref(this->file)                  sigc::ref(this->file)
1601    #endif
1602              )              )
1603          )          )
1604      );      );
# Line 1543  MainWindow::MainWindow() : Line 1620  MainWindow::MainWindow() :
1620          sigc::mem_fun(*this, &MainWindow::update_dimregs));          sigc::mem_fun(*this, &MainWindow::update_dimregs));
1621    
1622      m_searchText.signal_changed().connect(      m_searchText.signal_changed().connect(
1623          sigc::mem_fun(m_refTreeModelFilter.operator->(), &Gtk::TreeModelFilter::refilter)          sigc::mem_fun(*m_refInstrumentsModelFilter.operator->(), &Gtk::TreeModelFilter::refilter)
1624      );      );
1625    
1626      file = 0;      file = 0;
# Line 1597  MainWindow::MainWindow() : Line 1674  MainWindow::MainWindow() :
1674          Gtk::AccelMap::add_entry("<Macros>/macro_9", GDK_KEY_F10, noModifier);          Gtk::AccelMap::add_entry("<Macros>/macro_9", GDK_KEY_F10, noModifier);
1675          Gtk::AccelMap::add_entry("<Macros>/macro_10", GDK_KEY_F11, noModifier);          Gtk::AccelMap::add_entry("<Macros>/macro_10", GDK_KEY_F11, noModifier);
1676          Gtk::AccelMap::add_entry("<Macros>/macro_11", GDK_KEY_F12, noModifier);          Gtk::AccelMap::add_entry("<Macros>/macro_11", GDK_KEY_F12, noModifier);
1677            Gtk::AccelMap::add_entry("<Macros>/macro_12", GDK_KEY_F13, noModifier);
1678            Gtk::AccelMap::add_entry("<Macros>/macro_13", GDK_KEY_F14, noModifier);
1679            Gtk::AccelMap::add_entry("<Macros>/macro_14", GDK_KEY_F15, noModifier);
1680            Gtk::AccelMap::add_entry("<Macros>/macro_15", GDK_KEY_F16, noModifier);
1681            Gtk::AccelMap::add_entry("<Macros>/macro_16", GDK_KEY_F17, noModifier);
1682            Gtk::AccelMap::add_entry("<Macros>/macro_17", GDK_KEY_F18, noModifier);
1683            Gtk::AccelMap::add_entry("<Macros>/macro_18", GDK_KEY_F19, noModifier);
1684          Gtk::AccelMap::add_entry("<Macros>/SetupMacros", 'm', primaryModifierKey);          Gtk::AccelMap::add_entry("<Macros>/SetupMacros", 'm', primaryModifierKey);
1685    
1686          Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();          Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();
# Line 1619  MainWindow::MainWindow() : Line 1703  MainWindow::MainWindow() :
1703          Gtk::AccelMap::add_entry("<Scripts>/script_9", GDK_KEY_F10, Gdk::SHIFT_MASK);          Gtk::AccelMap::add_entry("<Scripts>/script_9", GDK_KEY_F10, Gdk::SHIFT_MASK);
1704          Gtk::AccelMap::add_entry("<Scripts>/script_10", GDK_KEY_F11, Gdk::SHIFT_MASK);          Gtk::AccelMap::add_entry("<Scripts>/script_10", GDK_KEY_F11, Gdk::SHIFT_MASK);
1705          Gtk::AccelMap::add_entry("<Scripts>/script_11", GDK_KEY_F12, Gdk::SHIFT_MASK);          Gtk::AccelMap::add_entry("<Scripts>/script_11", GDK_KEY_F12, Gdk::SHIFT_MASK);
1706            Gtk::AccelMap::add_entry("<Scripts>/script_12", GDK_KEY_F13, Gdk::SHIFT_MASK);
1707            Gtk::AccelMap::add_entry("<Scripts>/script_13", GDK_KEY_F14, Gdk::SHIFT_MASK);
1708            Gtk::AccelMap::add_entry("<Scripts>/script_14", GDK_KEY_F15, Gdk::SHIFT_MASK);
1709            Gtk::AccelMap::add_entry("<Scripts>/script_15", GDK_KEY_F16, Gdk::SHIFT_MASK);
1710            Gtk::AccelMap::add_entry("<Scripts>/script_16", GDK_KEY_F17, Gdk::SHIFT_MASK);
1711            Gtk::AccelMap::add_entry("<Scripts>/script_17", GDK_KEY_F18, Gdk::SHIFT_MASK);
1712            Gtk::AccelMap::add_entry("<Scripts>/script_18", GDK_KEY_F19, Gdk::SHIFT_MASK);
1713            Gtk::AccelMap::add_entry("<Scripts>/DropAllScriptSlots", GDK_KEY_BackSpace, Gdk::SHIFT_MASK);
1714    
1715          Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();          Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();
1716          assign_scripts_menu->set_accel_group(accelGroup);          assign_scripts_menu->set_accel_group(accelGroup);
# Line 1772  void MainWindow::region_changed() Line 1864  void MainWindow::region_changed()
1864    
1865  gig::Instrument* MainWindow::get_instrument()  gig::Instrument* MainWindow::get_instrument()
1866  {  {
1867      gig::Instrument* instrument = 0;      gig::Instrument* instrument = NULL;
1868      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();  
1869        // get indeces of visual selection
1870        std::vector<Gtk::TreeModel::Path> rows = m_TreeViewInstruments.get_selection()->get_selected_rows();
1871      if (rows.empty()) return NULL;      if (rows.empty()) return NULL;
1872    
1873        // convert index of visual selection (i.e. if filtered) to index of model
1874        Gtk::TreeModel::Path path = m_refInstrumentsModelFilter->convert_path_to_child_path(rows[0]);
1875        if (!path) return NULL;
1876    
1877      //NOTE: was const_iterator before, which did not compile with GTKMM4 development branch, probably going to be fixed before final GTKMM4 release though.      //NOTE: was const_iterator before, which did not compile with GTKMM4 development branch, probably going to be fixed before final GTKMM4 release though.
1878      Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);      Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(path);
1879      if (it) {      if (it) {
1880          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
1881          instrument = row[m_Columns.m_col_instr];          instrument = row[m_InstrumentsModel.m_col_instr];
1882      }      }
1883      return instrument;      return instrument;
1884  }  }
# Line 1844  void MainWindow::on_sel_change() Line 1943  void MainWindow::on_sel_change()
1943  {  {
1944  #if !USE_GTKMM_BUILDER  #if !USE_GTKMM_BUILDER
1945      // select item in instrument menu      // select item in instrument menu
1946      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();      std::vector<Gtk::TreeModel::Path> rows = m_TreeViewInstruments.get_selection()->get_selected_rows();
1947      if (!rows.empty()) {      if (!rows.empty()) {
1948          Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);          // convert index of visual selection (i.e. if filtered) to index of model
1949            Gtk::TreeModel::Path row = m_refInstrumentsModelFilter->convert_path_to_child_path(rows[0]);
1950            Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(row);
1951          if (it) {          if (it) {
1952              Gtk::TreePath path(it);              Gtk::TreePath path(it);
1953              int index = path[0];              int index = path[0];
# Line 1859  void MainWindow::on_sel_change() Line 1960  void MainWindow::on_sel_change()
1960    
1961      updateScriptListOfMenu();      updateScriptListOfMenu();
1962    
1963      m_RegionChooser.set_instrument(get_instrument());      gig::Instrument* instr = get_instrument();
1964    
1965        m_RegionChooser.set_instrument(instr);
1966        dimreg_edit.scriptVars.setInstrument(instr, true/*force update*/);
1967    
1968      if (Settings::singleton()->syncSamplerInstrumentSelection) {      if (Settings::singleton()->syncSamplerInstrumentSelection) {
1969          switch_sampler_instrument_signal.emit(get_instrument());          switch_sampler_instrument_signal.emit(get_instrument());
1970      }      }
1971  }  }
1972    
1973    
1974    LoaderSaverBase::LoaderSaverBase(const Glib::ustring filename, gig::File* gig) :
1975        filename(filename), gig(gig),
1976    #ifdef GLIB_THREADS
1977        thread(0),
1978    #endif
1979        progress(0.f)
1980    {
1981    }
1982    
1983  void loader_progress_callback(gig::progress_t* progress)  void loader_progress_callback(gig::progress_t* progress)
1984  {  {
1985      Loader* loader = static_cast<Loader*>(progress->custom);      LoaderSaverBase* loader = static_cast<LoaderSaverBase*>(progress->custom);
1986      loader->progress_callback(progress->factor);      loader->progress_callback(progress->factor);
1987  }  }
1988    
1989  void Loader::progress_callback(float fraction)  void LoaderSaverBase::progress_callback(float fraction)
1990  {  {
1991      {      {
1992    #ifdef GLIB_THREADS
1993          Glib::Threads::Mutex::Lock lock(progressMutex);          Glib::Threads::Mutex::Lock lock(progressMutex);
1994    #else
1995            std::lock_guard<std::mutex> lock(progressMutex);
1996    #endif
1997          progress = fraction;          progress = fraction;
1998      }      }
1999      progress_dispatcher();      progress_dispatcher();
# Line 1885  void Loader::progress_callback(float fra Line 2003  void Loader::progress_callback(float fra
2003  // make sure stack is 16-byte aligned for SSE instructions  // make sure stack is 16-byte aligned for SSE instructions
2004  __attribute__((force_align_arg_pointer))  __attribute__((force_align_arg_pointer))
2005  #endif  #endif
2006  void Loader::thread_function()  void LoaderSaverBase::thread_function()
2007  {  {
2008    #ifdef GLIB_THREADS
2009      printf("thread_function self=%p\n",      printf("thread_function self=%p\n",
2010             static_cast<void*>(Glib::Threads::Thread::self()));             static_cast<void*>(Glib::Threads::Thread::self()));
2011    #else
2012        std::cout << "thread_function self=" << std::this_thread::get_id() << "\n";
2013    #endif
2014      printf("Start %s\n", filename.c_str());      printf("Start %s\n", filename.c_str());
2015      try {      try {
         RIFF::File* riff = new RIFF::File(filename);  
         gig = new gig::File(riff);  
2016          gig::progress_t progress;          gig::progress_t progress;
2017          progress.callback = loader_progress_callback;          progress.callback = loader_progress_callback;
2018          progress.custom = this;          progress.custom = this;
2019    
2020          gig->GetInstrument(0, &progress);          thread_function_sub(progress);
2021          printf("End\n");          printf("End\n");
2022          finished_dispatcher();          finished_dispatcher();
2023      } catch (RIFF::Exception e) {      } catch (RIFF::Exception e) {
# Line 1909  void Loader::thread_function() Line 2029  void Loader::thread_function()
2029      }      }
2030  }  }
2031    
2032  Loader::Loader(const char* filename)  void LoaderSaverBase::launch()
     : filename(filename), gig(0), thread(0), progress(0.f)  
 {  
 }  
   
 void Loader::launch()  
2033  {  {
2034    #ifdef GLIB_THREADS
2035  #ifdef OLD_THREADS  #ifdef OLD_THREADS
2036      thread = Glib::Thread::create(sigc::mem_fun(*this, &Loader::thread_function), true);      thread = Glib::Thread::create(sigc::mem_fun(*this, &LoaderSaverBase::thread_function), true);
2037  #else  #else
2038      thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Loader::thread_function));      thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &LoaderSaverBase::thread_function));
2039  #endif  #endif
2040      printf("launch thread=%p\n", static_cast<void*>(thread));      printf("launch thread=%p\n", static_cast<void*>(thread));
2041    #else
2042        thread = std::thread([this](){ thread_function(); });
2043        std::cout << "launch thread=" << thread.get_id() << "\n";
2044    #endif
2045  }  }
2046    
2047  float Loader::get_progress()  float LoaderSaverBase::get_progress()
2048  {  {
2049      float res;  #ifdef GLIB_THREADS
2050      {      Glib::Threads::Mutex::Lock lock(progressMutex);
2051          Glib::Threads::Mutex::Lock lock(progressMutex);  #else
2052          res = progress;      std::lock_guard<std::mutex> lock(progressMutex);
2053      }  #endif
2054      return res;      return progress;
2055  }  }
2056    
2057  Glib::Dispatcher& Loader::signal_progress()  Glib::Dispatcher& LoaderSaverBase::signal_progress()
2058  {  {
2059      return progress_dispatcher;      return progress_dispatcher;
2060  }  }
2061    
2062  Glib::Dispatcher& Loader::signal_finished()  Glib::Dispatcher& LoaderSaverBase::signal_finished()
2063  {  {
2064      return finished_dispatcher;      return finished_dispatcher;
2065  }  }
2066    
2067  Glib::Dispatcher& Loader::signal_error()  Glib::Dispatcher& LoaderSaverBase::signal_error()
2068  {  {
2069      return error_dispatcher;      return error_dispatcher;
2070  }  }
2071    
2072  void saver_progress_callback(gig::progress_t* progress)  void LoaderSaverBase::join() {
2073  {  #ifdef GLIB_THREADS
2074      Saver* saver = static_cast<Saver*>(progress->custom);      thread->join();
2075      saver->progress_callback(progress->factor);  #else
2076        thread.join();
2077    #endif
2078  }  }
2079    
2080  void Saver::progress_callback(float fraction)  
2081    Loader::Loader(const char* filename) :
2082        LoaderSaverBase(filename, 0)
2083  {  {
     {  
         Glib::Threads::Mutex::Lock lock(progressMutex);  
         progress = fraction;  
     }  
     progress_dispatcher.emit();  
2084  }  }
2085    
2086  #if defined(WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2))  void Loader::thread_function_sub(gig::progress_t& progress)
 // make sure stack is 16-byte aligned for SSE instructions  
 __attribute__((force_align_arg_pointer))  
 #endif  
 void Saver::thread_function()  
2087  {  {
2088      printf("thread_function self=%p\n",      RIFF::File* riff = new RIFF::File(filename);
2089             static_cast<void*>(Glib::Threads::Thread::self()));      gig = new gig::File(riff);
     printf("Start %s\n", filename.c_str());  
     try {  
         gig::progress_t progress;  
         progress.callback = saver_progress_callback;  
         progress.custom = this;  
2090    
2091          // if no filename was provided, that means "save", if filename was provided means "save as"      gig->GetInstrument(0, &progress);
         if (filename.empty()) {  
             if (!Settings::singleton()->saveWithTemporaryFile) {  
                 // save directly over the existing .gig file  
                 // (requires less disk space than solution below  
                 // but may be slower)  
                 gig->Save(&progress);  
             } else {  
                 // save the file as separate temporary file first,  
                 // then move the saved file over the old file  
                 // (may result in performance speedup during save)  
                 gig::String tmpname = filename + ".TMP";  
                 gig->Save(tmpname, &progress);  
                 #if defined(WIN32)  
                 if (!DeleteFile(filename.c_str())) {  
                     throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file).");  
                 }  
                 #else // POSIX ...  
                 if (unlink(filename.c_str())) {  
                     throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file): " + gig::String(strerror(errno)));  
                 }  
                 #endif  
                 if (rename(tmpname.c_str(), filename.c_str())) {  
                     #if defined(WIN32)  
                     throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file).");  
                     #else  
                     throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file): " + gig::String(strerror(errno)));  
                     #endif  
                 }  
             }  
         } else {  
             gig->Save(filename, &progress);  
         }  
   
         printf("End\n");  
         finished_dispatcher.emit();  
     } catch (RIFF::Exception e) {  
         error_message = e.Message;  
         error_dispatcher.emit();  
     } catch (...) {  
         error_message = _("Unknown exception occurred");  
         error_dispatcher.emit();  
     }  
2092  }  }
2093    
2094  Saver::Saver(gig::File* file, Glib::ustring filename)  
2095      : gig(file), filename(filename), thread(0), progress(0.f)  Saver::Saver(gig::File* file, Glib::ustring filename) :
2096        LoaderSaverBase(filename, file)
2097  {  {
2098  }  }
2099    
2100  void Saver::launch()  void Saver::thread_function_sub(gig::progress_t& progress)
2101  {  {
2102  #ifdef OLD_THREADS      // if no filename was provided, that means "save", if filename was provided means "save as"
2103      thread = Glib::Thread::create(sigc::mem_fun(*this, &Saver::thread_function), true);      if (filename.empty()) {
2104            if (!Settings::singleton()->saveWithTemporaryFile) {
2105                // save directly over the existing .gig file
2106                // (requires less disk space than solution below
2107                // but may be slower)
2108                gig->Save(&progress);
2109            } else {
2110                // save the file as separate temporary file first,
2111                // then move the saved file over the old file
2112                // (may result in performance speedup during save)
2113                gig::String tmpname = filename + ".TMP";
2114                gig->Save(tmpname, &progress);
2115    #if defined(WIN32)
2116                if (!DeleteFile(filename.c_str())) {
2117                    throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file).");
2118                }
2119    #else // POSIX ...
2120                if (unlink(filename.c_str())) {
2121                    throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file): " + gig::String(strerror(errno)));
2122                }
2123    #endif
2124                if (rename(tmpname.c_str(), filename.c_str())) {
2125    #if defined(WIN32)
2126                    throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file).");
2127  #else  #else
2128      thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Saver::thread_function));                  throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file): " + gig::String(strerror(errno)));
2129  #endif  #endif
2130      printf("launch thread=%p\n", static_cast<void*>(thread));              }
2131  }          }
2132        } else {
2133  float Saver::get_progress()          gig->Save(filename, &progress);
 {  
     float res;  
     {  
         Glib::Threads::Mutex::Lock lock(progressMutex);  
         res = progress;  
2134      }      }
     return res;  
2135  }  }
2136    
 Glib::Dispatcher& Saver::signal_progress()  
 {  
     return progress_dispatcher;  
 }  
   
 Glib::Dispatcher& Saver::signal_finished()  
 {  
     return finished_dispatcher;  
 }  
   
 Glib::Dispatcher& Saver::signal_error()  
 {  
     return error_dispatcher;  
 }  
2137    
2138  ProgressDialog::ProgressDialog(const Glib::ustring& title, Gtk::Window& parent)  ProgressDialog::ProgressDialog(const Glib::ustring& title, Gtk::Window& parent)
2139      : Gtk::Dialog(title, parent, true)      : Gtk::Dialog(title, parent, true)
# Line 2083  void MainWindow::__clear() { Line 2155  void MainWindow::__clear() {
2155      // forget all samples that ought to be imported      // forget all samples that ought to be imported
2156      m_SampleImportQueue.clear();      m_SampleImportQueue.clear();
2157      // clear the samples and instruments tree views      // clear the samples and instruments tree views
2158      m_refTreeModel->clear();      m_refInstrumentsTreeModel->clear();
2159      m_refSamplesTreeModel->clear();      m_refSamplesTreeModel->clear();
2160      m_refScriptsTreeModel->clear();      m_refScriptsTreeModel->clear();
2161  #if !USE_GTKMM_BUILDER  #if !USE_GTKMM_BUILDER
# Line 2100  void MainWindow::__clear() { Line 2172  void MainWindow::__clear() {
2172    
2173  void MainWindow::__refreshEntireGUI() {  void MainWindow::__refreshEntireGUI() {
2174      // clear the samples and instruments tree views      // clear the samples and instruments tree views
2175      m_refTreeModel->clear();      m_refInstrumentsTreeModel->clear();
2176      m_refSamplesTreeModel->clear();      m_refSamplesTreeModel->clear();
2177      m_refScriptsTreeModel->clear();      m_refScriptsTreeModel->clear();
2178  #if !USE_GTKMM_BUILDER  #if !USE_GTKMM_BUILDER
# Line 2217  void MainWindow::on_action_file_open() Line 2289  void MainWindow::on_action_file_open()
2289          dialog.set_current_folder(current_gig_dir);          dialog.set_current_folder(current_gig_dir);
2290      }      }
2291      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
2292            dialog.hide();
2293          std::string filename = dialog.get_filename();          std::string filename = dialog.get_filename();
2294          printf("filename=%s\n", filename.c_str());          printf("filename=%s\n", filename.c_str());
2295    #ifdef GLIB_THREADS
2296          printf("on_action_file_open self=%p\n",          printf("on_action_file_open self=%p\n",
2297                 static_cast<void*>(Glib::Threads::Thread::self()));                 static_cast<void*>(Glib::Threads::Thread::self()));
2298    #else
2299            std::cout << "on_action_file_open self=" <<
2300                std::this_thread::get_id() << "\n";
2301    #endif
2302          load_file(filename.c_str());          load_file(filename.c_str());
2303          current_gig_dir = Glib::path_get_dirname(filename);          current_gig_dir = Glib::path_get_dirname(filename);
2304      }      }
# Line 2267  void MainWindow::load_instrument(gig::In Line 2345  void MainWindow::load_instrument(gig::In
2345      {      {
2346          if (instrument == instr) {          if (instrument == instr) {
2347              // select item in "instruments" tree view              // select item in "instruments" tree view
2348              m_TreeView.get_selection()->select(Gtk::TreePath(ToString(i)));              m_TreeViewInstruments.get_selection()->select(Gtk::TreePath(ToString(i)));
2349              // make sure the selected item in the "instruments" tree view is              // make sure the selected item in the "instruments" tree view is
2350              // visible (scroll to it)              // visible (scroll to it)
2351              m_TreeView.scroll_to_row(Gtk::TreePath(ToString(i)));              m_TreeViewInstruments.scroll_to_row(Gtk::TreePath(ToString(i)));
2352  #if !USE_GTKMM_BUILDER  #if !USE_GTKMM_BUILDER
2353              // select item in instrument menu              // select item in instrument menu
2354              {              {
# Line 2293  void MainWindow::on_loader_progress() Line 2371  void MainWindow::on_loader_progress()
2371    
2372  void MainWindow::on_loader_finished()  void MainWindow::on_loader_finished()
2373  {  {
2374        loader->join();
2375      printf("Loader finished!\n");      printf("Loader finished!\n");
2376    #ifdef GLIB_THREADS
2377      printf("on_loader_finished self=%p\n",      printf("on_loader_finished self=%p\n",
2378             static_cast<void*>(Glib::Threads::Thread::self()));             static_cast<void*>(Glib::Threads::Thread::self()));
2379    #else
2380        std::cout << "on_loader_finished self=" <<
2381            std::this_thread::get_id() << "\n";
2382    #endif
2383      load_gig(loader->gig, loader->filename.c_str());      load_gig(loader->gig, loader->filename.c_str());
2384      progress_dialog->hide();      progress_dialog->hide();
2385  }  }
2386    
2387  void MainWindow::on_loader_error()  void MainWindow::on_loader_error()
2388  {  {
2389        loader->join();
2390      Glib::ustring txt = _("Could not load file: ") + loader->error_message;      Glib::ustring txt = _("Could not load file: ") + loader->error_message;
2391      Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);      Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
2392      msg.run();      msg.run();
# Line 2372  void MainWindow::on_saver_progress() Line 2457  void MainWindow::on_saver_progress()
2457    
2458  void MainWindow::on_saver_error()  void MainWindow::on_saver_error()
2459  {  {
2460        saver->join();
2461      file_structure_changed_signal.emit(this->file);      file_structure_changed_signal.emit(this->file);
2462      Glib::ustring txt = _("Could not save file: ") + saver->error_message;      Glib::ustring txt = _("Could not save file: ") + saver->error_message;
2463      Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);      Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
# Line 2380  void MainWindow::on_saver_error() Line 2466  void MainWindow::on_saver_error()
2466    
2467  void MainWindow::on_saver_finished()  void MainWindow::on_saver_finished()
2468  {  {
2469        saver->join();
2470      this->file = saver->gig;      this->file = saver->gig;
2471      this->filename = saver->filename;      this->filename = saver->filename;
2472      current_gig_dir = Glib::path_get_dirname(filename);      current_gig_dir = Glib::path_get_dirname(filename);
# Line 2471  bool MainWindow::file_save_as() Line 2558  bool MainWindow::file_save_as()
2558  #endif  #endif
2559    
2560      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
2561            dialog.hide();
2562          std::string filename = dialog.get_filename();          std::string filename = dialog.get_filename();
2563          if (!Glib::str_has_suffix(filename, ".gig")) {          if (!Glib::str_has_suffix(filename, ".gig")) {
2564              filename += ".gig";              filename += ".gig";
# Line 2599  void MainWindow::__import_queued_samples Line 2687  void MainWindow::__import_queued_samples
2687    
2688  void MainWindow::on_action_file_properties()  void MainWindow::on_action_file_properties()
2689  {  {
2690      propDialog.show();      fileProps.show();
2691      propDialog.deiconify();      fileProps.deiconify();
2692  }  }
2693    
2694  void MainWindow::on_action_warn_user_on_extensions() {  void MainWindow::on_action_warn_user_on_extensions() {
# Line 2622  void MainWindow::on_show_tooltips_change Line 2710  void MainWindow::on_show_tooltips_change
2710      dimreg_all_regions.set_has_tooltip(b);      dimreg_all_regions.set_has_tooltip(b);
2711      dimreg_all_dimregs.set_has_tooltip(b);      dimreg_all_dimregs.set_has_tooltip(b);
2712      dimreg_stereo.set_has_tooltip(b);      dimreg_stereo.set_has_tooltip(b);
2713      m_TreeView.set_has_tooltip(b);  
2714        // Not doing this here, we let onQueryTreeViewTooltip() handle this per cell
2715        //m_TreeViewInstruments.set_has_tooltip(b);
2716    
2717      m_TreeViewSamples.set_has_tooltip(b);      m_TreeViewSamples.set_has_tooltip(b);
2718      m_TreeViewScripts.set_has_tooltip(b);      m_TreeViewScripts.set_has_tooltip(b);
2719    
# Line 2648  void MainWindow::on_action_help_about() Line 2739  void MainWindow::on_action_help_about()
2739      dialog.set_name("Gigedit");      dialog.set_name("Gigedit");
2740  #endif  #endif
2741      dialog.set_version(VERSION);      dialog.set_version(VERSION);
2742      dialog.set_copyright("Copyright (C) 2006-2017 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2019 Andreas Persson");
2743      const std::string sComment =      const std::string sComment =
2744          _("Built " __DATE__ "\nUsing ") +          _("Built " __DATE__ "\nUsing ") +
2745          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +
# Line 2659  void MainWindow::on_action_help_about() Line 2750  void MainWindow::on_action_help_about()
2750              "backup your Gigasampler/GigaStudio files before editing them with "              "backup your Gigasampler/GigaStudio files before editing them with "
2751              "this application.\n"              "this application.\n"
2752              "\n"              "\n"
2753              "Please report bugs to: http://bugs.linuxsampler.org"              "Please report bugs to: https://bugs.linuxsampler.org"
2754          );          );
2755      dialog.set_comments(sComment.c_str());      dialog.set_comments(sComment.c_str());
2756      dialog.set_website("http://www.linuxsampler.org");      dialog.set_website("https://www.linuxsampler.org");
2757      dialog.set_website_label("http://www.linuxsampler.org");      dialog.set_website_label("https://www.linuxsampler.org");
2758      dialog.set_position(Gtk::WIN_POS_CENTER);      dialog.set_position(Gtk::WIN_POS_CENTER);
2759      dialog.run();      dialog.run();
2760  }  }
2761    
2762  PropDialog::PropDialog()  FilePropDialog::FilePropDialog()
2763      : eFileFormat(_("File Format")),      : eFileFormat(_("File Format")),
2764        eName(_("Name")),        eName(_("Name")),
2765        eCreationDate(_("Creation date")),        eCreationDate(_("Creation date")),
# Line 2702  PropDialog::PropDialog() Line 2793  PropDialog::PropDialog()
2793      set_title(_("File Properties"));      set_title(_("File Properties"));
2794      eName.set_width_chars(50);      eName.set_width_chars(50);
2795    
2796        connect(eFileFormat, &FilePropDialog::set_FileFormat);
2797      connect(eName, &DLS::Info::Name);      connect(eName, &DLS::Info::Name);
2798      connect(eCreationDate, &DLS::Info::CreationDate);      connect(eCreationDate, &DLS::Info::CreationDate);
2799      connect(eComments, &DLS::Info::Comments);      connect(eComments, &DLS::Info::Comments);
# Line 2744  PropDialog::PropDialog() Line 2836  PropDialog::PropDialog()
2836  #endif  #endif
2837    
2838      add(vbox);      add(vbox);
2839  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 22)  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
2840      table.set_margin(5);      table.set_margin(5);
2841  #else  #else
2842      table.set_border_width(5);      table.set_border_width(5);
# Line 2752  PropDialog::PropDialog() Line 2844  PropDialog::PropDialog()
2844      vbox.add(table);      vbox.add(table);
2845      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);
2846      buttonBox.set_layout(Gtk::BUTTONBOX_END);      buttonBox.set_layout(Gtk::BUTTONBOX_END);
2847  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 22)  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
2848      buttonBox.set_margin(5);      buttonBox.set_margin(5);
2849  #else  #else
2850      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
# Line 2762  PropDialog::PropDialog() Line 2854  PropDialog::PropDialog()
2854      quitButton.set_can_default();      quitButton.set_can_default();
2855      quitButton.grab_focus();      quitButton.grab_focus();
2856      quitButton.signal_clicked().connect(      quitButton.signal_clicked().connect(
2857          sigc::mem_fun(*this, &PropDialog::hide));          sigc::mem_fun(*this, &FilePropDialog::hide));
     eFileFormat.signal_value_changed().connect(  
         sigc::mem_fun(*this, &PropDialog::onFileFormatChanged));  
2858    
2859      quitButton.show();      quitButton.show();
2860      vbox.show();      vbox.show();
# Line 2773  PropDialog::PropDialog() Line 2863  PropDialog::PropDialog()
2863  #endif  #endif
2864  }  }
2865    
2866  void PropDialog::set_file(gig::File* file)  void FilePropDialog::set_file(gig::File* file)
2867  {  {
2868      m_file = file;      m_file = file;
2869        update(file->pInfo);
2870    
2871      // update file format version combo box      // update file format version combo box
2872      const std::string sGiga = "Gigasampler/GigaStudio v";      const std::string sGiga = "Gigasampler/GigaStudio v";
# Line 2783  void PropDialog::set_file(gig::File* fil Line 2874  void PropDialog::set_file(gig::File* fil
2874      std::vector<std::string> txts;      std::vector<std::string> txts;
2875      std::vector<int> values;      std::vector<int> values;
2876      txts.push_back(sGiga + "2"); values.push_back(2);      txts.push_back(sGiga + "2"); values.push_back(2);
2877      txts.push_back(sGiga + "3/v4"); values.push_back(3);      txts.push_back(sGiga + "3"); values.push_back(3);
2878      if (major != 2 && major != 3) {      txts.push_back(sGiga + "4"); values.push_back(4);
2879        if (major < 2 || major > 4) {
2880          txts.push_back(sGiga + ToString(major)); values.push_back(major);          txts.push_back(sGiga + ToString(major)); values.push_back(major);
2881      }      }
2882      std::vector<const char*> texts;      std::vector<const char*> texts;
2883      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());
2884      texts.push_back(NULL); values.push_back(0);      texts.push_back(NULL); values.push_back(0);
2885    
2886        update_model++;
2887      eFileFormat.set_choices(&texts[0], &values[0]);      eFileFormat.set_choices(&texts[0], &values[0]);
2888      eFileFormat.set_value(major);      eFileFormat.set_value(major);
2889        update_model--;
2890  }  }
2891    
2892  void PropDialog::onFileFormatChanged() {  void FilePropDialog::set_FileFormat(int value)
     const int major = eFileFormat.get_value();  
     if (m_file) m_file->pVersion->major = major;  
 }  
   
 void PropDialog::set_info(DLS::Info* info)  
2893  {  {
2894      update(info);      m_file->pVersion->major = value;
2895  }  }
2896    
2897    
# Line 2843  InstrumentProps::InstrumentProps() : Line 2933  InstrumentProps::InstrumentProps() :
2933      eIsDrum(_("Is drum")),      eIsDrum(_("Is drum")),
2934      eMIDIBank(_("MIDI bank"), 0, 16383),      eMIDIBank(_("MIDI bank"), 0, 16383),
2935      eMIDIProgram(_("MIDI program")),      eMIDIProgram(_("MIDI program")),
2936      eAttenuation(_("Attenuation"), 0, 96, 0, 1),      eAttenuation(_("Attenuation (dB)"), -96, +96, 0, 1),
     eGainPlus6(_("Gain +6dB"), eAttenuation, -6),  
2937      eEffectSend(_("Effect send"), 0, 65535),      eEffectSend(_("Effect send"), 0, 65535),
2938      eFineTune(_("Fine tune"), -8400, 8400),      eFineTune(_("Fine tune"), -8400, 8400),
2939      ePitchbendRange(_("Pitchbend range"), 0, 48),      ePitchbendRange(_("Pitchbend range (halftones)"), 0, 48),
2940      ePianoReleaseMode(_("Piano release mode")),      ePianoReleaseMode(_("Piano release mode")),
2941      eDimensionKeyRangeLow(_("Keyswitching range low")),      eDimensionKeyRangeLow(_("Keyswitching range low")),
2942      eDimensionKeyRangeHigh(_("Keyswitching range high"))      eDimensionKeyRangeHigh(_("Keyswitching range high")),
2943        table2(2,1),
2944        eName2(_("Name")),
2945        eCreationDate(_("Creation date")),
2946        eComments(_("Comments")),
2947        eProduct(_("Product")),
2948        eCopyright(_("Copyright")),
2949        eArtists(_("Artists")),
2950        eGenre(_("Genre")),
2951        eKeywords(_("Keywords")),
2952        eEngineer(_("Engineer")),
2953        eTechnician(_("Technician")),
2954        eSoftware(_("Software")),
2955        eMedium(_("Medium")),
2956        eSource(_("Source")),
2957        eSourceForm(_("Source form")),
2958        eCommissioned(_("Commissioned")),
2959        eSubject(_("Subject"))
2960  {  {
2961      if (!Settings::singleton()->autoRestoreWindowDimension) {      if (!Settings::singleton()->autoRestoreWindowDimension) {
2962          //set_default_size(470, 390);          //set_default_size(470, 390);
# Line 2859  InstrumentProps::InstrumentProps() : Line 2965  InstrumentProps::InstrumentProps() :
2965    
2966      set_title(_("Instrument Properties"));      set_title(_("Instrument Properties"));
2967    
2968        tabs.append_page(vbox[1], _("Settings"));
2969        tabs.append_page(vbox[2], _("Info"));
2970    
2971      eDimensionKeyRangeLow.set_tip(      eDimensionKeyRangeLow.set_tip(
2972          _("start of the keyboard area which should switch the "          _("start of the keyboard area which should switch the "
2973            "\"keyswitching\" dimension")            "\"keyswitching\" dimension")
# Line 2873  InstrumentProps::InstrumentProps() : Line 2982  InstrumentProps::InstrumentProps() :
2982      connect(eMIDIBank, &InstrumentProps::set_MIDIBank);      connect(eMIDIBank, &InstrumentProps::set_MIDIBank);
2983      connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);      connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);
2984      connect(eAttenuation, &gig::Instrument::Attenuation);      connect(eAttenuation, &gig::Instrument::Attenuation);
     connect(eGainPlus6, &gig::Instrument::Attenuation);  
2985      connect(eEffectSend, &gig::Instrument::EffectSend);      connect(eEffectSend, &gig::Instrument::EffectSend);
2986      connect(eFineTune, &gig::Instrument::FineTune);      connect(eFineTune, &gig::Instrument::FineTune);
2987      connect(ePitchbendRange, &gig::Instrument::PitchbendRange);      connect(ePitchbendRange, &gig::Instrument::PitchbendRange);
# Line 2883  InstrumentProps::InstrumentProps() : Line 2991  InstrumentProps::InstrumentProps() :
2991    
2992      eName.signal_value_changed().connect(sig_name_changed.make_slot());      eName.signal_value_changed().connect(sig_name_changed.make_slot());
2993    
2994        connect(eName2, &InstrumentProps::set_Name);
2995        connectLambda(eCreationDate, [this](gig::String s) {
2996            m->pInfo->CreationDate = s;
2997        });
2998        connectLambda(eComments, [this](gig::String s) {
2999            m->pInfo->Comments = s;
3000        });
3001        connectLambda(eProduct, [this](gig::String s) {
3002            m->pInfo->Product = s;
3003        });
3004        connectLambda(eCopyright, [this](gig::String s) {
3005            m->pInfo->Copyright = s;
3006        });
3007        connectLambda(eArtists, [this](gig::String s) {
3008            m->pInfo->Artists = s;
3009        });
3010        connectLambda(eGenre, [this](gig::String s) {
3011            m->pInfo->Genre = s;
3012        });
3013        connectLambda(eKeywords, [this](gig::String s) {
3014            m->pInfo->Keywords = s;
3015        });
3016        connectLambda(eEngineer, [this](gig::String s) {
3017            m->pInfo->Engineer = s;
3018        });
3019        connectLambda(eTechnician, [this](gig::String s) {
3020            m->pInfo->Technician = s;
3021        });
3022        connectLambda(eSoftware, [this](gig::String s) {
3023            m->pInfo->Software = s;
3024        });
3025        connectLambda(eMedium, [this](gig::String s) {
3026            m->pInfo->Medium = s;
3027        });
3028        connectLambda(eSource, [this](gig::String s) {
3029            m->pInfo->Source = s;
3030        });
3031        connectLambda(eSourceForm, [this](gig::String s) {
3032            m->pInfo->SourceForm = s;
3033        });
3034        connectLambda(eCommissioned, [this](gig::String s) {
3035            m->pInfo->Commissioned = s;
3036        });
3037        connectLambda(eSubject, [this](gig::String s) {
3038            m->pInfo->Subject = s;
3039        });
3040    
3041        // tab 1
3042  #if USE_GTKMM_GRID  #if USE_GTKMM_GRID
3043      table.set_column_spacing(5);      table.set_column_spacing(5);
3044  #else  #else
3045      table.set_col_spacings(5);      table.set_col_spacings(5);
3046  #endif  #endif
   
3047      table.add(eName);      table.add(eName);
3048      table.add(eIsDrum);      table.add(eIsDrum);
3049      table.add(eMIDIBank);      table.add(eMIDIBank);
3050      table.add(eMIDIProgram);      table.add(eMIDIProgram);
3051      table.add(eAttenuation);      table.add(eAttenuation);
     table.add(eGainPlus6);  
3052      table.add(eEffectSend);      table.add(eEffectSend);
3053      table.add(eFineTune);      table.add(eFineTune);
3054      table.add(ePitchbendRange);      table.add(ePitchbendRange);
# Line 2902  InstrumentProps::InstrumentProps() : Line 3056  InstrumentProps::InstrumentProps() :
3056      table.add(eDimensionKeyRangeLow);      table.add(eDimensionKeyRangeLow);
3057      table.add(eDimensionKeyRangeHigh);      table.add(eDimensionKeyRangeHigh);
3058    
3059      add(vbox);      // tab 2
3060  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 22)  #if USE_GTKMM_GRID
3061        table2.set_column_spacing(5);
3062    #else
3063        table2.set_col_spacings(5);
3064    #endif
3065        table2.add(eName2);
3066        table2.add(eCreationDate);
3067        table2.add(eComments);
3068        table2.add(eProduct);
3069        table2.add(eCopyright);
3070        table2.add(eArtists);
3071        table2.add(eGenre);
3072        table2.add(eKeywords);
3073        table2.add(eEngineer);
3074        table2.add(eTechnician);
3075        table2.add(eSoftware);
3076        table2.add(eMedium);
3077        table2.add(eSource);
3078        table2.add(eSourceForm);
3079        table2.add(eCommissioned);
3080        table2.add(eSubject);
3081    
3082        add(vbox[0]);
3083    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3084      table.set_margin(5);      table.set_margin(5);
3085  #else  #else
3086      table.set_border_width(5);      table.set_border_width(5);
3087  #endif  #endif
3088      vbox.pack_start(table);      vbox[1].pack_start(table);
3089        vbox[2].pack_start(table2);
3090      table.show();      table.show();
3091      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);      table2.show();
3092        vbox[0].pack_start(tabs);
3093        vbox[0].pack_start(buttonBox, Gtk::PACK_SHRINK);
3094      buttonBox.set_layout(Gtk::BUTTONBOX_END);      buttonBox.set_layout(Gtk::BUTTONBOX_END);
3095  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 22)  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3096      buttonBox.set_margin(5);      buttonBox.set_margin(5);
3097  #else  #else
3098      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
# Line 2926  InstrumentProps::InstrumentProps() : Line 3106  InstrumentProps::InstrumentProps() :
3106          sigc::mem_fun(*this, &InstrumentProps::hide));          sigc::mem_fun(*this, &InstrumentProps::hide));
3107    
3108      quitButton.show();      quitButton.show();
3109      vbox.show();      vbox[0].show();
3110  #if HAS_GTKMM_SHOW_ALL_CHILDREN  #if HAS_GTKMM_SHOW_ALL_CHILDREN
3111      show_all_children();      show_all_children();
3112  #endif  #endif
# Line 2937  void InstrumentProps::set_instrument(gig Line 3117  void InstrumentProps::set_instrument(gig
3117      update(instrument);      update(instrument);
3118    
3119      update_model++;      update_model++;
3120    
3121        // tab 1
3122      eName.set_value(instrument->pInfo->Name);      eName.set_value(instrument->pInfo->Name);
3123      eIsDrum.set_value(instrument->IsDrum);      eIsDrum.set_value(instrument->IsDrum);
3124      eMIDIBank.set_value(instrument->MIDIBank);      eMIDIBank.set_value(instrument->MIDIBank);
3125      eMIDIProgram.set_value(instrument->MIDIProgram);      eMIDIProgram.set_value(instrument->MIDIProgram);
3126        // tab 2
3127        eName2.set_value(instrument->pInfo->Name);
3128        eCreationDate.set_value(instrument->pInfo->CreationDate);
3129        eComments.set_value(instrument->pInfo->Comments);
3130        eProduct.set_value(instrument->pInfo->Product);
3131        eCopyright.set_value(instrument->pInfo->Copyright);
3132        eArtists.set_value(instrument->pInfo->Artists);
3133        eGenre.set_value(instrument->pInfo->Genre);
3134        eKeywords.set_value(instrument->pInfo->Keywords);
3135        eEngineer.set_value(instrument->pInfo->Engineer);
3136        eTechnician.set_value(instrument->pInfo->Technician);
3137        eSoftware.set_value(instrument->pInfo->Software);
3138        eMedium.set_value(instrument->pInfo->Medium);
3139        eSource.set_value(instrument->pInfo->Source);
3140        eSourceForm.set_value(instrument->pInfo->SourceForm);
3141        eCommissioned.set_value(instrument->pInfo->Commissioned);
3142        eSubject.set_value(instrument->pInfo->Subject);
3143    
3144        update_model--;
3145    }
3146    
3147    
3148    SampleProps::SampleProps() :
3149    #if HAS_GTKMM_STOCK
3150        quitButton(Gtk::Stock::CLOSE),
3151    #else
3152        quitButton(_("_Close")),
3153    #endif
3154        table(2,1),
3155        eName(_("Name")),
3156        eUnityNote(_("Unity Note")),
3157        eSampleGroup(_("Sample Group")),
3158        eSampleFormatInfo(_("Sample Format")),
3159        eSampleID("Sample ID"),
3160        eChecksum("Wave Data CRC-32"),
3161        eLoopsCount(_("Loops"), 0, 1), // we might support more than 1 loop in future
3162        eLoopStart(_("Loop start position"), 0, 9999999),
3163        eLoopLength(_("Loop size"), 0, 9999999),
3164        eLoopType(_("Loop type")),
3165        eLoopPlayCount(_("Playback count")),
3166        table2(2,1),
3167        eName2(_("Name")),
3168        eCreationDate(_("Creation date")),
3169        eComments(_("Comments")),
3170        eProduct(_("Product")),
3171        eCopyright(_("Copyright")),
3172        eArtists(_("Artists")),
3173        eGenre(_("Genre")),
3174        eKeywords(_("Keywords")),
3175        eEngineer(_("Engineer")),
3176        eTechnician(_("Technician")),
3177        eSoftware(_("Software")),
3178        eMedium(_("Medium")),
3179        eSource(_("Source")),
3180        eSourceForm(_("Source form")),
3181        eCommissioned(_("Commissioned")),
3182        eSubject(_("Subject"))
3183    {
3184        if (!Settings::singleton()->autoRestoreWindowDimension) {
3185            //set_default_size(470, 390);
3186            set_position(Gtk::WIN_POS_MOUSE);
3187        }
3188    
3189        set_title(_("Sample Properties"));
3190    
3191        tabs.append_page(vbox[1], _("Settings"));
3192        tabs.append_page(vbox[2], _("Info"));
3193    
3194        connect(eName, &SampleProps::set_Name);
3195        connect(eUnityNote, &gig::Sample::MIDIUnityNote);
3196        connect(eLoopsCount, &gig::Sample::Loops);
3197        connectLambda(eLoopStart, [this](uint32_t start){
3198            m->LoopStart = start;
3199            m->LoopEnd = start + m->LoopSize;
3200        });
3201        connectLambda(eLoopLength, [this](uint32_t length){
3202            m->LoopSize = length;
3203            m->LoopEnd = m->LoopStart + length;
3204        });
3205        {
3206            const char* choices[] = { _("normal"), _("bidirectional"), _("backward"), 0 };
3207            static const gig::loop_type_t values[] = {
3208                gig::loop_type_normal,
3209                gig::loop_type_bidirectional,
3210                gig::loop_type_backward
3211            };
3212            eLoopType.set_choices(choices, values);
3213        }
3214        connect(eLoopType, &gig::Sample::LoopType);
3215        connect(eLoopPlayCount, &gig::Sample::LoopPlayCount);
3216    
3217        eName.signal_value_changed().connect(sig_name_changed.make_slot());
3218    
3219        connect(eName2, &SampleProps::set_Name);
3220        connectLambda(eCreationDate, [this](gig::String s) {
3221            m->pInfo->CreationDate = s;
3222        });
3223        connectLambda(eComments, [this](gig::String s) {
3224            m->pInfo->Comments = s;
3225        });
3226        connectLambda(eProduct, [this](gig::String s) {
3227            m->pInfo->Product = s;
3228        });
3229        connectLambda(eCopyright, [this](gig::String s) {
3230            m->pInfo->Copyright = s;
3231        });
3232        connectLambda(eArtists, [this](gig::String s) {
3233            m->pInfo->Artists = s;
3234        });
3235        connectLambda(eGenre, [this](gig::String s) {
3236            m->pInfo->Genre = s;
3237        });
3238        connectLambda(eKeywords, [this](gig::String s) {
3239            m->pInfo->Keywords = s;
3240        });
3241        connectLambda(eEngineer, [this](gig::String s) {
3242            m->pInfo->Engineer = s;
3243        });
3244        connectLambda(eTechnician, [this](gig::String s) {
3245            m->pInfo->Technician = s;
3246        });
3247        connectLambda(eSoftware, [this](gig::String s) {
3248            m->pInfo->Software = s;
3249        });
3250        connectLambda(eMedium, [this](gig::String s) {
3251            m->pInfo->Medium = s;
3252        });
3253        connectLambda(eSource, [this](gig::String s) {
3254            m->pInfo->Source = s;
3255        });
3256        connectLambda(eSourceForm, [this](gig::String s) {
3257            m->pInfo->SourceForm = s;
3258        });
3259        connectLambda(eCommissioned, [this](gig::String s) {
3260            m->pInfo->Commissioned = s;
3261        });
3262        connectLambda(eSubject, [this](gig::String s) {
3263            m->pInfo->Subject = s;
3264        });
3265    
3266        // tab 1
3267    #if USE_GTKMM_GRID
3268        table.set_column_spacing(5);
3269    #else
3270        table.set_col_spacings(5);
3271    #endif
3272        table.add(eName);
3273        table.add(eUnityNote);
3274        table.add(eSampleGroup);
3275        table.add(eSampleFormatInfo);
3276        table.add(eSampleID);
3277        table.add(eChecksum);
3278        table.add(eLoopsCount);
3279        table.add(eLoopStart);
3280        table.add(eLoopLength);
3281        table.add(eLoopType);
3282        table.add(eLoopPlayCount);
3283    
3284        // tab 2
3285    #if USE_GTKMM_GRID
3286        table2.set_column_spacing(5);
3287    #else
3288        table2.set_col_spacings(5);
3289    #endif
3290        table2.add(eName2);
3291        table2.add(eCreationDate);
3292        table2.add(eComments);
3293        table2.add(eProduct);
3294        table2.add(eCopyright);
3295        table2.add(eArtists);
3296        table2.add(eGenre);
3297        table2.add(eKeywords);
3298        table2.add(eEngineer);
3299        table2.add(eTechnician);
3300        table2.add(eSoftware);
3301        table2.add(eMedium);
3302        table2.add(eSource);
3303        table2.add(eSourceForm);
3304        table2.add(eCommissioned);
3305        table2.add(eSubject);
3306    
3307        add(vbox[0]);
3308    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3309        table.set_margin(5);
3310    #else
3311        table.set_border_width(5);
3312    #endif
3313        vbox[1].pack_start(table);
3314        vbox[2].pack_start(table2);
3315        table.show();
3316        table2.show();
3317        vbox[0].pack_start(tabs);
3318        vbox[0].pack_start(buttonBox, Gtk::PACK_SHRINK);
3319        buttonBox.set_layout(Gtk::BUTTONBOX_END);
3320    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3321        buttonBox.set_margin(5);
3322    #else
3323        buttonBox.set_border_width(5);
3324    #endif
3325        buttonBox.show();
3326        buttonBox.pack_start(quitButton);
3327        quitButton.set_can_default();
3328        quitButton.grab_focus();
3329    
3330        quitButton.signal_clicked().connect(
3331            sigc::mem_fun(*this, &SampleProps::hide));
3332    
3333        quitButton.show();
3334        vbox[0].show();
3335    #if HAS_GTKMM_SHOW_ALL_CHILDREN
3336        show_all_children();
3337    #endif
3338    }
3339    
3340    void SampleProps::set_sample(gig::Sample* sample)
3341    {
3342        update(sample);
3343    
3344        update_model++;
3345    
3346        // tab 1
3347        eName.set_value(sample->pInfo->Name);
3348        eUnityNote.set_value(sample->MIDIUnityNote);
3349        // show sample group name
3350        {
3351            Glib::ustring s = "---";
3352            if (sample && sample->GetGroup())
3353                s = sample->GetGroup()->Name;
3354            eSampleGroup.text.set_text(s);
3355        }
3356        // assemble sample format info string
3357        {
3358            Glib::ustring s;
3359            if (sample) {
3360                switch (sample->Channels) {
3361                    case 1: s = _("Mono"); break;
3362                    case 2: s = _("Stereo"); break;
3363                    default:
3364                        s = ToString(sample->Channels) + _(" audio channels");
3365                        break;
3366                }
3367                s += " " + ToString(sample->BitDepth) + " Bits";
3368                s += " " + ToString(sample->SamplesPerSecond/1000) + "."
3369                         + ToString((sample->SamplesPerSecond%1000)/100) + " kHz";
3370            } else {
3371                s = _("No sample assigned to this dimension region.");
3372            }
3373            eSampleFormatInfo.text.set_text(s);
3374        }
3375        // generate sample's memory address pointer string
3376        {
3377            Glib::ustring s;
3378            if (sample) {
3379                char buf[64] = {};
3380                snprintf(buf, sizeof(buf), "%p", sample);
3381                s = buf;
3382            } else {
3383                s = "---";
3384            }
3385            eSampleID.text.set_text(s);
3386        }
3387        // generate raw wave form data CRC-32 checksum string
3388        {
3389            Glib::ustring s = "---";
3390            if (sample) {
3391                char buf[64] = {};
3392                snprintf(buf, sizeof(buf), "%x", sample->GetWaveDataCRC32Checksum());
3393                s = buf;
3394            }
3395            eChecksum.text.set_text(s);
3396        }
3397        eLoopsCount.set_value(sample->Loops);
3398        eLoopStart.set_value(sample->LoopStart);
3399        eLoopLength.set_value(sample->LoopSize);
3400        eLoopType.set_value(sample->LoopType);
3401        eLoopPlayCount.set_value(sample->LoopPlayCount);
3402        // tab 2
3403        eName2.set_value(sample->pInfo->Name);
3404        eCreationDate.set_value(sample->pInfo->CreationDate);
3405        eComments.set_value(sample->pInfo->Comments);
3406        eProduct.set_value(sample->pInfo->Product);
3407        eCopyright.set_value(sample->pInfo->Copyright);
3408        eArtists.set_value(sample->pInfo->Artists);
3409        eGenre.set_value(sample->pInfo->Genre);
3410        eKeywords.set_value(sample->pInfo->Keywords);
3411        eEngineer.set_value(sample->pInfo->Engineer);
3412        eTechnician.set_value(sample->pInfo->Technician);
3413        eSoftware.set_value(sample->pInfo->Software);
3414        eMedium.set_value(sample->pInfo->Medium);
3415        eSource.set_value(sample->pInfo->Source);
3416        eSourceForm.set_value(sample->pInfo->SourceForm);
3417        eCommissioned.set_value(sample->pInfo->Commissioned);
3418        eSubject.set_value(sample->pInfo->Subject);
3419    
3420        update_model--;
3421    }
3422    
3423    void SampleProps::set_Name(const gig::String& name)
3424    {
3425        m->pInfo->Name = name;
3426    }
3427    
3428    void SampleProps::update_name()
3429    {
3430        update_model++;
3431        eName.set_value(m->pInfo->Name);
3432      update_model--;      update_model--;
3433  }  }
3434    
# Line 2974  void MainWindow::updateSampleRefCountMap Line 3462  void MainWindow::updateSampleRefCountMap
3462      }      }
3463  }  }
3464    
3465    bool MainWindow::onQueryTreeViewTooltip(int x, int y, bool keyboardTip, const Glib::RefPtr<Gtk::Tooltip>& tooltip) {
3466        Gtk::TreeModel::iterator iter;
3467        if (!m_TreeViewInstruments.get_tooltip_context_iter(x, y, keyboardTip, iter)) {
3468            return false;
3469        }
3470        Gtk::TreeModel::Path path(iter);
3471        Gtk::TreeModel::Row row = *iter;
3472        Gtk::TreeViewColumn* pointedColumn = NULL;
3473        // resolve the precise table column the mouse points to
3474        {
3475            Gtk::TreeModel::Path path; // unused
3476            int cellX, cellY; // unused
3477            m_TreeViewInstruments.get_path_at_pos(x, y, path, pointedColumn, cellX, cellY);
3478        }
3479        Gtk::TreeViewColumn* scriptsColumn = m_TreeViewInstruments.get_column(2);
3480        if (pointedColumn == scriptsColumn) { // mouse hovers scripts column ...
3481            // show the script(s) assigned to the hovered instrument as tooltip
3482            tooltip->set_markup( row[m_InstrumentsModel.m_col_tooltip] );
3483            m_TreeViewInstruments.set_tooltip_cell(tooltip, &path, scriptsColumn, NULL);
3484        } else {
3485            // if beginners' tooltips is disabled then don't show the following one
3486            if (!Settings::singleton()->showTooltips)
3487                return false;
3488            // yeah, a beginners tooltip
3489            tooltip->set_text(_(
3490                "Right click here for actions on instruments & MIDI Rules. "
3491                "Drag & drop to change the order of instruments."
3492            ));
3493            m_TreeViewInstruments.set_tooltip_cell(tooltip, &path, pointedColumn, NULL);
3494        }
3495        return true;
3496    }
3497    
3498    static Glib::ustring scriptTooltipFor(gig::Instrument* instrument, int index) {
3499        Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
3500        const int iScriptSlots = instrument->ScriptSlotCount();
3501        Glib::ustring tooltip = "<u>(" + ToString(index) + ") “"  + name + "”</u>\n\n";
3502        if (!iScriptSlots)
3503            tooltip += "<span foreground='red'><i>No script assigned</i></span>";
3504        else {
3505            for (int i = 0; i < iScriptSlots; ++i) {
3506                tooltip += "• " + ToString(i+1) + ". Script: “<span foreground='#46DEFF'><b>" +
3507                           instrument->GetScriptOfSlot(i)->Name + "</b></span>”";
3508                if (i + 1 < iScriptSlots) tooltip += "\n\n";
3509            }
3510        }
3511        return tooltip;
3512    }
3513    
3514  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)
3515  {  {
3516      file = 0;      file = 0;
# Line 2987  void MainWindow::load_gig(gig::File* gig Line 3524  void MainWindow::load_gig(gig::File* gig
3524      file_has_name = filename;      file_has_name = filename;
3525      file_is_changed = false;      file_is_changed = false;
3526    
3527      propDialog.set_file(gig);      fileProps.set_file(gig);
     propDialog.set_info(gig->pInfo);  
3528    
3529      instrument_name_connection.block();      instrument_name_connection.block();
3530      int index = 0;      int index = 0;
# Line 2997  void MainWindow::load_gig(gig::File* gig Line 3533  void MainWindow::load_gig(gig::File* gig
3533          Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));          Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
3534          const int iScriptSlots = instrument->ScriptSlotCount();          const int iScriptSlots = instrument->ScriptSlotCount();
3535    
3536          Gtk::TreeModel::iterator iter = m_refTreeModel->append();          Gtk::TreeModel::iterator iter = m_refInstrumentsTreeModel->append();
3537          Gtk::TreeModel::Row row = *iter;          Gtk::TreeModel::Row row = *iter;
3538          row[m_Columns.m_col_nr] = index;          row[m_InstrumentsModel.m_col_nr] = index;
3539          row[m_Columns.m_col_name] = name;          row[m_InstrumentsModel.m_col_name] = name;
3540          row[m_Columns.m_col_instr] = instrument;          row[m_InstrumentsModel.m_col_instr] = instrument;
3541          row[m_Columns.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";          row[m_InstrumentsModel.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
3542            row[m_InstrumentsModel.m_col_tooltip] = scriptTooltipFor(instrument, index);
3543    
3544  #if !USE_GTKMM_BUILDER  #if !USE_GTKMM_BUILDER
3545          add_instrument_to_menu(name);          add_instrument_to_menu(name);
# Line 3064  void MainWindow::load_gig(gig::File* gig Line 3601  void MainWindow::load_gig(gig::File* gig
3601      file = gig;      file = gig;
3602    
3603      // select the first instrument      // select the first instrument
3604      m_TreeView.get_selection()->select(Gtk::TreePath("0"));      m_TreeViewInstruments.get_selection()->select(Gtk::TreePath("0"));
3605    
3606      instr_props_set_instrument();      instr_props_set_instrument();
3607      gig::Instrument* instrument = get_instrument();      gig::Instrument* instrument = get_instrument();
# Line 3077  bool MainWindow::instr_props_set_instrum Line 3614  bool MainWindow::instr_props_set_instrum
3614  {  {
3615      instrumentProps.signal_name_changed().clear();      instrumentProps.signal_name_changed().clear();
3616    
3617      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();      std::vector<Gtk::TreeModel::Path> rows = m_TreeViewInstruments.get_selection()->get_selected_rows();
3618      if (rows.empty()) {      if (rows.empty()) {
3619          instrumentProps.hide();          instrumentProps.hide();
3620          return false;          return false;
3621      }      }
3622      //NOTE: was const_iterator before, which did not compile with GTKMM4 development branch, probably going to be fixed before final GTKMM4 release though.      //NOTE: was const_iterator before, which did not compile with GTKMM4 development branch, probably going to be fixed before final GTKMM4 release though.
3623      Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);      Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(rows[0]);
3624      if (it) {      if (it) {
3625          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
3626          gig::Instrument* instrument = row[m_Columns.m_col_instr];          gig::Instrument* instrument = row[m_InstrumentsModel.m_col_instr];
3627    
3628          instrumentProps.set_instrument(instrument);          instrumentProps.set_instrument(instrument);
3629    
# Line 3115  void MainWindow::show_instr_props() Line 3652  void MainWindow::show_instr_props()
3652  void MainWindow::instr_name_changed_by_instr_props(Gtk::TreeModel::iterator& it)  void MainWindow::instr_name_changed_by_instr_props(Gtk::TreeModel::iterator& it)
3653  {  {
3654      Gtk::TreeModel::Row row = *it;      Gtk::TreeModel::Row row = *it;
3655      Glib::ustring name = row[m_Columns.m_col_name];      Glib::ustring name = row[m_InstrumentsModel.m_col_name];
3656    
3657      gig::Instrument* instrument = row[m_Columns.m_col_instr];      gig::Instrument* instrument = row[m_InstrumentsModel.m_col_instr];
3658      Glib::ustring gigname(gig_to_utf8(instrument->pInfo->Name));      Glib::ustring gigname(gig_to_utf8(instrument->pInfo->Name));
3659      if (gigname != name) {      if (gigname != name) {
3660          row[m_Columns.m_col_name] = gigname;          Gtk::TreeModel::Path path(*it);
3661            const int index = path[0];
3662            row[m_InstrumentsModel.m_col_name] = gigname;
3663            row[m_InstrumentsModel.m_col_tooltip] = scriptTooltipFor(instrument, index);
3664        }
3665    }
3666    
3667    bool MainWindow::sample_props_set_sample()
3668    {
3669        sampleProps.signal_name_changed().clear();
3670    
3671        std::vector<Gtk::TreeModel::Path> rows = m_TreeViewSamples.get_selection()->get_selected_rows();
3672        if (rows.empty()) {
3673            sampleProps.hide();
3674            return false;
3675        }
3676        //NOTE: was const_iterator before, which did not compile with GTKMM4 development branch, probably going to be fixed before final GTKMM4 release though.
3677        Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
3678        if (it) {
3679            Gtk::TreeModel::Row row = *it;
3680            gig::Sample* sample = row[m_SamplesModel.m_col_sample];
3681    
3682            sampleProps.set_sample(sample);
3683    
3684            // make sure sample tree is updated when user changes the
3685            // sample name in sample properties window
3686            sampleProps.signal_name_changed().connect(
3687                sigc::bind(
3688                    sigc::mem_fun(*this,
3689                        &MainWindow::sample_name_changed_by_sample_props
3690                    ), it
3691                )
3692            );
3693        } else {
3694            sampleProps.hide();
3695        }
3696        //NOTE: explicit boolean cast required for GTKMM4 development branch here
3697        return it ? true : false;
3698    }
3699    
3700    void MainWindow::show_sample_props()
3701    {
3702        if (sample_props_set_sample()) {
3703            sampleProps.show();
3704            sampleProps.deiconify();
3705        }
3706    }
3707    
3708    void MainWindow::sample_name_changed_by_sample_props(Gtk::TreeModel::iterator& it)
3709    {
3710        Gtk::TreeModel::Row row = *it;
3711        Glib::ustring name = row[m_SamplesModel.m_col_name];
3712    
3713        gig::Sample* sample = row[m_SamplesModel.m_col_sample];
3714        Glib::ustring gigname(gig_to_utf8(sample->pInfo->Name));
3715        if (gigname != name) {
3716            Gtk::TreeModel::Path path(*it);
3717            row[m_SamplesModel.m_col_name] = gigname;
3718      }      }
3719  }  }
3720    
# Line 3136  void MainWindow::show_midi_rules() Line 3730  void MainWindow::show_midi_rules()
3730    
3731  void MainWindow::show_script_slots() {  void MainWindow::show_script_slots() {
3732      if (!file) return;      if (!file) return;
3733    
3734      // get selected instrument      // get selected instrument
3735      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();      gig::Instrument* instrument = get_instrument();
     if (rows.empty()) return;  
     Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);  
     if (!it) return;  
     Gtk::TreeModel::Row row = *it;  
     gig::Instrument* instrument = row[m_Columns.m_col_instr];  
3736      if (!instrument) return;      if (!instrument) return;
3737    
3738      ScriptSlots* window = new ScriptSlots;      ScriptSlots* window = new ScriptSlots;
# Line 3158  void MainWindow::onScriptSlotsModified(g Line 3748  void MainWindow::onScriptSlotsModified(g
3748      if (!pInstrument) return;      if (!pInstrument) return;
3749      const int iScriptSlots = pInstrument->ScriptSlotCount();      const int iScriptSlots = pInstrument->ScriptSlotCount();
3750    
3751      //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!      //NOTE: This is a big mess! Sometimes GTK requires m_TreeViewInstruments.get_model(), here we need m_refInstrumentsModelFilter->get_model(), otherwise accessing children below causes an error!
3752      //Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();      //Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewInstruments.get_model();
3753      Glib::RefPtr<Gtk::TreeModel> model = m_refTreeModelFilter->get_model();      Glib::RefPtr<Gtk::TreeModel> model = m_refInstrumentsModelFilter->get_model();
3754    
3755      for (int i = 0; i < model->children().size(); ++i) {      for (int i = 0; i < model->children().size(); ++i) {
3756          Gtk::TreeModel::Row row = model->children()[i];          Gtk::TreeModel::Row row = model->children()[i];
3757          if (row[m_Columns.m_col_instr] != pInstrument) continue;          if (row[m_InstrumentsModel.m_col_instr] != pInstrument) continue;
3758          row[m_Columns.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";          row[m_InstrumentsModel.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
3759            row[m_InstrumentsModel.m_col_tooltip] = scriptTooltipFor(pInstrument, i);
3760          break;          break;
3761      }      }
3762    
3763      // causes the sampler to reload the instrument with the new script      // causes the sampler to reload the instrument with the new script
3764      on_sel_change();      on_sel_change();
3765    
3766        // force script 'patch' variables editor ("Script" tab) to be refreshed
3767        dimreg_edit.scriptVars.setInstrument(pInstrument, true/*force update*/);
3768  }  }
3769    
3770  void MainWindow::assignScript(gig::Script* pScript) {  void MainWindow::assignScript(gig::Script* pScript) {
# Line 3191  void MainWindow::assignScript(gig::Scrip Line 3785  void MainWindow::assignScript(gig::Scrip
3785      onScriptSlotsModified(pInstrument);      onScriptSlotsModified(pInstrument);
3786  }  }
3787    
3788    void MainWindow::dropAllScriptSlots() {
3789        gig::Instrument* pInstrument = get_instrument();
3790        if (!pInstrument) {
3791            printf("!instrument\n");
3792            return;
3793        }
3794    
3795        const int iScriptSlots = pInstrument->ScriptSlotCount();
3796        for (int i = iScriptSlots - 1; i >= 0; --i)
3797            pInstrument->RemoveScriptSlot(i);
3798    
3799        onScriptSlotsModified(pInstrument);
3800    }
3801    
3802  void MainWindow::on_action_refresh_all() {  void MainWindow::on_action_refresh_all() {
3803      __refreshEntireGUI();      __refreshEntireGUI();
3804  }  }
# Line 3237  void MainWindow::on_auto_restore_win_dim Line 3845  void MainWindow::on_auto_restore_win_dim
3845  #endif  #endif
3846  }  }
3847    
3848    void MainWindow::on_instr_double_click_opens_props() {
3849    #if USE_GLIB_ACTION
3850        bool active = false;
3851        m_actionInstrDoubleClickOpensProps->get_state(active);
3852        // for some reason toggle state does not change automatically
3853        active = !active;
3854        m_actionInstrDoubleClickOpensProps->change_state(active);
3855        Settings::singleton()->instrumentDoubleClickOpensProps = active;
3856    #else
3857        Gtk::CheckMenuItem* item =
3858            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/OpenInstrPropsByDoubleClick"));
3859        if (!item) {
3860            std::cerr << "/MenuBar/MenuView/OpenInstrPropsByDoubleClick == NULL\n";
3861            return;
3862        }
3863        Settings::singleton()->instrumentDoubleClickOpensProps = item->get_active();
3864    #endif
3865    }
3866    
3867  void MainWindow::on_save_with_temporary_file() {  void MainWindow::on_save_with_temporary_file() {
3868  #if USE_GLIB_ACTION  #if USE_GLIB_ACTION
3869      bool active = false;      bool active = false;
# Line 3311  bool MainWindow::on_button_release(Gdk:: Line 3938  bool MainWindow::on_button_release(Gdk::
3938  void MainWindow::on_button_release(GdkEventButton* button) {  void MainWindow::on_button_release(GdkEventButton* button) {
3939  #endif  #endif
3940      if (button->type == GDK_2BUTTON_PRESS) {      if (button->type == GDK_2BUTTON_PRESS) {
3941          show_instr_props();          if (Settings::singleton()->instrumentDoubleClickOpensProps)
3942                show_instr_props();
3943      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
3944          // gig v2 files have no midi rules          // gig v2 files have no midi rules
3945          const bool bEnabled = !(file->pVersion && file->pVersion->major == 2);          const bool bEnabled = !(file->pVersion && file->pVersion->major == 2);
# Line 3343  void MainWindow::on_instrument_selection Line 3971  void MainWindow::on_instrument_selection
3971              find(children.begin(), children.end(), item);              find(children.begin(), children.end(), item);
3972          if (it != children.end()) {          if (it != children.end()) {
3973              int index = it - children.begin();              int index = it - children.begin();
3974              m_TreeView.get_selection()->select(Gtk::TreePath(ToString(index)));              m_TreeViewInstruments.get_selection()->select(Gtk::TreePath(ToString(index)));
3975    
3976              m_RegionChooser.set_instrument(file->GetInstrument(index));              m_RegionChooser.set_instrument(file->GetInstrument(index));
3977          }          }
# Line 3351  void MainWindow::on_instrument_selection Line 3979  void MainWindow::on_instrument_selection
3979  }  }
3980  #endif  #endif
3981    
3982    void MainWindow::on_action_move_instr() {
3983        gig::Instrument* instr = get_instrument();
3984        if (!instr) return;
3985    
3986        int currentIndex = getIndexOf(instr);
3987    
3988        Gtk::Dialog dialog(_("Move Instrument"), true /*modal*/);
3989    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
3990        Gtk::Adjustment adjustment(
3991            currentIndex,
3992            0 /*min*/, file->CountInstruments() - 1 /*max*/
3993        );
3994        Gtk::SpinButton spinBox(adjustment);
3995    #else
3996        Gtk::SpinButton spinBox(
3997            Gtk::Adjustment::create(
3998                currentIndex,
3999                0 /*min*/, file->CountInstruments() - 1 /*max*/
4000            )
4001        );
4002    #endif
4003    #if USE_GTKMM_BOX
4004        dialog.get_content_area()->pack_start(spinBox);
4005    #else
4006        dialog.get_vbox()->pack_start(spinBox);
4007    #endif
4008    #if HAS_GTKMM_STOCK
4009        Gtk::Button* okButton = dialog.add_button(Gtk::Stock::OK, 0);
4010        dialog.add_button(Gtk::Stock::CANCEL, 1);
4011    #else
4012        Gtk::Button* okButton = dialog.add_button(_("_OK"), 0);
4013        dialog.add_button(_("_Cancel"), 1);
4014    #endif
4015        okButton->set_sensitive(false);
4016        // show the dialog at a reasonable screen position
4017        dialog.set_position(Gtk::WIN_POS_MOUSE);
4018        // only enable the 'OK' button if entered new index is not instrument's
4019        // current index already
4020        spinBox.signal_value_changed().connect([&]{
4021            okButton->set_sensitive( spinBox.get_value_as_int() != currentIndex );
4022        });
4023        // usability acceleration: if user hits enter key on the text entry field
4024        // then auto trigger the 'OK' button
4025        spinBox.signal_activate().connect([&]{
4026            if (okButton->get_sensitive())
4027                okButton->clicked();
4028        });
4029    #if HAS_GTKMM_SHOW_ALL_CHILDREN
4030        dialog.show_all_children();
4031    #endif
4032        if (!dialog.run()) { // 'OK' selected ...
4033            int newIndex = spinBox.get_value_as_int();
4034            printf("MOVE TO %d\n", newIndex);
4035            gig::Instrument* dst = file->GetInstrument(newIndex);
4036            instr->MoveTo(dst);
4037            __refreshEntireGUI();
4038            select_instrument(instr);
4039        }
4040    }
4041    
4042  void MainWindow::select_instrument(gig::Instrument* instrument) {  void MainWindow::select_instrument(gig::Instrument* instrument) {
4043      if (!instrument) return;      if (!instrument) return;
4044    
4045      //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!      //NOTE: This is a big mess! Sometimes GTK requires m_refInstrumentsModelFilter->get_model(), here we need m_TreeViewInstruments.get_model(), otherwise treeview selection below causes an error!
4046      Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();      Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewInstruments.get_model();
4047      //Glib::RefPtr<Gtk::TreeModel> model = m_refTreeModelFilter->get_model();      //Glib::RefPtr<Gtk::TreeModel> model = m_refInstrumentsModelFilter->get_model();
4048    
4049      for (int i = 0; i < model->children().size(); ++i) {      for (int i = 0; i < model->children().size(); ++i) {
4050          Gtk::TreeModel::Row row = model->children()[i];          Gtk::TreeModel::Row row = model->children()[i];
4051          if (row[m_Columns.m_col_instr] == instrument) {          if (row[m_InstrumentsModel.m_col_instr] == instrument) {
4052              // select and show the respective instrument in the list view              // select and show the respective instrument in the list view
4053              show_intruments_tab();              show_intruments_tab();
4054              m_TreeView.get_selection()->unselect_all();              m_TreeViewInstruments.get_selection()->unselect_all();
4055                            
4056  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 22)  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
4057              auto iterSel = model->children()[i].get_iter();              auto iterSel = model->children()[i].get_iter();
4058              m_TreeView.get_selection()->select(iterSel);              m_TreeViewInstruments.get_selection()->select(iterSel);
4059  #else  #else
4060              m_TreeView.get_selection()->select(model->children()[i]);              m_TreeViewInstruments.get_selection()->select(model->children()[i]);
4061  #endif  #endif
4062              std::vector<Gtk::TreeModel::Path> rows =              std::vector<Gtk::TreeModel::Path> rows =
4063                  m_TreeView.get_selection()->get_selected_rows();                  m_TreeViewInstruments.get_selection()->get_selected_rows();
4064              if (!rows.empty())              if (!rows.empty())
4065                  m_TreeView.scroll_to_row(rows[0]);                  m_TreeViewInstruments.scroll_to_row(rows[0]);
4066              on_sel_change(); // the regular instrument selection change callback              on_sel_change(); // the regular instrument selection change callback
4067          }          }
4068      }      }
# Line 3385  bool MainWindow::select_dimension_region Line 4073  bool MainWindow::select_dimension_region
4073      gig::Region* pRegion = (gig::Region*) dimRgn->GetParent();      gig::Region* pRegion = (gig::Region*) dimRgn->GetParent();
4074      gig::Instrument* pInstrument = (gig::Instrument*) pRegion->GetParent();      gig::Instrument* pInstrument = (gig::Instrument*) pRegion->GetParent();
4075    
4076      //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!      //NOTE: This is a big mess! Sometimes GTK requires m_refInstrumentsModelFilter->get_model(), here we need m_TreeViewInstruments.get_model(), otherwise treeview selection below causes an error!
4077      Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();      Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewInstruments.get_model();
4078      //Glib::RefPtr<Gtk::TreeModel> model = m_refTreeModelFilter->get_model();      //Glib::RefPtr<Gtk::TreeModel> model = m_refInstrumentsModelFilter->get_model();
4079    
4080      for (int i = 0; i < model->children().size(); ++i) {      for (int i = 0; i < model->children().size(); ++i) {
4081          Gtk::TreeModel::Row row = model->children()[i];          Gtk::TreeModel::Row row = model->children()[i];
4082          if (row[m_Columns.m_col_instr] == pInstrument) {          if (row[m_InstrumentsModel.m_col_instr] == pInstrument) {
4083              // select and show the respective instrument in the list view              // select and show the respective instrument in the list view
4084              show_intruments_tab();              show_intruments_tab();
4085              m_TreeView.get_selection()->unselect_all();              m_TreeViewInstruments.get_selection()->unselect_all();
4086  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 22)  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
4087              auto iterSel = model->children()[i].get_iter();              auto iterSel = model->children()[i].get_iter();
4088              m_TreeView.get_selection()->select(iterSel);              m_TreeViewInstruments.get_selection()->select(iterSel);
4089  #else  #else
4090              m_TreeView.get_selection()->select(model->children()[i]);              m_TreeViewInstruments.get_selection()->select(model->children()[i]);
4091  #endif  #endif
4092              std::vector<Gtk::TreeModel::Path> rows =              std::vector<Gtk::TreeModel::Path> rows =
4093                  m_TreeView.get_selection()->get_selected_rows();                  m_TreeViewInstruments.get_selection()->get_selected_rows();
4094              if (!rows.empty())              if (!rows.empty())
4095                  m_TreeView.scroll_to_row(rows[0]);                  m_TreeViewInstruments.scroll_to_row(rows[0]);
4096              on_sel_change(); // the regular instrument selection change callback              on_sel_change(); // the regular instrument selection change callback
4097    
4098              // select respective region in the region selector              // select respective region in the region selector
# Line 3431  void MainWindow::select_sample(gig::Samp Line 4119  void MainWindow::select_sample(gig::Samp
4119              if (rowSample[m_SamplesModel.m_col_sample] == sample) {              if (rowSample[m_SamplesModel.m_col_sample] == sample) {
4120                  show_samples_tab();                  show_samples_tab();
4121                  m_TreeViewSamples.get_selection()->unselect_all();                  m_TreeViewSamples.get_selection()->unselect_all();
4122  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 22)  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
4123                  auto iterSel = rowGroup.children()[s].get_iter();                  auto iterSel = rowGroup.children()[s].get_iter();
4124                  m_TreeViewSamples.get_selection()->select(iterSel);                  m_TreeViewSamples.get_selection()->select(iterSel);
4125  #else  #else
# Line 3631  void MainWindow::updateScriptListOfMenu( Line 4319  void MainWindow::updateScriptListOfMenu(
4319          assign_scripts_menu->append(*item);          assign_scripts_menu->append(*item);
4320      }      }
4321    
4322        // add separator line to menu
4323        assign_scripts_menu->append(*new Gtk::SeparatorMenuItem);
4324    
4325        {
4326            Gtk::MenuItem* item = new Gtk::MenuItem(_("Unassign All Scripts"));
4327            item->signal_activate().connect(
4328                sigc::mem_fun(*this, &MainWindow::dropAllScriptSlots)
4329            );
4330            assign_scripts_menu->append(*item);
4331            item->set_accel_path("<Scripts>/DropAllScriptSlots");
4332        }
4333    
4334  #if HAS_GTKMM_SHOW_ALL_CHILDREN  #if HAS_GTKMM_SHOW_ALL_CHILDREN
4335      assign_scripts_menu->show_all_children();      assign_scripts_menu->show_all_children();
4336  #endif  #endif
# Line 3677  void MainWindow::add_instrument(gig::Ins Line 4377  void MainWindow::add_instrument(gig::Ins
4377    
4378      // update instrument tree view      // update instrument tree view
4379      instrument_name_connection.block();      instrument_name_connection.block();
4380      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();      Gtk::TreeModel::iterator iterInstr = m_refInstrumentsTreeModel->append();
4381      Gtk::TreeModel::Row rowInstr = *iterInstr;      Gtk::TreeModel::Row rowInstr = *iterInstr;
4382      rowInstr[m_Columns.m_col_nr] = m_refTreeModel->children().size() - 1;      const int index = m_refInstrumentsTreeModel->children().size() - 1;
4383      rowInstr[m_Columns.m_col_name] = name;      const int iScriptSlots = instrument->ScriptSlotCount();
4384      rowInstr[m_Columns.m_col_instr] = instrument;      rowInstr[m_InstrumentsModel.m_col_nr] = index;
4385      rowInstr[m_Columns.m_col_scripts] = "";      rowInstr[m_InstrumentsModel.m_col_name] = name;
4386        rowInstr[m_InstrumentsModel.m_col_instr] = instrument;
4387        rowInstr[m_InstrumentsModel.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
4388        rowInstr[m_InstrumentsModel.m_col_tooltip] = scriptTooltipFor(instrument, index);
4389      instrument_name_connection.unblock();      instrument_name_connection.unblock();
4390    
4391  #if !USE_GTKMM_BUILDER  #if !USE_GTKMM_BUILDER
# Line 3708  void MainWindow::on_action_duplicate_ins Line 4411  void MainWindow::on_action_duplicate_ins
4411    
4412      // retrieve the currently selected instrument      // retrieve the currently selected instrument
4413      // (being the original instrument to be duplicated)      // (being the original instrument to be duplicated)
4414      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewInstruments.get_selection();
4415      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4416      for (int r = 0; r < rows.size(); ++r) {      for (int r = 0; r < rows.size(); ++r) {
4417          Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[r]);          Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(rows[r]);
4418          if (it) {          if (it) {
4419              Gtk::TreeModel::Row row = *it;              Gtk::TreeModel::Row row = *it;
4420              gig::Instrument* instrOrig = row[m_Columns.m_col_instr];              gig::Instrument* instrOrig = row[m_InstrumentsModel.m_col_instr];
4421              if (instrOrig) {              if (instrOrig) {
4422                  // duplicate the orginal instrument                  // duplicate the orginal instrument
4423                  gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);                  gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);
# Line 3741  void MainWindow::on_action_remove_instru Line 4444  void MainWindow::on_action_remove_instru
4444          return;          return;
4445      }      }
4446    
4447      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewInstruments.get_selection();
4448      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4449      for (int r = rows.size() - 1; r >= 0; --r) {      for (int r = rows.size() - 1; r >= 0; --r) {
4450          Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[r]);          Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(rows[r]);
4451          if (!it) continue;          if (!it) continue;
4452          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
4453          gig::Instrument* instr = row[m_Columns.m_col_instr];          gig::Instrument* instr = row[m_InstrumentsModel.m_col_instr];
4454          try {          try {
4455              Gtk::TreePath path(it);              Gtk::TreePath path(it);
4456              int index = path[0];              int index = path[0];
# Line 3761  void MainWindow::on_action_remove_instru Line 4464  void MainWindow::on_action_remove_instru
4464  #endif  #endif
4465    
4466              // remove row from instruments tree view              // remove row from instruments tree view
4467              m_refTreeModel->erase(it);              m_refInstrumentsTreeModel->erase(it);
4468              // update "Nr" column of all instrument rows              // update "Nr" column of all instrument rows
4469              {              {
4470                  int index = 0;                  int index = 0;
4471                  for (Gtk::TreeModel::iterator it = m_refTreeModel->children().begin();                  for (Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->children().begin();
4472                       it != m_refTreeModel->children().end(); ++it, ++index)                       it != m_refInstrumentsTreeModel->children().end(); ++it, ++index)
4473                  {                  {
4474                      Gtk::TreeModel::Row row = *it;                      Gtk::TreeModel::Row row = *it;
4475                      row[m_Columns.m_col_nr] = index;                      gig::Instrument* instrument = row[m_InstrumentsModel.m_col_instr];
4476                        row[m_InstrumentsModel.m_col_nr] = index;
4477                        row[m_InstrumentsModel.m_col_tooltip] = scriptTooltipFor(instrument, index);
4478                  }                  }
4479              }              }
4480    
4481  #if GTKMM_MAJOR_VERSION < 3  #if GTKMM_MAJOR_VERSION < 3
4482              // select another instrument (in gtk3 this is done              // select another instrument (in gtk3 this is done
4483              // automatically)              // automatically)
4484              if (!m_refTreeModel->children().empty()) {              if (!m_refInstrumentsTreeModel->children().empty()) {
4485                  if (index == m_refTreeModel->children().size()) {                  if (index == m_refInstrumentsTreeModel->children().size()) {
4486                      index--;                      index--;
4487                  }                  }
4488                  m_TreeView.get_selection()->select(                  m_TreeViewInstruments.get_selection()->select(
4489                      Gtk::TreePath(ToString(index)));                      Gtk::TreePath(ToString(index)));
4490              }              }
4491  #endif  #endif
# Line 3799  void MainWindow::on_action_remove_instru Line 4504  void MainWindow::on_action_remove_instru
4504  }  }
4505    
4506  void MainWindow::on_action_sample_properties() {  void MainWindow::on_action_sample_properties() {
4507      //TODO: show a dialog where the selected sample's properties can be edited      show_sample_props();
     Gtk::MessageDialog msg(  
         *this, _("Sorry, yet to be implemented!"), false, Gtk::MESSAGE_INFO  
     );  
     msg.run();  
4508  }  }
4509    
4510  void MainWindow::on_action_add_script_group() {  void MainWindow::on_action_add_script_group() {
# Line 3866  void MainWindow::on_action_edit_script() Line 4567  void MainWindow::on_action_edit_script()
4567      if (!it) return;      if (!it) return;
4568      Gtk::TreeModel::Row row = *it;      Gtk::TreeModel::Row row = *it;
4569      gig::Script* script = row[m_ScriptsModel.m_col_script];      gig::Script* script = row[m_ScriptsModel.m_col_script];
4570      if (!script) return;      editScript(script);
4571    }
4572    
4573    void MainWindow::editScript(gig::Script* script) {
4574        if (!script) return;
4575      ScriptEditor* editor = new ScriptEditor;      ScriptEditor* editor = new ScriptEditor;
4576      editor->signal_script_to_be_changed.connect(      editor->signal_script_to_be_changed.connect(
4577          signal_script_to_be_changed.make_slot()          signal_script_to_be_changed.make_slot()
4578      );      );
4579      editor->signal_script_changed.connect(      editor->signal_script_changed.connect([this](gig::Script* script) {
4580          signal_script_changed.make_slot()          // signal to sampler (which will reload the script due to this)
4581      );          signal_script_changed.emit(script);
4582            // force script 'patch' variables editor ("Script" tab) to be refreshed
4583            gig::Instrument* instr = get_instrument();
4584            dimreg_edit.scriptVars.setInstrument(instr, true/*force update*/);
4585        });
4586      editor->setScript(script);      editor->setScript(script);
4587      //editor->reparent(*this);      //editor->reparent(*this);
4588      editor->show();      editor->show();
# Line 4022  void MainWindow::add_or_replace_sample(b Line 4730  void MainWindow::add_or_replace_sample(b
4730          dialog.set_current_folder(current_sample_dir);          dialog.set_current_folder(current_sample_dir);
4731      }      }
4732      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
4733            dialog.hide();
4734          current_sample_dir = dialog.get_current_folder();          current_sample_dir = dialog.get_current_folder();
4735          Glib::ustring error_files;          Glib::ustring error_files;
4736          std::vector<std::string> filenames = dialog.get_filenames();          std::vector<std::string> filenames = dialog.get_filenames();
# Line 4202  void MainWindow::on_action_replace_all_s Line 4911  void MainWindow::on_action_replace_all_s
4911      }      }
4912      if (dialog.run() == Gtk::RESPONSE_OK)      if (dialog.run() == Gtk::RESPONSE_OK)
4913      {      {
4914            dialog.hide();
4915          current_sample_dir = dialog.get_current_folder();          current_sample_dir = dialog.get_current_folder();
4916          Glib::ustring error_files;          Glib::ustring error_files;
4917          std::string folder = dialog.get_filename();          std::string folder = dialog.get_filename();
# Line 4427  void MainWindow::on_instruments_treeview Line 5137  void MainWindow::on_instruments_treeview
5137      // get selected source instrument      // get selected source instrument
5138      gig::Instrument* src = NULL;      gig::Instrument* src = NULL;
5139      {      {
5140          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewInstruments.get_selection();
5141          std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();          std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
5142          if (!rows.empty()) {          if (!rows.empty()) {
5143              Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);              Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(rows[0]);
5144              if (it) {              if (it) {
5145                  Gtk::TreeModel::Row row = *it;                  Gtk::TreeModel::Row row = *it;
5146                  src = row[m_Columns.m_col_instr];                  src = row[m_InstrumentsModel.m_col_instr];
5147              }              }
5148          }          }
5149      }      }
# Line 4455  void MainWindow::on_instruments_treeview Line 5165  void MainWindow::on_instruments_treeview
5165      gig::Instrument* dst = NULL;      gig::Instrument* dst = NULL;
5166      {      {
5167          Gtk::TreeModel::Path path;          Gtk::TreeModel::Path path;
5168          const bool found = m_TreeView.get_path_at_pos(x, y, path);          const bool found = m_TreeViewInstruments.get_path_at_pos(x, y, path);
5169          if (!found) return;          if (!found) return;
5170    
5171          Gtk::TreeModel::iterator iter = m_refTreeModel->get_iter(path);          Gtk::TreeModel::iterator iter = m_refInstrumentsTreeModel->get_iter(path);
5172          if (!iter) return;          if (!iter) return;
5173          Gtk::TreeModel::Row row = *iter;          Gtk::TreeModel::Row row = *iter;
5174          dst = row[m_Columns.m_col_instr];          dst = row[m_InstrumentsModel.m_col_instr];
5175      }      }
5176      if (!dst) return;      if (!dst) return;
5177    
# Line 4600  void MainWindow::sample_name_changed(con Line 5310  void MainWindow::sample_name_changed(con
5310              file_changed();              file_changed();
5311          }          }
5312      }      }
5313        // change name in the sample properties window
5314        if (sampleProps.get_sample() == sample && sample) {
5315            sampleProps.set_sample(sample);
5316        }
5317  }  }
5318    
5319  void MainWindow::script_name_changed(const Gtk::TreeModel::Path& path,  void MainWindow::script_name_changed(const Gtk::TreeModel::Path& path,
# Line 4632  void MainWindow::script_double_clicked(c Line 5346  void MainWindow::script_double_clicked(c
5346      if (!iter) return;      if (!iter) return;
5347      Gtk::TreeModel::Row row = *iter;      Gtk::TreeModel::Row row = *iter;
5348      gig::Script* script = row[m_ScriptsModel.m_col_script];      gig::Script* script = row[m_ScriptsModel.m_col_script];
5349      if (!script) return;      editScript(script);
   
     ScriptEditor* editor = new ScriptEditor;  
     editor->signal_script_to_be_changed.connect(  
         signal_script_to_be_changed.make_slot()  
     );  
     editor->signal_script_changed.connect(  
         signal_script_changed.make_slot()  
     );  
     editor->setScript(script);  
     //editor->reparent(*this);  
     editor->show();  
5350  }  }
5351    
5352  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,
5353                                           const Gtk::TreeModel::iterator& iter) {                                           const Gtk::TreeModel::iterator& iter) {
5354      if (!iter) return;      if (!iter) return;
5355      Gtk::TreeModel::Row row = *iter;      Gtk::TreeModel::Row row = *iter;
5356      Glib::ustring name = row[m_Columns.m_col_name];      Glib::ustring name = row[m_InstrumentsModel.m_col_name];
5357    
5358  #if !USE_GTKMM_BUILDER  #if !USE_GTKMM_BUILDER
5359      // change name in instrument menu      // change name in instrument menu
# Line 4668  void MainWindow::instrument_name_changed Line 5371  void MainWindow::instrument_name_changed
5371  #endif  #endif
5372    
5373      // change name in gig      // change name in gig
5374      gig::Instrument* instrument = row[m_Columns.m_col_instr];      gig::Instrument* instrument = row[m_InstrumentsModel.m_col_instr];
5375      gig::String gigname(gig_from_utf8(name));      gig::String gigname(gig_from_utf8(name));
5376      if (instrument && instrument->pInfo->Name != gigname) {      if (instrument && instrument->pInfo->Name != gigname) {
5377          instrument->pInfo->Name = gigname;          instrument->pInfo->Name = gigname;
# Line 4690  bool MainWindow::instrument_row_visible( Line 5393  bool MainWindow::instrument_row_visible(
5393      trim(pattern);      trim(pattern);
5394      if (pattern.empty()) return true;      if (pattern.empty()) return true;
5395    
5396  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 22)  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
5397      //HACK: on GTKMM4 development branch const_iterator cannot be easily converted to iterator, probably going to be fixed before final GTKMM4 release though.      //HACK: on GTKMM4 development branch const_iterator cannot be easily converted to iterator, probably going to be fixed before final GTKMM4 release though.
5398      Gtk::TreeModel::Row row = **(Gtk::TreeModel::iterator*)(&iter);      Gtk::TreeModel::Row row = **(Gtk::TreeModel::iterator*)(&iter);
5399  #else  #else
5400      Gtk::TreeModel::Row row = *iter;      Gtk::TreeModel::Row row = *iter;
5401  #endif  #endif
5402      Glib::ustring name = row[m_Columns.m_col_name];      Glib::ustring name = row[m_InstrumentsModel.m_col_name];
5403      name = name.lowercase();      name = name.lowercase();
5404    
5405      std::vector<Glib::ustring> tokens = Glib::Regex::split_simple(" ", pattern);      std::vector<Glib::ustring> tokens = Glib::Regex::split_simple(" ", pattern);
# Line 4714  void MainWindow::on_action_combine_instr Line 5417  void MainWindow::on_action_combine_instr
5417      // list view as pre-selection      // list view as pre-selection
5418      std::set<int> indeces;      std::set<int> indeces;
5419      {      {
5420          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewInstruments.get_selection();
5421          std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();          std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
5422          for (int r = 0; r < rows.size(); ++r) {          for (int r = 0; r < rows.size(); ++r) {
5423              Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[r]);              Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(rows[r]);
5424              if (it) {              if (it) {
5425                  Gtk::TreeModel::Row row = *it;                  Gtk::TreeModel::Row row = *it;
5426                  int index = row[m_Columns.m_col_nr];                  int index = row[m_InstrumentsModel.m_col_nr];
5427                  indeces.insert(index);                  indeces.insert(index);
5428              }              }
5429          }          }
# Line 4930  void MainWindow::on_action_merge_files() Line 5633  void MainWindow::on_action_merge_files()
5633  #endif  #endif
5634    
5635      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
5636            dialog.hide();
5637    #ifdef GLIB_THREADS
5638          printf("on_action_merge_files self=%p\n",          printf("on_action_merge_files self=%p\n",
5639                 static_cast<void*>(Glib::Threads::Thread::self()));                 static_cast<void*>(Glib::Threads::Thread::self()));
5640    #else
5641            std::cout << "on_action_merge_files self=" <<
5642                std::this_thread::get_id() << "\n";
5643    #endif
5644          std::vector<std::string> filenames = dialog.get_filenames();          std::vector<std::string> filenames = dialog.get_filenames();
5645    
5646          // merge the selected files to the currently open .gig file          // merge the selected files to the currently open .gig file

Legend:
Removed from v.3409  
changed lines
  Added in v.3809

  ViewVC Help
Powered by ViewVC