Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of SimpleGUI by
Dialogs/SpinnerDialog.h@15:e69fd74d42e4, 2016-05-21 (annotated)
- Committer:
- duncanFrance
- Date:
- Sat May 21 18:02:20 2016 +0000
- Revision:
- 15:e69fd74d42e4
- Parent:
- 14:e6515b19f5a0
Make attach and detach register/unregister event handlers if needed.; - need to move the event handling into widget so we can attach/detach
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| duncanFrance | 14:e6515b19f5a0 | 1 | #ifndef SIMPLEGUI_SPINNER_DIALOG_H |
| duncanFrance | 14:e6515b19f5a0 | 2 | #define SIMPLEGUI_SPINNER_DIALOG_H |
| duncanFrance | 13:6714534e7974 | 3 | |
| duncanFrance | 14:e6515b19f5a0 | 4 | #include "OKCancelDialog.h" |
| duncanFrance | 13:6714534e7974 | 5 | #include "SpinnerWidget.h" |
| duncanFrance | 13:6714534e7974 | 6 | #include "BitmapWidget.h" |
| duncanFrance | 13:6714534e7974 | 7 | |
| duncanFrance | 14:e6515b19f5a0 | 8 | class SpinnerDialog : public OKCancelDialog |
| duncanFrance | 13:6714534e7974 | 9 | { |
| duncanFrance | 13:6714534e7974 | 10 | public: |
| duncanFrance | 13:6714534e7974 | 11 | |
| duncanFrance | 13:6714534e7974 | 12 | SpinnerDialog(GraphicsContext *context); |
| duncanFrance | 15:e69fd74d42e4 | 13 | SpinnerWidget *getSpinner(); |
| duncanFrance | 13:6714534e7974 | 14 | |
| duncanFrance | 13:6714534e7974 | 15 | private: |
| duncanFrance | 13:6714534e7974 | 16 | |
| duncanFrance | 13:6714534e7974 | 17 | SpinnerWidget *_spinner; |
| duncanFrance | 13:6714534e7974 | 18 | |
| duncanFrance | 13:6714534e7974 | 19 | }; |
| duncanFrance | 13:6714534e7974 | 20 | |
| duncanFrance | 13:6714534e7974 | 21 | #endif |
