Changing active-state needs no color lookup
[ardour.git] / gtk2_ardour / enums.cc
index 76bcff4205d475ceb10e4dfa6d68aee3257c3553..5bee7534dd729a154f2b247fb143ccb6f6f43d49 100644 (file)
@@ -1,32 +1,39 @@
 /*
-    Copyright (C) 2000-2007 Paul Davis
-
-    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.
-
-*/
+ * Copyright (C) 2007-2017 Paul Davis <paul@linuxaudiosystems.com>
+ * Copyright (C) 2009-2011 Carl Hetherington <carl@carlh.net>
+ * Copyright (C) 2009-2014 David Robillard <d@drobilla.net>
+ * Copyright (C) 2017 Robin Gareus <robin@gareus.org>
+ * Copyright (C) 2018 Ben Loftis <ben@harrisonconsoles.com>
+ *
+ * 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.
+ */
 
 #include "pbd/enumwriter.h"
 
+#include "widgets/ardour_icon.h"
+
 #include "audio_clock.h"
 #include "editing.h"
 #include "enums.h"
+#include "editor_items.h"
 
 using namespace std;
 using namespace PBD;
 using namespace ARDOUR;
 using namespace Editing;
+using namespace ArdourWidgets;
 
 void
 setup_gtk_ardour_enums ()
@@ -41,7 +48,11 @@ setup_gtk_ardour_enums ()
        EditPoint edit_point;
        LayerDisplay layer_display;
        RegionListSortType region_list_sort_type;
-       StatusBarComponent status_bar_component;
+       GridType grid_type;
+       SnapMode snap_mode;
+       ZoomFocus zoom_focus;
+       ItemType item_type;
+       MouseMode mouse_mode;
 
 #define REGISTER(e) enum_writer.register_distinct (typeid(e).name(), i, s); i.clear(); s.clear()
 #define REGISTER_BITS(e) enum_writer.register_bits (typeid(e).name(), i, s); i.clear(); s.clear()
@@ -51,7 +62,8 @@ setup_gtk_ardour_enums ()
        REGISTER_CLASS_ENUM (AudioClock, Timecode);
        REGISTER_CLASS_ENUM (AudioClock, BBT);
        REGISTER_CLASS_ENUM (AudioClock, MinSec);
-       REGISTER_CLASS_ENUM (AudioClock, Frames);
+       REGISTER_CLASS_ENUM (AudioClock, Seconds);
+       REGISTER_CLASS_ENUM (AudioClock, Samples);
        REGISTER (clock_mode);
 
        REGISTER_ENUM (Wide);
@@ -85,11 +97,90 @@ setup_gtk_ardour_enums ()
        REGISTER_ENUM (ByTimestamp);
        REGISTER (region_list_sort_type);
 
