/[svn]/gigedit/trunk/src/mainwindow.h
ViewVC logotype

Diff of /gigedit/trunk/src/mainwindow.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1082 by schoenebeck, Thu Mar 8 01:43:18 2007 UTC revision 1087 by schoenebeck, Fri Mar 9 19:45:45 2007 UTC
# Line 502  protected: Line 502  protected:
502          SamplesModel() {          SamplesModel() {
503              add(m_col_name);              add(m_col_name);
504              add(m_col_sample);              add(m_col_sample);
505                add(m_col_group);
506          }          }
507    
508          Gtk::TreeModelColumn<Glib::ustring> m_col_name;          Gtk::TreeModelColumn<Glib::ustring> m_col_name;
# Line 521  protected: Line 522  protected:
522      Gtk::Label* lSample;      Gtk::Label* lSample;
523      Gtk::Entry* wSample;      Gtk::Entry* wSample;
524    
525        struct SampleImportItem {
526            gig::Sample*  gig_sample;  // pointer to the gig::Sample to which the sample data should be imported to
527            Glib::ustring sample_path; // file name of the sample to be imported
528        };
529        std::list<SampleImportItem> m_SampleImportQueue;
530    
531      void VCFEnabled_toggled();      void VCFEnabled_toggled();
532      void VCFCutoffController_changed();      void VCFCutoffController_changed();
533      void VCFResonanceController_changed();      void VCFResonanceController_changed();
# Line 559  protected: Line 566  protected:
566    
567      void on_button_release(GdkEventButton* button);      void on_button_release(GdkEventButton* button);
568    
569        void __import_queued_samples();
570    
571    Gtk::Menu* popup_menu;    Gtk::Menu* popup_menu;
572  };  };
573    

Legend:
Removed from v.1082  
changed lines
  Added in v.1087

  ViewVC Help
Powered by ViewVC