summaryrefslogtreecommitdiff
path: root/libs/ardour/operations.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-01-19 17:39:22 +0000
committerCarl Hetherington <carl@carlh.net>2011-01-19 17:39:22 +0000
commit7c313b49185c407b094cbc80860ca43696de91aa (patch)
treebf3af67a6de45e814fe402b4c64e4c09b74170a4 /libs/ardour/operations.cc
parent1e8586742e48f56bb81fa14c50442cec23894dfd (diff)
Missing files.
git-svn-id: svn://localhost/ardour2/branches/3.0@8540 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/operations.cc')
-rw-r--r--libs/ardour/operations.cc34
1 files changed, 34 insertions, 0 deletions
diff --git a/libs/ardour/operations.cc b/libs/ardour/operations.cc
new file mode 100644
index 0000000000..eddd36036c
--- /dev/null
+++ b/libs/ardour/operations.cc
@@ -0,0 +1,34 @@
+/*
+ Copyright (C) 2011 Paul Davis
+ Author: Carl Hetherington <cth@carlh.net>
+
+ 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 <glib/gquark.h>
+#include "ardour/operations.h"
+#include "i18n.h"
+
+GQuark Operations::capture = g_quark_from_static_string (_("capture"));
+GQuark Operations::paste = g_quark_from_static_string (_("paste"));
+GQuark Operations::duplicate_region = g_quark_from_static_string (_("duplicate region"));
+GQuark Operations::insert_file = g_quark_from_static_string (_("insert file"));
+GQuark Operations::insert_region = g_quark_from_static_string (_("insert region"));
+GQuark Operations::drag_region_brush = g_quark_from_static_string (_("drag region brush"));
+GQuark Operations::region_drag = g_quark_from_static_string (_("region drag"));
+GQuark Operations::selection_grab = g_quark_from_static_string (_("selection grab"));
+GQuark Operations::region_fill = g_quark_from_static_string (_("region fill"));
+GQuark Operations::fill_selection = g_quark_from_static_string (_("fill selection"));
+GQuark Operations::create_region = g_quark_from_static_string (_("create region"));