/[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 1959 by persson, Fri Jul 31 10:15:27 2009 UTC revision 2169 by persson, Sun Mar 6 07:51:04 2011 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006-2009 Andreas Persson   * Copyright (C) 2006-2011 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 20  Line 20 
20  #include <iostream>  #include <iostream>
21  #include <cstring>  #include <cstring>
22    
23    #include <gtkmm/aboutdialog.h>
24  #include <gtkmm/filechooserdialog.h>  #include <gtkmm/filechooserdialog.h>
25  #include <gtkmm/messagedialog.h>  #include <gtkmm/messagedialog.h>
26  #include <gtkmm/stock.h>  #include <gtkmm/stock.h>
27  #include <gtkmm/targetentry.h>  #include <gtkmm/targetentry.h>
28  #include <gtkmm/main.h>  #include <gtkmm/main.h>
29    #include <gtkmm/radiomenuitem.h>
30  #include <gtkmm/toggleaction.h>  #include <gtkmm/toggleaction.h>
31  #include "wrapLabel.hh"  #include "wrapLabel.hh"
32    
33  #include "global.h"  #include "global.h"
34    #include "compat.h"
 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 6) || GTKMM_MAJOR_VERSION > 2  
 #define ABOUT_DIALOG  
 #include <gtkmm/aboutdialog.h>  
 #endif  
   
 #if (GLIBMM_MAJOR_VERSION == 2 && GLIBMM_MINOR_VERSION < 6) || GLIBMM_MAJOR_VERSION < 2  
 namespace Glib {  
 Glib::ustring filename_display_basename(const std::string& filename)  
 {  
     gchar* gstr = g_path_get_basename(filename.c_str());  
     Glib::ustring str(gstr);  
     g_free(gstr);  
     return Glib::filename_to_utf8(str);  
 }  
 }  
 #endif  
35    
36  #include <stdio.h>  #include <stdio.h>
37  #include <sndfile.h>  #include <sndfile.h>
# Line 179  MainWindow::MainWindow() : Line 165  MainWindow::MainWindow() :
165      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);
166      actionGroup->add(Gtk::Action::create("MenuHelp",      actionGroup->add(Gtk::Action::create("MenuHelp",
167                                           action->property_label()));                                           action->property_label()));
 #ifdef ABOUT_DIALOG  
168      actionGroup->add(Gtk::Action::create("About", Gtk::Stock::ABOUT),      actionGroup->add(Gtk::Action::create("About", Gtk::Stock::ABOUT),
169                       sigc::mem_fun(                       sigc::mem_fun(
170                           *this, &MainWindow::on_action_help_about));                           *this, &MainWindow::on_action_help_about));
 #endif  
