prepare fade+trim cursors (cursor image still missing)
[ardour.git] / gtk2_ardour / mouse_cursors.h
1 /*
2     Copyright (C) 2000-2010 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __gtk2_ardour_mouse_cursors__
21 #define __gtk2_ardour_mouse_cursors__
22
23 /** @file Handling of bitmaps to be used for mouse cursors.
24  *
25  *  Held centrally by the Editor because some cursors are used in several places.
26  */
27
28 class MouseCursors
29 {
30 public:
31         MouseCursors ();
32
33         Gdk::Cursor* cross_hair;
34         Gdk::Cursor* trimmer;
35         Gdk::Cursor* right_side_trim;
36         Gdk::Cursor* left_side_trim;
37         Gdk::Cursor* right_side_trim_left_only;
38         Gdk::Cursor* left_side_trim_right_only;
39         Gdk::Cursor* fade_in;
40         Gdk::Cursor* fade_out;
41         Gdk::Cursor* fade_trim_in;
42         Gdk::Cursor* fade_trim_out;
43         Gdk::Cursor* selector;
44         Gdk::Cursor* grabber;
45         Gdk::Cursor* grabber_note;
46         Gdk::Cursor* grabber_edit_point;
47         Gdk::Cursor* zoom_in;
48         Gdk::Cursor* zoom_out;
49         Gdk::Cursor* time_fx;
50         Gdk::Cursor* fader;
51         Gdk::Cursor* speaker;
52         Gdk::Cursor* midi_pencil;
53         Gdk::Cursor* midi_select;
54         Gdk::Cursor* midi_resize;
55         Gdk::Cursor* midi_erase;
56         Gdk::Cursor* up_down;
57         Gdk::Cursor* wait;
58         Gdk::Cursor* timebar;
59         Gdk::Cursor* transparent;
60         Gdk::Cursor* resize_left;
61         Gdk::Cursor* resize_top_left;
62         Gdk::Cursor* resize_top;
63         Gdk::Cursor* resize_top_right;
64         Gdk::Cursor* resize_right;
65         Gdk::Cursor* resize_bottom_right;
66         Gdk::Cursor* resize_bottom;
67         Gdk::Cursor* resize_bottom_left;
68         Gdk::Cursor* move;
69         Gdk::Cursor* expand_left_right;
70         Gdk::Cursor* expand_up_down;
71 };
72
73 #endif /* __gtk2_ardour_mouse_cursors__ */