X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Fdata_type.h;h=bc59aebeb640e373264237faab496775c6f18d96;hb=24b514797ab265bf48eb93d6c2c812ce5232fdba;hp=854f52acbae2a3971bd9cd7dddbe997a8d891980;hpb=77f16522e0b396262bc272c1637753faa9da0ba7;p=ardour.git diff --git a/libs/ardour/ardour/data_type.h b/libs/ardour/ardour/data_type.h index 854f52acba..bc59aebeb6 100644 --- a/libs/ardour/ardour/data_type.h +++ b/libs/ardour/ardour/data_type.h @@ -1,17 +1,17 @@ /* - Copyright (C) 2006 Paul Davis - Author: Dave Robillard - + Copyright (C) 2006 Paul Davis + Author: David Robillard + 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. @@ -21,10 +21,12 @@ #define __ardour_data_type_h__ #include -#include +#include +#include -namespace ARDOUR { +#include "ardour/libardour_visibility.h" +namespace ARDOUR { /** A type of Data Ardour is capable of processing. * @@ -32,7 +34,7 @@ namespace ARDOUR { * other type representations, simple comparison between then, etc. This code * is deliberately 'ugly' so other code doesn't have to be. */ -class DataType +class LIBARDOUR_API DataType { public: /** Numeric symbol for this DataType. @@ -49,7 +51,7 @@ public: MIDI = 1, NIL = 2, }; - + /** Number of types (not including NIL). * WARNING: make sure this matches Symbol! */ @@ -61,33 +63,27 @@ public: /** Construct from a string (Used for loading from XML and Ports) * The string can be as in an XML file (eg "audio" or "midi"), or a - * Jack type string (from jack_port_type) */ + */ DataType(const std::string& str) : _symbol(NIL) { - if (str == "audio" || str == JACK_DEFAULT_AUDIO_TYPE) + if (!g_ascii_strncasecmp(str.c_str(), "audio", str.length())) { _symbol = AUDIO; - else if (str == "midi" || str == JACK_DEFAULT_MIDI_TYPE) + } else if (!g_ascii_strncasecmp(str.c_str(), "midi", str.length())) { _symbol = MIDI; - } - - /** Get the Jack type this DataType corresponds to */ - const char* to_jack_type() const { - switch (_symbol) { - case AUDIO: return JACK_DEFAULT_AUDIO_TYPE; - case MIDI: return JACK_DEFAULT_MIDI_TYPE; - default: return ""; } } - + /** Inverse of the from-string constructor */ const char* to_string() const { switch (_symbol) { - case AUDIO: return "audio"; - case MIDI: return "midi"; - default: return "unknown"; // reeeally shouldn't ever happen + case AUDIO: return "audio"; + case MIDI: return "midi"; + default: return "unknown"; // reeeally shouldn't ever happen } } + const char* to_i18n_string () const; + inline operator uint32_t() const { return (uint32_t)_symbol; } /** DataType iterator, for writing generic loops that iterate over all @@ -111,10 +107,10 @@ public: static iterator begin() { return iterator(0); } static iterator end() { return iterator(num_types); } - + bool operator==(const Symbol symbol) { return (_symbol == symbol); } bool operator!=(const Symbol symbol) { return (_symbol != symbol); } - + bool operator==(const DataType other) { return (_symbol == other._symbol); } bool operator!=(const DataType other) { return (_symbol != other._symbol); } @@ -123,7 +119,6 @@ private: }; - } // namespace ARDOUR #endif // __ardour_data_type_h__