summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_group_menu.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-06-29 00:57:27 +0000
committerCarl Hetherington <carl@carlh.net>2009-06-29 00:57:27 +0000
commit26328c9ef1d010e8cd4672407f0a2b08c5f49e20 (patch)
tree035f429dbe450d91e42fe14a1d1a4d7960e1a91f /gtk2_ardour/route_group_menu.h
parentda148faf0036ddff11c38c7773e09d8893c951b4 (diff)
lincoln's patch from mantis 2757 to add route group property checkboxes in the route groups
editor list, and to initialise new route groups with some appropriate properties. git-svn-id: svn://localhost/ardour2/branches/3.0@5295 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/route_group_menu.h')
-rw-r--r--gtk2_ardour/route_group_menu.h25
1 files changed, 23 insertions, 2 deletions
diff --git a/gtk2_ardour/route_group_menu.h b/gtk2_ardour/route_group_menu.h
index 09a31e60ed..7827179acb 100644
--- a/gtk2_ardour/route_group_menu.h
+++ b/gtk2_ardour/route_group_menu.h
@@ -1,12 +1,32 @@
+/*
+ Copyright (C) 2009 Paul Davis
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#include "ardour/route_group.h"
+
namespace ARDOUR {
class Session;
- class RouteGroup;
}
class RouteGroupMenu : public Gtk::Menu
{
public:
- RouteGroupMenu (ARDOUR::Session &);
+ RouteGroupMenu (ARDOUR::Session &, ARDOUR::RouteGroup::Property);
void rebuild (ARDOUR::RouteGroup *);
@@ -18,4 +38,5 @@ private:
void set_group (ARDOUR::RouteGroup *);
ARDOUR::Session& _session;
+ ARDOUR::RouteGroup::Property _default_properties;
};