color-picker.h revision cb9f00490c21d085087d6db4fe89294e3890ed2d
/** @file
* @brief Color picker button and window.
*/
/* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* Ralf Stephan <ralf@ark.in-berlin.de>
*
* Copyright (C) Authors 2000-2005
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifndef __COLOR_PICKER_H__
#define __COLOR_PICKER_H__
#include <sigc++/sigc++.h>
#include <gtkmm/button.h>
#include <gtkmm/dialog.h>
#include <gtkmm/tooltips.h>
#include "widgets/sp-color-selector.h"
#include "ui/widget/color-preview.h"
//#include "ui/dialog/dialog.h"
namespace Inkscape
{
namespace UI
{
namespace Widget
{
class ColorPicker : public Gtk::Button {
public:
ColorPicker (const Glib::ustring& title,
const Glib::ustring& tip,
const guint32 rgba,
bool undo);
virtual ~ColorPicker();
void setRgba32 (guint32 rgba);
void closeWindow();
sigc::connection connectChanged (const sigc::slot<void,guint>& slot)
{ return _changed_signal.connect (slot); }
protected:
friend void sp_color_picker_color_mod(SPColorSelector *csel, GObject *cp);
virtual void on_clicked();
virtual void on_changed (guint32);
ColorPreview _preview;
Gtk::Tooltips _tt;
/*const*/ Glib::ustring _title;
sigc::signal<void,guint32> _changed_signal;
guint32 _rgba;
bool _undo;
//Dialog
void setupDialog(const Glib::ustring &title);
//Inkscape::UI::Dialog::Dialog _colorSelectorDialog;
Gtk::Dialog _colorSelectorDialog;
SPColorSelector *_colorSelector;
};
}//namespace Widget
}//namespace UI
}//namespace Inkscape
#endif /* !__COLOR_PICKER_H__ */
/*
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 :