Difference between revisions of "MSEide+MSEgui"

From Free Pascal wiki
Jump to navigationJump to search
(Fixed heading levels; added See also for orphaned tutorial pages)
(179 intermediate revisions by 14 users not shown)
Line 1: Line 1:
=Introduction=
+
{{MSEide+MSEgui(pg)}}
The MSE IDE is a Cross Platform GUI Development System completely written in Pascal for Pascal programmers. Despite being a single person (Martin Schreiber) effort for the moment, the IDE has already an amazing feature list. More info and downloads are available on the home page 
 
[http://mypage.bluewin.ch/a-z/msegui/ MSEide+MSEgui]
 
  
== But what about Lazarus ? ==
+
'''WARNING''': MSE project is part now of '''mse-org''': https://github.com/mse-org
[http://www.lazarus.freepascal.org Lazarus] is an IDE that aims to provide a high degree of compatibility with VCL code while providing a native look on many platforms. The native look is very important for many developers, but combined with the VCL compatibility necessitates many comlex interfaces to the different native widget sets (Gtk,Win32,Carbon,Qt). The continuous evolution of these native widget sets (gtk1->gtk2, win32->?, qt) provokes endless catching up. The MSE GUI does not feature (or does not suffer :-) VCL compatibility. The graphics library provides an interface to win32 and X11. The advantage of the X11 layer is the immediate availability of a large and stable (in time) target platform. The different goals of both projects make that both projects fulfill different needs.
 
  
== Why this wiki ==
+
MSEide & MSEgui sources are here:
The design of the MSE GUI is a fresh approach to GUI design patterns. It features many innovative solutions for typical GUI tasks. Being innovative, the MSE GUI library differs substantially from VCL/LCL/CLX. Switching from VCL to MSE may be more challenging than switching from [[lazarus:Code Conversion Guide|VCL to LCL]]. These wiki pages aim to ease the first steps with this promising IDE and GUI library.
+
https://github.com/mse-org/mseide-msegui
  
= Installation =
+
Biography of Martin:
See home page.
+
https://sites.google.com/view/martin-schreiber-biography/
  
= Quick start =
+
== Introduction ==
== Open Project ==
+
 
Launch the IDE and use Project->Open to open the provide demo msegui/apps/demo/demo.prj. The title of the IDE reflects the opened project. Hit F9 and (if you followed the installation instructions :-), be amazed by the speed of FPC+MSE.
+
The MSEide is a Cross Platform GUI Development System for Pascal programmers, completely written in Pascal. The MSEgui does not feature VCL compatibility. The graphics library provides an interface to win32 and X11. Despite being a single person (Martin Schreiber) effort for the moment, the IDE and GUI has already an amazing feature list:
 +
 
 +
* Internal character encoding is UCS2.
 +
* Internationalization tool included.
 +
* Docking forms.
 +
* Embedded forms (similar to TFrame).
 +
* Visual form inheritance.
 +
* Links to xlib and gdi32, no external widget library needed.
 +
* Database access components and data edit widgets.
 +
* Integrated debugging.
 +
* Integrated report designer.
 +
* Flexible and handy build system with switchable macros.
 +
* and more...
 +
 
 +
=== But what about Lazarus? ===
 +
 
 +
[http://www.lazarus.freepascal.org Lazarus] is an IDE that aims to provide a high degree of compatibility with VCL code, while providing a native look on many platforms. The native look is very important for many developers, but combined with the VCL compatibility necessitates many complex interfaces to the different native widget sets (Gtk,Win32,Carbon,Qt). The continuous evolution of these native widget sets (gtk1->gtk2, win32->?, qt) provokes endless catching up.
 +
 
 +
[http://sourceforge.net/projects/mseide-msegui/ MSEide+MSEgui] neither features (or suffers :-) VCL compatibility, nor provides a real native look on target platforms. The graphics library provides an interface to win32 and X11. The advantage of the X11 layer is the immediate availability of a large and stable (in time) target platform.
 +
 
 +
These different goals of both projects make them both fulfill different needs.
 +
 
 +
=== Why this wiki ===
 +
 
 +
The design of the MSE GUI is a fresh approach to GUI design patterns. It features many innovative solutions for typical GUI tasks. Being innovative, the MSE GUI library differs substantially from VCL/LCL/CLX. Switching from VCL to MSE may be more challenging than switching [[Code Conversion Guide|from VCL to LCL]]. These wiki pages aim to ease the first steps with this promising alternative IDE and GUI library.
 +
 
 +
== Installation ==
 +
 
 +
* Current version: 5.0 (2020-04-02)
 +
* Authoritative reference: [http://mseide-msegui.sourceforge.net/ MSEide+MSEgui homepage] with installation instructions
 +
* Cooperative homepage: [http://www.msegui.com/MSEide+MSEgui]
 +
* Download: [https://github.com/mse-org/mseide-msegui/releases/]
 +
* Work in progress: [https://github.com/mse-org/mseide-msegui]
 +
 
 +
== Quick start ==
 +
 
 +
=== Open Project ===
 +
 
 +
Launch the IDE and use Project->Open to open the provided demo msegui/apps/demo/demo.prj. The title of the IDE reflects the opened project. Hit F9 and (if you followed the installation instructions :-), be amazed by the speed of FPC+MSE.
 +
 
 +
=== First RAD steps ===
  
== First RAD steps ==
 
 
Close the running project. Use Project->Source to open the project source demo.pas. Ctrl-click on the parameter mainfo in the line  
 
Close the running project. Use Project->Source to open the project source demo.pas. Ctrl-click on the parameter mainfo in the line  
 
  application.createform(tmainfo,mainfo);
 
  application.createform(tmainfo,mainfo);
to navigate to main.pas. Click on F12 to toggle between unit and form. Not everything will feel that familiar, because of that, these pages are written. Click on the button, this will auto raise the property editor (unusual but usefull). Let us add another button. Make the component palette visible if necessary (View->Toolbar->Component Palette). Select the tbutton on the widget page. Click on the form to create the button. Give it a caption in the usual way. Creating an event handler does not work with the usual double clicking on the onexecute property. Instead, you must select the onexecute property in the property editor, type the name of an event handler and press enter. The MSE RAD will create the handler and position the pointer on the definition. Use ctrl-shift-down arrow (or up) to navigate between implementation and definition. Just add some code like writeln('Hello world'); Hit F9. The writeln will end up in the target console window of MSE (not the console in which you started MSE).
+
to navigate to main.pas. Click on F12 to toggle between unit and form. Not everything will feel that familiar, because of that, these pages are written. Click on the button, this will auto raise the property editor (unusual but useful). Let us add another button. Make the component palette visible if necessary (View->Toolbar->Component Palette). Select the tbutton on the widget page. Click on the form to create the button. Give it a caption in the usual way. Creating an event handler does not work with the usual double clicking on the onexecute property. Instead, you must select the onexecute property in the property editor, type the name of an event handler and press enter. The MSE RAD will create the handler and position the pointer on the definition. Use ctrl-shift-down arrow (or up) to navigate between implementation and definition. Just add some code like writeln('Hello world'); Hit F9. The writeln will end up in the target console window of MSE (not the console in which you started MSE).
 +
 
 +
=== Adding a Main Menu ===
 +
 
 +
==== Add Main Menu ====
 +
 
 +
Add a tmainmenu component from the Gui component tab to your main form. Click on your mainform (mainfo), so that Object Inspector shows the properties of the mainform. Use the arrow next to the mainmenu property of the mainform, to select tmainmenu1 as the mainmenu of mainfo.
 +
 
 +
==== Add Menu Items ====
 +
 
 +
In the Object Inspector, expand the mainmenu branch. In this branch, open the menu property of mainmenu. Change the submenu.count of menu to 1 (or higher). Now expand the submenu.count property, which will show "Item 0". Expand "Item 0" and set the caption, for instance to "&File". Now you can repeat the same procedure one level deeper... Change the submenu.count property of "Item 0" to 1. Expand this last submenu.count property and set the caption of the new "Item 0", for instance to "E&xit". Hit F9 and your program should have a menu ''F''ile with the entry E''x''it in it.
 +
 
 +
Alternatively, in Object Inspector you may right click a submenu.count property, or an "Item n" property, which will reveal a context sensitive pop up menu. Use this pop up menu to insert, append or delete menu items.
 +
 
 +
Once you have more than one submenu, you can use drag and drop to move the menu items ("Item n"). Start the drag mouse move on the "Item n" line.
 +
 
 +
=== Create New Project ===
 +
 
 +
In order to create a new project based on a template, use Project->New->From Template.
 +
For a GUI project select "default.prj", for a console project select "console.prj"
 +
 
 +
== The concept ==
 +
 
 +
MSEgui is a Pascal program library, which provides the building blocks for developing programs with graphical user interface.<sup>1</sup>
 +
 
 +
MSEide is the corresponding integrated development environment for effective software production with Free Pascal and MSEgui. MSEide is also suitable for the development of gcc and microcontroller applications.
 +
 
 +
Currently MSEide+MSEgui run under i386-linux, x86-64-linux, arm-linux, x86-64-freebsd, i386-win32 and x86-64-win64 while supported microprocessors are CPU32, ARM and AVR32. MSEgui is predominantly platform independent. Additional platforms may be added by implementing the system-dependent software elements. The system-dependent MSEgui modules are located in subdirectories of lib/common/kernel.
 +
 
 +
=== Main development goals ===
 +
 
 +
* Relevant increase in productivity, compared with other development systems.
 +
* Identical appearance and functionality on all platforms, without additional measures in the user code.
 +
* Dependence on additional libraries kept as little as possible.
 +
* Orthogonality - there should be as little as possible interference between different program elements and as few as possible exceptions and special cases.
 +
* Highly parametrised GUI elements.
 +
* Working with MSEide+MSEgui should be fun.
 +
 
 +
=== Architecture overview ===
 +
 
 +
MSEgui requires <u>no external component libraries</u> - it communicates directly with the graphical interface of the operating system, X11 via Xlib on Linux and gdi32 under Windows.
 +
 
 +
For the individual GUI elements <u>no operating system resources</u> are required - only the main windows are known to the operating system. The entire processing of external events (keyboard, mouse, focus control ...) happens within MSEgui on a Pascal level.
 +
 
 +
The base class for GUI elements is a <u><code>twidget</code></u>. There is no distinction between simple graphic elements and elements which can receive input focus, as is the case in Delphi. All MSEgui widgets have the full functionality of a <code>twidget</code> at their disposal.
 +
 
 +
Important features of <code>twidget</code> are <code>twidget.frame</code> and <code>twidget.face</code>. When frame or face are not used, they are represented by NIL pointer, in this way using almost no resources.
 +
 
 +
<u><code>twidget.frame</code></u> is responsible for the frame around the working area of the element. The appearance of the frame is higly adjustable - it can be a simple and quickly drawable 3D frame, as well as a complex and slower composite construct, based on images. There are also other frame elements, that can build scroll bars, buttons and labels.
 +
 
 +
<u><code>twidget.face</code></u> draws the background of the working area of a desktop GUI element - color gradients and images in various forms can be shown, while partial transparency is also possible.
 +
 
 +
Setting the properties of frame and face can be centralised by using <u><code>tframecomp</code></u> and <u><code>tfacecomp</code></u>, which can be selected into <code>tframe</code> and <code>tface</code> as templates.
 +
 
 +
The next level of centralization is <u><code>tskincontroller</code></u>, through which program-wide settings can be made. In order to achieve that, <code>tskinkontroller</code> assigns to the GUI elements the appropriate <code>tframcomp</code> and <code>tfacecomp</code> templates.
 +
 
 +
<u>The control of the widget functions</u> (focusin, focusout, ...) is done by virtual procedures and functions and not through messages. The MSEgui message function has other tasks. Also a Corba-style interface is used - for the safe connection between the various components and the automatic disconnection through destroy, a <code>tobjectlinker</code> is used.
 +
 
 +
The type <u><code>msestring</code></u> is used in MSEgui for storing text. At the moment, msestring equals WideString. However, the reference counted FPC WideString (UnicodeString) is planned to be used under Windows, as soon as it becomes available in one of the future FPC releases.
 +
 
 +
In text files the utf-8, ASCII or the local encoding is used - MSEide+MSEgui does not use utf-16 files.
 +
 
 +
The <u>MSEgui database components</u> provide the conversion from the local encoding or the utf-8 (adjustable) to WideString for the data buffering. For file operations, a set of MSEgui's own functions with WideString interface exists. An MSEgui application can therefore work consistently with WideStrings, which is a significant relief for some tasks.
 +
 
 +
<u>Specialized data edit widgets</u> for the basic data types (integer, real, tdatetime, ...) are available in MSEgui (<code>tintegeredit</code>, <code>trealedit</code>, <code>tdatetimeedit</code>, ...). The main event property of these widgets is <code>onsetvalue</code>, which can be used for reacting upon user input.
  
== Adding a Main Menu ==
+
The <code>t*edit</code> widgets can be inserted into a <code>twidgetgrid</code> and in that way form a column of the appropriate data format.  
=== Add Main Menu ===
 
Add a tmainmenu component from the Widget Component tab to your main form. Click on your mainform (mainfo) so that the Object Inspector show the properties of the mainform. Use the arrow next to the mainmenu property of the mainform, to select tmainmenu1 as the mainmenu of mainfo.
 
=== Add Menu Items ===
 
In the object inspector click on the cross to open the mainmenu treeview branch. Open the menu property of mainmenu. Change the submenu.count of menu to 1 (or higher). Now open the submenu.count property, it will show "Item 0". Open "Item 0" and set the caption to "File". Change the submenu.count property of "Item 0" to 1. Open this last submenu.count property and set the caption of the new "Item 0" to Quit. Hit F9 and your program should have a menu File with the entry Quit in it.
 
  
Once there is one submenu, you can add more by right clicking on a "Item X". This will reveal a context sensitive menu with "Insert, Append, Delete".  
+
For <u>viewing and editing of data fields</u> a <code>tdbwidgetgrid</code> togeather with a set of <code>tdb*editwidget</code>s can be used. Worth mentioning are also different lookup components and a <code>tlookupbuffer</code>, a fast associative data memory.
  
Once you have more than one submenu, you can use drag and drop to move the "Item X"s. Start the drag mouse move on the "Item X" line.
+
The basic component of the MSEgui's <u>database environment</u> is <code>tmsebufdataset</code>, from which <code>tmsesqlquery</code> is derived. MSEgui DB is a fork of the FPC SQLDB system, where TBufDataset and large parts of TSQLQuery and the connection components have been completely rewritten.  
  
= Tips =
+
<code>tmsebufdataset</code> offers local indices, calculated and internalcalc-fields, a mode with an interrupted database connection, an in-memory mode where no database connectivity is necessary and can keep a local journal, in order to later reconect a previously disconnected database connection. <code>tmsebufdataset</code> stores texts as WideStrings of variable length.
 +
 
 +
Further, there are <u>SQL script components</u> and <code>tsqlresult</code> for quick queries without the TDataset overhead. Persistent TField instances are either kept within <code>tmsesqlquery</code>, where they can be edited in the object inspector via <code>tmsesqlquery.controller.fields</code>, or they can be inserted into forms or modules as as individual components from the 'DBf' component palette.
 +
 
 +
MSEide supports <u>'visual form inheritance'</u>, Submodule (Delphi TFrame equivalent) and allows the assignment of components of other forms or modules to component properties at design time.
 +
 
 +
<u>Internationalization</u> is done via resource modules that are loadable at runtime. The MSEi18n, a tool that supports the import and export of texts in spreadsheet programs is available for editing - therefore facilitating a translation by nonprogrammers.
 +
 
 +
<sup>1</sup>) This chapter is based on a translation of a German text provided by Martin Schreiber.
 +
 
 +
== Tips: MSEide ==
  
== MSEide ==
 
 
=== Larger fonts ===
 
=== Larger fonts ===
Some may find the standard menu font a bit small. The standard font for the main menu of an msegui application is the font defined by the stf_menu stock font. You can change a stock font value with a startup parameter.
+
 
 +
Some may find the standard menu font a bit small. The standard font for the main menu of an MSEgui application is the font defined by the stf_menu stock font. You can change a stock font value with a startup parameter, <fontheight> is given in pixels.
 
  --FONTALIAS=<alias>,<fontname>[,<fontheight>[,<fontwidth>[,<options>]]]
 
  --FONTALIAS=<alias>,<fontname>[,<fontheight>[,<fontwidth>[,<options>]]]
So if you start the mseide like this, you can get a larger font:
+
So if you start the mseide like this, you can get a larger menu font:
 
   mseide --FONTALIAS=stf_menu,sans,16
 
   mseide --FONTALIAS=stf_menu,sans,16
 +
In order to increase the base font size for all stock fonts use
 +
  mseide --FONTALIAS=stf_default,,16
 +
 +
=== Shortcuts ===
 +
 +
Common
 +
* '''Ctrl+F4''' - Close
 +
* '''Ctrl+S''' - Save
 +
* '''Ctrl+E''' - Select page
 +
* '''F11''' - Toggle Form/Inspector
 +
* '''F12''' - Toggle Form/Unit
 +
* '''Shift+Ctrl+[0..9]''' - Bookmark 0..9
 +
* '''Ctrl+[0..9]''' - Go to bookmark 0..9
 +
* '''Ctrl+LeftClick''' - Go to var(class, method, unit) declaration
 +
* '''Shift+Ctrl+Up''' - Go to method declaration
 +
* '''Shift+Ctrl+Down''' - Go to method implementation
 +
* '''Shift+Ctrl+Space''' - Show procedure header
 +
Debug
 +
* '''F7''' - Step
 +
* '''F8''' - Next
 +
* '''F9''' - Continue
 +
* '''Shift+F7''' - Finish
 +
* '''Shift+Ctrl+F8''' - Next instruction
 +
* '''Shift+Ctrl+F7''' - Step instruction
 +
* '''F5''' - Toggle breakpoint
 +
* '''Shift+F5''' - Toggle breakpoint enabled/disabled
 +
* '''Ctrl+B''' - Breakpoints on/off
 +
* '''Ctrl+W''' - Watches on/off
 +
Editor
 +
* '''Ctrl+Z''' - Undo
 +
* '''Ctrl+X''' - Cut
 +
* '''Ctrl+C''' - Copy
 +
* '''Ctrl+V''' - Paste
 +
* '''Ctrl+F''' - Find
 +
* '''F3''' - Search again
 +
* '''Ctrl+L''' - Go to line.
 +
* '''Ctrl+I''' - Indent block
 +
* '''Ctrl+U''' - Unindent
 +
 
=== Print from IDE ===
 
=== Print from IDE ===
 +
 
You need the [http://ghostscript.com/awki ghostscript]
 
You need the [http://ghostscript.com/awki ghostscript]
 +
 +
=== Recent opened files or projects ===
 +
 +
The last opened projects are in the dropdown list of 'Project'-'Open'-'Name'.
 +
The last opened files are in the dropdown list of 'File'-'Open'-'Name'.
  
 
=== Menu Editing ===
 
=== Menu Editing ===
* Use submenu.count to add the first submenu entry.
+
 
* Right click on a menu item "Item X" to display a context-sensitive menu that allows to insert,append or delete a submenu entry
+
* Use submenu.count to set the wanted menu items count.
* Use drag and drop on a submenu entry to move the different submenu entries.
+
* Right click on submenu.count or on a menu item "Item X" to display a context-sensitive menu that allows to insert,append or delete a submenu entry
 +
* Use drag and drop on a submenu entry to move the the item in the array.
 +
 
 +
=== New Panels in the IDE ===
 +
 
 +
Example, you want to have the watch, stack and cpu window in a window:
 +
* select the menu item '''View'''-'''Panels'''-'''New Panel'''.
 +
* select the menu item '''View'''-'''Watches'''.
 +
* drag the Watches window by the grip (not the window title!) in the new panel.
 +
* same with Stack and CPU window.
 +
* to split horizontal drag one of the grip of the inserted widgets to the left border of the panel.
 +
* to split vertical drag one of the grip of the inserted widgets to the bottom border of the panel.
 +
* to use tabs drag one of the grip of the inserted widgets to the centre of the panel.
  
 
=== Design Tab-Order ===
 
=== Design Tab-Order ===
 +
 
Main way in '''MSEide''' is set the tab order after all widgets are placed in the form with the popup menu function "Set Tab Order".
 
Main way in '''MSEide''' is set the tab order after all widgets are placed in the form with the popup menu function "Set Tab Order".
 
Select a widget in the container where you wish to set the tab oder, click right, click "Set Tab Order", click row 0, click "Start", click the widget in the container which should get tab order 0, click the widget which should get tab order 1..
 
Select a widget in the container where you wish to set the tab oder, click right, click "Set Tab Order", click row 0, click "Start", click the widget in the container which should get tab order 0, click the widget which should get tab order 1..
  
== MSEgui ==
+
An alternative is to drag and drop the rows to the desired position. The first row corresponds to the tab order 0 the second to the 1 and so on.
 +
 
 +
==== Creating a new event handler ====
 +
 
 +
Select the event you want in the '''Object Inspector''', then type name of the new event handler. IDE create a new procedure(declaration and implementation) in the source code.
 +
If you double-click the name of the event handler in the '''Object Inspector''', source editor opens with the cursor at begin of your handler implementation.
 +
 
 +
 
 +
== Tips: MSEgui ==
  
 
=== Tabbed control ===
 
=== Tabbed control ===
 +
 
* Put '''ttabwidget''' control on the form. Now you have container (''ttabwidget1'') for pages.
 
* Put '''ttabwidget''' control on the form. Now you have container (''ttabwidget1'') for pages.
 
* Put as many '''ttabpage''' controls on the ''ttabwidget1'' as tabs you want.
 
* Put as many '''ttabpage''' controls on the ''ttabwidget1'' as tabs you want.
  
 
=== Splitter ===
 
=== Splitter ===
 +
 
We have two widgets (widgetLeft, widgetRight) and we need horizontal splitter between them.
 
We have two widgets (widgetLeft, widgetRight) and we need horizontal splitter between them.
 
* Add TSplitter to form and resize it as you want.
 
* Add TSplitter to form and resize it as you want.
Line 66: Line 240:
  
 
=== Switch-off auto-scrolling of the form(widget) ===
 
=== Switch-off auto-scrolling of the form(widget) ===
 +
 
Change the '''container - frame - sbhorz - options - sbo_showauto''' property of the form to '''False'''.
 
Change the '''container - frame - sbhorz - options - sbo_showauto''' property of the form to '''False'''.
  
 
=== Read/write data in the twidgetgrid ===
 
=== Read/write data in the twidgetgrid ===
Inserted editwidget.value -> value of the actual row,
 
editwidget[rowindex] or editwidget.gridvalue[rowindex]-> value of the
 
addressed row, editwidget.gridvalues the whole column as a dynamic array.
 
  
= Tutorial =
+
* '''editwidget.value''' -> value of the actual row
 +
* '''editwidget[rowindex]''' or '''editwidget.gridvalue[rowindex]''' -> value of the addressed row
 +
* '''editwidget.gridvalues''' the whole column as a dynamic array.
 +
 
 +
=== First events ===
 +
 
 +
'''OnCreate''' is called before loaded procedures of the components of the form
 +
are called, '''OnLoaded''' is called after loaded procedures of the components of
 +
the form are called. Many components do initializations in loaded
 +
procedures, event properties are inactive before procedure loaded of the
 +
component is called.
 +
 
 +
=== MDI ===
 +
 
 +
MDI - application can be created using TDockFormWidget or TDockPanel (as MDI-area) and TDockForm (as ancestor for you MDI-child window).
 +
There are examples:
 +
* How to use TDockForm with custom MDI-buttons http://brefi.narod.ru/mdi_example2.tar.gz or in ''$MSESOURCES/contributed/ivankob/examples''
 +
* Simple MDI-controller (create, switch, ... the child windows) http://mihafpc.narod.ru/MDISample.tar.gz or in ''$MSESOURCES/contributed/miha''
 +
 
 +
=== Drawing ===
 +
 
 +
==== Redraw form the additional thread ====
 +
 
 +
Use a '''tthreadcomp''' (tab '''Gui''') to do the long time procedure. If you need to
 +
access widgets and other gui variables from the additional thread, call
 +
'''application.lock''' before and '''aplication.unlock''' after accessing the main
 +
event thread elements.
 +
 
 +
==== Force repaint ====
 +
 
 +
* '''twidget.invalidate''' to invalidate an individual widget
 +
* '''twidget.rootwidget.invalidate''' to invalidate the window
 +
* '''application.invalidate''' to invalidate all windows (=forms) in the application
 +
 
 +
==== Draw text ====
 +
 
 +
There are two methods to draw texts in MSEgui:
 +
* Simple text positioning by baseline position of start of the first character with '''tcanvas.drawstring'''.
 +
* With the drawtext procedures of '''msedrawstring.pas'''.
 +
 
 +
==== Widgets canvas ====
 +
 
 +
No twidget has a canvas. The canvas used for painting is normally one of the
 +
canvas of twindow, it can also be an canvas of a tbitmap or a tprinter
 +
or...
 +
MSEgui uses one canvas to paint a whole window with all widgets.
 +
''tcanvas.font'' is initialized by '''twidget.getfont''', ''canvas.color'' by
 +
'''twidget.actualcolor''' before calling '''twidget.dopaint''', see '''twidget.paint''' procedure in msegui.pas.
 +
 
 +
==== Theming (Frames & Faces) ====
 +
 
 +
Every twidget has a property '''frame''' and '''face'''. If they are deactivated
 +
(<disabled> in object inspector) they are only an nil pointer and need no
 +
more resources. Activate them by clicking on the ellipse button in the right
 +
object inspector column in the row face respective frame.
 +
 
 +
The '''face''' property defines the background of the client area of the widget.
 +
 
 +
It is a combination of a fade and a bitmap. Both of them can be
 +
semitransparent. The bitmap can be stretched and/or tiled.
 +
Example: you want to create a button with a fade as face.
 +
* place a ''tbutton'' on the form.
 +
* in object inspector activate property face.
 +
* set ''face.fade.color.count'' to 2.
 +
* click on the '''+''' at ''color.count''.
 +
* in item 0 select cl_gray.
 +
* in item 1 select cl_ltgray, now you have a left to write fade from gray to light gray.
 +
* change ''face.fade.direction'' to ''gd_up'' or ''gd_down'', you get a convex resp. concave fade.
 +
 
 +
If you want, you can blend an additional structure over the fade:
 +
* select the wanted pattern image in ''face.image''.
 +
* activate ''face.image.alignment'' al_tiled.
 +
* adjust ''face.image.transparency'' to your needs, $000000 = opaque, $ffffff = fully transparent. The number defines the transparency of the three color channels ($RRGGBB).
 +
 
 +
To centralise the face look use an '''tfacecomp''' (tab ''Gui'') and select the
 +
facecomp in ''template'' of the ''face'' properties.
 +
 
 +
The '''frame''' property defines the look of an additional frame around the
 +
component and shows a possible caption at the widget.
 +
Example: you want an lowered frame around and a caption right of the button.
 +
* activate property ''frame''.
 +
* set ''frame.levelo'' to -1.
 +
* set ''frame.leveli'' to 1.
 +
* enter the caption text in ''frame.caption''.
 +
* set ''frame.captionpos'' to cp_right.
 +
 
 +
To centralise the frame look use an '''tframecomp''' (tab ''Gui'') and select the
 +
framecomp in ''template'' of the ''frame'' properties.
 +
 
 +
==== Desktop colors in the MSE application ====
 +
 
 +
Default values of the mapped colors stored in the array '''msegraphics.defaultmapped'''.
 +
For change it's values you can use function '''msegraphics.setcolormapvalue'''
 +
[http://www.freepascal.org/wiki/index.php/User:Miha Win32 and KDE example] (''$MSESOURCES/contributed/miha/GuiStyle.pas'')
 +
 
 +
 
 +
== Application examples and screenshots ==
 +
 
 +
=== A Firebird application ===
 +
 
 +
The following screen shots are taken from an MSEgui Firebird database application.
 +
The programmer writes he has customized the look and feel of his application in about 30 minutes with a tfacecomp and two tframecomp. He states that the look and feel is identical on Linux and Windows.
 +
 
 +
[[Image:mse_dbwidgetgrid1.jpg]]
 +
 
 +
[[Image:mse_dbwidgetgrid2.jpg]]
 +
 
 +
Linux version:
 +
[[Image:mse_form1.jpg]]
 +
 
 +
Windows version:
 +
[[Image:mse_form1w.jpg]]
 +
 
 +
Linux version:
 +
[[Image:mse_button1.jpg]]
 +
 
 +
Windows version:
 +
[[Image:mse_button1w.jpg]]
 +
 
 +
The report is designed and rendered with the built-in MSEide+MSEgui report designer and report generator.
 +
 
 +
[[Image:mse_report1.jpg]]
 +
 
 +
Two MDI forms with fade and flat frame.
 +
 
 +
[[Image:mse_gripfade1.png]]
 +
 
 +
=== An embedded system ===
 +
 
 +
An embedded system for medical applications, in this case steam sterilizers,
 +
was realized with MSE-IDE & MSE-GUI for the control unit, nowadays also
 +
commonly called the "human machine interface", HMI.
 +
 
 +
[[Image:MainScreen.png|Main Screen]]
 +
 
 +
The control unit uses a touch panel a its display, therefore all active controls
 +
have to be made rather large to enable the personnel to handle them easily.
 +
The main screen consists of a few informational display fields and allows to
 +
select the implemented sterilizing processes by means of a menu consisting of several
 +
button components showing the process names along with a short description in a
 +
separate panel. The visibility of the buttons and their captions are defined during
 +
program loading by means of a configuration file.
 +
The informational fields display the devices' operating values in real time using a
 +
MSE system timer to collect the information from the PLC.
 +
 
 +
 
 +
[[Image:ProcessDisplay.png|Process Display]]
 +
 
 +
 
 +
After processing has been started, the display is switched to a different format
 +
showing the operating values in large digits on some numeric display field components
 +
on the left and a graphical representation of the process history on the right, again
 +
both as real time "live displays". If the diagram curves would reach the right panel
 +
border, the diagram would change to a scrolling mode, always showing the current state
 +
at the extreme right.
 +
 
 +
 
 +
[[Image:StateDisplay.png|State Display]]
 +
 
 +
 
 +
For diagnostic purposes, also a schematic state display is available. This shows a
 +
simplified schematic of the apparatus, along with real time animated symbols of the
 +
control elements, as there are valves and pumps, each displayed in a derived version
 +
of a timage component, created and placed dynamically on program load. Also shown are
 +
the most important process values as numerical displays, also dynamically placed.
 +
The schematic field really is the output of a separate program, running in parallel
 +
to the process display which provides the upper and lower parts of the screen display.
 +
 
 +
 
 +
[[Image:ControlScreen.png|Control Screen]]
 +
 
 +
 
 +
There is also a mode for setting several control and function parameters and to
 +
recall previous operational and diagnostic data. It is organised as a tabbed screen
 +
containing several run time parametrized menu pages and a couple of display field pages.
 +
Some of the pages allow access only after entering a pass code to prevent missuse of
 +
critical functions.
 +
 
 +
 
 +
[[Image:ProtocolReview.png|Protocol Review]]
 +
 
 +
 
 +
This is a screen displaying a graphical protocol of a previous process. The protocol
 +
is usually printed out immediately after termination, as required by the regulations.
 +
The printer output is generated as a postscript file, processed by ghostscript both for
 +
print out and for the on screen display shown, which uses the png format for loading
 +
into the display field.
 +
 
 +
 
 +
[[Image:Attribution.png|Attribution]]
 +
 
 +
 
 +
Of course, there is also an attribution display, showing program version, creator information
 +
and the tools used for the creation of the system, Free Pascal and MSE-IDE & MSE-GUI.
 +
As background, it uses a photography of one such apparatus as it is used in clinics
 +
displayed in an image component carrying several label fields used for the text.
 +
Above all of that sits a transparent button to close the picture.
 +
 
 +
== Reference: MSEide ==
 +
 
 +
*To move and resize components without gridsnap use shift+cursorkeys and ctrl+cursorkeys.
 +
*There are many possibilities with properties twidget.frame and twidget.face, for instance tiled semitransparent bitmaps and color fades (all twidget descendants have these properties!).
 +
 
 +
For client area of forms use tmseform.container.frame and tmseform.container.face, tmseform has additionally onpaint to do custom drawing.
 +
 
 +
You can write your own widgets and override procedure dopaint or use teventwidget with onpaint,onresize,onmouseevent,onkeydown,onkeyup...
 +
 
 +
How to convert filenames to windows format?
 +
Unit msefileutils:
 +
function tosysfilepath(const path: filenamety): filenamety;
 +
procedure tosysfilepath1(var path: filenamety);
 +
Converts to filename format of actual OS.
 +
function tomsefilepath(const path: filenamety): filenamety;
 +
procedure tomsefilepath1(var path: filenamety);
 +
Converts from filename format of actual OS.
 +
 
 +
Where is the MDI ??? 
 +
In MSEgui we have tdockform and tdockpanel for that purpose.
 +
Have a look at property dragdock.
 +
 
 +
=== MSEi18n ===
 +
 
 +
== [[Reference: MSEgui]] ==
 +
[[Reference: MSEgui|On this page you can find a working in progress for documenting MSEGUI.]]
 +
 
 +
 
 +
== See also ==
 +
 
 +
* [[MSEide MSEgui first step]] Tutorial for beginners showing to create first program.
 +
* [[MSEide MSEgui Howto]] Windows example.
 +
 
 +
== External links ==
 +
 
 +
WARNING: MSE project is part now of mse-org: https://github.com/mse-org
 +
 
 +
MSEide & MSEgui sources are here:
 +
https://github.com/mse-org/mseide-msegui
 +
 
 +
 
 +
Website:
 +
http://mseide-msegui.sourceforge.net/
 +
 
 +
Community website:
 +
http://www.msegui.com
 +
 
 +
Unofficial incomplete help pages started from Z505
 +
at: http://z505.com/cgi-bin/mse/idx.cgi?file=generalindex
 +
 
 
Read the beginner's tutorial (in Russian)
 
Read the beginner's tutorial (in Russian)
at: http://freepascal.ru/article//mse/20060108181639/
+
at: http://freepascal.ru/article/mse/20060108181639/
  
Also: "MSEide+MSEgui. Draw lesson." (in Russian) http://freepascal.ru/article//mse/20060205191314/
+
Also: "MSEide+MSEgui. Draw lesson." (in Russian) http://freepascal.ru/article/mse/20060205191314/
  
 
You can also find an English translation here:
 
You can also find an English translation here:
Line 84: Line 503:
 
This page in Russian:
 
This page in Russian:
 
http://freepascal.ru/wiki/index.php/MSEide%26MSEgui
 
http://freepascal.ru/wiki/index.php/MSEide%26MSEgui
 +
 +
MSElang, the future compiler for the MSEide+MSEgui project
 +
https://gitlab.com/mseide-msegui/mselang/wikis/home
 +
----
 +
 +
[[Category:MSEide+MSEgui]]

Revision as of 07:01, 1 September 2020

English (en) español (es) français (fr)

WARNING: MSE project is part now of mse-org: https://github.com/mse-org

MSEide & MSEgui sources are here: https://github.com/mse-org/mseide-msegui

Biography of Martin: https://sites.google.com/view/martin-schreiber-biography/

Introduction

The MSEide is a Cross Platform GUI Development System for Pascal programmers, completely written in Pascal. The MSEgui does not feature VCL compatibility. The graphics library provides an interface to win32 and X11. Despite being a single person (Martin Schreiber) effort for the moment, the IDE and GUI has already an amazing feature list:

  • Internal character encoding is UCS2.
  • Internationalization tool included.
  • Docking forms.
  • Embedded forms (similar to TFrame).
  • Visual form inheritance.
  • Links to xlib and gdi32, no external widget library needed.
  • Database access components and data edit widgets.
  • Integrated debugging.
  • Integrated report designer.
  • Flexible and handy build system with switchable macros.
  • and more...

But what about Lazarus?

Lazarus is an IDE that aims to provide a high degree of compatibility with VCL code, while providing a native look on many platforms. The native look is very important for many developers, but combined with the VCL compatibility necessitates many complex interfaces to the different native widget sets (Gtk,Win32,Carbon,Qt). The continuous evolution of these native widget sets (gtk1->gtk2, win32->?, qt) provokes endless catching up.

MSEide+MSEgui neither features (or suffers :-) VCL compatibility, nor provides a real native look on target platforms. The graphics library provides an interface to win32 and X11. The advantage of the X11 layer is the immediate availability of a large and stable (in time) target platform.

These different goals of both projects make them both fulfill different needs.

Why this wiki

The design of the MSE GUI is a fresh approach to GUI design patterns. It features many innovative solutions for typical GUI tasks. Being innovative, the MSE GUI library differs substantially from VCL/LCL/CLX. Switching from VCL to MSE may be more challenging than switching from VCL to LCL. These wiki pages aim to ease the first steps with this promising alternative IDE and GUI library.

Installation

  • Current version: 5.0 (2020-04-02)
  • Authoritative reference: MSEide+MSEgui homepage with installation instructions
  • Cooperative homepage: [1]
  • Download: [2]
  • Work in progress: [3]

Quick start

Open Project

Launch the IDE and use Project->Open to open the provided demo msegui/apps/demo/demo.prj. The title of the IDE reflects the opened project. Hit F9 and (if you followed the installation instructions :-), be amazed by the speed of FPC+MSE.

First RAD steps

Close the running project. Use Project->Source to open the project source demo.pas. Ctrl-click on the parameter mainfo in the line

application.createform(tmainfo,mainfo);

to navigate to main.pas. Click on F12 to toggle between unit and form. Not everything will feel that familiar, because of that, these pages are written. Click on the button, this will auto raise the property editor (unusual but useful). Let us add another button. Make the component palette visible if necessary (View->Toolbar->Component Palette). Select the tbutton on the widget page. Click on the form to create the button. Give it a caption in the usual way. Creating an event handler does not work with the usual double clicking on the onexecute property. Instead, you must select the onexecute property in the property editor, type the name of an event handler and press enter. The MSE RAD will create the handler and position the pointer on the definition. Use ctrl-shift-down arrow (or up) to navigate between implementation and definition. Just add some code like writeln('Hello world'); Hit F9. The writeln will end up in the target console window of MSE (not the console in which you started MSE).

Adding a Main Menu

Add Main Menu

Add a tmainmenu component from the Gui component tab to your main form. Click on your mainform (mainfo), so that Object Inspector shows the properties of the mainform. Use the arrow next to the mainmenu property of the mainform, to select tmainmenu1 as the mainmenu of mainfo.

Add Menu Items

In the Object Inspector, expand the mainmenu branch. In this branch, open the menu property of mainmenu. Change the submenu.count of menu to 1 (or higher). Now expand the submenu.count property, which will show "Item 0". Expand "Item 0" and set the caption, for instance to "&File". Now you can repeat the same procedure one level deeper... Change the submenu.count property of "Item 0" to 1. Expand this last submenu.count property and set the caption of the new "Item 0", for instance to "E&xit". Hit F9 and your program should have a menu File with the entry Exit in it.

Alternatively, in Object Inspector you may right click a submenu.count property, or an "Item n" property, which will reveal a context sensitive pop up menu. Use this pop up menu to insert, append or delete menu items.

Once you have more than one submenu, you can use drag and drop to move the menu items ("Item n"). Start the drag mouse move on the "Item n" line.

Create New Project

In order to create a new project based on a template, use Project->New->From Template. For a GUI project select "default.prj", for a console project select "console.prj"

The concept

MSEgui is a Pascal program library, which provides the building blocks for developing programs with graphical user interface.1

MSEide is the corresponding integrated development environment for effective software production with Free Pascal and MSEgui. MSEide is also suitable for the development of gcc and microcontroller applications.

Currently MSEide+MSEgui run under i386-linux, x86-64-linux, arm-linux, x86-64-freebsd, i386-win32 and x86-64-win64 while supported microprocessors are CPU32, ARM and AVR32. MSEgui is predominantly platform independent. Additional platforms may be added by implementing the system-dependent software elements. The system-dependent MSEgui modules are located in subdirectories of lib/common/kernel.

Main development goals

  • Relevant increase in productivity, compared with other development systems.
  • Identical appearance and functionality on all platforms, without additional measures in the user code.
  • Dependence on additional libraries kept as little as possible.
  • Orthogonality - there should be as little as possible interference between different program elements and as few as possible exceptions and special cases.
  • Highly parametrised GUI elements.
  • Working with MSEide+MSEgui should be fun.

Architecture overview

MSEgui requires no external component libraries - it communicates directly with the graphical interface of the operating system, X11 via Xlib on Linux and gdi32 under Windows.

For the individual GUI elements no operating system resources are required - only the main windows are known to the operating system. The entire processing of external events (keyboard, mouse, focus control ...) happens within MSEgui on a Pascal level.

The base class for GUI elements is a twidget. There is no distinction between simple graphic elements and elements which can receive input focus, as is the case in Delphi. All MSEgui widgets have the full functionality of a twidget at their disposal.

Important features of twidget are twidget.frame and twidget.face. When frame or face are not used, they are represented by NIL pointer, in this way using almost no resources.

twidget.frame is responsible for the frame around the working area of the element. The appearance of the frame is higly adjustable - it can be a simple and quickly drawable 3D frame, as well as a complex and slower composite construct, based on images. There are also other frame elements, that can build scroll bars, buttons and labels.

twidget.face draws the background of the working area of a desktop GUI element - color gradients and images in various forms can be shown, while partial transparency is also possible.

Setting the properties of frame and face can be centralised by using tframecomp and tfacecomp, which can be selected into tframe and tface as templates.

The next level of centralization is tskincontroller, through which program-wide settings can be made. In order to achieve that, tskinkontroller assigns to the GUI elements the appropriate tframcomp and tfacecomp templates.

The control of the widget functions (focusin, focusout, ...) is done by virtual procedures and functions and not through messages. The MSEgui message function has other tasks. Also a Corba-style interface is used - for the safe connection between the various components and the automatic disconnection through destroy, a tobjectlinker is used.

The type msestring is used in MSEgui for storing text. At the moment, msestring equals WideString. However, the reference counted FPC WideString (UnicodeString) is planned to be used under Windows, as soon as it becomes available in one of the future FPC releases.

In text files the utf-8, ASCII or the local encoding is used - MSEide+MSEgui does not use utf-16 files.

The MSEgui database components provide the conversion from the local encoding or the utf-8 (adjustable) to WideString for the data buffering. For file operations, a set of MSEgui's own functions with WideString interface exists. An MSEgui application can therefore work consistently with WideStrings, which is a significant relief for some tasks.

Specialized data edit widgets for the basic data types (integer, real, tdatetime, ...) are available in MSEgui (tintegeredit, trealedit, tdatetimeedit, ...). The main event property of these widgets is onsetvalue, which can be used for reacting upon user input.

The t*edit widgets can be inserted into a twidgetgrid and in that way form a column of the appropriate data format.

For viewing and editing of data fields a tdbwidgetgrid togeather with a set of tdb*editwidgets can be used. Worth mentioning are also different lookup components and a tlookupbuffer, a fast associative data memory.

The basic component of the MSEgui's database environment is tmsebufdataset, from which tmsesqlquery is derived. MSEgui DB is a fork of the FPC SQLDB system, where TBufDataset and large parts of TSQLQuery and the connection components have been completely rewritten.

tmsebufdataset offers local indices, calculated and internalcalc-fields, a mode with an interrupted database connection, an in-memory mode where no database connectivity is necessary and can keep a local journal, in order to later reconect a previously disconnected database connection. tmsebufdataset stores texts as WideStrings of variable length.

Further, there are SQL script components and tsqlresult for quick queries without the TDataset overhead. Persistent TField instances are either kept within tmsesqlquery, where they can be edited in the object inspector via tmsesqlquery.controller.fields, or they can be inserted into forms or modules as as individual components from the 'DBf' component palette.

MSEide supports 'visual form inheritance', Submodule (Delphi TFrame equivalent) and allows the assignment of components of other forms or modules to component properties at design time.

Internationalization is done via resource modules that are loadable at runtime. The MSEi18n, a tool that supports the import and export of texts in spreadsheet programs is available for editing - therefore facilitating a translation by nonprogrammers.

1) This chapter is based on a translation of a German text provided by Martin Schreiber.

Tips: MSEide

Larger fonts

Some may find the standard menu font a bit small. The standard font for the main menu of an MSEgui application is the font defined by the stf_menu stock font. You can change a stock font value with a startup parameter, <fontheight> is given in pixels.

--FONTALIAS=<alias>,<fontname>[,<fontheight>[,<fontwidth>[,<options>]]]

So if you start the mseide like this, you can get a larger menu font:

 mseide --FONTALIAS=stf_menu,sans,16

In order to increase the base font size for all stock fonts use

 mseide --FONTALIAS=stf_default,,16

Shortcuts

Common

  • Ctrl+F4 - Close
  • Ctrl+S - Save
  • Ctrl+E - Select page
  • F11 - Toggle Form/Inspector
  • F12 - Toggle Form/Unit
  • Shift+Ctrl+[0..9] - Bookmark 0..9
  • Ctrl+[0..9] - Go to bookmark 0..9
  • Ctrl+LeftClick - Go to var(class, method, unit) declaration
  • Shift+Ctrl+Up - Go to method declaration
  • Shift+Ctrl+Down - Go to method implementation
  • Shift+Ctrl+Space - Show procedure header

Debug

  • F7 - Step
  • F8 - Next
  • F9 - Continue
  • Shift+F7 - Finish
  • Shift+Ctrl+F8 - Next instruction
  • Shift+Ctrl+F7 - Step instruction
  • F5 - Toggle breakpoint
  • Shift+F5 - Toggle breakpoint enabled/disabled
  • Ctrl+B - Breakpoints on/off
  • Ctrl+W - Watches on/off

Editor

  • Ctrl+Z - Undo
  • Ctrl+X - Cut
  • Ctrl+C - Copy
  • Ctrl+V - Paste
  • Ctrl+F - Find
  • F3 - Search again
  • Ctrl+L - Go to line.
  • Ctrl+I - Indent block
  • Ctrl+U - Unindent

Print from IDE

You need the ghostscript

Recent opened files or projects

The last opened projects are in the dropdown list of 'Project'-'Open'-'Name'. The last opened files are in the dropdown list of 'File'-'Open'-'Name'.

Menu Editing

  • Use submenu.count to set the wanted menu items count.
  • Right click on submenu.count or on a menu item "Item X" to display a context-sensitive menu that allows to insert,append or delete a submenu entry
  • Use drag and drop on a submenu entry to move the the item in the array.

New Panels in the IDE

Example, you want to have the watch, stack and cpu window in a window:

  • select the menu item View-Panels-New Panel.
  • select the menu item View-Watches.
  • drag the Watches window by the grip (not the window title!) in the new panel.
  • same with Stack and CPU window.
  • to split horizontal drag one of the grip of the inserted widgets to the left border of the panel.
  • to split vertical drag one of the grip of the inserted widgets to the bottom border of the panel.
  • to use tabs drag one of the grip of the inserted widgets to the centre of the panel.

Design Tab-Order

Main way in MSEide is set the tab order after all widgets are placed in the form with the popup menu function "Set Tab Order". Select a widget in the container where you wish to set the tab oder, click right, click "Set Tab Order", click row 0, click "Start", click the widget in the container which should get tab order 0, click the widget which should get tab order 1..

An alternative is to drag and drop the rows to the desired position. The first row corresponds to the tab order 0 the second to the 1 and so on.

Creating a new event handler

Select the event you want in the Object Inspector, then type name of the new event handler. IDE create a new procedure(declaration and implementation) in the source code. If you double-click the name of the event handler in the Object Inspector, source editor opens with the cursor at begin of your handler implementation.


Tips: MSEgui

Tabbed control

  • Put ttabwidget control on the form. Now you have container (ttabwidget1) for pages.
  • Put as many ttabpage controls on the ttabwidget1 as tabs you want.

Splitter

We have two widgets (widgetLeft, widgetRight) and we need horizontal splitter between them.

  • Add TSplitter to form and resize it as you want.
  • Change the linkleft of tsplitter1 to widgetLeft and linkright to widgetRight. At this step our widgets stick to splitter.
  • Change the spo_hmove to True. That's all.
  • If you want to save a proportion between width of widgetLeft and width of widgetRight when the main form is resized then change the so_hprop to True.
  • If you need the vertical splitter then use other properties linktop, linkbottom, spo_vmove, spo_vprop.

Switch-off auto-scrolling of the form(widget)

Change the container - frame - sbhorz - options - sbo_showauto property of the form to False.

Read/write data in the twidgetgrid

  • editwidget.value -> value of the actual row
  • editwidget[rowindex] or editwidget.gridvalue[rowindex] -> value of the addressed row
  • editwidget.gridvalues the whole column as a dynamic array.

First events

OnCreate is called before loaded procedures of the components of the form are called, OnLoaded is called after loaded procedures of the components of the form are called. Many components do initializations in loaded procedures, event properties are inactive before procedure loaded of the component is called.

MDI

MDI - application can be created using TDockFormWidget or TDockPanel (as MDI-area) and TDockForm (as ancestor for you MDI-child window). There are examples:

Drawing

Redraw form the additional thread

Use a tthreadcomp (tab Gui) to do the long time procedure. If you need to access widgets and other gui variables from the additional thread, call application.lock before and aplication.unlock after accessing the main event thread elements.

Force repaint

  • twidget.invalidate to invalidate an individual widget
  • twidget.rootwidget.invalidate to invalidate the window
  • application.invalidate to invalidate all windows (=forms) in the application

Draw text

There are two methods to draw texts in MSEgui:

  • Simple text positioning by baseline position of start of the first character with tcanvas.drawstring.
  • With the drawtext procedures of msedrawstring.pas.

Widgets canvas

No twidget has a canvas. The canvas used for painting is normally one of the canvas of twindow, it can also be an canvas of a tbitmap or a tprinter or... MSEgui uses one canvas to paint a whole window with all widgets. tcanvas.font is initialized by twidget.getfont, canvas.color by twidget.actualcolor before calling twidget.dopaint, see twidget.paint procedure in msegui.pas.

Theming (Frames & Faces)

Every twidget has a property frame and face. If they are deactivated (<disabled> in object inspector) they are only an nil pointer and need no more resources. Activate them by clicking on the ellipse button in the right object inspector column in the row face respective frame.

The face property defines the background of the client area of the widget.

It is a combination of a fade and a bitmap. Both of them can be semitransparent. The bitmap can be stretched and/or tiled. Example: you want to create a button with a fade as face.

  • place a tbutton on the form.
  • in object inspector activate property face.
  • set face.fade.color.count to 2.
  • click on the + at color.count.
  • in item 0 select cl_gray.
  • in item 1 select cl_ltgray, now you have a left to write fade from gray to light gray.
  • change face.fade.direction to gd_up or gd_down, you get a convex resp. concave fade.

If you want, you can blend an additional structure over the fade:

  • select the wanted pattern image in face.image.
  • activate face.image.alignment al_tiled.
  • adjust face.image.transparency to your needs, $000000 = opaque, $ffffff = fully transparent. The number defines the transparency of the three color channels ($RRGGBB).

To centralise the face look use an tfacecomp (tab Gui) and select the facecomp in template of the face properties.

The frame property defines the look of an additional frame around the component and shows a possible caption at the widget. Example: you want an lowered frame around and a caption right of the button.

  • activate property frame.
  • set frame.levelo to -1.
  • set frame.leveli to 1.
  • enter the caption text in frame.caption.
  • set frame.captionpos to cp_right.

To centralise the frame look use an tframecomp (tab Gui) and select the framecomp in template of the frame properties.

Desktop colors in the MSE application

Default values of the mapped colors stored in the array msegraphics.defaultmapped. For change it's values you can use function msegraphics.setcolormapvalue Win32 and KDE example ($MSESOURCES/contributed/miha/GuiStyle.pas)


Application examples and screenshots

A Firebird application

The following screen shots are taken from an MSEgui Firebird database application. The programmer writes he has customized the look and feel of his application in about 30 minutes with a tfacecomp and two tframecomp. He states that the look and feel is identical on Linux and Windows.

mse dbwidgetgrid1.jpg

mse dbwidgetgrid2.jpg

Linux version: mse form1.jpg

Windows version: mse form1w.jpg

Linux version: mse button1.jpg

Windows version: mse button1w.jpg

The report is designed and rendered with the built-in MSEide+MSEgui report designer and report generator.

mse report1.jpg

Two MDI forms with fade and flat frame.

mse gripfade1.png

An embedded system

An embedded system for medical applications, in this case steam sterilizers, was realized with MSE-IDE & MSE-GUI for the control unit, nowadays also commonly called the "human machine interface", HMI.

Main Screen

The control unit uses a touch panel a its display, therefore all active controls have to be made rather large to enable the personnel to handle them easily. The main screen consists of a few informational display fields and allows to select the implemented sterilizing processes by means of a menu consisting of several button components showing the process names along with a short description in a separate panel. The visibility of the buttons and their captions are defined during program loading by means of a configuration file. The informational fields display the devices' operating values in real time using a MSE system timer to collect the information from the PLC.


Process Display


After processing has been started, the display is switched to a different format showing the operating values in large digits on some numeric display field components on the left and a graphical representation of the process history on the right, again both as real time "live displays". If the diagram curves would reach the right panel border, the diagram would change to a scrolling mode, always showing the current state at the extreme right.


State Display


For diagnostic purposes, also a schematic state display is available. This shows a simplified schematic of the apparatus, along with real time animated symbols of the control elements, as there are valves and pumps, each displayed in a derived version of a timage component, created and placed dynamically on program load. Also shown are the most important process values as numerical displays, also dynamically placed. The schematic field really is the output of a separate program, running in parallel to the process display which provides the upper and lower parts of the screen display.


Control Screen


There is also a mode for setting several control and function parameters and to recall previous operational and diagnostic data. It is organised as a tabbed screen containing several run time parametrized menu pages and a couple of display field pages. Some of the pages allow access only after entering a pass code to prevent missuse of critical functions.


Protocol Review


This is a screen displaying a graphical protocol of a previous process. The protocol is usually printed out immediately after termination, as required by the regulations. The printer output is generated as a postscript file, processed by ghostscript both for print out and for the on screen display shown, which uses the png format for loading into the display field.


Attribution


Of course, there is also an attribution display, showing program version, creator information and the tools used for the creation of the system, Free Pascal and MSE-IDE & MSE-GUI. As background, it uses a photography of one such apparatus as it is used in clinics displayed in an image component carrying several label fields used for the text. Above all of that sits a transparent button to close the picture.

Reference: MSEide

  • To move and resize components without gridsnap use shift+cursorkeys and ctrl+cursorkeys.
  • There are many possibilities with properties twidget.frame and twidget.face, for instance tiled semitransparent bitmaps and color fades (all twidget descendants have these properties!).

For client area of forms use tmseform.container.frame and tmseform.container.face, tmseform has additionally onpaint to do custom drawing.

You can write your own widgets and override procedure dopaint or use teventwidget with onpaint,onresize,onmouseevent,onkeydown,onkeyup...

How to convert filenames to windows format? 
Unit msefileutils: 
function tosysfilepath(const path: filenamety): filenamety; 
procedure tosysfilepath1(var path: filenamety); 
Converts to filename format of actual OS. 
function tomsefilepath(const path: filenamety): filenamety; 
procedure tomsefilepath1(var path: filenamety); 
Converts from filename format of actual OS.
Where is the MDI ???   
In MSEgui we have tdockform and tdockpanel for that purpose. 
Have a look at property dragdock.

MSEi18n

Reference: MSEgui

On this page you can find a working in progress for documenting MSEGUI.


See also

External links

WARNING: MSE project is part now of mse-org: https://github.com/mse-org

MSEide & MSEgui sources are here: https://github.com/mse-org/mseide-msegui


Website: http://mseide-msegui.sourceforge.net/

Community website: http://www.msegui.com

Unofficial incomplete help pages started from Z505 at: http://z505.com/cgi-bin/mse/idx.cgi?file=generalindex

Read the beginner's tutorial (in Russian) at: http://freepascal.ru/article/mse/20060108181639/

Also: "MSEide+MSEgui. Draw lesson." (in Russian) http://freepascal.ru/article/mse/20060205191314/

You can also find an English translation here: http://www.geocities.com/yetanothergeek/mseide-tutorial-en/

This page in Russian: http://freepascal.ru/wiki/index.php/MSEide%26MSEgui

MSElang, the future compiler for the MSEide+MSEgui project https://gitlab.com/mseide-msegui/mselang/wikis/home