aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2005-11-17 14:15:43 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2005-11-17 14:15:43 +0800
commit11fdf8846ed9d246471ee003ab2da133922db40c (patch)
tree3d438d6e03b88fe1143d402515a93de1e3ff9d0a
parent577b578fd4c13e30ed61b503cb9a9b39da4753b0 (diff)
downloadgsoc2013-evolution-11fdf8846ed9d246471ee003ab2da133922db40c.tar
gsoc2013-evolution-11fdf8846ed9d246471ee003ab2da133922db40c.tar.gz
gsoc2013-evolution-11fdf8846ed9d246471ee003ab2da133922db40c.tar.bz2
gsoc2013-evolution-11fdf8846ed9d246471ee003ab2da133922db40c.tar.lz
gsoc2013-evolution-11fdf8846ed9d246471ee003ab2da133922db40c.tar.xz
gsoc2013-evolution-11fdf8846ed9d246471ee003ab2da133922db40c.tar.zst
gsoc2013-evolution-11fdf8846ed9d246471ee003ab2da133922db40c.zip
changes are made in alarm-notify.glade and alarm-notify-dialog.c to make sure
that the description part of the alarm dialog comes in a scroll window and thus fixing #314550 svn path=/trunk/; revision=30632
-rw-r--r--calendar/ChangeLog10
-rw-r--r--calendar/gui/alarm-notify/alarm-notify-dialog.c11
-rw-r--r--calendar/gui/alarm-notify/alarm-notify.glade52
3 files changed, 45 insertions, 28 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 4e49997d3e..5eb66e110c 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,13 @@
+2005-11-17 P. S. Chakravarthi <pchakravarthi@novell.com>
+
+ Fixes #314550
+ * gui/alarm-notify/alarm-notify.glade: modified the
+ description widget to a scrolled window.
+ * gui/alarm-notify/alarm-notify-dialog.c (fill_in_labels):
+ modified the way in which description needs to be filled
+ to reflect the change of the description from a GtkLabel
+ to a GtkScrolledWindow.
+
2005-11-16 Chenthill Palanisamy <pchenthill@novell.com>
* gui/dialogs/task-editor.c: (menu_option_status_cmd):
diff --git a/calendar/gui/alarm-notify/alarm-notify-dialog.c b/calendar/gui/alarm-notify/alarm-notify-dialog.c
index 667ba997b0..c9fd68029e 100644
--- a/calendar/gui/alarm-notify/alarm-notify-dialog.c
+++ b/calendar/gui/alarm-notify/alarm-notify-dialog.c
@@ -32,6 +32,7 @@
#include <gtk/gtksignal.h>
#include <gtk/gtkscrolledwindow.h>
#include <gtk/gtkwindow.h>
+#include <gtk/gtk.h>
#include <libgnome/gnome-i18n.h>
#if 0
# include <libgnomeui/gnome-winhints.h>
@@ -295,7 +296,6 @@ notified_alarms_dialog_new (void)
return na;
}
-
/**
* add_alarm_to_notified_alarms_dialog:
* @na: Pointer to the dialog-info
@@ -393,6 +393,11 @@ static void
fill_in_labels (AlarmNotify *an, const gchar *summary, const gchar *description,
const gchar *location, time_t occur_start, time_t occur_end)
{
- gtk_label_set_text (GTK_LABEL (an->description), description);
- gtk_label_set_text (GTK_LABEL (an->location), location);
+ GtkTextTagTable *table = gtk_text_tag_table_new ();
+ GtkTextBuffer *buffer = gtk_text_buffer_new (table);
+ gtk_text_buffer_set_text (buffer, description, -1);
+ gtk_text_view_set_buffer (GTK_TEXT_VIEW (an->description), buffer);
+ gtk_label_set_text (GTK_LABEL (an->location), location);
+ g_object_unref (table);
+ g_object_unref (buffer);
}
diff --git a/calendar/gui/alarm-notify/alarm-notify.glade b/calendar/gui/alarm-notify/alarm-notify.glade
index a258714bb9..97bdea1f45 100644
--- a/calendar/gui/alarm-notify/alarm-notify.glade
+++ b/calendar/gui/alarm-notify/alarm-notify.glade
@@ -126,32 +126,34 @@
<property name="homogeneous">False</property>
<property name="spacing">12</property>
- <child>
- <widget class="GtkLabel" id="description-label">
- <property name="visible">True</property>
- <property name="can_focus">True</property>
- <property name="label" translatable="yes">description of appointment</property>
- <property name="use_underline">False</property>
- <property name="use_markup">True</property>
- <property name="justify">GTK_JUSTIFY_LEFT</property>
- <property name="wrap">True</property>
- <property name="selectable">True</property>
- <property name="xalign">0</property>
- <property name="yalign">0.5</property>
- <property name="xpad">0</property>
- <property name="ypad">0</property>
- <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
- <property name="width_chars">-1</property>
- <property name="single_line_mode">False</property>
- <property name="angle">0</property>
- </widget>
- <packing>
- <property name="padding">0</property>
- <property name="expand">False</property>
- <property name="fill">False</property>
- </packing>
+ <child>
+ <widget class="GtkScrolledWindow" id="description">
+ <property name="visible">True</property>
+ <property name="hscrollbar_policy">GTK_POLICY_AUTOMATIC</property>
+ <property name="vscrollbar_policy">GTK_POLICY_AUTOMATIC</property>
+ <property name="shadow_type">GTK_SHADOW_IN</property>
+ <property name="window_placement">GTK_CORNER_TOP_LEFT</property>
+ <child>
+ <widget class="GtkTextView" id="description-label">
+ <property name="visible">True</property>
+ <property name="can_focus">True</property>
+ <property name="editable">False</property>
+ <property name="overwrite">False</property>
+ <property name="accepts_tab">True</property>
+ <property name="justification">GTK_JUSTIFY_LEFT</property>
+ <property name="wrap_mode">GTK_WRAP_WORD</property>
+ <property name="cursor_visible">True</property>
+ <property name="pixels_above_lines">0</property>
+ <property name="pixels_below_lines">0</property>
+ <property name="pixels_inside_wrap">0</property>
+ <property name="left_margin">0</property>
+ <property name="right_margin">0</property>
+ <property name="indent">0</property>
+ <property name="text" translatable="yes"></property>
+ </widget>
+ </child>
+ </widget>
</child>
-
<child>
<widget class="GtkTable" id="table1">
<property name="visible">True</property>