-       REGISTER_ENUM (StatusWallClock);
-       REGISTER_ENUM (StatusDiskSpace);
-       REGISTER_ENUM (StatusCPULoad);
-       REGISTER_ENUM (StatusBufferLoad);
-       REGISTER_ENUM (StatusSampleRate);
-       REGISTER_ENUM (StatusFormat);
-       REGISTER_BITS (status_bar_component);
+       REGISTER_ENUM (GridTypeNone);
+       REGISTER_ENUM (GridTypeBar);
+       REGISTER_ENUM (GridTypeBeat);
+       REGISTER_ENUM (GridTypeBeatDiv2);
+       REGISTER_ENUM (GridTypeBeatDiv4);
+       REGISTER_ENUM (GridTypeBeatDiv8);
+       REGISTER_ENUM (GridTypeBeatDiv16);
+       REGISTER_ENUM (GridTypeBeatDiv32);
+       REGISTER_ENUM (GridTypeBeatDiv3);
+       REGISTER_ENUM (GridTypeBeatDiv6);
+       REGISTER_ENUM (GridTypeBeatDiv12);
+       REGISTER_ENUM (GridTypeBeatDiv24);
+       REGISTER_ENUM (GridTypeBeatDiv5);
+       REGISTER_ENUM (GridTypeBeatDiv10);
+       REGISTER_ENUM (GridTypeBeatDiv20);
+       REGISTER_ENUM (GridTypeBeatDiv7);
+       REGISTER_ENUM (GridTypeBeatDiv14);
+       REGISTER_ENUM (GridTypeBeatDiv28);
+       REGISTER_ENUM (GridTypeTimecode);
+       REGISTER_ENUM (GridTypeMinSec);
+       REGISTER_ENUM (GridTypeCDFrame);
+       REGISTER (grid_type);
+
+       REGISTER_ENUM (SnapOff);
+       REGISTER_ENUM (SnapNormal);
+       REGISTER_ENUM (SnapMagnetic);
+       REGISTER (snap_mode);
+
+       REGISTER_ENUM (ZoomFocusLeft);
+       REGISTER_ENUM (ZoomFocusRight);
+       REGISTER_ENUM (ZoomFocusCenter);
+       REGISTER_ENUM (ZoomFocusPlayhead);
+       REGISTER_ENUM (ZoomFocusMouse);
+       REGISTER_ENUM (ZoomFocusEdit);
+       REGISTER (zoom_focus);
+
+       REGISTER_ENUM (RegionItem);
+       REGISTER_ENUM (WaveItem);
+       REGISTER_ENUM (StreamItem);
+       REGISTER_ENUM (PlayheadCursorItem);
+       REGISTER_ENUM (MarkerItem);
+       REGISTER_ENUM (MarkerBarItem);
+       REGISTER_ENUM (RangeMarkerBarItem);
+       REGISTER_ENUM (CdMarkerBarItem);
+       REGISTER_ENUM (VideoBarItem);
+       REGISTER_ENUM (TransportMarkerBarItem);
+       REGISTER_ENUM (SelectionItem);
+       REGISTER_ENUM (ControlPointItem);
+       REGISTER_ENUM (GainLineItem);
+       REGISTER_ENUM (AutomationLineItem);
+       REGISTER_ENUM (MeterMarkerItem);
+       REGISTER_ENUM (TempoCurveItem);
+       REGISTER_ENUM (TempoMarkerItem);
+       REGISTER_ENUM (MeterBarItem);
+       REGISTER_ENUM (TempoBarItem);
+       REGISTER_ENUM (RegionViewNameHighlight);
+       REGISTER_ENUM (RegionViewName);
+       REGISTER_ENUM (StartSelectionTrimItem);
+       REGISTER_ENUM (EndSelectionTrimItem);
+       REGISTER_ENUM (AutomationTrackItem);
+       REGISTER_ENUM (FadeInItem);
+       REGISTER_ENUM (FadeInHandleItem);
+       REGISTER_ENUM (FadeOutItem);
+       REGISTER_ENUM (FadeOutHandleItem);
+       REGISTER_ENUM (NoteItem);
+       REGISTER_ENUM (FeatureLineItem);
+       REGISTER_ENUM (LeftFrameHandle);
+       REGISTER_ENUM (RightFrameHandle);
+       REGISTER_ENUM (StartCrossFadeItem);
+       REGISTER_ENUM (EndCrossFadeItem);
+       REGISTER_ENUM (CrossfadeViewItem);
+       REGISTER_ENUM (TimecodeRulerItem);
+       REGISTER_ENUM (MinsecRulerItem);
+       REGISTER_ENUM (BBTRulerItem);
+       REGISTER_ENUM (SamplesRulerItem);
+       REGISTER (item_type);
+
+       REGISTER_ENUM(MouseObject);
+       REGISTER_ENUM(MouseRange);
+       REGISTER_ENUM(MouseDraw);
+       REGISTER_ENUM(MouseTimeFX);
+       REGISTER_ENUM(MouseAudition);
+       REGISTER_ENUM(MouseCut);
+       REGISTER_ENUM(MouseContent);
+       REGISTER (mouse_mode);
+
 }