Difference between revisions of "User Interface Modules"

From Inkscape Wiki
Jump to navigation Jump to search
(→‎Toolbars: spliting toolbar section in a dedicated page)
(Adding menu section)
Line 1: Line 1:
== User Interface Modules ==
Discussion and documentation about specific Inkscape dialogs, widgets, tools and more inside the [http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/files/head%3A/src/ui/ src/ui] directory.
Discussion and documentation about specific Inkscape dialogs, widgets, tools and more inside the [http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/files/head%3A/src/ui/ src/ui] directory.


=== Dialogs ===
== 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...
By extension, a '''dialog''' in Inkscape vocabulary is any type of window, i.e. a set of widgets with an OS decoration, a title...
Line 64: Line 62:
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].


=== Widgets ===
== Widgets ==


Widgets are implemented in [http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/files/head%3A/src/ui/widget src/ui/widget].
Widgets are implemented in [http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/files/head%3A/src/ui/widget src/ui/widget].
Line 74: Line 72:
* ...
* ...


=== src/ui/tools ===
== src/ui/tools ==
* ...
* ...


=== Toolbars ===
== Toolbars ==


A '''toolbar''' is a set of graphical widgets put around the canvas to provide actions on objects, canvas or documents.
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.
See [[Toolbar]] page for more informations.
== Menu ==
See [[Menu]].


[[Category:Developer Documentation]]
[[Category:Developer Documentation]]

Revision as of 21:26, 26 March 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.

Widgets

Widgets are implemented in src/ui/widget.

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.