summaryrefslogtreecommitdiff
path: root/gtk2_ardour/stripable_treemodel.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-07-01 21:11:14 +0200
committerRobin Gareus <robin@gareus.org>2017-07-01 21:19:56 +0200
commitb976bf8986290e8f4812a50e7fdd98b9cbeb4249 (patch)
tree75cffb9761a024943c18e502a3d84e3607954a55 /gtk2_ardour/stripable_treemodel.h
parent221902138938a47f32b925f7e37602230e9de538 (diff)
NO-OP whitespace & foratting of header files
Diffstat (limited to 'gtk2_ardour/stripable_treemodel.h')
-rw-r--r--gtk2_ardour/stripable_treemodel.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/gtk2_ardour/stripable_treemodel.h b/gtk2_ardour/stripable_treemodel.h
index a91ddc026d..8f1d941158 100644
--- a/gtk2_ardour/stripable_treemodel.h
+++ b/gtk2_ardour/stripable_treemodel.h
@@ -37,15 +37,15 @@ class StripableSorter;
class StripableTreeModel : public Gtk::TreeModel, public Glib::Object
{
- protected:
+protected:
StripableTreeModel (AxisViewProvider&);
virtual ~StripableTreeModel();
- public:
+public:
static Glib::RefPtr<StripableTreeModel> create (AxisViewProvider&);
void set_session (ARDOUR::Session&);
- protected:
+protected:
Gtk::TreeModelFlags get_flags_vfunc() const;
int get_n_columns_vfunc() const;
GType get_column_type_vfunc(int index) const;
@@ -62,15 +62,15 @@ class StripableTreeModel : public Gtk::TreeModel, public Glib::Object
bool get_iter_vfunc(const Path& path, iterator& iter) const;
bool iter_is_valid(const iterator& iter) const;
- public:
+public:
typedef Gtk::TreeModelColumn<std::string> StringColumn;
typedef Gtk::TreeModelColumn<bool> BoolColumn;
typedef Gtk::TreeModelColumn<uint32_t> UnsignedColumn;
typedef Gtk::TreeModelColumn<AxisView*> AVColumn;
typedef Gtk::TreeModelColumn<boost::shared_ptr<ARDOUR::Stripable> > StripableColumn;
- struct Columns : public Gtk::TreeModel::ColumnRecord {
-
+ struct Columns : public Gtk::TreeModel::ColumnRecord
+ {
Columns () {
add (text);
add (visible);
@@ -111,7 +111,7 @@ class StripableTreeModel : public Gtk::TreeModel, public Glib::Object
Columns columns;
- private:
+private:
ARDOUR::Session* _session;
AxisViewProvider& axis_view_provider;
@@ -119,7 +119,8 @@ class StripableTreeModel : public Gtk::TreeModel, public Glib::Object
void text_value (boost::shared_ptr<ARDOUR::Stripable> stripable, Glib::ValueBase& value) const;
- struct Glue {
+ struct Glue
+ {
Glue (boost::shared_ptr<ARDOUR::Stripable>);
boost::weak_ptr<ARDOUR::Stripable> stripable;