missing enum/properties stuff

This commit is contained in:
Paul Davis 2018-09-20 12:00:16 -04:00
parent 9cdbeaa07d
commit 03e5b97921
2 changed files with 9 additions and 0 deletions

View file

@ -87,6 +87,7 @@ setup_enum_writer ()
HeaderFormat _HeaderFormat;
PluginType _PluginType;
SyncSource _SyncSource;
TransportRequestType _TransportRequestType;
ShuttleBehaviour _ShuttleBehaviour;
ShuttleUnits _ShuttleUnits;
Session::RecordState _Session_RecordState;
@ -397,6 +398,12 @@ setup_enum_writer ()
REGISTER_ENUM (LTC);
REGISTER (_SyncSource);
REGISTER_ENUM (TR_Stop);
REGISTER_ENUM (TR_Start);
REGISTER_ENUM (TR_Speed);
REGISTER_ENUM (TR_Locate);
REGISTER (_TransportRequestType);
REGISTER_ENUM (Sprung);
REGISTER_ENUM (Wheel);
REGISTER (_ShuttleBehaviour);

View file

@ -54,6 +54,8 @@ TransportMaster::make_property_quarks ()
DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for collect = %1\n", Properties::collect.property_id));
Properties::connected.property_id = g_quark_from_static_string (X_("connected"));
DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for connected = %1\n", Properties::connected.property_id));
Properties::allowed_transport_requests.property_id = g_quark_from_static_string (X_("allowed_transport_requests"));
DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for allowed_transport_requests = %1\n", Properties::allowed_transport_requests.property_id));
}
const std::string TransportMaster::state_node_name = X_("TransportMaster");