Difference between revisions of "Lazarus 0.9.26 release notes"

From Free Pascal wiki
Jump to navigationJump to search
Line 9: Line 9:
  
 
= LCL major changes =
 
= LCL major changes =
 +
 +
* Graphics (Marc will write):
 +
  -
 +
  -
 +
  - TIcon now creates HICON handle and thus we can finally use it to set Form.Icon.
 +
  - new TIcnsIcon class allows to read Mac OSX icon resource files (analog of windows .ico files but for OSX)
 +
 +
 +
* Greatly improved Carbon widgetset. IDE is working and you can use the form designer.
 +
* Greatly improved Qt widgetset. IDE is working and you can use the form designer. Though under windows it works a bit unstable.
 +
 +
* TImageList got an ability to draw an image in 5 states: normal, highlighted, shadowed, disabled and black-white (more info here: http://lazarus-dev.blogspot.com/2008/05/new-0926-features-part-2-imagelist.html).
 +
* ButtonGlyphs now use an internal imagelist to store glyphs and to draw them in different states (this is visible with SpeedButton and BitBtn)
 +
* SendMessage and PostMessage were implemented for our main widgetsets only for LM_USER messages (more info here: http://lazarus-dev.blogspot.com/2008/01/new-0926-features-part-1-sendmessage.html)
 +
* Form.Icon and Application.Icon are finally working for most of widgetsets.
  
 
= LCL minor changes =
 
= LCL minor changes =

Revision as of 14:58, 13 July 2008

This page gathers the changes of 0.9.25 for the coming release of 0.9.26.

This page is work in progress. There is no 0.9.26 yet.

LCL Interfaces major changes

win32/win64

  • Lazarus 0.9.24: Encoding used for strings in the LCL is ansi
  • Lazarus 0.9.26: Encoding used for strings in the LCL is UTF8

LCL major changes

  • Graphics (Marc will write):
 - 
 - 
 - TIcon now creates HICON handle and thus we can finally use it to set Form.Icon.
 - new TIcnsIcon class allows to read Mac OSX icon resource files (analog of windows .ico files but for OSX)


  • Greatly improved Carbon widgetset. IDE is working and you can use the form designer.
  • Greatly improved Qt widgetset. IDE is working and you can use the form designer. Though under windows it works a bit unstable.

LCL minor changes

IDE changes

  • TPropertyEditorHook.GetMethodName now returns an ansistring, instead of a shortstring. AddHandlerGetMethods and RemoveHandlerMethodExists now need ansistring instead of shortstring.

Components

Miscellaneous

  • lazbuild: Can now build the IDE with the parameter --build-ide=. You can build the IDE with parameters: ./lazbuild --build-ide=-gh. The installed packages will be rebuilt if needed.