labelled.cpp revision e42e6130e1aca183d24c4e696c9fae555c49beaa
/**
* \brief Labelled Widget - Adds a label with optional icon or suffix to
* another widget.
*
* Authors:
* Carl Hetherington <inkscape@carlh.net>
* Derek P. Moore <derekm@hackunix.org>
*
* Copyright (C) 2004 Carl Hetherington
*
* Released under GNU GPL. Read the file 'COPYING' for more information.
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
/* For getting the Gtkmmified Icon manager */
#include "labelled.h"
namespace Inkscape {
namespace UI {
namespace Widget {
/**
* Construct a Labelled Widget.
*
* \param label Label.
* \param widget Widget to label; should be allocated with new, as it will
* be passed to Gtk::manage().
* \param suffix Suffix, placed after the widget (defaults to "").
* \param icon Icon filename, placed before the label (defaults to "").
* \param mnemonic Mnemonic toggle; if true, an underscore (_) in the text
* indicates the next character should be used for the
* mnemonic accelerator key (defaults to true).
*/
bool mnemonic)
{
if (icon != "") {
}
if (mnemonic) {
}
}
/**
* Allow the setting of the width of the labelled widget
*/
{
if (_widget)
}
{
return _widget;
}
{
return _label;
}
} // namespace Widget
} // namespace UI
} // namespace Inkscape
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :