~ubuntu-branches/ubuntu/wily/me-tv/wily

« back to all changes in this revision

Viewing changes to src/main_window.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Lamothe
  • Date: 2010-06-20 21:51:41 UTC
  • mfrom: (1.1.13 upstream) (3.1.12 sid)
  • Revision ID: james.westby@ubuntu.com-20100620215141-jfzya7s0a5g8xxl4
Tags: 1.2.6-1
* New upstream release
* Fix "needs to depend on libxine1-x" updated control file to
  depend on ${xine-x:Depends} (Closes: #575122)
* Fix "EPG texts with ampersands not shown" encoded XML strings
  in GTK controls that use markup (Closes: #582613)
* Updated the description of the application to remove reference
  to MythTV

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
        gboolean                                                                maximise_forced;
56
56
        guint                                                                   channel_change_timeout;
57
57
        guint                                                                   temp_channel_number;
58
 
    DBusConnection*                                                     dbus_connection;
59
 
    DBusError                                                           dbus_error;
60
58
        sigc::connection                                                connection_exception;
 
59
        guint                                                                   screensaver_inhibit_cookie;
61
60
        
62
61
        void stop();
63
62
        void set_view_mode(ViewMode display_mode);
66
65
        void add_channel_number(guint channel_number);
67
66
        void toggle_mute();
68
67
        void set_mute_state(gboolean state);
69
 
        void inhibit_screensaver(gboolean activate);
70
68
        
71
69
        bool on_delete_event(GdkEventAny* event);
72
70
        bool on_motion_notify_event(GdkEventMotion* event);
124
122
        void fullscreen(gboolean change_mode = true);
125
123
        void unfullscreen(gboolean restore_mode = true);
126
124
        gboolean is_fullscreen();
 
125
 
 
126
        gboolean is_screensaver_inhibited() { return (screensaver_inhibit_cookie != 0); }
 
127
        void inhibit_screensaver(gboolean activate);
127
128
};
128
129
 
129
130
#endif