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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
2004-09-13 Rodney Dawes <dobey@novell.com>
* e-timezone-dialog/e-timezone-dialog.c (get_widgets):
(on_map_motion, on_map_leave, e_timezone_dialog_set_timezone):
* e-timezone-dialog/e-timezone-dialog.glade:
Add the label back for previewing the timezone name, and set the
label appropriately
Fixes #64800
2004-08-17 Rodney Dawes <dobey@novell.com>
* e-timezone-dialog/e-timezone-dialog.c (e_timezone_dialog_construct):
Connect to the "changed" signal instead of "activate"
Fixes #62970
2004-06-22 Hans Petter Jansson <hpj@ximian.com>
* misc/e-source-selector.c (e_source_selector_peek_primary_selection):
Add preconditions. Make sure garbage or NULL data doesn't get used.
2004-06-11 Larry Ewing <lewing@ximian.com>
* misc/e-source-selector.c: make the source selector use a colock
block instead of setting the foreground to indicate the source
color.
(pixbuf_cell_data_func): actually initialize the pixbuf (bad larry).
(pixbuf_cell_data_func): clean up warnings. (double bad larry).
(pixbuf_cell_data_func): fix the appearance a little.
2004-05-20 Rodney Dawes <dobey@ximian.com>
* e-timezone-dialog/e-timezone-dialog.c (e_timezone_dialog_construct):
Use the activate signal, instead of changed, for the combo box
(on_map_motion): Set the text in the combo's entry when we mouse over
one of the points on the map, as a preview for the timezone
(on_map_leave): Reset the combo's entry to the timezone we started with
when we leave the map
Fixes #57122
2004-04-09 Rodney Dawes <dobey@ximian.com>
* e-timezone-dialog/e-timezone-dialog.c
(e_timezone_dialog_construct): Set the border widths on the dialog's
vbox and action area to be HIG-complaint
Get rid of the timezone preview widget in here
Point the internal 'table' to the right widget
(on_map_motion): Get rid of the extra-hacky code to set the preview
widget's label to the timezone, now that that widget is gone
(on_map_leave): Update the comment to not reference the preview
widget that is now gone
Get rid of the code to set the preview widget's label to empty string
* e-timezone-dialog/e-timezone-dialog.glade: Update for HIG-compliance
2004-02-26 JP Rosevear <jpr@ximian.com>
* e-timezone-dialog/e-timezone-dialog.c
(e_timezone_dialog_dispose): don't reference uninitialized memory
2003-12-16 Hans Petter Jansson <hpj@ximian.com>
* misc/e-source-option-menu.c (select_source_foreach_menu_item):
Use e_source_equal() instead of comparing pointers. This allows user
to pass in a source that was obtained from somewhere else. Set the
matching internal source as "selected" instead of the one passed in.
(select_source): Emit signal only if we found a match. Don't ref/unref
anything, since the selected source will always be from our internal
list.
2003-12-10 Not Zed <NotZed@Ximian.com>
* menus/gal-view-menus.c (remove_instance): NULL out
priv->instance when we unref it. Bug #51713.
2003-12-06 JP Rosevear <jpr@ximian.com>
* */Makefile.am: Remove hard coded disable deprecated flags
2003-11-07 JP Rosevear <jpr@ximian.com>
* e-timezone-dialog/Makefile.am: don't include toplevel libical
2003-11-07 JP Rosevear <jpr@ximian.com>
* e-timezone-dialog/Makefile.am: use TZDIALOG_FLAGS
2003-10-09 Jeffrey Stedfast <fejj@ximian.com>
* e-timezone-dialog/Makefile.am: INCLUDE path fixes for changes
made to libical build.
* e-timezone-dialog.h: #include <libical/ical.h>
2003-09-19 Bolian Yin <bolian.yin@sun.com>
Fixes #1245. ECalendar should be usable with the keyboard
*misc/e-calendar-item.c (e_calendar_item_focus): new func, focus
handler.
(e_calendar_item_key_press_event): new func, key press event
handler
(e_calendar_item_selection_add_days,
e_calendar_item_stop_selecting): helpers.
(e_calendar_item_ensure_days_visible,
e_calendar_item_set_selection_if_emission): add the flag to
control if we should emit e-calendar signals.
(e_calendar_item_class_init): register focus handler.
(e_calendar_item_event): add code for GDK_FOCUS_CHANGE and
GDK_KEY_PRESS.
*misc/e-calendar.c (e_calendar_focus): new func, focus handler
(e_calendar_button_has_focus): new func, if prev/next button has
focus.
(e_calendar_on_next_clicked, e_calendar_on_prev_clicked): click
signal handler for prev/next buttons.
(e_calendar_set_focusable): set if the e-calendar is focusable
*misc/e-dateedit.c (e_date_edit_show_date_popup, hide_date_popup):
grab/ungrab gdk keyboard.
2003-08-27 Hans Petter Jansson <hpj@ximian.com>
Fixes #15638.
* misc/e-dateedit.c (rebuild_time_popup): Make 12-hour time format
not be zero-padded. Right-align time labels so digits line up.
2003-08-27 Bolian Yin <bolian.yin@sun.com>
* misc/Makefile.am: add dependency on a11y/widgets.
* misc/e-calendar-item.c (e_calendar_item_class_init): a11y init.
(e_calendar_item_bounds): new func, impl the bounds virtual func.
|