ardour
operations.cc
Go to the documentation of this file.
1 /*
2  Copyright (C) 2011 Paul Davis
3  Author: Carl Hetherington <cth@carlh.net>
4 
5  This program is free software; you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published by
7  the Free Software Foundation; either version 2 of the License, or
8  (at your option) any later version.
9 
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU General Public License for more details.
14 
15  You should have received a copy of the GNU General Public License
16  along with this program; if not, write to the Free Software
17  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19 
20 #include <glib.h>
21 #include "ardour/operations.h"
22 #include "i18n.h"
23 
37 
38 void
40 {
41  Operations::capture = g_quark_from_static_string (_("capture"));
42  Operations::paste = g_quark_from_static_string (_("paste"));
43  Operations::duplicate_region = g_quark_from_static_string (_("duplicate region"));
44  Operations::insert_file = g_quark_from_static_string (_("insert file"));
45  Operations::insert_region = g_quark_from_static_string (_("insert region"));
46  Operations::drag_region_brush = g_quark_from_static_string (_("drag region brush"));
47  Operations::region_drag = g_quark_from_static_string (_("region drag"));
48  Operations::selection_grab = g_quark_from_static_string (_("selection grab"));
49  Operations::region_fill = g_quark_from_static_string (_("region fill"));
50  Operations::fill_selection = g_quark_from_static_string (_("fill selection"));
51  Operations::create_region = g_quark_from_static_string (_("create region"));
52  Operations::region_copy = g_quark_from_static_string (_("region copy"));
53  Operations::fixed_time_region_copy = g_quark_from_static_string (_("fixed time region copy"));
54 }
LIBARDOUR_API GQuark selection_grab
Definition: operations.cc:31
LIBARDOUR_API GQuark region_drag
Definition: operations.cc:30
LIBARDOUR_API GQuark region_fill
Definition: operations.cc:32
LIBARDOUR_API GQuark fixed_time_region_copy
Definition: operations.cc:36
LIBARDOUR_API GQuark paste
Definition: operations.cc:25
LIBARDOUR_API GQuark duplicate_region
Definition: operations.cc:26
LIBARDOUR_API GQuark create_region
Definition: operations.cc:34
LIBARDOUR_API GQuark insert_file
Definition: operations.cc:27
LIBARDOUR_API GQuark drag_region_brush
Definition: operations.cc:29
#define _(Text)
Definition: i18n.h:11
LIBARDOUR_API GQuark fill_selection
Definition: operations.cc:33
LIBARDOUR_API GQuark capture
Definition: operations.cc:24
LIBARDOUR_API GQuark insert_region
Definition: operations.cc:28
LIBARDOUR_API void make_operations_quarks()
Definition: operations.cc:39
LIBARDOUR_API GQuark region_copy
Definition: operations.cc:35