171      actionGroup->add(      actionGroup->add(
172          Gtk::Action::create("AddInstrument", _("Add _Instrument")),          Gtk::Action::create("AddInstrument", _("Add _Instrument")),
173          sigc::mem_fun(*this, &MainWindow::on_action_add_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_add_instrument)
# Line 239  MainWindow::MainWindow() : Line 223  MainWindow::MainWindow() :
223          "    <menu action='MenuView'>"          "    <menu action='MenuView'>"
224          "      <menuitem action='Statusbar'/>"          "      <menuitem action='Statusbar'/>"
225          "    </menu>"          "    </menu>"
 #ifdef ABOUT_DIALOG  
226          "    <menu action='MenuHelp'>"          "    <menu action='MenuHelp'>"
227          "      <menuitem action='About'/>"          "      <menuitem action='About'/>"
228          "    </menu>"          "    </menu>"
 #endif  
229          "  </menubar>"          "  </menubar>"
230          "  <popup name='PopupMenu'>"          "  <popup name='PopupMenu'>"
231          "    <menuitem action='InstrProperties'/>"          "    <menuitem action='InstrProperties'/>"
# Line 308  MainWindow::MainWindow() : Line 290  MainWindow::MainWindow() :
290      );      );
291    
292      // establish drag&drop between samples tree view and dimension region 'Sample' text entry      // establish drag&drop between samples tree view and dimension region 'Sample' text entry
293      std::list<Gtk::TargetEntry> drag_target_gig_sample;      std::vector<Gtk::TargetEntry> drag_target_gig_sample;
294      drag_target_gig_sample.push_back( Gtk::TargetEntry("gig::Sample") );      drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));
295      m_TreeViewSamples.drag_source_set(drag_target_gig_sample);      m_TreeViewSamples.drag_source_set(drag_target_gig_sample);
296      m_TreeViewSamples.signal_drag_begin().connect(      m_TreeViewSamples.signal_drag_begin().connect(
297          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_drag_begin)          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_drag_begin)
# Line 500  void Loader::thread_function() Line 482  void Loader::thread_function()
482  }  }
483    
484  Loader::Loader(const char* filename)  Loader::Loader(const char* filename)
485      : thread(0), filename(filename)      : filename(filename), thread(0)
486  {  {
487  }  }
488    
# Line 544  void MainWindow::__clear() { Line 526  void MainWindow::__clear() {
526      Gtk::MenuItem* instrument_menu =      Gtk::MenuItem* instrument_menu =
527          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));
528      instrument_menu->hide();      instrument_menu->hide();
529      for (int i = 0; i < instrument_menu->get_submenu()->items().size(); i++) {      Gtk::Menu* menu = instrument_menu->get_submenu();
530          delete &instrument_menu->get_submenu()->items()[i];      while (menu->get_children().size()) {
531            Gtk::Widget* child = *menu->get_children().begin();
532            menu->remove(*child);
533            delete child;
534      }      }
     instrument_menu->get_submenu()->items().clear();  
535      // forget all samples that ought to be imported      // forget all samples that ought to be imported
536      m_SampleImportQueue.clear();      m_SampleImportQueue.clear();
537      // clear the samples and instruments tree views      // clear the samples and instruments tree views
# Line 582  bool MainWindow::close_confirmation_dial Line 566  bool MainWindow::close_confirmation_dial
566                                   Glib::filename_display_basename(filename).c_str());                                   Glib::filename_display_basename(filename).c_str());
567      Gtk::MessageDialog dialog(*this, msg, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);      Gtk::MessageDialog dialog(*this, msg, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);
568      g_free(msg);      g_free(msg);
 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 6) || GTKMM_MAJOR_VERSION > 2  
569      dialog.set_secondary_text(_("If you close without saving, your changes will be lost."));      dialog.set_secondary_text(_("If you close without saving, your changes will be lost."));
 #endif  
570      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);
571      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
572      dialog.add_button(file_has_name ? Gtk::Stock::SAVE : Gtk::Stock::SAVE_AS, Gtk::RESPONSE_YES);      dialog.add_button(file_has_name ? Gtk::Stock::SAVE : Gtk::Stock::SAVE_AS, Gtk::RESPONSE_YES);
# Line 598  bool MainWindow::close_confirmation_dial Line 580  bool MainWindow::close_confirmation_dial
580  bool MainWindow::leaving_shared_mode_dialog() {  bool MainWindow::leaving_shared_mode_dialog() {
581      Glib::ustring msg = _("Detach from sampler and proceed working stand-alone?");      Glib::ustring msg = _("Detach from sampler and proceed working stand-alone?");
582      Gtk::MessageDialog dialog(*this, msg, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);      Gtk::MessageDialog dialog(*this, msg, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);
 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 6) || GTKMM_MAJOR_VERSION > 2  
583      dialog.set_secondary_text(      dialog.set_secondary_text(
584          _("If you proceed to work on another instrument file, it won't be "          _("If you proceed to work on another instrument file, it won't be "
585            "used by the sampler until you tell the sampler explicitly to "            "used by the sampler until you tell the sampler explicitly to "
586            "load it.")            "load it."));
    );  
 #endif  
587      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);
588      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
589      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
# Line 623  void MainWindow::on_action_file_open() Line 602  void MainWindow::on_action_file_open()
602      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
603      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
604      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
605    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
606      Gtk::FileFilter filter;      Gtk::FileFilter filter;
607      filter.add_pattern("*.gig");      filter.add_pattern("*.gig");
608    #else
609        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
610        filter->add_pattern("*.gig");
611    #endif
612      dialog.set_filter(filter);      dialog.set_filter(filter);
613      if (current_gig_dir != "") {      if (current_gig_dir != "") {
614          dialog.set_current_folder(current_gig_dir);          dialog.set_current_folder(current_gig_dir);
# Line 746  bool MainWindow::file_save_as() Line 730  bool MainWindow::file_save_as()
730      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
731      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);
732      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
   
 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 8) || GTKMM_MAJOR_VERSION > 2  
