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
Events/EventSource.h@1:48796b602c86, 2016-03-25 (annotated)
- Committer:
- duncanFrance
- Date:
- Fri Mar 25 16:47:33 2016 +0000
- Revision:
- 1:48796b602c86
- Parent:
- 0:0a590815d51c
- Child:
- 12:63db16fea709
Implement default isEventTarget on Widget
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
duncanFrance | 0:0a590815d51c | 1 | #ifndef SIMPLEGUI_EVENT_SOURCE_H |
duncanFrance | 0:0a590815d51c | 2 | #define SIMPLEGUI_EVENT_SOURCE_H |
duncanFrance | 0:0a590815d51c | 3 | |
duncanFrance | 0:0a590815d51c | 4 | #include "EventDispatcher.h" |
duncanFrance | 0:0a590815d51c | 5 | |
duncanFrance | 0:0a590815d51c | 6 | /** |
duncanFrance | 0:0a590815d51c | 7 | * Interface defining a class which sources events |
duncanFrance | 0:0a590815d51c | 8 | **/ |
duncanFrance | 0:0a590815d51c | 9 | class EventSource { |
duncanFrance | 0:0a590815d51c | 10 | |
duncanFrance | 0:0a590815d51c | 11 | public: |
duncanFrance | 0:0a590815d51c | 12 | |
duncanFrance | 1:48796b602c86 | 13 | EventSource(EventDispatcher* dispatcher) : _dispatcher(dispatcher) {} |
duncanFrance | 1:48796b602c86 | 14 | |
duncanFrance | 1:48796b602c86 | 15 | protected: |
duncanFrance | 0:0a590815d51c | 16 | |
duncanFrance | 1:48796b602c86 | 17 | EventDispatcher* _dispatcher; |
duncanFrance | 0:0a590815d51c | 18 | }; |
duncanFrance | 0:0a590815d51c | 19 | |
duncanFrance | 0:0a590815d51c | 20 | |
duncanFrance | 0:0a590815d51c | 21 | #endif |