summaryrefslogtreecommitdiff
path: root/finch/gntidle.c
blob: 22861e1826d079c25158d657f8f5a959e40331ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
 * Finch - Universal Text Chat Client
 * Copyright (C) Pidgin Developers <devel@pidgin.im>
 *
 * 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.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, see <https://www.gnu.org/licenses/>.
 */

#include <purple.h>

#include <gnt.h>

#include "gntidle.h"

struct _FinchIdle {
    GObject parent;
};

/******************************************************************************
 * PurpleIdleUi implementation
 *****************************************************************************/
static time_t
finch_idle_get_idle_time(G_GNUC_UNUSED PurpleIdleUi *ui) {
	return gnt_wm_get_idle_time();
}

static void
finch_idle_purple_idle_ui_init(PurpleIdleUiInterface *iface) {
    iface->get_idle_time = finch_idle_get_idle_time;
}

/******************************************************************************
 * GObject Implementation
 *****************************************************************************/
G_DEFINE_TYPE_EXTENDED(
    FinchIdle,
    finch_idle,
    G_TYPE_OBJECT,
    0,
    G_IMPLEMENT_INTERFACE(
        PURPLE_TYPE_IDLE_UI,
        finch_idle_purple_idle_ui_init
    )
);

static void
finch_idle_init(G_GNUC_UNUSED FinchIdle *idle) {
}

static void
finch_idle_class_init(G_GNUC_UNUSED FinchIdleClass *klass) {
}

/******************************************************************************
 * Public API
 *****************************************************************************/
PurpleIdleUi *
finch_idle_new(void) {
    return g_object_new(FINCH_TYPE_IDLE, NULL);
}