/[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 2151 by persson, Sun Nov 21 12:38:41 2010 UTC revision 2246 by persson, Fri Aug 19 10:55:41 2011 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006-2010 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 26  Line 26 
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 < 18) || GTKMM_MAJOR_VERSION < 2  
 #define set_can_default() set_flags(Gtk::CAN_DEFAULT)  
 #endif  
35    
36  #include <stdio.h>  #include <stdio.h>
37  #include <sndfile.h>  #include <sndfile.h>
# Line 256  MainWindow::MainWindow() : Line 254  MainWindow::MainWindow() :
254      m_VBox.pack_start(m_DimRegionChooser, Gtk::PACK_SHRINK);      m_VBox.pack_start(m_DimRegionChooser, Gtk::PACK_SHRINK);
255      m_VBox.pack_start(m_StatusBar, Gtk::PACK_SHRINK);      m_VBox.pack_start(m_StatusBar, Gtk::PACK_SHRINK);
256    
257        set_file_is_shared(false);
258    
259      // Status Bar:      // Status Bar:
260      m_StatusBar.pack_start(m_AttachedStateLabel, Gtk::PACK_SHRINK);      m_StatusBar.pack_start(m_AttachedStateLabel, Gtk::PACK_SHRINK);
261      m_StatusBar.pack_start(m_AttachedStateImage, Gtk::PACK_SHRINK);      m_StatusBar.pack_start(m_AttachedStateImage, Gtk::PACK_SHRINK);
# Line 292  MainWindow::MainWindow() : Line 292  MainWindow::MainWindow() :
292      );      );
293    
294      // 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
295      std::list<Gtk::TargetEntry> drag_target_gig_sample;      std::vector<Gtk::TargetEntry> drag_target_gig_sample;
296      drag_target_gig_sample.push_back( Gtk::TargetEntry("gig::Sample") );      drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));
297      m_TreeViewSamples.drag_source_set(drag_target_gig_sample);      m_TreeViewSamples.drag_source_set(drag_target_gig_sample);
298      m_TreeViewSamples.signal_drag_begin().connect(      m_TreeViewSamples.signal_drag_begin().connect(
299          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_drag_begin)          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_drag_begin)
# Line 358  MainWindow::MainWindow() : Line 358  MainWindow::MainWindow() :
358    
359      file = 0;      file = 0;
360      file_is_changed = false;      file_is_changed = false;
     set_file_is_shared(false);  
361    
362      show_all_children();      show_all_children();
363    
# Line 528  void MainWindow::__clear() { Line 527  void MainWindow::__clear() {
527      Gtk::MenuItem* instrument_menu =      Gtk::MenuItem* instrument_menu =
528          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));
529      instrument_menu->hide();      instrument_menu->hide();
530      for (int i = 0; i < instrument_menu->get_submenu()->items().size(); i++) {      Gtk::Menu* menu = instrument_menu->get_submenu();
531          delete &instrument_menu->get_submenu()->items()[i];      while (menu->get_children().size()) {
532            Gtk::Widget* child = *menu->get_children().begin();
533            menu->remove(*child);
534            delete child;
535      }      }
     instrument_menu->get_submenu()->items().clear();  
