Member
|
Purpose
|
|
void on_slide_show():
|
Called from main program
|
void on_interval():
|
User inputs interval in seconds from main program
|
void on_timer(wxTimerEvent&):
|
Receives timer events
|
void start_slide_show():
|
User starts slide show from main program
|
vector <wxString> image_list:
|
stores a list of files including their paths in an array
|
vector <wxString> image_list:
|
stores a list of files including their paths in an array
|
wxString: path, filename, imagename:
|
used to extract one file name with path from array, one file name
excluding path, and just file (image name) without extension, respectively.
|
wxTimer * slide_show_timer;
|
timer will be used for slide show
|
wxBitmap *bm;
|
bitmap image will be used to convert images of other types to bitmap
|
long user_interval;
|
the user enters interval interval in seconds, using 'wxGetNumberFromUser' which returns a long.
|
wxStaticText *text;
|
Static text will be used to display the name of the image.
|
wxStaticText *text;
|
Static text will be used to display the name of the image.
|