summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-04-15Changed default X11 Xft font name and size.Graeme Geldenhuys
2007-04-15Fixed the rest of the GUI examples to work since we did a widget class ↵Graeme Geldenhuys
renaming a while back.
2007-04-15Fixed the WidgetDemo example with the new widget class names.Graeme Geldenhuys
2007-04-15Fixed the issue with not Xft font support and the default font could not be ↵Graeme Geldenhuys
created.
2007-04-10* Fixed TFFixedLayout, TFDockedLayout implementationsGraeme Geldenhuys
* Updated the Layout demo and enabled all available layout managers. * Fixed the text clipping issue under Linux now that it uses Xft as default. * Fixed the Text Size issue under Linux now that it uses Xft. It report the wrong text size so the focus rectangle was draw wrong. * Adjust the scrollbar and combobox arrow button size to remove the tiny gap that appear below it.
2007-04-10* Fixed a TStyleAbs method name after the classname changes.Graeme Geldenhuys
* Fixed a minor bug in the CalsSize method of TFixedLayout * Fixed the WidgetTest demo after the gui class names changed.
2007-04-09Removed the inline functions in fpgui.pas which solved the problem with FPC ↵Graeme Geldenhuys
wanting to recomile that unit when not really needed. Most of the times it reported that StyleManager.pas could not be found.
2007-04-09Started appending F to classes on fpgui, to make its namespace more uniqueFelipe Menteiro de Carvalho
2007-04-06Added X11Displayproperty to TX11ApplicationAndrew
2007-04-06removed unused entries in the uses clause.Graeme Geldenhuys
2007-04-06Renamed all the inc files to have the fpgui prefex. This will minimize the ↵Graeme Geldenhuys
namespace conflicts in Lazarus LCL.
2007-04-06Renaming the inc files. This is a test as I could not use svn mv command ↵Graeme Geldenhuys
before on SourceForge
2007-04-05Fixed painting issue of multihandle prototype. The forms paint event painted ↵Graeme Geldenhuys
over all embedded components.
2007-04-05* Fixed bug in gfx_gdi with DoDrawImageRect. Only the first palette color ↵Graeme Geldenhuys
could be set, then an AV occured. * Fixed many include file headers * Reimplemented the images for CheckBox, RadiouButton and button Arrows in the TBasicStyle class. X11 stil has some palette issues, so manual drawing still occurs.
2007-03-18more documentation updates as well as scrip updates to build the documentation.Graeme Geldenhuys
2007-03-18worked on the documentation a bit. Cleaned up some xml files. Created new ↵Graeme Geldenhuys
docs for the newly added files in the last few revisions.
2007-03-10* Implemented the Motif style CheckBox.Graeme Geldenhuys
2007-03-10* Minor change in the menusGraeme Geldenhuys
* Enabled Xft (anti-aliased) font support in fpGFX
2007-03-08* Reset the default style to Windows Style for now.Graeme Geldenhuys
* Fixed the WidgetDemo example to use the new features of the Style Manager.
2007-03-08* Reworked the Style Manager to behave like a factory pattern.Graeme Geldenhuys
* New and custom styles can now register themselves with the gStyleManager * I've split all the concrete styles into seperate units. * I've rename the TStyle to TStyleAbs which more clearly shows what it is. * Renamed TDefaultStyle to TBasicStyle to show that it it implements the basic drawing routines for a style and is recommended for custom styles to descend from.
2007-03-07* Extending the StyleManager to behave like a class factory. All Style ↵Graeme Geldenhuys
classes will register with the factory and the factory will create the styles as needed.
2007-03-07* Added a new unit to manage command line parameters.Graeme Geldenhuys
* TFCustomApplication now checks for parameters before entering the event loop. -? will show the help without running the application. * -display parameter is now supported for X11 systems.
2007-03-07* Popupu menus now close on item selection.Graeme Geldenhuys
2007-03-07* Added more debug events.Graeme Geldenhuys
* Implemented a very basic TPopupMenu * Modified the WidgetTest demo to show the basic popup menu (still needs work).
2007-02-07* Major improvements to Xft (anti-alias) font support under X11. I nowGraeme Geldenhuys
have a new class that seperates the Xlib font and Xft font support, so I don't have to have that many IFDEFs in the code. * Positioning of the Xft fonts now work. Issues with Xft fonts: * Repeated redrawing of text causes strange artifacts. * Application crash when any window is closed. A font freeing issue.
2007-01-23Menu items now indent when the mouse moves over them. The painting still ↵Graeme Geldenhuys
needs to be improved though, but it is a start.
2007-01-23Added some documentation.Graeme Geldenhuys
2007-01-23* MouseLeaveCheck no fires off a MouseEnter and MouseLeave event for widgets. Graeme Geldenhuys
This makes writing other widgets easier. * Fixed the button size of the TComboBox widget. * Fixed the examples/gui/helloworld application. * Added a extras directory where we can store all kinds of stuff. Currently I added a Lazarus code template for creating a new fpGUI application. * Fixed a bug in fpGFX/X11 where the OnEnter event was checked when in actual fact the OnLeave event occured. * Fixed up some code to start Xft support for Linux again. * Internal or composite widgets like the Button in the ComboBox are now named with a hash and then the name.
2007-01-16* Cleaned up the Layout classesGraeme Geldenhuys
* Re-implemented the TMainMenu and TMenuitem classes. We now have working MainMenu though still limited. * Fixed up the WidgetTest demo to show the workings of the menu classes.
2007-01-09Implemented support for Windows CE on fpgfxFelipe Menteiro de Carvalho
2007-01-08Fixed the GUI WidgetDemo example as well.Graeme Geldenhuys
2007-01-07Added more doc scripts and amended existing ones.Graeme Geldenhuys
Added GFX code to the docs as well.
2007-01-07more docs changesGraeme Geldenhuys
2007-01-07* Update the fpdoc scripts.Graeme Geldenhuys
* Reorganized the docs directory to match the source directories.
2007-01-07Created a new window option woModal which will be used for Modal Forms.Graeme Geldenhuys
2006-12-27* Introduced the Color property to TWidget. Not all widgets take this propertyGraeme Geldenhuys
into account yet, but will soon. * Fixed bug where if you call TForm.Show multiple times, it keeps adding the internal Wnd pointer to the GFApplications.Forms list and later causes a AV. * Fixed bug where TCustomForm didn't have the WindowOption woWindow set so TCustomForm decendants never got displayed under Windows. * Amended the TCustomForm, TCustomPanel, TCustomMenu and TCustomLabel to handle the TWidget.Color property correctly. * TComboBox now draws the dropdown window correctly. Scrolling the list of items using the horizontal scrollbar caused strange artifacts to appear. * Horizontal scrolling is now also supported in the TComboBox dropdown window for lengthy items. * Implemented a very basic TRadioButton glyph for now. It looks damn ugly, but it works. Will improve the glyph shortly. * TCustomForm now passes the correct WindowOptions to the TFWindow.Create constructor. * For now I duplicate some functions from the types.pp FPC unit into fpgui.pas
2006-12-12* Removed all internal images from the DefaultStyle.Graeme Geldenhuys
* Replaced the CheckBox image by actually drawing the cross ourselves. * RadioButton still hasn't been drawn yet. Will be done soon. * Fixed the setting of colors for the scrollbar buttons. * fpGUI now works under Windows as well, though the arrows in ScrollBar still isn't painting 100% correct.
2006-12-12* Replaced the Direction parameter in DrawDirectionArrow function with aGraeme Geldenhuys
enumerated type. * Arrows now indent with the button when pressed. * Replaced the ComboBox image arrow with the DrawDirectionArrow function.
2006-12-07* Replaced the triangle on the scrollbars from a internal image to doing the ↵Graeme Geldenhuys
actual drawing. Also fixed the co-ordinates used for the triangle points - I forgot to transform them.
2006-12-07* Implement a FillTriangle method for TFCustomCanvas.Graeme Geldenhuys
* Implement a DrawArrowDirection function for TDefaultStyle
2006-12-07Removed some compiler warnings and deleted the old gui/applications.inc unit.Graeme Geldenhuys
2006-12-07* Created a LoadForm function in fpgui unit. This is just a stop-gap to getGraeme Geldenhuys
the demos working easier. LoadForm reads the .frm file to build the Form. * WidgetTest demo works 100 under Linux. The Style images used on components like up/down arrows, radio button circle, etc are still not drawing correctly.
2006-12-07Removed the LCL dependency that somehow crept into the TestLayout demo.Graeme Geldenhuys
2006-12-07* Implemented AddWindow and RemoveWindow in TFCustomApplication.Graeme Geldenhuys
* In TCustomForm the Show and Close adds or removes the internal Wnd to GFApplication, otherwise they don't receive system events. * Started fixing up the Layout Test demo.
2006-12-06* Added CreateBitmapCanvas and CreateMonoBitmapCanvas to TFCustomScreen class.Graeme Geldenhuys
This is required for Styles to work. It could maybe be moved to another class if needed. * Create the missing instances for ImageCanvas, MaskCanvas and Palette in TDefaultStyle. * Removed the ADisplay parameter from the TStyle constructor. * Adapted the UTF Demo to work with the fpGUI changes. Tested under Linux only.
2006-12-06Moved the inherited call in TWidget.ProcessEventGraeme Geldenhuys
2006-12-05One-Handle-Per-WidgetGraeme Geldenhuys
* Implemented the TX11Application Expose event handling * Implemented the TX11Window etPaint message processing * Removed the EvOnPaint event handler and replaced it by overriding ProcessEvent
2006-12-03* Added WidgetState to the TWidget in prototypeGraeme Geldenhuys
* Added WidgetStyle to the TWidget in prototype * Modified TButton in prototype to act like a button when clicked.
2006-11-30TGDIWindow.Show now recursively calls the Show method of all ChildWindows. ↵Graeme Geldenhuys
This is not needed under X11. This fixes the bug in prototype/multihandle in r38.
2006-11-29One-Handle-Per-WidgetGraeme Geldenhuys
* TForm now descends from TWidget. This removed a lot of code * TWidget now sets the Title by default to Classname. Under X11 this is handy when runnning xwininfo, which will now show form structure with classnames for each window. * TWidget now has a default WindowOptions type of woChildWindow * TForm has a default WindowOptions type of woWindow