A basic graphics package for the LPC4088 Display Module.

Dependents:   lpc4088_displaymodule_demo_sphere sampleGUI sampleEmptyGUI lpc4088_displaymodule_fs_aid ... more

Fork of DMBasicGUI by EmbeddedArtists AB

Committer:
embeddedartists
Date:
Tue Feb 17 10:34:13 2015 +0100
Revision:
11:265884fa7fdd
- Replaced wait_ms with Thread::wait in SlideShow
- Fixed fade transition in SlideShow
- Added repeat/end buttons to AppSlideShow
- Added very basic transparent image rendering to SWIM
- Fixed errors in lpc_colors.h
- Added support for button captions to the ImageButton
- Added back buffering to the AppColorPicker
- Added basic_image_data.h/c with the ok/cancel/repeat buttons
- Moved the slideshow parameters to the constructor of AppSlideShow

Who changed what in which revision?

UserRevisionLine numberNew contents of line
embeddedartists 11:265884fa7fdd 1 extern const unsigned char img_ok[];
embeddedartists 11:265884fa7fdd 2 extern const unsigned int img_size_ok;
embeddedartists 11:265884fa7fdd 3
embeddedartists 11:265884fa7fdd 4 extern const unsigned char img_cancel[];
embeddedartists 11:265884fa7fdd 5 extern const unsigned int img_size_cancel;
embeddedartists 11:265884fa7fdd 6
embeddedartists 11:265884fa7fdd 7 extern const unsigned char img_repeat[];
embeddedartists 11:265884fa7fdd 8 extern const unsigned int img_size_repeat;