selected-style.h revision b4254bd3f3769c8ab8f2f195e278d0a65709571e
/**
* \brief Selected style indicator (fill, stroke, opacity)
*
* Authors:
* buliabyak@gmail.com
* scislac@users.sf.net
*
* Copyright (C) 2005 authors
*
* Released under GNU GPL. Read the file 'COPYING' for more information.
*/
#ifndef INKSCAPE_UI_CURRENT_STYLE_H
#define INKSCAPE_UI_CURRENT_STYLE_H
#include <gtkmm/eventbox.h>
#include <gtkmm/menuitem.h>
#include <gtkmm/adjustment.h>
#include <gtkmm/spinbutton.h>
#include <desktop.h>
#include "button.h"
enum {
};
enum {
};
{
SelectedStyle(bool layout = true);
~SelectedStyle();
void update();
bool _opacity_blocked;
void on_opacity_changed();
void opacity_0();
void opacity_025();
void opacity_05();
void opacity_075();
void opacity_1();
void on_fill_remove();
void on_stroke_remove();
void on_fill_lastused();
void on_stroke_lastused();
void on_fill_lastselected();
void on_stroke_lastselected();
void on_fill_unset();
void on_stroke_unset();
void on_fill_edit();
void on_stroke_edit();
void on_fillstroke_swap();
void on_fill_invert();
void on_stroke_invert();
void on_fill_white();
void on_stroke_white();
void on_fill_black();
void on_stroke_black();
void on_fill_copy();
void on_stroke_copy();
void on_fill_paste();
void on_stroke_paste();
void on_fill_opaque();
void on_stroke_opaque();
void on_popup_px();
void on_popup_pt();
void on_popup_mm();
void on_popup_preset(int i);
void *_drop[2];
bool _dropEnabled[2];
};
} // namespace Widget
} // namespace UI
} // namespace Inkscape
#endif // INKSCAPE_UI_WIDGET_BUTTON_H
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=c++:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :