GUI development: Difference between revisions

From OpenPetra Wiki
Jump to navigation Jump to search
Line 1: Line 1:
== GUI frameworks ==
== GUI frameworks ==
The default GUI framework used by OpenPetra.org at the moment is Windows Forms (WinForms), .NET's native GUI framework, which means that openPETRA by default runs as a desktop application.
The '''default GUI framework''' used by OpenPetra.org at the moment is '''Windows Forms''' (WinForms), .NET's native GUI framework, which means that '''openPETRA by default runs as a desktop application'''.


OM has decided on using Windows Forms for the Petra product (on which openPETRA is based on) more than three years ago, mostly because that was the only stable Client framework available at that time that worked with well with .NET. At that point in time, and still as of now, OM doesn't have a need for running Petra/openPETRA in a Browser or in a cross-platform scenario, so we don't have a rich web interface for openPETRA ''yet''. That doesn't mean that there couldn't be one - please see the following discussion on that.
OM has decided on using Windows Forms for the Petra product (on which openPETRA is based on) more than three years ago, mostly because that was the only stable Client framework available at that time that worked with well with .NET. At that point in time, and still as of now, OM doesn't have a need for running Petra/openPETRA in a Browser or in a cross-platform scenario, so we don't have a rich web interface for openPETRA ''yet''. '''That doesn't mean that a rich web interface for openPETRA couldn't be done''' - please see the following discussion on our opinion on that, and the [[GUI Frameworks Comparison]] and [[Web GUI Frameworks Comparison]] pages for the research we did on available frameworks.


* For a discussion and comparison of rich desktop application vs. rich web interface, see [[Rich desktop application vs. rich web interface]].
* For a discussion and comparison of rich desktop application vs. rich web interface, see [[Rich desktop application vs. rich web interface]].
* For a discussion and comparison of several GUI frameworks, see [[GUI Frameworks Comparison]].
* For a discussion and comparison of several GUI frameworks, see [[GUI Frameworks Comparison]] and [[Web GUI Frameworks Comparison]].


== GUI internationalisation ==
== GUI internationalisation ==

Revision as of 16:19, 1 July 2010

GUI frameworks

The default GUI framework used by OpenPetra.org at the moment is Windows Forms (WinForms), .NET's native GUI framework, which means that openPETRA by default runs as a desktop application.

OM has decided on using Windows Forms for the Petra product (on which openPETRA is based on) more than three years ago, mostly because that was the only stable Client framework available at that time that worked with well with .NET. At that point in time, and still as of now, OM doesn't have a need for running Petra/openPETRA in a Browser or in a cross-platform scenario, so we don't have a rich web interface for openPETRA yet. That doesn't mean that a rich web interface for openPETRA couldn't be done - please see the following discussion on our opinion on that, and the GUI Frameworks Comparison and Web GUI Frameworks Comparison pages for the research we did on available frameworks.

GUI internationalisation

see Comparison I18N

Customizing OpenPetra

see Customizing OpenPetra

Code Generation

GUI Style and Design

For both the website and the OpenPetra client we need people with an eye for design, colors, etc. Please join us! We desperately need you!

Some links that might be useful:

General screen types and layouts

  • Special screens (unique): Login screen, Intranet Export, etc
  • main screens: provide the menus that the user needs to get to all the appropriate screens
  • CRUD operations for single table (Create, Read, Update, Delete: http://en.wikipedia.org/wiki/Create,_read,_update_and_delete)
  • Find screens
  • Export screens
  • Complex Edit screens, with many tabs etc
  • Assistants: guide the user through complex operations
  • report parameter screens: the user selects the options for a report to run

Controls / Widgets

These controls have been quite useful or will become more important:

  • Edit Field for Partner Key with Search button
  • Toolbar
    • show tooltips for the toolbar buttons
  • Statusbar/Tooltips
    • TODO explanation is taken from the Shared Datastore, the help text from petra.xml
    • Edit fields: if you tab into a field, or click with the mouse into it, the explanation should be displayed in the statusbar
    • Edit fields: if you hover with the mouse over an edit field, the tooltip should display the explanation
    • buttons work the same as the edit fields
    • menu items: no tooltip, no statusbar info
    • toolbar buttons: show tooltips
    • using 3rd party control: EWSoftware.StatusBarText@CodeProject (Problem: CodeProject license not compatible to GPL? Wikipedia CPOL)
  • Groupbox that can be collapsed
    • save space
    • tooltip on the +/-
    • shortcut key to collapse/open
    • yellow background for part of the groupbox text when it is collapsed (subcaption, partner class)
  • Restore the window state and position
  • XP Style Task Panel

Printing & Preview controls

  • there is one screen for the preview of reports
  • we need TPrintPreviewWithToolbar for printing to paper
    • scroll the pages, jump to page; with event that can be caught outside, to select other rows in a grid
  • TPrintPreviewList: a grid and TPrintPreviewWithToolbar and splitter
  • TEmailPreviewWithToolbar: similar to TPrintPreviewWithToolbar, but for sending emails; has send button etc
  • TEmailPreviewList: a grid and TEmailPreviewWithToolbar and splitter

Overview Comboboxes

TCmbAutoPopulated:

  • defined in Ict.Petra.Client.CommonControls
  • derived from System.Windows.Forms.UserControl
  • contains a TCmbLabelled control
  • can load data from the server or cache, using TListTableEnum values;
    • also works with TListTableEnum.UserDefinedList, then you have to set the property Table before you call TCmbAutoPopulated::InitialiseUserControl()

TCmbLabelled:

  • defined in Ict.Common.Controls
  • derived from System.Windows.Forms.UserControl
  • contains a TCmbVersatile and Label control

TCmbVersatile:

  • defined in Ict.Common.Controls
  • derived from TCmbAutoComplete
  • allows to display several columns in the dropdown list

TCmbAutoComplete:

  • defined in Ict.Common.Controls
  • derived from System.Windows.Forms.ComboBox