733      dialog.set_do_overwrite_confirmation();      dialog.set_do_overwrite_confirmation();
734      // TODO: an overwrite dialog for gtkmm < 2.8  
735  #endif  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
736      Gtk::FileFilter filter;      Gtk::FileFilter filter;
737      filter.add_pattern("*.gig");      filter.add_pattern("*.gig");
738    #else
739        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
740        filter->add_pattern("*.gig");
741    #endif
742      dialog.set_filter(filter);      dialog.set_filter(filter);
743    
744      // set initial dir and filename of the Save As dialog      // set initial dir and filename of the Save As dialog
# Line 917  void MainWindow::on_action_file_properti Line 903  void MainWindow::on_action_file_properti
903    
904  void MainWindow::on_action_help_about()  void MainWindow::on_action_help_about()
905  {  {
 #ifdef ABOUT_DIALOG  
906      Gtk::AboutDialog dialog;      Gtk::AboutDialog dialog;
907  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 12) || GTKMM_MAJOR_VERSION > 2  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 12) || GTKMM_MAJOR_VERSION > 2
908      dialog.set_program_name("Gigedit");      dialog.set_program_name("Gigedit");
# Line 925  void MainWindow::on_action_help_about() Line 910  void MainWindow::on_action_help_about()
910      dialog.set_name("Gigedit");      dialog.set_name("Gigedit");
911  #endif  #endif
912      dialog.set_version(VERSION);      dialog.set_version(VERSION);
913      dialog.set_copyright("Copyright (C) 2006-2009 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2011 Andreas Persson");
914      dialog.set_comments(_(      dialog.set_comments(_(
915          "Released under the GNU General Public License.\n"          "Released under the GNU General Public License.\n"
916          "\n"          "\n"
# Line 938  void MainWindow::on_action_help_about() Line 923  void MainWindow::on_action_help_about()
923      dialog.set_website("http://www.linuxsampler.org");      dialog.set_website("http://www.linuxsampler.org");
924      dialog.set_website_label("http://www.linuxsampler.org");      dialog.set_website_label("http://www.linuxsampler.org");
925      dialog.run();      dialog.run();
 #endif  
926  }  }
927    
928  PropDialog::PropDialog()  PropDialog::PropDialog()
929      : table(2,1),      : eName(_("Name")),
       eName(_("Name")),  
930        eCreationDate(_("Creation date")),        eCreationDate(_("Creation date")),
931        eComments(_("Comments")),        eComments(_("Comments")),
932        eProduct(_("Product")),        eProduct(_("Product")),
# Line 960  PropDialog::PropDialog() Line 943  PropDialog::PropDialog()
943        eCommissioned(_("Commissioned")),        eCommissioned(_("Commissioned")),
944        eSubject(_("Subject")),        eSubject(_("Subject")),
945        quitButton(Gtk::Stock::CLOSE),        quitButton(Gtk::Stock::CLOSE),
946          table(2, 1),
947        update_model(0)        update_model(0)
948  {  {
949      set_title(_("File Properties"));      set_title(_("File Properties"));
# Line 1008  PropDialog::PropDialog() Line 992  PropDialog::PropDialog()
992      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
993      buttonBox.show();      buttonBox.show();
994      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
995      quitButton.set_flags(Gtk::CAN_DEFAULT);      quitButton.set_can_default();
996      quitButton.grab_focus();      quitButton.grab_focus();
997      quitButton.signal_clicked().connect(      quitButton.signal_clicked().connect(
998          sigc::mem_fun(*this, &PropDialog::hide));          sigc::mem_fun(*this, &PropDialog::hide));
# Line 1078  void InstrumentProps::set_DimensionKeyRa Line 1062  void InstrumentProps::set_DimensionKeyRa
1062  }  }
1063    
1064  InstrumentProps::InstrumentProps()  InstrumentProps::InstrumentProps()
1065      : table(2,1),      : update_model(0),
1066        quitButton(Gtk::Stock::CLOSE),        quitButton(Gtk::Stock::CLOSE),
1067          table(2,1),
1068        eName(_("Name")),        eName(_("Name")),
1069        eIsDrum(_("Is drum")),        eIsDrum(_("Is drum")),
1070        eMIDIBank(_("MIDI bank"), 0, 16383),        eMIDIBank(_("MIDI bank"), 0, 16383),
# Line 1091  InstrumentProps::InstrumentProps() Line 1076  InstrumentProps::InstrumentProps()
1076        ePitchbendRange(_("Pitchbend range"), 0, 12),        ePitchbendRange(_("Pitchbend range"), 0, 12),
1077        ePianoReleaseMode(_("Piano release mode")),        ePianoReleaseMode(_("Piano release mode")),
1078        eDimensionKeyRangeLow(_("Keyswitching range low")),        eDimensionKeyRangeLow(_("Keyswitching range low")),
1079        eDimensionKeyRangeHigh(_("Keyswitching range high")),        eDimensionKeyRangeHigh(_("Keyswitching range high"))
       update_model(0)  
1080  {  {
1081      set_title(_("Instrument Properties"));      set_title(_("Instrument Properties"));
1082    
# Line 1143  InstrumentProps::InstrumentProps() Line 1127  InstrumentProps::InstrumentProps()
1127      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
1128      buttonBox.show();      buttonBox.show();
1129      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
1130      quitButton.set_flags(Gtk::CAN_DEFAULT);      quitButton.set_can_default();
1131      quitButton.grab_focus();      quitButton.grab_focus();
1132    
1133      quitButton.signal_clicked().connect(      quitButton.signal_clicked().connect(
# Line 1405  void MainWindow::on_action_add_sample() Line 1389  void MainWindow::on_action_add_sample()
1389      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1390      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
1391      dialog.set_select_multiple(true);      dialog.set_select_multiple(true);
1392      Gtk::FileFilter soundfilter; // matches all file types supported by libsndfile  
1393        // matches all file types supported by libsndfile
1394    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
1395        Gtk::FileFilter soundfilter;
1396    #else
1397        Glib::RefPtr<Gtk::FileFilter> soundfilter = Gtk::FileFilter::create();
1398    #endif
1399      const char* const supportedFileTypes[] = {      const char* const supportedFileTypes[] = {
1400          "*.wav", "*.WAV", "*.aiff", "*.AIFF", "*.aifc", "*.AIFC", "*.snd",          "*.wav", "*.WAV", "*.aiff", "*.AIFF", "*.aifc", "*.AIFC", "*.snd",
1401          "*.SND", "*.au", "*.AU", "*.paf", "*.PAF", "*.iff", "*.IFF",          "*.SND", "*.au", "*.AU", "*.paf", "*.PAF", "*.iff", "*.IFF",
# Line 1413  void MainWindow::on_action_add_sample() Line 1403  void MainWindow::on_action_add_sample()
1403          "*.W64", "*.pvf", "*.PVF", "*.xi", "*.XI", "*.htk", "*.HTK",          "*.W64", "*.pvf", "*.PVF", "*.xi", "*.XI", "*.htk", "*.HTK",
1404          "*.caf", "*.CAF", NULL          "*.caf", "*.CAF", NULL
1405      };      };
1406        const char* soundfiles = _("Sound Files");
1407        const char* allfiles = _("All Files");
1408    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
1409      for (int i = 0; supportedFileTypes[i]; i++)      for (int i = 0; supportedFileTypes[i]; i++)
1410          soundfilter.add_pattern(supportedFileTypes[i]);          soundfilter.add_pattern(supportedFileTypes[i]);
1411      soundfilter.set_name(_("Sound Files"));      soundfilter.set_name(soundfiles);
1412      Gtk::FileFilter allpassfilter; // matches every file  
1413        // matches every file
1414        Gtk::FileFilter allpassfilter;
1415      allpassfilter.add_pattern("*.*");      allpassfilter.add_pattern("*.*");
1416      allpassfilter.set_name(_("All Files"));      allpassfilter.set_name(allfiles);
1417    #else
1418        for (int i = 0; supportedFileTypes[i]; i++)
1419            soundfilter->add_pattern(supportedFileTypes[i]);
1420        soundfilter->set_name(soundfiles);
1421    
1422        // matches every file
1423        Glib::RefPtr<Gtk::FileFilter> allpassfilter = Gtk::FileFilter::create();
1424        allpassfilter->add_pattern("*.*");
1425        allpassfilter->set_name(allfiles);
1426    #endif
1427      dialog.add_filter(soundfilter);      dialog.add_filter(soundfilter);
1428      dialog.add_filter(allpassfilter);      dialog.add_filter(allpassfilter);
1429      if (current_sample_dir != "") {      if (current_sample_dir != "") {
# Line 1427  void MainWindow::on_action_add_sample() Line 1432  void MainWindow::on_action_add_sample()
1432      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
1433          current_sample_dir = dialog.get_current_folder();          current_sample_dir = dialog.get_current_folder();
1434          Glib::ustring error_files;          Glib::ustring error_files;
1435          Glib::SListHandle<Glib::ustring> filenames = dialog.get_filenames();          std::vector<std::string> filenames = dialog.get_filenames();
1436          for (Glib::SListHandle<Glib::ustring>::iterator iter = filenames.begin();          for (std::vector<std::string>::iterator iter = filenames.begin();
1437               iter != filenames.end(); ++iter) {               iter != filenames.end(); ++iter) {
1438              printf("Adding sample %s\n",(*iter).c_str());              printf("Adding sample %s\n",(*iter).c_str());
1439              // use libsndfile to retrieve file informations              // use libsndfile to retrieve file informations
# Line 1560  void MainWindow::on_action_replace_all_s Line 1565  void MainWindow::on_action_replace_all_s
1565            "untouched.\n")            "untouched.\n")
1566      );      );
1567      Gtk::HBox entryArea;      Gtk::HBox entryArea;
1568      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_RIGHT);      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);
1569      Gtk::Entry postfixEntryBox;      Gtk::Entry postfixEntryBox;
1570      postfixEntryBox.set_text(".wav");      postfixEntryBox.set_text(".wav");
1571      entryArea.pack_start(entryLabel);      entryArea.pack_start(entryLabel);
# Line 1579  void MainWindow::on_action_replace_all_s Line 1584  void MainWindow::on_action_replace_all_s
1584      {      {
1585          current_sample_dir = dialog.get_current_folder();          current_sample_dir = dialog.get_current_folder();
1586          Glib::ustring error_files;          Glib::ustring error_files;
1587          Glib::ustring folder = dialog.get_filename();          std::string folder = dialog.get_filename();
1588          for (gig::Sample* sample = file->GetFirstSample();          for (gig::Sample* sample = file->GetFirstSample();
1589               sample; sample = file->GetNextSample())               sample; sample = file->GetNextSample())
1590          {          {

Legend:
Removed from v.1959  
changed lines
  Added in v.2169

  ViewVC Help
Powered by ViewVC