color-picker.cpp revision 8c8a67f1ad68d22e774e4afddf1f4d491bf94b7d
#define __COLOR_PICKER_C__
/** \file
* \brief Color picker button & window
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* bulia byak <buliabyak@users.sf.net>
* Ralf Stephan <ralf@ark.in-berlin.de>
*
* Copyright (C) Authors 2000-2005
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "inkscape.h"
#include "desktop-handles.h"
#include "document.h"
#include "widgets/sp-color-notebook.h"
#include "color-picker.h"
static bool _in_use = false;
namespace Inkscape {
namespace UI {
namespace Widget {
_colorSelectorDialog("dialogs.colorpickerwindow")
{
}
{
closeWindow();
}
void
{
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);
}
void
{
if (_in_use) return;
if (_colorSelector)
{
}
}
void
{
}
void
{
if (_colorSelector)
{
}
}
void
{
}
void
{
if (_in_use) return;
else _in_use = true;
float alpha;
_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:encoding=utf-8:textwidth=99 :