diff options
Diffstat (limited to 'src/wx/film_viewer.h')
| -rw-r--r-- | src/wx/film_viewer.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/wx/film_viewer.h b/src/wx/film_viewer.h index 298e9dd00..a37d7581e 100644 --- a/src/wx/film_viewer.h +++ b/src/wx/film_viewer.h @@ -151,7 +151,9 @@ private: void timer (); void calculate_sizes (); void player_change (ChangeType type, int, bool); - void get (bool lazy); + bool get (bool lazy); + void idle_handler (); + void request_idle_get (); void display_player_video (); void film_change (ChangeType, Film::Property); void recreate_butler (); @@ -210,5 +212,8 @@ private: StateTimer _state_timer; int _gets; + /** true if an get() is required next time we are idle */ + bool _idle_get; + boost::signals2::scoped_connection _config_changed_connection; }; |
