2007-04-26 16:54:31 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2006-2009 David Robillard <d@drobilla.net>
|
|
|
|
* Copyright (C) 2006-2014 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2013-2014 Robin Gareus <robin@gareus.org>
|
|
|
|
*
|
|
|
|
* 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2007-04-26 16:54:31 -04:00
|
|
|
|
2006-05-17 22:19:44 -04:00
|
|
|
#ifndef __gtk2_ardour_editor_items_h__
|
|
|
|
#define __gtk2_ardour_editor_items_h__
|
|
|
|
|
|
|
|
enum ItemType {
|
|
|
|
RegionItem,
|
|
|
|
StreamItem,
|
2014-06-18 10:24:59 -04:00
|
|
|
WaveItem,
|
2006-05-17 22:19:44 -04:00
|
|
|
PlayheadCursorItem,
|
|
|
|
MarkerItem,
|
|
|
|
MarkerBarItem,
|
|
|
|
RangeMarkerBarItem,
|
2008-01-10 16:20:59 -05:00
|
|
|
CdMarkerBarItem,
|
2022-01-04 16:48:52 -05:00
|
|
|
CueMarkerBarItem,
|
2013-03-12 17:00:09 -04:00
|
|
|
VideoBarItem,
|
2006-05-17 22:19:44 -04:00
|
|
|
TransportMarkerBarItem,
|
|
|
|
SelectionItem,
|
2007-06-30 14:41:50 -04:00
|
|
|
ControlPointItem,
|
2006-05-17 22:19:44 -04:00
|
|
|
GainLineItem,
|
2007-06-30 14:41:50 -04:00
|
|
|
AutomationLineItem,
|
2006-05-17 22:19:44 -04:00
|
|
|
MeterMarkerItem,
|
2021-02-10 16:34:30 -05:00
|
|
|
BBTMarkerItem,
|
2016-05-07 13:03:12 -04:00
|
|
|
TempoCurveItem,
|
2006-05-17 22:19:44 -04:00
|
|
|
TempoMarkerItem,
|
|
|
|
MeterBarItem,
|
|
|
|
TempoBarItem,
|
2006-07-31 23:23:35 -04:00
|
|
|
RegionViewNameHighlight,
|
|
|
|
RegionViewName,
|
2006-05-17 22:19:44 -04:00
|
|
|
StartSelectionTrimItem,
|
|
|
|
EndSelectionTrimItem,
|
|
|
|
AutomationTrackItem,
|
|
|
|
FadeInItem,
|
|
|
|
FadeInHandleItem,
|
2014-05-30 21:53:59 -04:00
|
|
|
FadeInTrimHandleItem,
|
2006-05-17 22:19:44 -04:00
|
|
|
FadeOutItem,
|
|
|
|
FadeOutHandleItem,
|
2014-05-30 21:53:59 -04:00
|
|
|
FadeOutTrimHandleItem,
|
2009-09-08 17:45:44 -04:00
|
|
|
NoteItem,
|
2010-07-06 07:33:27 -04:00
|
|
|
FeatureLineItem,
|
2014-05-30 21:53:59 -04:00
|
|
|
LeftFrameHandle,
|
|
|
|
RightFrameHandle,
|
2012-05-08 13:13:59 -04:00
|
|
|
StartCrossFadeItem,
|
|
|
|
EndCrossFadeItem,
|
2006-05-17 22:19:44 -04:00
|
|
|
CrossfadeViewItem,
|
2014-06-12 15:58:05 -04:00
|
|
|
TimecodeRulerItem,
|
|
|
|
MinsecRulerItem,
|
|
|
|
BBTRulerItem,
|
|
|
|
SamplesRulerItem,
|
2014-07-01 11:41:16 -04:00
|
|
|
DropZoneItem,
|
|
|
|
|
2006-05-17 22:19:44 -04:00
|
|
|
/* don't remove this */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-05-17 22:19:44 -04:00
|
|
|
NoItem
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __gtk2_ardour_editor_items_h__ */
|