color-picker.cpp revision 61e1e0d1f2bda342dd26902c54c2184d54cb2079
/*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* bulia byak <buliabyak@users.sf.net>
* Ralf Stephan <ralf@ark.in-berlin.de>
* Abhishek Sharma
*
* Copyright (C) Authors 2000-2005
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "color-picker.h"
#include "inkscape.h"
#include "desktop-handles.h"
#include "document.h"
#include "document-undo.h"
#include "dialogs/dialog-events.h"
#include "widgets/sp-color-notebook.h"
#include "verbs.h"
static bool _in_use = false;
namespace Inkscape {
namespace UI {
namespace Widget {
_colorSelectorDialog("dialogs.colorpickerwindow")
{
}
{
closeWindow();
}
{
G_CALLBACK(sp_color_picker_color_mod), (void *)this);
G_CALLBACK(sp_color_picker_color_mod), (void *)this);
G_CALLBACK(sp_color_picker_color_mod), (void *)this);
}
{
if (_in_use) return;
if (_colorSelector)
{
}
}
void ColorPicker::closeWindow()
{
}
void ColorPicker::on_clicked()
{
if (_colorSelector)
{
}
}
{
}
{
if (_in_use) {
return;
} else {
_in_use = true;
}
float alpha = 0;
/* TODO: annotate */ "color-picker.cpp:130");
_in_use = false;
}
}//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:fileencoding=utf-8:textwidth=99 :