2013-08-14 06:50:48 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
2014-05-02 09:34:02 -04:00
|
|
|
/*
|
2013-08-14 06:50:48 -04:00
|
|
|
* Copyright 2013 Red Hat, Inc.
|
2014-05-02 09:34:02 -04:00
|
|
|
*
|
2013-08-14 06:50:48 -04:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
2014-05-02 09:34:02 -04:00
|
|
|
*
|
2013-08-14 06:50:48 -04:00
|
|
|
* You should have received a copy of the GNU General Public License
|
2014-01-11 20:42:06 -05:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2013-08-14 06:50:48 -04:00
|
|
|
*
|
|
|
|
* Adapted from gnome-session/gnome-session/gs-idle-monitor.c and
|
|
|
|
* from gnome-desktop/libgnome-desktop/gnome-idle-monitor.c
|
|
|
|
*/
|
|
|
|
|
2014-03-30 20:52:25 -04:00
|
|
|
#ifndef META_IDLE_MONITOR_PRIVATE_H
|
|
|
|
#define META_IDLE_MONITOR_PRIVATE_H
|
|
|
|
|
2018-07-10 04:36:24 -04:00
|
|
|
#include "core/display-private.h"
|
|
|
|
#include "meta/meta-idle-monitor.h"
|
2014-03-30 20:52:25 -04:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
MetaIdleMonitor *monitor;
|
|
|
|
guint id;
|
|
|
|
MetaIdleMonitorWatchFunc callback;
|
|
|
|
gpointer user_data;
|
|
|
|
GDestroyNotify notify;
|
|
|
|
guint64 timeout_msec;
|
|
|
|
int idle_source_id;
|
2018-03-20 05:59:04 -04:00
|
|
|
GSource *timeout_source;
|
2014-03-30 20:52:25 -04:00
|
|
|
} MetaIdleMonitorWatch;
|
|
|
|
|
|
|
|
struct _MetaIdleMonitorClass
|
|
|
|
{
|
|
|
|
GObjectClass parent_class;
|
|
|
|
};
|
2013-08-14 06:50:48 -04:00
|
|
|
|
2018-03-20 05:59:04 -04:00
|
|
|
void meta_idle_monitor_reset_idletime (MetaIdleMonitor *monitor);
|
2013-08-14 06:50:48 -04:00
|
|
|
|
2021-04-19 09:22:57 -04:00
|
|
|
MetaIdleManager * meta_idle_monitor_get_manager (MetaIdleMonitor *monitor);
|
|
|
|
|
|
|
|
MetaIdleMonitor * meta_idle_monitor_new (MetaIdleManager *idle_manager,
|
|
|
|
ClutterInputDevice *device);
|
|
|
|
|
2014-03-30 20:52:25 -04:00
|
|
|
#endif /* META_IDLE_MONITOR_PRIVATE_H */
|