Changing active-state needs no color lookup
[ardour.git] / gtk2_ardour / enums.cc
index 2f141d23a9656cf00e83bbafddfb54e685ecee61..5bee7534dd729a154f2b247fb143ccb6f6f43d49 100644 (file)
@@ -1,25 +1,28 @@
 /*
-    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 "gtkmm2ext/ardour_icon.h"
+#include "widgets/ardour_icon.h"
 
 #include "audio_clock.h"
 #include "editing.h"
@@ -30,7 +33,7 @@ using namespace std;
 using namespace PBD;
 using namespace ARDOUR;
 using namespace Editing;
-using namespace Gtkmm2ext;
+using namespace ArdourWidgets;
 
 void
 setup_gtk_ardour_enums ()
@@ -45,7 +48,7 @@ setup_gtk_ardour_enums ()
        EditPoint edit_point;
        LayerDisplay layer_display;
        RegionListSortType region_list_sort_type;
-       SnapType snap_type;
+       GridType grid_type;
        SnapMode snap_mode;
        ZoomFocus zoom_focus;
        ItemType item_type;
@@ -59,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);
@@ -93,37 +97,28 @@ setup_gtk_ardour_enums ()
        REGISTER_ENUM (ByTimestamp);
        REGISTER (region_list_sort_type);
 
-       REGISTER_ENUM (SnapToCDFrame);
-       REGISTER_ENUM (SnapToTimecodeFrame);
-       REGISTER_ENUM (SnapToTimecodeSeconds);
-       REGISTER_ENUM (SnapToTimecodeMinutes);
-       REGISTER_ENUM (SnapToSeconds);
-       REGISTER_ENUM (SnapToMinutes);
-       REGISTER_ENUM (SnapToBeatDiv128);
-       REGISTER_ENUM (SnapToBeatDiv64);
-       REGISTER_ENUM (SnapToBeatDiv32);
-       REGISTER_ENUM (SnapToBeatDiv28);
-       REGISTER_ENUM (SnapToBeatDiv24);
-       REGISTER_ENUM (SnapToBeatDiv20);
-       REGISTER_ENUM (SnapToBeatDiv16);
-       REGISTER_ENUM (SnapToBeatDiv14);
-       REGISTER_ENUM (SnapToBeatDiv12);
-       REGISTER_ENUM (SnapToBeatDiv10);
-       REGISTER_ENUM (SnapToBeatDiv8);
-       REGISTER_ENUM (SnapToBeatDiv7);
-       REGISTER_ENUM (SnapToBeatDiv6);
-       REGISTER_ENUM (SnapToBeatDiv5);
-       REGISTER_ENUM (SnapToBeatDiv4);
-       REGISTER_ENUM (SnapToBeatDiv3);
-       REGISTER_ENUM (SnapToBeatDiv2);
-       REGISTER_ENUM (SnapToBeat);
-       REGISTER_ENUM (SnapToBar);
-       REGISTER_ENUM (SnapToMark);
-       REGISTER_ENUM (SnapToRegionStart);
-       REGISTER_ENUM (SnapToRegionEnd);
-       REGISTER_ENUM (SnapToRegionSync);
-       REGISTER_ENUM (SnapToRegionBoundary);
-       REGISTER (snap_type);
+       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);
@@ -188,37 +183,4 @@ setup_gtk_ardour_enums ()
        REGISTER_ENUM(MouseContent);
        REGISTER (mouse_mode);
 
-       ArdourIcon::Icon icons;
-
-       REGISTER_ENUM (ArdourIcon::NoIcon);
-       REGISTER_ENUM (ArdourIcon::RecButton);
-       REGISTER_ENUM (ArdourIcon::RecTapeMode);
-       REGISTER_ENUM (ArdourIcon::CloseCross);
-       REGISTER_ENUM (ArdourIcon::StripWidth);
-       REGISTER_ENUM (ArdourIcon::DinMidi);
-       REGISTER_ENUM (ArdourIcon::TransportStop);
-       REGISTER_ENUM (ArdourIcon::TransportPlay);
-       REGISTER_ENUM (ArdourIcon::TransportLoop);
-       REGISTER_ENUM (ArdourIcon::TransportRange);
-       REGISTER_ENUM (ArdourIcon::TransportStart);
-       REGISTER_ENUM (ArdourIcon::TransportEnd);
-       REGISTER_ENUM (ArdourIcon::TransportPanic);
-       REGISTER_ENUM (ArdourIcon::TransportMetronom);
-       REGISTER_ENUM (ArdourIcon::NudgeLeft);
-       REGISTER_ENUM (ArdourIcon::NudgeRight);
-       REGISTER_ENUM (ArdourIcon::ZoomIn);
-       REGISTER_ENUM (ArdourIcon::ZoomOut);
-       REGISTER_ENUM (ArdourIcon::ZoomFull);
-       REGISTER_ENUM (ArdourIcon::ZoomExpand);
-       REGISTER_ENUM (ArdourIcon::TimeAxisShrink);
-       REGISTER_ENUM (ArdourIcon::TimeAxisExpand);
-       REGISTER_ENUM (ArdourIcon::ToolGrab);
-       REGISTER_ENUM (ArdourIcon::ToolRange);
-       REGISTER_ENUM (ArdourIcon::ToolCut);
-       REGISTER_ENUM (ArdourIcon::ToolStretch);
-       REGISTER_ENUM (ArdourIcon::ToolAudition);
-       REGISTER_ENUM (ArdourIcon::ToolDraw);
-       REGISTER_ENUM (ArdourIcon::ToolContent);
-       REGISTER (icons);
-
 }