Screenshots / examples

From Lazarus wiki
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Look and Feel

This paragraph show several examples of look and feel concepts for Lazarus. On the right side is the current layout shown. Please comment...

General features are;

  • each dialog has a help button (currently disabled) that will show a help page (hint: the Lazarus help system is format independent, so normally it is sufficient to add a unique help path, like 'IDE/CodeExplorer/RefreshButton').
  • all modal forms are bsSizeToolWin; non-modal forms are bsSizable.
  • to make Lazarus easier for non-English speakers I recommend you use button glyphs where you have a good icon.
  • all main controls are accessible with accelerator keys e. g. "&Cancel".

TODO: What about translations? The accelerator keys have to be written intelligently for each supported language. There may be some languages in which avoiding accelerator key clashes is almost impossible, even with very creative naming.


Todo.png Todo old.png

The todo form shows a typical form with buttons. Instead of stretching the buttons across the entire clientwidth (code explorer, project inpector, etc.) a toolbar on top is shown with labeled buttons.


UnitInformation.png UnitInfo.png

This form shows a typical information dialog. Notice the notebook that splits the information, so that there is not too much information at the same time visible.


FindReplace.png FindReplace old2.png

This form shows a typical dialog. Captions before controls are right aligned (not well visible in this example though) and the options are grouped under bold labels.

Proposal for preference forms

Here's a proposal for the preference forms used in Lazarus. I would like to focus on the use of treeviews instead of the traditional use of tabs. By using a treeview pages can more easily be divided (less options per page) and on the other hand more options per dialog could be used (perhaps some option dialogs can be merged?). Please add your comments below.

Example optionsdlg.png Env options.png

Comments to: Proposal for preference forms

I like the old Environment options more. The treeview only wastes screen estate, and is IMHO too expensive for the marginal benefit (grouping of tabs) it provides. This benefit is also a bit doubtfull since the number of screens will increase. Also, iconification in area's that aren't used several times a session are useless (and confusing), since nobody will be able to memorize them.

Such dialogs are more tailored to initial computer users (and I still have to see that confirmed), but are absolutely wasteful for intermediate users. And Lazarus being a programming environment, there will be way more usage of this dialog by people that already know it, than initial users