2007-04-26 16:54:31 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2000-2007 Paul Davis
|
2007-04-26 16:54:31 -04:00
|
|
|
|
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2006-05-17 22:19:44 -04:00
|
|
|
#ifndef __gtk2_ardour_editor_items_h__
|
|
|
|
#define __gtk2_ardour_editor_items_h__
|
|
|
|
|
|
|
|
enum ItemType {
|
|
|
|
RegionItem,
|
|
|
|
StreamItem,
|
|
|
|
PlayheadCursorItem,
|
|
|
|
MarkerItem,
|
|
|
|
MarkerBarItem,
|
|
|
|
RangeMarkerBarItem,
|
2008-01-10 16:20:59 -05:00
|
|
|
CdMarkerBarItem,
|
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,
|
|
|
|
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,
|
|
|
|
FadeOutItem,
|
|
|
|
FadeOutHandleItem,
|
2009-09-08 17:45:44 -04:00
|
|
|
NoteItem,
|
2010-07-06 07:33:27 -04:00
|
|
|
FeatureLineItem,
|
2010-06-17 08:45:51 -04:00
|
|
|
LeftFrameHandle,
|
|
|
|
RightFrameHandle,
|
2012-05-08 13:13:59 -04:00
|
|
|
StartCrossFadeItem,
|
|
|
|
EndCrossFadeItem,
|
2009-09-08 17:45:44 -04:00
|
|
|
|
2007-05-10 22:54:43 -04:00
|
|
|
#ifdef WITH_CMT
|
2006-05-17 22:19:44 -04:00
|
|
|
MarkerViewItem,
|
|
|
|
MarkerTimeAxisItem,
|
|
|
|
MarkerViewHandleStartItem,
|
|
|
|
MarkerViewHandleEndItem,
|
|
|
|
ImageFrameItem,
|
|
|
|
ImageFrameTimeAxisItem,
|
|
|
|
ImageFrameHandleStartItem,
|
|
|
|
ImageFrameHandleEndItem,
|
2007-05-10 22:54:43 -04:00
|
|
|
#endif
|
|
|
|
|
2006-05-17 22:19:44 -04:00
|
|
|
CrossfadeViewItem,
|
2009-10-14 12:10:01 -04:00
|
|
|
|
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__ */
|