Difference between revisions of "User Interface Modules"

From Inkscape Wiki
Jump to navigation Jump to search
Line 64: Line 64:
Dialogs that have not yet been rewritted can be found in [http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/files/head%3A/src/dialogs src/dialogs].
Dialogs that have not yet been rewritted can be found in [http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/files/head%3A/src/dialogs src/dialogs].


=== src/ui/widgets ===
=== Widgets ===
 
Widgets are implemented in [http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/files/head%3A/src/ui/widget src/ui/widget].
 
* [[Class Inkscape::UI::Widget::ColorPreview]]: A simple color preview widget, mainly used within a picker button
* [[Class Inkscape::UI::Widget::ProgressPannel]]
* [[Class Inkscape::UI::Widget::ProgressPannel]]
* [[Class Inkscape::UI::Widget::SpinButton]]: Widget that allows entry of simple math expressions (also units, when linked with UnitMenu), and allows entry of both '.' and ',' for the decimal, even when in numeric mode
* [[Class Inkscape::UI::Widget::SpinSlider]]: Groups an Gtk::HScale and a Inkscape::UI::Widget::SpinButton together using the same Adjustment
* ...
* ...



Revision as of 23:16, 16 December 2011

User Interface Modules

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.

Widgets

Widgets are implemented in src/ui/widget.

src/ui/tools

  • ...

Toolbars

Toolbars are defined in src/widgets/toolbox.cpp: