Definition at line 40 of file addPhotosDialog.cpp.
Public Member Functions | |
UpdatePreviewEvent (QImage image, QString details) | |
QImage | getImage () const |
QString | getDetails () const |
Private Attributes | |
QImage | image |
QString | details |
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 }
QImage UpdatePreviewEvent::getImage | ( | ) | const [inline] |
Definition at line 50 of file addPhotosDialog.cpp.
References image.
Referenced by FilePreview::customEvent().
00050 { return image; }
QString UpdatePreviewEvent::getDetails | ( | ) | const [inline] |
Definition at line 53 of file addPhotosDialog.cpp.
References details.
Referenced by FilePreview::customEvent().
00053 { return details; }
QImage UpdatePreviewEvent::image [private] |
QString UpdatePreviewEvent::details [private] |