Paul Davis
449aab3c46
git-svn-id: svn://localhost/ardour2/branches/3.0@3435 d708f5d6-7413-0410-9779-e7cbd77b26cf
98 lines
2.4 KiB
C++
98 lines
2.4 KiB
C++
// -*- c++ -*-
|
|
#ifndef _GTKMM_STOCKID_H
|
|
#define _GTKMM_STOCKID_H
|
|
|
|
/* $Id$ */
|
|
|
|
/* stockid.h
|
|
*
|
|
* Copyright (C) 2002 The gtkmm Development Team
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the Free
|
|
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#include <glibmm.h>
|
|
|
|
namespace Gtk
|
|
{
|
|
|
|
struct BuiltinStockID;
|
|
|
|
/** See also Gtk::BuiltinStockID.
|
|
*/
|
|
class StockID
|
|
{
|
|
public:
|
|
StockID(); //TODO: This was added for Action::Action, but there might be a better way to do this.
|
|
StockID(const BuiltinStockID& id);
|
|
explicit StockID(const Glib::ustring& id);
|
|
explicit StockID(const char* id); // id can be 0
|
|
~StockID();
|
|
|
|
StockID(const StockID& other);
|
|
StockID& operator=(const StockID& other);
|
|
|
|
bool equal(const StockID& rhs) const;
|
|
|
|
Glib::ustring get_string() const;
|
|
const char* get_c_str() const;
|
|
|
|
protected:
|
|
Glib::ustring id_;
|
|
};
|
|
|
|
/** @relates Gtk::StockID */
|
|
inline bool operator==(const StockID& lhs, const StockID& rhs)
|
|
{ return lhs.equal(rhs); }
|
|
|
|
/** @relates Gtk::StockID */
|
|
inline bool operator!=(const StockID& lhs, const StockID& rhs)
|
|
{ return !lhs.equal(rhs); }
|
|
|
|
|
|
#ifndef DOXYGEN_SHOULD_SKIP_THIS
|
|
struct StockID_Traits : public Glib::Container_Helpers::TypeTraits<Glib::ustring>
|
|
{
|
|
typedef Gtk::StockID CppType;
|
|
|
|
static const char* to_c_type(const StockID& id) { return id.get_c_str(); }
|
|
static StockID to_cpp_type(const char* str) { return StockID(str); }
|
|
};
|
|
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
|
|
|
|
} // namespace Gtk
|
|
|
|
|
|
#ifndef DOXYGEN_SHOULD_SKIP_THIS
|
|
namespace Glib
|
|
{
|
|
|
|
template <>
|
|
class Value<Gtk::StockID> : public Glib::ValueBase_String
|
|
{
|
|
public:
|
|
typedef Gtk::StockID CppType;
|
|
|
|
void set(const Gtk::StockID& data) { set_cstring(data.get_c_str()); }
|
|
Gtk::StockID get() const { return Gtk::StockID(get_cstring()); }
|
|
};
|
|
|
|
} // namespace Glib
|
|
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
|
|
|
|
|
|
#endif /* _GTKMM_STOCKID_H */
|
|
|