aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk
diff options
context:
space:
mode:
authorMarco Barisione <marco.barisione@collabora.co.uk>2013-07-29 21:20:00 +0800
committerMarco Barisione <marco.barisione@collabora.co.uk>2013-08-20 18:03:06 +0800
commit7f50fe46dc08956800ee9d63f5191b0d754ca106 (patch)
tree5af2de7a233d0a573940adddb4eb4177c35faeaa /libempathy-gtk
parent45e5ffdb0c84f0026cf552fe885f06498eaddb39 (diff)
downloadgsoc2013-empathy-7f50fe46dc08956800ee9d63f5191b0d754ca106.tar
gsoc2013-empathy-7f50fe46dc08956800ee9d63f5191b0d754ca106.tar.gz
gsoc2013-empathy-7f50fe46dc08956800ee9d63f5191b0d754ca106.tar.bz2
gsoc2013-empathy-7f50fe46dc08956800ee9d63f5191b0d754ca106.tar.lz
gsoc2013-empathy-7f50fe46dc08956800ee9d63f5191b0d754ca106.tar.xz
gsoc2013-empathy-7f50fe46dc08956800ee9d63f5191b0d754ca106.tar.zst
gsoc2013-empathy-7f50fe46dc08956800ee9d63f5191b0d754ca106.zip
calendar-button: move from Empathy to tp-accounts-widgets
https://bugzilla.gnome.org/show_bug.cgi?id=699492
Diffstat (limited to 'libempathy-gtk')
-rw-r--r--libempathy-gtk/Makefile.am2
-rw-r--r--libempathy-gtk/empathy-calendar-button.c273
-rw-r--r--libempathy-gtk/empathy-calendar-button.h67
-rw-r--r--libempathy-gtk/empathy-user-info.c10
4 files changed, 5 insertions, 347 deletions
diff --git a/libempathy-gtk/Makefile.am b/libempathy-gtk/Makefile.am
index 0117b15da..8665917ff 100644
--- a/libempathy-gtk/Makefile.am
+++ b/libempathy-gtk/Makefile.am
@@ -33,7 +33,6 @@ libempathy_gtk_handwritten_source = \
empathy-avatar-image.c \
empathy-bad-password-dialog.c \
empathy-base-password-dialog.c \
- empathy-calendar-button.c \
empathy-call-utils.c \
empathy-cell-renderer-activatable.c \
empathy-cell-renderer-expander.c \
@@ -96,7 +95,6 @@ libempathy_gtk_headers = \
empathy-avatar-image.h \
empathy-bad-password-dialog.h \
empathy-base-password-dialog.h \
- empathy-calendar-button.h \
empathy-call-utils.h \
empathy-cell-renderer-activatable.h \
empathy-cell-renderer-expander.h \
diff --git a/libempathy-gtk/empathy-calendar-button.c b/libempathy-gtk/empathy-calendar-button.c
deleted file mode 100644
index ca96a423a..000000000
--- a/libempathy-gtk/empathy-calendar-button.c
+++ /dev/null
@@ -1,273 +0,0 @@
-/*
- * empathy-calendar-button.c - Source for EmpathyCalendarButton
- * Copyright (C) 2012 Collabora Ltd.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#include "config.h"
-#include "empathy-calendar-button.h"
-
-#include <glib/gi18n-lib.h>
-
-#define DEBUG_FLAG EMPATHY_DEBUG_OTHER_THING
-#include "empathy-debug.h"
-
-G_DEFINE_TYPE (EmpathyCalendarButton, empathy_calendar_button, GTK_TYPE_BOX)
-
-/* signal enum */
-enum {
- DATE_CHANGED,
- LAST_SIGNAL,
-};
-
-static guint signals[LAST_SIGNAL] = {0};
-
-struct _EmpathyCalendarButtonPriv {
- GDate *date;
-
- GtkWidget *button_date;
- GtkWidget *button_clear;
- GtkWidget *dialog;
- GtkWidget *calendar;
-};
-
-static void
-empathy_calendar_button_finalize (GObject *object)
-{
- EmpathyCalendarButton *self = (EmpathyCalendarButton *) object;
-
- tp_clear_pointer (&self->priv->date, g_date_free);
-
- G_OBJECT_CLASS (empathy_calendar_button_parent_class)->finalize (object);
-}
-
-static void
-update_label (EmpathyCalendarButton *self)
-{
- if (self->priv->date == NULL)
- {
- gtk_button_set_label (GTK_BUTTON (self->priv->button_date),
- _("Select..."));
- }
- else
- {
- gchar buffer[128];
-
- g_date_strftime (buffer, 128, "%e %b %Y", self->priv->date);
- gtk_button_set_label (GTK_BUTTON (self->priv->button_date), buffer);
- }
-}
-
-static void
-empathy_calendar_button_constructed (GObject *object)
-{
- EmpathyCalendarButton *self = (EmpathyCalendarButton *) object;
-
- G_OBJECT_CLASS (empathy_calendar_button_parent_class)->constructed (
- object);
-
- update_label (self);
-}
-
-static void
-dialog_response (GtkDialog *dialog,
- gint response,
- EmpathyCalendarButton *self)
-{
- GDate *date;
- guint year, month, day;
-
- if (response != GTK_RESPONSE_OK)
- goto out;
-
- gtk_calendar_get_date (GTK_CALENDAR (self->priv->calendar),
- &year, &month, &day);
- date = g_date_new_dmy (day, month + 1, year);
-
- empathy_calendar_button_set_date (self, date);
-
- g_date_free (date);
-
-out:
- gtk_widget_hide (GTK_WIDGET (dialog));
-}
-
-static gboolean
-dialog_destroy (GtkWidget *widget,
- EmpathyCalendarButton *self)
-{
- self->priv->dialog = NULL;
- self->priv->calendar = NULL;
-
- return FALSE;
-}
-
-static void
-update_calendar (EmpathyCalendarButton *self)
-{
- if (self->priv->calendar == NULL)
- return;
-
- gtk_calendar_clear_marks (GTK_CALENDAR (self->priv->calendar));
-
- if (self->priv->date == NULL)
- return;
-
- gtk_calendar_select_day (GTK_CALENDAR (self->priv->calendar),
- g_date_get_day (self->priv->date));
- gtk_calendar_select_month (GTK_CALENDAR (self->priv->calendar),
- g_date_get_month (self->priv->date) - 1,
- g_date_get_year (self->priv->date));
- gtk_calendar_mark_day (GTK_CALENDAR (self->priv->calendar),
- g_date_get_day (self->priv->date));
-}
-
-static void
-empathy_calendar_button_date_clicked (GtkButton *button,
- EmpathyCalendarButton *self)
-{
- if (self->priv->dialog == NULL)
- {
- GtkWidget *parent, *content;
-
- parent = gtk_widget_get_toplevel (GTK_WIDGET (button));
-
- self->priv->dialog = gtk_dialog_new_with_buttons (NULL,
- GTK_WINDOW (parent), GTK_DIALOG_MODAL,
- GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
- _("_Select"), GTK_RESPONSE_OK,
- NULL);
-
- gtk_window_set_transient_for (GTK_WINDOW (self->priv->dialog),
- GTK_WINDOW (parent));
-
- self->priv->calendar = gtk_calendar_new ();
-
- update_calendar (self);
-
- content = gtk_dialog_get_content_area (GTK_DIALOG (self->priv->dialog));
-
- gtk_box_pack_start (GTK_BOX (content), self->priv->calendar, TRUE, TRUE,
- 6);
- gtk_widget_show (self->priv->calendar);
-
- g_signal_connect (self->priv->dialog, "response",
- G_CALLBACK (dialog_response), self);
- g_signal_connect (self->priv->dialog, "destroy",
- G_CALLBACK (dialog_destroy), self);
- }
-
- gtk_window_present (GTK_WINDOW (self->priv->dialog));
-}
-
-static void
-empathy_calendar_button_clear_clicked (GtkButton *button,
- EmpathyCalendarButton *self)
-{
- empathy_calendar_button_set_date (self, NULL);
-}
-
-static void
-empathy_calendar_button_init (EmpathyCalendarButton *self)
-{
- GtkWidget *image;
- GtkStyleContext *context;
-
- self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
- EMPATHY_TYPE_CALENDAR_BUTTON, EmpathyCalendarButtonPriv);
-
- context = gtk_widget_get_style_context (GTK_WIDGET (self));
- gtk_style_context_add_class (context, GTK_STYLE_CLASS_LINKED);
-
- /* Date */
- self->priv->button_date = gtk_button_new ();
-
- g_signal_connect (self->priv->button_date, "clicked",
- G_CALLBACK (empathy_calendar_button_date_clicked), self);
-
- gtk_button_set_alignment (GTK_BUTTON (self->priv->button_date), 0, 0.5);
-
- gtk_box_pack_start (GTK_BOX (self), self->priv->button_date, TRUE, TRUE, 0);
- gtk_widget_show (self->priv->button_date);
-
- /* Clear */
- self->priv->button_clear = gtk_button_new ();
-
- image = gtk_image_new_from_stock (GTK_STOCK_CLEAR,
- GTK_ICON_SIZE_MENU);
- gtk_button_set_image (GTK_BUTTON (self->priv->button_clear), image);
- gtk_widget_show (image);
-
- g_signal_connect (self->priv->button_clear, "clicked",
- G_CALLBACK (empathy_calendar_button_clear_clicked), self);
-
- gtk_box_pack_start (GTK_BOX (self), self->priv->button_clear,
- FALSE, FALSE, 0);
- gtk_widget_show (self->priv->button_clear);
-}
-
-static void
-empathy_calendar_button_class_init (EmpathyCalendarButtonClass *klass)
-{
- GObjectClass *oclass = G_OBJECT_CLASS (klass);
-
- g_type_class_add_private (klass, sizeof (EmpathyCalendarButtonPriv));
-
- oclass->finalize = empathy_calendar_button_finalize;
- oclass->constructed = empathy_calendar_button_constructed;
-
- signals[DATE_CHANGED] = g_signal_new ("date-changed",
- G_TYPE_FROM_CLASS (klass),
- G_SIGNAL_RUN_LAST, 0,
- NULL, NULL,
- g_cclosure_marshal_generic,
- G_TYPE_NONE, 1, G_TYPE_DATE);
-}
-
-GtkWidget *
-empathy_calendar_button_new (void)
-{
- return g_object_new (EMPATHY_TYPE_CALENDAR_BUTTON,
- "orientation", GTK_ORIENTATION_HORIZONTAL,
- NULL);
-}
-
-GDate *
-empathy_calendar_button_get_date (EmpathyCalendarButton *self)
-{
- return self->priv->date;
-}
-
-void
-empathy_calendar_button_set_date (EmpathyCalendarButton *self,
- GDate *date)
-{
- if (date == self->priv->date)
- return;
-
- tp_clear_pointer (&self->priv->date, g_date_free);
-
- if (date != NULL)
- {
- /* There is no g_date_copy()... */
- self->priv->date = g_date_new_dmy (date->day, date->month, date->year);
- }
-
- update_label (self);
- update_calendar (self);
-
- g_signal_emit (self, signals[DATE_CHANGED], 0, self->priv->date);
-}
diff --git a/libempathy-gtk/empathy-calendar-button.h b/libempathy-gtk/empathy-calendar-button.h
deleted file mode 100644
index ecc8c78c5..000000000
--- a/libempathy-gtk/empathy-calendar-button.h
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * empathy-calendar-button.h - Header for EmpathyCalendarButton
- * Copyright (C) 2012 Collabora Ltd.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#ifndef __EMPATHY_CALENDAR_BUTTON_H__
-#define __EMPATHY_CALENDAR_BUTTON_H__
-
-#include <gtk/gtk.h>
-
-G_BEGIN_DECLS
-
-typedef struct _EmpathyCalendarButton EmpathyCalendarButton;
-typedef struct _EmpathyCalendarButtonClass EmpathyCalendarButtonClass;
-typedef struct _EmpathyCalendarButtonPriv EmpathyCalendarButtonPriv;
-
-struct _EmpathyCalendarButtonClass {
- GtkBoxClass parent_class;
-};
-
-struct _EmpathyCalendarButton {
- GtkBox parent;
- EmpathyCalendarButtonPriv *priv;
-};
-
-GType empathy_calendar_button_get_type (void);
-
-#define EMPATHY_TYPE_CALENDAR_BUTTON \
- (empathy_calendar_button_get_type ())
-#define EMPATHY_CALENDAR_BUTTON(obj) \
- (G_TYPE_CHECK_INSTANCE_CAST((obj), EMPATHY_TYPE_CALENDAR_BUTTON, \
- EmpathyCalendarButton))
-#define EMPATHY_CALENDAR_BUTTON_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_CAST((klass), EMPATHY_TYPE_CALENDAR_BUTTON, \
- EmpathyCalendarButtonClass))
-#define EMPATHY_IS_CALENDAR_BUTTON(obj) \
- (G_TYPE_CHECK_INSTANCE_TYPE((obj), EMPATHY_TYPE_CALENDAR_BUTTON))
-#define EMPATHY_IS_CALENDAR_BUTTON_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_TYPE((klass), EMPATHY_TYPE_CALENDAR_BUTTON))
-#define EMPATHY_CALENDAR_BUTTON_GET_CLASS(obj) \
- (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_CALENDAR_BUTTON, \
- EmpathyCalendarButtonClass))
-
-GtkWidget * empathy_calendar_button_new (void);
-
-GDate * empathy_calendar_button_get_date (EmpathyCalendarButton *self);
-
-void empathy_calendar_button_set_date (EmpathyCalendarButton *self,
- GDate *date);
-
-G_END_DECLS
-
-#endif /* #ifndef __EMPATHY_CALENDAR_BUTTON_H__*/
diff --git a/libempathy-gtk/empathy-user-info.c b/libempathy-gtk/empathy-user-info.c
index 0cda19d19..82559e1bd 100644
--- a/libempathy-gtk/empathy-user-info.c
+++ b/libempathy-gtk/empathy-user-info.c
@@ -21,11 +21,11 @@
#include "empathy-user-info.h"
#include <glib/gi18n-lib.h>
-#include <tp-account-widgets/tpaw-time.h>
+#include <tp-account-widgets/tpaw-calendar-button.h>
#include <tp-account-widgets/tpaw-contactinfo-utils.h>
+#include <tp-account-widgets/tpaw-time.h>
#include "empathy-avatar-chooser.h"
-#include "empathy-calendar-button.h"
#include "empathy-utils.h"
#define DEBUG_FLAG EMPATHY_DEBUG_CONTACT
@@ -77,7 +77,7 @@ contact_info_changed_cb (GtkEntry *entry,
}
static void
-bday_changed_cb (EmpathyCalendarButton *button,
+bday_changed_cb (TpawCalendarButton *button,
GDate *date,
EmpathyUserInfo *self)
{
@@ -283,7 +283,7 @@ fill_contact_info_grid (EmpathyUserInfo *self)
/* Add Value */
if (!tp_strdiff (field->field_name, "bday"))
{
- w = empathy_calendar_button_new ();
+ w = tpaw_calendar_button_new ();
if (field->field_value[0])
{
@@ -292,7 +292,7 @@ fill_contact_info_grid (EmpathyUserInfo *self)
g_date_set_parse (&date, field->field_value[0]);
if (g_date_valid (&date))
{
- empathy_calendar_button_set_date (EMPATHY_CALENDAR_BUTTON (w),
+ tpaw_calendar_button_set_date (TPAW_CALENDAR_BUTTON (w),
&date);
}
}