lazarus/examples/imgviewer
ondrej 74fb203f39 LCL: Screen.BeginTempCursor & EndTempCursor
git-svn-id: trunk@62664 -
2020-02-23 06:04:38 +00:00
..
file.bmp
file.xpm
frmmain.lfm
frmmain.pas LCL: Screen.BeginTempCursor & EndTempCursor 2020-02-23 06:04:38 +00:00
images.bmp
imgview.dpr
imgview.lpi Examples: Remove PathDelim and LaunchingApplication settings from the projects. 2017-05-11 09:04:51 +00:00
imgview.lpr
imgview.res lcl: added protected TCustomTreeView.CreateNodes, issue #31111 2016-12-12 21:10:54 +00:00
readme.txt

Image viewer
============

This example application shows how to load and show image/graphical files.

It also demonstrates
- scaling images
- using the Lazarus functions FindFirstUTF8 and FindNextUTF8 to recursively seek files and directories
- dealing with key presses using the KeyDown event
- using BeginUpdate and EndUpdate to improve processing speed of certain controls (a ListBox in this case)
- setting the cursor to hourglass and reset it to indicate a long-running operation is going on (e.g. when recursively loading directories with a large amount of images)

Possible improvements:
- add support for other file formats
- add a setting that allows automatic scaling down if a picture is larger than the control
- use a cache in a different thread to preload images the user is likely to look at next