From 088f7d086c0a95bd18cc094da185059357ce93ec Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Mon, 30 Aug 2010 13:59:10 -0500 Subject: Adding an object to be the interface object for dbus --- src/datetime-interface.h | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/datetime-interface.h (limited to 'src/datetime-interface.h') diff --git a/src/datetime-interface.h b/src/datetime-interface.h new file mode 100644 index 0000000..f7ddcf1 --- /dev/null +++ b/src/datetime-interface.h @@ -0,0 +1,33 @@ +#ifndef __DATETIME_INTERFACE_H__ +#define __DATETIME_INTERFACE_H__ + +#include +#include + +G_BEGIN_DECLS + +#define DATETIME_INTERFACE_TYPE (datetime_interface_get_type ()) +#define DATETIME_INTERFACE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), DATETIME_INTERFACE_TYPE, DatetimeInterface)) +#define DATETIME_INTERFACE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), DATETIME_INTERFACE_TYPE, DatetimeInterfaceClass)) +#define IS_DATETIME_INTERFACE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), DATETIME_INTERFACE_TYPE)) +#define IS_DATETIME_INTERFACE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), DATETIME_INTERFACE_TYPE)) +#define DATETIME_INTERFACE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), DATETIME_INTERFACE_TYPE, DatetimeInterfaceClass)) + +typedef struct _DatetimeInterface DatetimeInterface; +typedef struct _DatetimeInterfaceClass DatetimeInterfaceClass; + +struct _DatetimeInterfaceClass { + GObjectClass parent_class; + + void (*update_time) (void); +}; + +struct _DatetimeInterface { + GObject parent; +}; + +GType datetime_interface_get_type (void); + +G_END_DECLS + +#endif -- cgit v1.2.3 From 48830abd993c31546bad23cc30684a537c31332c Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Mon, 30 Aug 2010 14:58:40 -0500 Subject: Adding a way to emit the signal --- src/datetime-interface.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/datetime-interface.h') diff --git a/src/datetime-interface.h b/src/datetime-interface.h index f7ddcf1..c422b2a 100644 --- a/src/datetime-interface.h +++ b/src/datetime-interface.h @@ -26,7 +26,8 @@ struct _DatetimeInterface { GObject parent; }; -GType datetime_interface_get_type (void); +GType datetime_interface_get_type (void); +void datetime_interface_update (DatetimeInterface *self); G_END_DECLS -- cgit v1.2.3 From 5c882ecc2474d48fbe7675b76cb23f9875905483 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Mon, 30 Aug 2010 22:11:36 -0500 Subject: Copyright stuffs --- src/datetime-interface.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'src/datetime-interface.h') diff --git a/src/datetime-interface.h b/src/datetime-interface.h index c422b2a..60ead1b 100644 --- a/src/datetime-interface.h +++ b/src/datetime-interface.h @@ -1,3 +1,24 @@ +/* +An indicator to time and date related information in the menubar. + +Copyright 2010 Canonical Ltd. + +Authors: + Ted Gould + +This program is free software: you can redistribute it and/or modify it +under the terms of the GNU General Public License version 3, as published +by the Free Software Foundation. + +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranties of +MERCHANTABILITY, SATISFACTORY QUALITY, 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 . +*/ + #ifndef __DATETIME_INTERFACE_H__ #define __DATETIME_INTERFACE_H__ -- cgit v1.2.3