mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 11:06:32 +01:00
git-svn-id: svn://localhost/ardour2/branches/3.0@3435 d708f5d6-7413-0410-9779-e7cbd77b26cf
61 lines
2 KiB
C++
61 lines
2 KiB
C++
// -*- c++ -*-
|
|
/* $Id: action.ccg,v 1.11 2006/05/10 20:59:27 murrayc Exp $ */
|
|
|
|
/* Copyright 2003 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 <gtk/gtkaction.h>
|
|
|
|
#include <gtkmm/menu.h>
|
|
#include <gtkmm/menuitem.h>
|
|
#include <gtkmm/toolitem.h>
|
|
#include <gtkmm/image.h>
|
|
#include <gtkmm/widget.h>
|
|
|
|
typedef Gtk::Action Action;
|
|
|
|
namespace Gtk
|
|
{
|
|
|
|
Action::Action(const Glib::ustring& name, const Gtk::StockID& stock_id, const Glib::ustring& label, const Glib::ustring& tooltip)
|
|
:
|
|
_CONSTRUCT("name", name.c_str(), "stock_id", stock_id.get_c_str(), "label", (label.empty() ? 0 : label.c_str()), "tooltip", (tooltip.empty() ? 0 : tooltip.c_str()))
|
|
{}
|
|
|
|
Glib::RefPtr<Action> Action::create(const Glib::ustring& name, const Glib::ustring& label, const Glib::ustring& tooltip)
|
|
{
|
|
return Glib::RefPtr<Action>( new Action(name, Gtk::StockID(), label, tooltip) );
|
|
}
|
|
|
|
Glib::RefPtr<Action> Action::create(const Glib::ustring& name, const Gtk::StockID& stock_id, const Glib::ustring& label, const Glib::ustring& tooltip)
|
|
{
|
|
return Glib::RefPtr<Action>( new Action(name, stock_id, label, tooltip) );
|
|
}
|
|
|
|
|
|
void Action::set_tooltip(const Glib::ustring& tooltip)
|
|
{
|
|
#ifdef GLIBMM_PROPERTIES_ENABLED
|
|
property_tooltip() = tooltip;
|
|
#else
|
|
set_property("tooltip", tooltip);
|
|
#endif
|
|
}
|
|
|
|
|
|
} // namespace Gtk
|
|
|