Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "PDE/Incubator/Picasso"

< PDE‎ | Incubator
(Replaced content with "= This page is out-of-data, Picasso has been migrated to PDE = See https://bugs.eclipse.org/bugs/show_bug.cgi?id=513366")
 
(15 intermediate revisions by the same user not shown)
Line 1: Line 1:
=== Work Area ===
+
= This page is out-of-data, Picasso has been migrated to PDE =
  
The goal of Picasso is to provide a utility to help UI debugging. Picasso does this by painting the workbench in a way to aid debugging.
+
See https://bugs.eclipse.org/bugs/show_bug.cgi?id=513366
 
+
=== Developers ===
+
* Chris Aniszczyk
+
* Simon Archer
+
 
+
=== Plug-ins ===
+
* [http://dev.eclipse.org/viewcvs/index.cgi/pde-incubator/picasso/plugins/org.eclipse.pde.picasso/ org.eclipse.pde.picasso]
+
 
+
=== Painting with Picasso ===
+
 
+
To use Picasso, simply check it out of CVS and then launch with the tracing options enabled:
+
 
+
[[Image:Picasso.png]]
+
 
+
=== Tips ===
+
 
+
By painting the workbench with Picasso you can easily spot layout issues such as:
+
 
+
* Unnecessary margin padding on <code>Composite</code> widgets.  This is typically caused by using <code>GridLayout</code> and not setting the <code>marginWidth</code> and <code>marginHeight</code> fields to <code>0</code>.
+
* Radio buttons and checkboxes that stretch to consume all avaiable horzontal whitespace. This results in the whitespace to the right of the label being clickable. Doing this can result in the user accidentally selecting a radio button or toggling a checkbox by simply giving focus to the UI.  As with push buttons, radio buttons and checkboxes (they're buttons too) should generally not stretch.
+
* Inappropriate stretching and whitespace consumption.
+

Latest revision as of 13:49, 1 December 2017

This page is out-of-data, Picasso has been migrated to PDE

See https://bugs.eclipse.org/bugs/show_bug.cgi?id=513366

Back to the top