--- gigedit/trunk/src/mainwindow.h 2007/03/08 19:30:44 1086 +++ gigedit/trunk/src/mainwindow.h 2007/03/09 19:45:45 1087 @@ -522,6 +522,12 @@ Gtk::Label* lSample; Gtk::Entry* wSample; + struct SampleImportItem { + gig::Sample* gig_sample; // pointer to the gig::Sample to which the sample data should be imported to + Glib::ustring sample_path; // file name of the sample to be imported + }; + std::list m_SampleImportQueue; + void VCFEnabled_toggled(); void VCFCutoffController_changed(); void VCFResonanceController_changed(); @@ -560,6 +566,8 @@ void on_button_release(GdkEventButton* button); + void __import_queued_samples(); + Gtk::Menu* popup_menu; };