#include <wxFlickrEvent.h>
Public Types | |
| enum | Type { Unknown, Error, GotFrob, GotToken, GotPhotoList, GotEmptySuccess, GotSomeData } |
| Event type identifiers. More... | |
Public Member Functions | |
| wxFlickrEvent (const wxFlickrEvent &event) | |
| Copy constructor for deep copies. | |
| virtual wxEvent * | Clone () const |
| Provide a deep copy of this object (needed for the wxWidgets event system). | |
| void | SetData (wxFlickrData *pData) |
| Set the data associated with this event. | |
| wxFlickrData * | GetData () |
| Get the data associated with this event. | |
| void | SetType (Type iType) |
| Set the type of this event. | |
| Type | GetType () |
| Get the type of this event. | |
Protected Attributes | |
| wxFlickrData * | m_pData |
| wxFlickrEvent::Type | m_iType |
Make sure to catch these events with a function that, for instance, can be defined in using the EVT_FLICKR macro in your event table declaration. It should look like this: void OnFlickrEvent(wxFlickrEvent& event);
|
|
Event type identifiers.
|
|
|
Get the data associated with this event. The type of data varies with the wxFlickrEvent.Type.
|
|
|
Get the type of this event.
|
|
|
Set the data associated with this event. The type of data varies with the wxFlickrEvent.Type. Make sure to set a correct pointer here.
|
|
|
Set the type of this event.
|
1.4.6-NO