summaryrefslogtreecommitdiffstats
path: root/src/gui/LoadPluginWindow.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-01-28 04:16:30 +0000
committerDavid Robillard <d@drobilla.net>2010-01-28 04:16:30 +0000
commitcd9c2adf12076194e8ea6c1cb2eb5ab641fb96ef (patch)
treed41de06b9f3639359012dc958c3b18055fe1259e /src/gui/LoadPluginWindow.hpp
parent80838b9dcfde1e5d9760ae4d3123a45854a47c32 (diff)
downloadingen-cd9c2adf12076194e8ea6c1cb2eb5ab641fb96ef.tar.gz
ingen-cd9c2adf12076194e8ea6c1cb2eb5ab641fb96ef.tar.bz2
ingen-cd9c2adf12076194e8ea6c1cb2eb5ab641fb96ef.zip
Universal properties window.
Instead of custom designed limited dialogs for each object type, this replacement is built dynamically and shows all properties of an object. Preliminary work, this version allows the user to wreck things by changing properties that shouldn't ever be changed manually. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2385 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/LoadPluginWindow.hpp')
-rw-r--r--src/gui/LoadPluginWindow.hpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/gui/LoadPluginWindow.hpp b/src/gui/LoadPluginWindow.hpp
index b5a3bbd5..9f24d278 100644
--- a/src/gui/LoadPluginWindow.hpp
+++ b/src/gui/LoadPluginWindow.hpp
@@ -65,21 +65,21 @@ private:
/** Columns for the plugin list */
class ModelColumns : public Gtk::TreeModel::ColumnRecord {
public:
- ModelColumns() {
- add(_col_icon);
- add(_col_name);
- add(_col_type);
- add(_col_uri);
- add(_col_plugin);
- }
-
- Gtk::TreeModelColumn<Glib::RefPtr<Gdk::Pixbuf> > _col_icon;
- Gtk::TreeModelColumn<Glib::ustring> _col_name;
- Gtk::TreeModelColumn<Glib::ustring> _col_type;
- Gtk::TreeModelColumn<Glib::ustring> _col_uri;
-
- // Not displayed:
- Gtk::TreeModelColumn<SharedPtr<PluginModel> > _col_plugin;
+ ModelColumns() {
+ add(_col_icon);
+ add(_col_name);
+ add(_col_type);
+ add(_col_uri);
+ add(_col_plugin);
+ }
+
+ Gtk::TreeModelColumn<Glib::RefPtr<Gdk::Pixbuf> > _col_icon;
+ Gtk::TreeModelColumn<Glib::ustring> _col_name;
+ Gtk::TreeModelColumn<Glib::ustring> _col_type;
+ Gtk::TreeModelColumn<Glib::ustring> _col_uri;
+
+ // Not displayed:
+ Gtk::TreeModelColumn<SharedPtr<PluginModel> > _col_plugin;
};
/** Column for the filter criteria combo box. */