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

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

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

revision 1582 by persson, Sat Dec 8 12:28:53 2007 UTC revision 1673 by schoenebeck, Wed Feb 6 22:08:29 2008 UTC
# Line 1  Line 1 
1  /*                                                         -*- c++ -*-  /*                                                         -*- c++ -*-
2   * Copyright (C) 2006, 2007 Andreas Persson   * Copyright (C) 2006 - 2008 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 211  public: Line 211  public:
211      sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_changed();      sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_changed();
212      sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/>& signal_sample_ref_changed();      sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/>& signal_sample_ref_changed();
213    
214        sigc::signal<void, int/*key*/, int/*velocity*/>& signal_note_on();
215        sigc::signal<void, int/*key*/, int/*velocity*/>& signal_note_off();
216    
217        sigc::signal<void, int/*key*/, int/*velocity*/>& signal_keyboard_key_hit();
218        sigc::signal<void, int/*key*/, int/*velocity*/>& signal_keyboard_key_released();
219    
220  protected:  protected:
221      Glib::RefPtr<Gtk::ActionGroup> actionGroup;      Glib::RefPtr<Gtk::ActionGroup> actionGroup;
222      Glib::RefPtr<Gtk::UIManager> uiManager;      Glib::RefPtr<Gtk::UIManager> uiManager;
# Line 235  protected: Line 241  protected:
241      sigc::signal<void, gig::DimensionRegion*> dimreg_changed_signal;      sigc::signal<void, gig::DimensionRegion*> dimreg_changed_signal;
242      sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/> sample_ref_changed_signal;      sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/> sample_ref_changed_signal;
243    
244        sigc::signal<void, int/*key*/, int/*velocity*/> note_on_signal;
245        sigc::signal<void, int/*key*/, int/*velocity*/> note_off_signal;
246    
247      void on_instrument_selection_change(int index);      void on_instrument_selection_change(int index);
248      void on_sel_change();      void on_sel_change();
249      void region_changed();      void region_changed();
# Line 327  protected: Line 336  protected:
336      void on_action_sample_properties();      void on_action_sample_properties();
337      void on_action_add_group();      void on_action_add_group();
338      void on_action_add_sample();      void on_action_add_sample();
339        void on_action_replace_all_samples_in_all_groups();
340      void on_action_remove_sample();      void on_action_remove_sample();
341    
342      void on_action_add_instrument();      void on_action_add_instrument();

Legend:
Removed from v.1582  
changed lines
  Added in v.1673

  ViewVC Help
Powered by ViewVC