/[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 2325 by persson, Sun Mar 4 09:01:40 2012 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 20  Line 20 
20  #include <iostream>  #include <iostream>
21  #include <cstring>  #include <cstring>
22    
23    #include <glibmm/convert.h>
24    #include <glibmm/dispatcher.h>
25    #include <glibmm/miscutils.h>
26    #include <glibmm/stringutils.h>
27  #include <gtkmm/aboutdialog.h>  #include <gtkmm/aboutdialog.h>
28  #include <gtkmm/filechooserdialog.h>  #include <gtkmm/filechooserdialog.h>
29  #include <gtkmm/messagedialog.h>  #include <gtkmm/messagedialog.h>
30  #include <gtkmm/stock.h>  #include <gtkmm/stock.h>
31  #include <gtkmm/targetentry.h>  #include <gtkmm/targetentry.h>
32  #include <gtkmm/main.h>  #include <gtkmm/main.h>
33    #include <gtkmm/radiomenuitem.h>
34  #include <gtkmm/toggleaction.h>  #include <gtkmm/toggleaction.h>
35  #include "wrapLabel.hh"  #include "wrapLabel.hh"
36    
37  #include "global.h"  #include "global.h"
38    #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  
39    
40  #include <stdio.h>  #include <stdio.h>
41  #include <sndfile.h>  #include <sndfile.h>
# Line 256  MainWindow::MainWindow() : Line 258  MainWindow::MainWindow() :
258      m_VBox.pack_start(m_DimRegionChooser, Gtk::PACK_SHRINK);      m_VBox.pack_start(m_DimRegionChooser, Gtk::PACK_SHRINK);
259      m_VBox.pack_start(m_StatusBar, Gtk::PACK_SHRINK);      m_VBox.pack_start(m_StatusBar, Gtk::PACK_SHRINK);
260    
261        set_file_is_shared(false);
262    
263      // Status Bar:      // Status Bar:
264      m_StatusBar.pack_start(m_AttachedStateLabel, Gtk::PACK_SHRINK);      m_StatusBar.pack_start(m_AttachedStateLabel, Gtk::PACK_SHRINK);
265      m_StatusBar.pack_start(m_AttachedStateImage, Gtk::PACK_SHRINK);      m_StatusBar.pack_start(m_AttachedStateImage, Gtk::PACK_SHRINK);
# Line 292  MainWindow::MainWindow() : Line 296  MainWindow::MainWindow() :
296      );      );
297    
298      // 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
299      std::list<Gtk::TargetEntry> drag_target_gig_sample;      std::vector<Gtk::TargetEntry> drag_target_gig_sample;
300      drag_target_gig_sample.push_back( Gtk::TargetEntry("gig::Sample") );      drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));
301      m_TreeViewSamples.drag_source_set(drag_target_gig_sample);      m_TreeViewSamples.drag_source_set(drag_target_gig_sample);
302      m_TreeViewSamples.signal_drag_begin().connect(      m_TreeViewSamples.signal_drag_begin().connect(
303          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 362  MainWindow::MainWindow() :
362    
363      file = 0;      file = 0;
364      file_is_changed = false;      file_is_changed = false;
     set_file_is_shared(false);  
365    
366      show_all_children();      show_all_children();
367    
# Line 462  void loader_progress_callback(gig::progr Line 465  void loader_progress_callback(gig::progr
465  void Loader::progress_callback(float fraction)  void Loader::progress_callback(float fraction)
466  {  {
467      {      {
468          Glib::Mutex::Lock lock(progressMutex);          Glib::Threads::Mutex::Lock lock(progressMutex);
469          progress = fraction;          progress = fraction;
470      }      }
471      progress_dispatcher();      progress_dispatcher();
# Line 470  void Loader::progress_callback(float fra Line 473  void Loader::progress_callback(float fra
473    
474  void Loader::thread_function()  void Loader::thread_function()
475  {  {
476      printf("thread_function self=%x\n", Glib::Thread::self());      printf("thread_function self=%x\n", Glib::Threads::Thread::self());
477      printf("Start %s\n", filename);      printf("Start %s\n", filename);
478      RIFF::File* riff = new RIFF::File(filename);      RIFF::File* riff = new RIFF::File(filename);
479      gig = new gig::File(riff);      gig = new gig::File(riff);
# Line 490  Loader::Loader(const char* filename) Line 493  Loader::Loader(const char* filename)
493    
494  void Loader::launch()  void Loader::launch()
495  {  {
496      thread = Glib::Thread::create(sigc::mem_fun(*this, &Loader::thread_function), true);      thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Loader::thread_function), true);
497      printf("launch thread=%x\n", thread);      printf("launch thread=%x\n", thread);
498  }  }
499    
# Line 498  float Loader::get_progress() Line 501  float Loader::get_progress()
501  {  {
502      float res;      float res;
503      {      {
504          Glib::Mutex::Lock lock(progressMutex);          Glib::Threads::Mutex::Lock lock(progressMutex);
505          res = progress;          res = progress;
506      }      }
507      return res;      return res;
# Line 528  void MainWindow::__clear() { Line 531  void MainWindow::__clear() {
531      Gtk::MenuItem* instrument_menu =      Gtk::MenuItem* instrument_menu =
532          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));
533      instrument_menu->hide();      instrument_menu->hide();
534      for (int i = 0; i < instrument_menu->get_submenu()->items().size(); i++) {      Gtk::Menu* menu = instrument_menu->get_submenu();
535          delete &instrument_menu->get_submenu()->items()[i];      while (menu->get_children().size()) {
536            Gtk::Widget* child = *menu->get_children().begin();
537            menu->remove(*child);
538            delete child;
539      }      }
     instrument_menu->get_submenu()->items().clear();  
540      // forget all samples that ought to be imported      // forget all samples that ought to be imported
541      m_SampleImportQueue.clear();      m_SampleImportQueue.clear();
542      // clear the samples and instruments tree views      // clear the samples and instruments tree views
# Line 602  void MainWindow::on_action_file_open() Line 607  void MainWindow::on_action_file_open()
607      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
608      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
609      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
610    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
611      Gtk::FileFilter filter;      Gtk::FileFilter filter;
612      filter.add_pattern("*.gig");      filter.add_pattern("*.gig");
613    #else
614        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
615        filter->add_pattern("*.gig");
616    #endif
617      dialog.set_filter(filter);      dialog.set_filter(filter);
618      if (current_gig_dir != "") {      if (current_gig_dir != "") {
619          dialog.set_current_folder(current_gig_dir);          dialog.set_current_folder(current_gig_dir);
# Line 611  void MainWindow::on_action_file_open() Line 621  void MainWindow::on_action_file_open()
621      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
622          std::string filename = dialog.get_filename();          std::string filename = dialog.get_filename();
623          printf("filename=%s\n", filename.c_str());          printf("filename=%s\n", filename.c_str());
624          printf("on_action_file_open self=%x\n", Glib::Thread::self());          printf("on_action_file_open self=%x\n", Glib::Threads::Thread::self());
625          load_file(filename.c_str());          load_file(filename.c_str());
626          current_gig_dir = Glib::path_get_dirname(filename);          current_gig_dir = Glib::path_get_dirname(filename);
627      }      }
# Line 653  void MainWindow::on_loader_progress() Line 663  void MainWindow::on_loader_progress()
663  void MainWindow::on_loader_finished()  void MainWindow::on_loader_finished()
664  {  {
665      printf("Loader finished!\n");      printf("Loader finished!\n");
666      printf("on_loader_finished self=%x\n", Glib::Thread::self());      printf("on_loader_finished self=%x\n", Glib::Threads::Thread::self());
667      load_gig(loader->gig, loader->filename);      load_gig(loader->gig, loader->filename);
668      load_dialog->hide();      load_dialog->hide();
669  }  }
# Line 727  bool MainWindow::file_save_as() Line 737  bool MainWindow::file_save_as()
737      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
738      dialog.set_do_overwrite_confirmation();      dialog.set_do_overwrite_confirmation();
739    
740    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
741      Gtk::FileFilter filter;      Gtk::FileFilter filter;
742      filter.add_pattern("*.gig");      filter.add_pattern("*.gig");
743    #else
744        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
745        filter->add_pattern("*.gig");
746    #endif
747      dialog.set_filter(filter);      dialog.set_filter(filter);
748    
749      // 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 915  void MainWindow::on_action_help_about()
915      dialog.set_name("Gigedit");      dialog.set_name("Gigedit");
916  #endif  #endif
917      dialog.set_version(VERSION);      dialog.set_version(VERSION);
918      dialog.set_copyright("Copyright (C) 2006-2010 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2011 Andreas Persson");
919      dialog.set_comments(_(      dialog.set_comments(_(
920          "Released under the GNU General Public License.\n"          "Released under the GNU General Public License.\n"
921          "\n"          "\n"
# Line 1379  void MainWindow::on_action_add_sample() Line 1394  void MainWindow::on_action_add_sample()
1394      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1395      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
1396      dialog.set_select_multiple(true);      dialog.set_select_multiple(true);
1397      Gtk::FileFilter soundfilter; // matches all file types supported by libsndfile  
1398        // matches all file types supported by libsndfile
1399    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
1400        Gtk::FileFilter soundfilter;
1401    #else
1402        Glib::RefPtr<Gtk::FileFilter> soundfilter = Gtk::FileFilter::create();
1403    #endif
1404      const char* const supportedFileTypes[] = {      const char* const supportedFileTypes[] = {
1405          "*.wav", "*.WAV", "*.aiff", "*.AIFF", "*.aifc", "*.AIFC", "*.snd",          "*.wav", "*.WAV", "*.aiff", "*.AIFF", "*.aifc", "*.AIFC", "*.snd",
1406          "*.SND", "*.au", "*.AU", "*.paf", "*.PAF", "*.iff", "*.IFF",          "*.SND", "*.au", "*.AU", "*.paf", "*.PAF", "*.iff", "*.IFF",
# Line 1387  void MainWindow::on_action_add_sample() Line 1408  void MainWindow::on_action_add_sample()
1408          "*.W64", "*.pvf", "*.PVF", "*.xi", "*.XI", "*.htk", "*.HTK",          "*.W64", "*.pvf", "*.PVF", "*.xi", "*.XI", "*.htk", "*.HTK",
1409          "*.caf", "*.CAF", NULL          "*.caf", "*.CAF", NULL
1410      };      };
1411        const char* soundfiles = _("Sound Files");
1412        const char* allfiles = _("All Files");
1413    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
1414      for (int i = 0; supportedFileTypes[i]; i++)      for (int i = 0; supportedFileTypes[i]; i++)
1415          soundfilter.add_pattern(supportedFileTypes[i]);          soundfilter.add_pattern(supportedFileTypes[i]);
1416      soundfilter.set_name(_("Sound Files"));      soundfilter.set_name(soundfiles);
1417      Gtk::FileFilter allpassfilter; // matches every file  
1418        // matches every file
1419        Gtk::FileFilter allpassfilter;
1420      allpassfilter.add_pattern("*.*");      allpassfilter.add_pattern("*.*");
1421      allpassfilter.set_name(_("All Files"));      allpassfilter.set_name(allfiles);
1422    #else
1423        for (int i = 0; supportedFileTypes[i]; i++)
1424            soundfilter->add_pattern(supportedFileTypes[i]);
1425        soundfilter->set_name(soundfiles);
1426    
1427        // matches every file
1428        Glib::RefPtr<Gtk::FileFilter> allpassfilter = Gtk::FileFilter::create();
1429        allpassfilter->add_pattern("*.*");
1430        allpassfilter->set_name(allfiles);
1431    #endif
1432      dialog.add_filter(soundfilter);      dialog.add_filter(soundfilter);
1433      dialog.add_filter(allpassfilter);      dialog.add_filter(allpassfilter);
1434      if (current_sample_dir != "") {      if (current_sample_dir != "") {
# Line 1401  void MainWindow::on_action_add_sample() Line 1437  void MainWindow::on_action_add_sample()
1437      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
1438          current_sample_dir = dialog.get_current_folder();          current_sample_dir = dialog.get_current_folder();
1439          Glib::ustring error_files;          Glib::ustring error_files;
1440          Glib::SListHandle<Glib::ustring> filenames = dialog.get_filenames();          std::vector<std::string> filenames = dialog.get_filenames();
1441          for (Glib::SListHandle<Glib::ustring>::iterator iter = filenames.begin();          for (std::vector<std::string>::iterator iter = filenames.begin();
1442               iter != filenames.end(); ++iter) {               iter != filenames.end(); ++iter) {
1443              printf("Adding sample %s\n",(*iter).c_str());              printf("Adding sample %s\n",(*iter).c_str());
1444              // use libsndfile to retrieve file informations              // use libsndfile to retrieve file informations
# Line 1534  void MainWindow::on_action_replace_all_s Line 1570  void MainWindow::on_action_replace_all_s
1570            "untouched.\n")            "untouched.\n")
1571      );      );
1572      Gtk::HBox entryArea;      Gtk::HBox entryArea;
1573      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_RIGHT);      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);
1574      Gtk::Entry postfixEntryBox;      Gtk::Entry postfixEntryBox;
1575      postfixEntryBox.set_text(".wav");      postfixEntryBox.set_text(".wav");
1576      entryArea.pack_start(entryLabel);      entryArea.pack_start(entryLabel);
# Line 1553  void MainWindow::on_action_replace_all_s Line 1589  void MainWindow::on_action_replace_all_s
1589      {      {
1590          current_sample_dir = dialog.get_current_folder();          current_sample_dir = dialog.get_current_folder();
1591          Glib::ustring error_files;          Glib::ustring error_files;
1592          Glib::ustring folder = dialog.get_filename();          std::string folder = dialog.get_filename();
1593          for (gig::Sample* sample = file->GetFirstSample();          for (gig::Sample* sample = file->GetFirstSample();
1594               sample; sample = file->GetNextSample())               sample; sample = file->GetNextSample())
1595          {          {

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

  ViewVC Help
Powered by ViewVC