Fix update of session range location on copy-dragging regions (#4038).
[ardour.git] / libs / ardour / operations.cc
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/gquark.h>
21 #include "ardour/operations.h"
22 #include "i18n.h"
23
24 GQuark Operations::capture           = g_quark_from_static_string (_("capture"));
25 GQuark Operations::paste             = g_quark_from_static_string (_("paste"));
26 GQuark Operations::duplicate_region  = g_quark_from_static_string (_("duplicate region"));
27 GQuark Operations::insert_file       = g_quark_from_static_string (_("insert file"));
28 GQuark Operations::insert_region     = g_quark_from_static_string (_("insert region"));
29 GQuark Operations::drag_region_brush = g_quark_from_static_string (_("drag region brush"));
30 GQuark Operations::region_drag       = g_quark_from_static_string (_("region drag"));
31 GQuark Operations::selection_grab    = g_quark_from_static_string (_("selection grab"));
32 GQuark Operations::region_fill       = g_quark_from_static_string (_("region fill"));
33 GQuark Operations::fill_selection    = g_quark_from_static_string (_("fill selection"));
34 GQuark Operations::create_region     = g_quark_from_static_string (_("create region"));
35 GQuark Operations::region_copy       = g_quark_from_static_string (_("region copy"));
36 GQuark Operations::fixed_time_region_copy = g_quark_from_static_string (_("fixed time region copy"));