536      // forget all samples that ought to be imported      // forget all samples that ought to be imported
537      m_SampleImportQueue.clear();      m_SampleImportQueue.clear();
538      // clear the samples and instruments tree views      // clear the samples and instruments tree views
# Line 602  void MainWindow::on_action_file_open() Line 603  void MainWindow::on_action_file_open()
603      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
604      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
605      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
606    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
607      Gtk::FileFilter filter;      Gtk::FileFilter filter;
608      filter.add_pattern("*.gig");      filter.add_pattern("*.gig");
609    #else
610        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
611        filter->add_pattern("*.gig");
612    #endif
613      dialog.set_filter(filter);      dialog.set_filter(filter);
614      if (current_gig_dir != "") {      if (current_gig_dir != "") {
615          dialog.set_current_folder(current_gig_dir);          dialog.set_current_folder(current_gig_dir);
# Line 727  bool MainWindow::file_save_as() Line 733  bool MainWindow::file_save_as()
733      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
734      dialog.set_do_overwrite_confirmation();      dialog.set_do_overwrite_confirmation();
735    
736    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
737      Gtk::FileFilter filter;      Gtk::FileFilter filter;
738      filter.add_pattern("*.gig");      filter.add_pattern("*.gig");
739    #else
740        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
741        filter->add_pattern("*.gig");
742    #endif
743      dialog.set_filter(filter);      dialog.set_filter(filter);
744    
745      // set initial dir and filename of the Save As dialog      // set initial dir and filename of the Save As dialog
# Line 900  void MainWindow::on_action_help_about() Line 911  void MainWindow::on_action_help_about()
911      dialog.set_name("Gigedit");      dialog.set_name("Gigedit");
912  #endif  #endif
913      dialog.set_version(VERSION);      dialog.set_version(VERSION);
914      dialog.set_copyright("Copyright (C) 2006-2010 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2011 Andreas Persson");
915      dialog.set_comments(_(      dialog.set_comments(_(
916          "Released under the GNU General Public License.\n"          "Released under the GNU General Public License.\n"
917          "\n"          "\n"
# Line 1379  void MainWindow::on_action_add_sample() Line 1390  void MainWindow::on_action_add_sample()
1390      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1391      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
1392      dialog.set_select_multiple(true);      dialog.set_select_multiple(true);
1393      Gtk::FileFilter soundfilter; // matches all file types supported by libsndfile  
1394        // matches all file types supported by libsndfile
1395    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
1396        Gtk::FileFilter soundfilter;
1397    #else
1398        Glib::RefPtr<Gtk::FileFilter> soundfilter = Gtk::FileFilter::create();
1399    #endif
1400      const char* const supportedFileTypes[] = {      const char* const supportedFileTypes[] = {
1401          "*.wav", "*.WAV", "*.aiff", "*.AIFF", "*.aifc", "*.AIFC", "*.snd",          "*.wav", "*.WAV", "*.aiff", "*.AIFF", "*.aifc", "*.AIFC", "*.snd",
1402          "*.SND", "*.au", "*.AU", "*.paf", "*.PAF", "*.iff", "*.IFF",          "*.SND", "*.au", "*.AU", "*.paf", "*.PAF", "*.iff", "*.IFF",
# Line 1387  void MainWindow::on_action_add_sample() Line 1404  void MainWindow::on_action_add_sample()
1404          "*.W64", "*.pvf", "*.PVF", "*.xi", "*.XI", "*.htk", "*.HTK",          "*.W64", "*.pvf", "*.PVF", "*.xi", "*.XI", "*.htk", "*.HTK",
1405          "*.caf", "*.CAF", NULL          "*.caf", "*.CAF", NULL
1406      };      };
1407        const char* soundfiles = _("Sound Files");
1408        const char* allfiles = _("All Files");
1409    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
1410      for (int i = 0; supportedFileTypes[i]; i++)      for (int i = 0; supportedFileTypes[i]; i++)
1411          soundfilter.add_pattern(supportedFileTypes[i]);          soundfilter.add_pattern(supportedFileTypes[i]);
1412      soundfilter.set_name(_("Sound Files"));      soundfilter.set_name(soundfiles);
1413      Gtk::FileFilter allpassfilter; // matches every file  
1414        // matches every file
1415        Gtk::FileFilter allpassfilter;
1416      allpassfilter.add_pattern("*.*");      allpassfilter.add_pattern("*.*");
1417      allpassfilter.set_name(_("All Files"));      allpassfilter.set_name(allfiles);
1418    #else
1419        for (int i = 0; supportedFileTypes[i]; i++)
1420            soundfilter->add_pattern(supportedFileTypes[i]);
1421        soundfilter->set_name(soundfiles);
1422    
1423        // matches every file
1424        Glib::RefPtr<Gtk::FileFilter> allpassfilter = Gtk::FileFilter::create();
1425        allpassfilter->add_pattern("*.*");
1426        allpassfilter->set_name(allfiles);
1427    #endif
1428      dialog.add_filter(soundfilter);      dialog.add_filter(soundfilter);
1429      dialog.add_filter(allpassfilter);      dialog.add_filter(allpassfilter);
1430      if (current_sample_dir != "") {      if (current_sample_dir != "") {
# Line 1401  void MainWindow::on_action_add_sample() Line 1433  void MainWindow::on_action_add_sample()
1433      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
1434          current_sample_dir = dialog.get_current_folder();          current_sample_dir = dialog.get_current_folder();
1435          Glib::ustring error_files;          Glib::ustring error_files;
1436          Glib::SListHandle<Glib::ustring> filenames = dialog.get_filenames();          std::vector<std::string> filenames = dialog.get_filenames();
1437          for (Glib::SListHandle<Glib::ustring>::iterator iter = filenames.begin();          for (std::vector<std::string>::iterator iter = filenames.begin();
1438               iter != filenames.end(); ++iter) {               iter != filenames.end(); ++iter) {
1439              printf("Adding sample %s\n",(*iter).c_str());              printf("Adding sample %s\n",(*iter).c_str());
1440              // use libsndfile to retrieve file informations              // use libsndfile to retrieve file informations
# Line 1534  void MainWindow::on_action_replace_all_s Line 1566  void MainWindow::on_action_replace_all_s
1566            "untouched.\n")            "untouched.\n")
1567      );      );
1568      Gtk::HBox entryArea;      Gtk::HBox entryArea;
1569      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_RIGHT);      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);
1570      Gtk::Entry postfixEntryBox;      Gtk::Entry postfixEntryBox;
1571      postfixEntryBox.set_text(".wav");      postfixEntryBox.set_text(".wav");
1572      entryArea.pack_start(entryLabel);      entryArea.pack_start(entryLabel);
# Line 1553  void MainWindow::on_action_replace_all_s Line 1585  void MainWindow::on_action_replace_all_s
1585      {      {
1586          current_sample_dir = dialog.get_current_folder();          current_sample_dir = dialog.get_current_folder();
1587          Glib::ustring error_files;          Glib::ustring error_files;
1588          Glib::ustring folder = dialog.get_filename();          std::string folder = dialog.get_filename();
1589          for (gig::Sample* sample = file->GetFirstSample();          for (gig::Sample* sample = file->GetFirstSample();
1590               sample; sample = file->GetNextSample())               sample; sample = file->GetNextSample())
1591          {          {

Legend:
Removed from v.2151  
changed lines
  Added in v.2246

  ViewVC Help
Powered by ViewVC