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

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

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

revision 2557 by schoenebeck, Tue May 13 12:17:43 2014 UTC revision 2558 by schoenebeck, Sat May 17 23:55:30 2014 UTC
# Line 15  Line 15 
15  #include <gtkmm/dialog.h>  #include <gtkmm/dialog.h>
16  #include <gtkmm/treeview.h>  #include <gtkmm/treeview.h>
17  #include <gtkmm/liststore.h>  #include <gtkmm/liststore.h>
18    #include <gtkmm/table.h>
19    #include <gtkmm/comboboxtext.h>
20    
21  #include "wrapLabel.hh"  #include "wrapLabel.hh"
22    
# Line 47  protected: Line 49  protected:
49  #else  #else
50      Gtk::Label      m_descriptionLabel;      Gtk::Label      m_descriptionLabel;
51  #endif  #endif
52        Gtk::Table      m_tableDimCombo;
53        Gtk::ComboBox   m_comboDimType;
54        Gtk::Label      m_labelDimType;
55    
56        class ComboDimsModel : public Gtk::TreeModel::ColumnRecord {
57        public:
58            ComboDimsModel() {
59                add(m_type_id);
60                add(m_type_name);
61            }
62    
63            Gtk::TreeModelColumn<int> m_type_id;
64            Gtk::TreeModelColumn<Glib::ustring> m_type_name;
65        } m_comboDimsModel;
66    
67      class ListModel : public Gtk::TreeModel::ColumnRecord {      class ListModel : public Gtk::TreeModel::ColumnRecord {
68      public:      public:

Legend:
Removed from v.2557  
changed lines
  Added in v.2558

  ViewVC Help
Powered by ViewVC