Public Member Functions | |
| UpdatePreviewEvent (QImage image, QString details) | |
| QImage | getImage () const |
| QString | getDetails () const |
Private Attributes | |
| QImage | image |
| QString | details |
Definition at line 40 of file addPhotosDialog.cpp.
| UpdatePreviewEvent::UpdatePreviewEvent | ( | QImage | image, | |
| QString | details | |||
| ) | [inline] |
Definition at line 43 of file addPhotosDialog.cpp.
00043 : QCustomEvent( UPDATE_PREVIEW_DETAILS ) 00044 { 00045 this->image = image; 00046 this->details = details; 00047 }
| QString UpdatePreviewEvent::getDetails | ( | ) | const [inline] |
Definition at line 53 of file addPhotosDialog.cpp.
References details.
Referenced by FilePreview::customEvent().
00053 { return details; }
| QImage UpdatePreviewEvent::getImage | ( | ) | const [inline] |
Definition at line 50 of file addPhotosDialog.cpp.
References image.
Referenced by FilePreview::customEvent().
00050 { return image; }
QString UpdatePreviewEvent::details [private] |
Definition at line 57 of file addPhotosDialog.cpp.
Referenced by getDetails().
QImage UpdatePreviewEvent::image [private] |
Definition at line 56 of file addPhotosDialog.cpp.
Referenced by getImage().
1.6.2