Difference between revisions of "User Interface Modules"

From Inkscape Wiki
Jump to navigation Jump to search
Line 73: Line 73:
=== Toolbars ===
=== Toolbars ===


* [[Gradient Toolbar]] is in [http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/files/head%3A/src/widgets/gradient-toolbar.h src/widgets/gradient-toolbar.h]
Toolbars are defined in [http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/files/head%3A/src/widgets/toolbox.cpp src/widgets/toolbox.cpp]:
* [[Select Toolbar]] is in [http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/files/head%3A/src/widgets/select-toolbar.h src/widgets/select-toolbar.h]
 
Others toolbars are defined in [http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/files/head%3A/src/widgets/toolbox.cpp src/widgets/toolbox.cpp]:


* [[3D Box Toolbox]]: a toolbar to draw or edit a 3D box shape
* [[3D Box Toolbox]]: a toolbar to draw or edit a 3D box shape
Line 96: Line 93:
* [[Tweak Toolbox]]: a toolbar to tweak objects
* [[Tweak Toolbox]]: a toolbar to tweak objects
* [[Zoom Toolbox]]: a toolbar to zoom in, out and fit the viewing area of the workspace
* [[Zoom Toolbox]]: a toolbar to zoom in, out and fit the viewing area of the workspace
Some toolbars have their own implementation files:
* [[Gradient Toolbar]] is in [http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/files/head%3A/src/widgets/gradient-toolbar.h src/widgets/gradient-toolbar.h]
* [[Select Toolbar]] is in [http://bazaar.launchpad.net/~inkscape.dev/inkscape/trunk/files/head%3A/src/widgets/select-toolbar.h src/widgets/select-toolbar.h]

Revision as of 22:05, 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.

src/ui/widgets

src/ui/tools

  • ...

Toolbars

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

Some toolbars have their own implementation files: