AlbumShaper
1.0a3
|
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.
References details, and image.
: QCustomEvent( UPDATE_PREVIEW_DETAILS ) { this->image = image; this->details = details; }
QString UpdatePreviewEvent::getDetails | ( | ) | const [inline] |
Definition at line 53 of file addPhotosDialog.cpp.
References details.
Referenced by FilePreview::customEvent().
{ return details; }
QImage UpdatePreviewEvent::getImage | ( | ) | const [inline] |
Definition at line 50 of file addPhotosDialog.cpp.
References image.
Referenced by FilePreview::customEvent().
{ return image; }
QString UpdatePreviewEvent::details [private] |
Definition at line 57 of file addPhotosDialog.cpp.
Referenced by getDetails(), and UpdatePreviewEvent().
QImage UpdatePreviewEvent::image [private] |
Definition at line 56 of file addPhotosDialog.cpp.
Referenced by getImage(), and UpdatePreviewEvent().