lazarus/examples/imgviewer
2022-05-17 20:50:08 +00:00
..
file.bmp Examplesmv restructure examples dir much like it used to be 2022-05-17 20:50:08 +00:00
file.xpm Examplesmv restructure examples dir much like it used to be 2022-05-17 20:50:08 +00:00
frmmain.lfm Examplesmv restructure examples dir much like it used to be 2022-05-17 20:50:08 +00:00
frmmain.pas Examplesmv restructure examples dir much like it used to be 2022-05-17 20:50:08 +00:00
images.bmp Examplesmv restructure examples dir much like it used to be 2022-05-17 20:50:08 +00:00
imgview.dpr Examplesmv restructure examples dir much like it used to be 2022-05-17 20:50:08 +00:00
imgview.lpi Examplesmv restructure examples dir much like it used to be 2022-05-17 20:50:08 +00:00
imgview.lpr Examplesmv restructure examples dir much like it used to be 2022-05-17 20:50:08 +00:00
imgview.res Examplesmv restructure examples dir much like it used to be 2022-05-17 20:50:08 +00:00
imgviewer.ex-meta Examplesmv restructure examples dir much like it used to be 2022-05-17 20:50:08 +00:00
readme.txt Examplesmv restructure examples dir much like it used to be 2022-05-17 20:50:08 +00:00

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