Difference between revisions of "User Interface Modules"

From Inkscape Wiki
Jump to navigation Jump to search
Line 95: Line 95:
* [[Class Inkscape::UI::Widget::SpinSlider]]: Groups an Gtk::HScale and a Inkscape::UI::Widget::SpinButton together using the same Adjustment
* [[Class Inkscape::UI::Widget::SpinSlider]]: Groups an Gtk::HScale and a Inkscape::UI::Widget::SpinButton together using the same Adjustment
* ...
* ...
Also a proposal for a [[Color Entry Widget|Color Entry]].


== src/ui/tools ==
== src/ui/tools ==

Revision as of 19:30, 11 December 2012

Discussion and documentation about specific Inkscape dialogs, widgets, tools and more inside the src/ui directory.

Dialogs

By extension, a dialog in Inkscape vocabulary is any type of window, i.e. a set of widgets with an OS decoration, a title...

All dialogs are in src/ui/dialog (except for old dialogs).

Dialogs that have not yet been rewritted can be found in src/dialogs.

Others re-designs

Widgets

Widgets are implemented in src/ui/widget.

Also a proposal for a Color Entry.

src/ui/tools

  • ...

Toolbars

A toolbar is a set of graphical widgets put around the canvas to provide actions on objects, canvas or documents.

See Toolbar page for more informations.

Menu

See Menu.