Vkeybd: use ArdourWidgets for all GUI elements
[ardour.git] / gtk2_ardour / editor_items.h
1 /*
2  * Copyright (C) 2006-2009 David Robillard <d@drobilla.net>
3  * Copyright (C) 2006-2014 Paul Davis <paul@linuxaudiosystems.com>
4  * Copyright (C) 2013-2014 Robin Gareus <robin@gareus.org>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19  */
20
21 #ifndef __gtk2_ardour_editor_items_h__
22 #define __gtk2_ardour_editor_items_h__
23
24 enum ItemType {
25         RegionItem,
26         StreamItem,
27         WaveItem,
28         PlayheadCursorItem,
29         MarkerItem,
30         MarkerBarItem,
31         RangeMarkerBarItem,
32         CdMarkerBarItem,
33         VideoBarItem,
34         TransportMarkerBarItem,
35         SelectionItem,
36         ControlPointItem,
37         GainLineItem,
38         AutomationLineItem,
39         MeterMarkerItem,
40         TempoCurveItem,
41         TempoMarkerItem,
42         MeterBarItem,
43         TempoBarItem,
44         RegionViewNameHighlight,
45         RegionViewName,
46         StartSelectionTrimItem,
47         EndSelectionTrimItem,
48         AutomationTrackItem,
49         FadeInItem,
50         FadeInHandleItem,
51         FadeInTrimHandleItem,
52         FadeOutItem,
53         FadeOutHandleItem,
54         FadeOutTrimHandleItem,
55         NoteItem,
56         FeatureLineItem,
57         LeftFrameHandle,
58         RightFrameHandle,
59         StartCrossFadeItem,
60         EndCrossFadeItem,
61         CrossfadeViewItem,
62         TimecodeRulerItem,
63         MinsecRulerItem,
64         BBTRulerItem,
65         SamplesRulerItem,
66         DropZoneItem,
67
68         /* don't remove this */
69
70         NoItem
71 };
72
73 #endif /* __gtk2_ardour_editor_items_h__ */