diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/aocharmovie.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/aocharmovie.h b/include/aocharmovie.h index f54f5105..bc0e30a5 100644 --- a/include/aocharmovie.h +++ b/include/aocharmovie.h @@ -29,12 +29,15 @@ public: void combo_resize(int w, int h); + void set_frame(QImage image); + private: AOApplication *ao_app; QMovie *m_movie; QVector<QImage> movie_frames; QTimer *preanim_timer; + QTimer *ticker; const int time_mod = 60; @@ -46,11 +49,13 @@ private: bool play_once = true; + bool preprocess = false; + signals: void done(); private slots: - void frame_change(int n_frame); + void movie_ticker(); void timer_done(); }; |
