]> Pileus Git - ~andy/gtk/blob - ChangeLog.pre-2-6
Fix off-by-one error on the backward iteration loop, that was causing the
[~andy/gtk] / ChangeLog.pre-2-6
1 Wed Jan 15 17:02:18 2003  Owen Taylor  <otaylor@redhat.com>
2  
3         * gtk/gtktextlayout.c (gtk_text_layout_validate_yrange):
4         Fix off-by-one error on the backward iteration loop,
5         that was causing the wrong range to be redrawn.
6         (at least part of #72734)
7         
8 2003-01-21  Matthias Clasen  <maclas@gmx.de>
9
10         * gtk/gtktextview.c (gtk_text_view_size_allocate): Adjust the
11         vadjustment value after changing its bounds.  (fixes #101963 and 
12         #73562)
13
14         * gtk/gtkcolorsel.c (hex_changed): Fix clamping to [0,1] to avoid 
15         unnecessary roundtrip failures.  (#93500)
16
17 2003-01-19  Tor Lillqvist  <tml@iki.fi>
18
19         Merge from stable:
20         
21         Fix for #103614 and some other problems with GtkFileSelection on
22         Windows:
23                 
24         * gtk/fnmatch.c (get_char): Need to use g_unichar_tolower(), not
25         g_ascii_tolower(). Windows file names are case-insensitive for all
26         Unicode letters.
27
28         * gtk/gtkfilesel.c: Instead of checking for G_OS_WIN32 or
29         G_WITH_CYGWIN, check G_PLATFORM_WIN32. Move inclusion of gtkintl.h
30         earlier, as it includes config.h unconditionally, and gtkprivate.h
31         redefines GTK_LOCALEDIR.
32         (struct _CompletionDirSent): Ifdef out the fields not used on
33         Windows.
34         (compare_utf8_filenames, compare_sys_filenames): Need different
35         comparison implementation for UTF-8 file names and system locale
36         file names on Win32. Cannot simply use g_ascii_strcasecmp(), but
37         need to casefold all Unicode letters.
38         (cmpl_completion_matches, open_dir, correct_parent): Ifdef out
39         variables not used on Win32 to avoid warnings about unused
40         variables.
41         (open_ref_dir): Use g_path_skip_root() to skip past potential
42         drive letter in front of the leading (back)slash.
43         (open_new_dir): Ifdef out use of CompletionDirSent fields not
44         there on Win32.
45         (correct_parent): Bypass inode check also on Cygwin.
46
47         Fix bug noticed by Alex Shaduri: Tooltips and other
48         GDK_WINDOW_TEMP windows were activated. This looked very odd, and
49         was a regression from earlier versions.
50         
51         * gdk/win32/gdkwindow-win32.c (show_window_internal): Fine-tune
52         behaviour. Don't ever activate GDK_WINDOW_TEMP windows.
53         (gdk_window_move, gdk_window_resize): Add debug logging.
54
55         * gdk/win32/gdkevents-win32.c (gdk_event_translate): When we get a
56         WM_SIZE message for a non-visible (withdrawn) window, don't clear
57         the GDK_WINDOW_STATE_WITHDRAWN bit. The window is still withdrawn
58         even if its size changes.
59
60 2003-01-16  Matthias Clasen  <maclas@gmx.de>
61
62         * gtk/gtktextlayout.c (gtk_text_layout_get_cursor_locations): Typo fixes.
63         (totally_invisible_line): Fix an incorrect optimization which
64         caused invisible paragraphs to be occasionally misrendered.
65
66 Wed Jan 15 15:55:47 2003  Owen Taylor  <otaylor@redhat.com>
67
68         * gtk/gtksettings.c: Set the double click speed from
69         XSETTINGS when creating a new GtkSettings object
70         as well as when getting a notify. (#103601, reported
71         by Louis Garcia)
72
73 Wed Jan 15 14:56:09 2003  Owen Taylor  <otaylor@redhat.com>
74  
75         * gtk/gtknotebook.c (gtk_notebook_size_allocate): 
76         Show/hide the notebook event window as necessary,
77         we weren't previously keeping the visibility updated
78         properly.  (#103599)
79  
80 2003-01-15  Matthias Clasen  <maclas@gmx.de>
81
82         * examples/menu/itemfactory.c: 
83         * docs/tutorial/gtk-tut.sgml: Add a <StockItem> to the itemfactory
84         example.  (#103211)
85
86 2002-12-29  Murray Cumming  <murrayc@usa.net>
87
88         Fixes #102168.
89
90         * gtk/gtkliststore.c, gtktreednd.c, gtktreestore.c:
91         Actually implement the GtkTreeDragSource::row_draggable virtual 
92         function in GtkListStore and GtkTreeStore instead of just checking 
93         whether it's implemented at all. This means that DnD isn't broken by
94         gtkmm's virtual function wrappers. The alternative would be to
95         hard-code the TRUE return value into gtkmm's wrappers, but that's 
96         part of GTK+'s implementation, not it's API.
97
98 Tue Jan 14 23:42:29 2002  Kristian Rietveld  <kris@gtk.org>
99
100         * gtk/gtktreeview.c: fix compiler warning.
101
102 Tue Jan 14 23:29:00 2002  Kristian Rietveld  <kris@gtk.org>
103
104         * gtk/gtkcellrendererpixbuf.c (gtk_cell_renderer_pixbuf_render):
105         make sure exposed pixbufs are clipped to the exposed area before
106         drawing, which is a slight speedup. (#102379, patch from Soeren
107         Sandmann).
108
109 Tue Jan 14 23:26:41 2002  Kristian Rietveld  <kris@gtk.org>
110
111         * gtk/gtktreeview.c (validate_visible_area): silly typo fix,
112         only free scroll_to_path when the complete tree has been validated.
113         This makes sure that we scrolled to the correct path.
114
115 Tue Jan 14 23:25:32 2002  Kristian Rietveld  <kris@gtk.org>
116
117         * gtk/gtktreeview.c (gtk_tree_view_style_set): update the
118         background of widget->window and bin->window. (Fixes #96650, reported
119         by Dave Camp).
120
121 Tue Jan 14 23:24:02 2002  Kristian Rietveld  <kris@gtk.org>
122
123         * gtk/gtktreeview.c (gtk_tree_view_clamp_node_visible): process
124         updates before scrolling, avoiding a "selection streak". (Fixes
125         #101235, patch from Soeren Sandmann).
126
127 Tue Jan 14 23:22:13 2002  Kristian Rietveld  <kris@gtk.org>
128
129         * gtk/gtktreeview.c (validate_visible_area): actually put values
130         in the requisition using gtk_widget_size_request. (Fixes #100172,
131         reported by Kjartan Maraas).
132
133 Tue Jan 14 23:19:45 2002  Kristian Rietveld  <kris@gtk.org>
134
135         * gtk/gtktreeview.c (gtk_tree_view_rows_reordered): cancel the
136         arrow animation timeout before we actually reorder the rbtree. If
137         we don't do this we can get stuck arrows,
138         (cancel_arrow_animation): new function. (Fixes #93629, part 2,
139         reported and testcase provided by Hans Petter Jansson).
140
141 Tue Jan 14 23:18:21 2002  Kristian Rietveld  <kris@gtk.org>
142
143         * gtk/gtktreeselection.c (gtk_tree_selection_real_modify_range):
144         anchor_path should be start_path, not end_path. (Fixes #102618,
145         patch from Carlos Garnacho Parro).
146
147 Tue Jan 14 23:16:15 2002  Kristian Rietveld  <kris@gtk.org>
148
149         * gtk/gtkliststore.c (gtk_list_store_move): also update the tail,
150         only correct new_pos if we don't move to the head/tail.
151
152 Tue Jan 14 23:11:55 2002  Kristian Rietveld  <kris@gtk.org>
153
154         * gtk/gtktreestore.c (gtk_tree_store_swap): take the path from
155         the parent_iter if depth >= 1, so we send the reordered signal to
156         the correct level, remove debugging printfs which I forgot the remove
157         earlier (2.2.0 shipped with this, oops). (Fixes #103198, Reported and
158         testcase provided by Matthew Tuck).
159
160 Tue Jan 14 20:58:44 2002  Kristian Rietveld  <kris@gtk.org>
161
162         * gtk/gtktreeview.c (invalite_last_column): split out actual column
163         invalidation into invalidate_column(),
164         (gtk_tree_view_size_allocate_columns): invalidate column if the
165         new width is larger than the old width.
166         (fixes #102890, reported by Alex Duggan).
167
168 2003-01-14  Matthias Clasen  <maclas@gmx.de>
169
170         * gtk/gtktextview.c (gtk_text_view_move_cursor_internal): Skip
171         invisible chars for GTK_MOVEMENT_LOGICAL_POSITIONS and
172         GTK_MOVEMENT_WORDS.
173
174         * gtk/gtktextiter.c,
175         gtk/gtktextiter.h: Add some variant movement functions which
176         skip invisible chars, and do some cleanups.
177
178 2003-01-12  Tor Lillqvist  <tml@iki.fi>
179
180         Merge from stable:
181                 
182         * gtk/gtkmain.c: Move inclusion of config.h and gtkintl.h earlier,
183         as gtkprivate.h redefines GTK_LOCALEDIR on Win32, for run-time
184         lookup.
185
186         * gdk/Makefile.am (libgdk_win32_2_0_la_DEPENDENCIES): Depend on
187         gdk.def.
188
189         * gdk/gdk.def
190         * gtk/gtk.def: Add some missing entries. Thanks to Kenichi SUTO.
191
192         * gtk-zip.sh.in (DEVZIP): Add bin/{gtk-query-immodules-2.0,
193         gtk-demo}.exe and share/gtk-2.0.
194
195         * gdk/win32/gdkwindow-win32.c (gdk_window_set_skip_taskbar_hint):
196         Implement by setting or clearing the WS_EX_TOOLWINDOW extended
197         window style.
198         (gdk_window_set_type_hint): Add all cases to the switch (not all
199         do anything, though). Handle GDK_WINDOW_TYPE_HINT_TOOLBAR by
200         calling gdk_window_set_skip_taskbar_hint(). This means that GTK
201         won't know that the skip_taskbar hint is on for the window, is
202         this bad?
203
204 Wed Jan  8 18:43:03 2003  Manish Singh  <yosh@gimp.org>
205
206         * gdk/x11/gdkdisplay-x11.c: #include <stdlib.h> for putenv,
207         <string.h> for strlen.
208
209         * gdk/x11/gdkscreen-x11.c: #include <stdlib.h> for getenv,
210         <string.h> for strrchr.
211
212         * tests/testgtk.c (create_saved_position): "x" and "y" properties
213         for widgets no longer exist, use gtk_window_move instead.
214
215         * test/testtextbuffer.c (check_get_set_text): cast strlen to
216         int for g_error.
217
218 2003-01-08  Matthias Clasen  <maclas@gmx.de>
219
220         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Fix display of
221         the selection in the presence of invisible segments.
222
223 2003-01-07  Matthias Clasen  <maclas@gmx.de>
224
225         * gtk/gtktextview.c (gtk_text_view_class_init): Bind C-/ and C-\
226         to "select all" and "unselect all".  (#102065)
227
228         * gtk/gtktextview.h (struct _GtkTextView): Add a comment that
229         the just_selected_element is unused.
230
231         * gtk/gtktextview.c (extend_selection): New helper function to
232         find the range that should be added to the selection. 
233         (selection_motion_event_handler): 
234         (gtk_text_view_start_selection_drag): 
235         (gtk_text_view_end_selection_drag): 
236         (selection_motion_event_handler): 
237         (selection_scan_timeout): Support select-by-words/lines.
238         (gtk_text_view_button_press_event): Start a selection drag on
239         double/triple clicks.  (#78499)
240
241 2003-01-06  Matthias Clasen  <maclas@gmx.de>
242
243         Implement a utility function proposed in #102534:
244         
245         * gtk/gtktextbtree.h: 
246         * gtk/gtktextbtree.c (_gtk_text_btree_select_range): New function.
247         (_gtk_text_btree_place_cursor): Now a simple wrapper around
248         _gtk_text_btree_select_range().   
249
250         * gtk/gtktextbuffer.h: 
251         * gtk/gtktextbuffer.c (gtk_text_buffer_select_range): New function.
252         (gtk_text_buffer_place_cursor): Now a simple wrapper around
253         gtk_text_buffer_select_range(). 
254
255 2003-01-05  Havoc Pennington  <hp@pobox.com>
256
257         * configure.in: fix a stray bracket that was breaking the build
258
259 2003-01-05  Tor Lillqvist  <tml@iki.fi>
260
261         * gtk-zip.sh.in: Use correct DLL and import library names, with
262         GTK_API_VERSION in name, not GTK_MAJOR_VERSION.GTK_MINOR_VERSION.
263         (DEVZIP): Add gdk-pixbuf-query-loaders.exe.
264
265         * configure.in: Improve check for dimm.h.
266
267         * configure.in: Set SOEXT to 'so' on Unix, 'dll' on Win32. Used in
268         gdk-pixbuf/Makefile.am.
269
270         * gdk-pixbuf/makefile.mingw.in
271         * gdk-pixbuf/pixops/makefile.mingw.in
272         * gdk/makefile.mingw.in
273         * gdk/win32/makefile.mingw.in
274         * gtk/makefile.mingw.in: Remove. Not maintained anyway.
275
276         * gdk-pixbuf/Makefile.am
277         * gdk-pixbuf/pixops/Makefile.am
278         * gdk/Makefile.am
279         * gdk/win32/Makefile.am
280         * gtk/Makefile.am
281         * configure.in: Remove makefile.mingw{,.in} from here, too.
282         
283         * README.win32: Updates. Don't mention the now removed
284         makefile.mingw files.
285
286         * gdk/gdk.def
287         * gtk/gtk.def: Add a couple of missing entries.
288
289         * gdk/gdkkeynames.c: Include <string.h> for strcmp() and memcpy().
290
291         * gdk/win32/gdkevents-win32.c: Move dimm.h header clash workaround
292         earlier.
293
294         * gdk/win32/rc/Makefile.am: Add hack to help
295         build/win32/lt-compile-resource decide which kind of libtool
296         object file to produce.
297
298 2003-01-05  Matthias Clasen  <maclas@gmx.de>
299
300         * gtk/gtktextview.c (gtk_text_view_move_cursor_internal): Make
301         C-Down step through the sequence of paragraph ends (old behaviour
302         included paragraph starts).  (#80340, patch by Narayana Pattipati)
303
304         * gtk/gtktextiter.c (_gtk_text_btree_get_iter_at_first_toggle):
305         Check for a tag toggle at the start iterator before calling
306         gtk_text_iter_forward_to_tag_toggle().  (#102090, patch by Daniel 
307         Elstner)
308
309 2003-01-04  Matthias Clasen  <maclas@gmx.de>
310
311         * gtk/gtkfilesel.h (struct _GtkFileSelection): Add /*< public >*/
312         and /*< private >*/ as appropriate.  (#97211)
313
314 2003-01-04  Tor Lillqvist  <tml@iki.fi>
315
316         * Makefile.am (EXTRA_DIST): Don't distribute gtk-zip.sh, but do
317         distribute gtk-zip.sh.in.
318
319         * gtk-zip.sh.in (DEVZIP): Add gdk-pixbuf-csource.exe and .1.
320
321 2003-01-03  Havoc Pennington  <hp@pobox.com>
322
323         * docs/Makefile.am (EXTRA_DIST): put it in EXTRA_DIST
324
325         * docs/text_widget_internals.txt: add a file documenting some of
326         the text widget internals
327
328 2003-01-02  Matthias Clasen  <maclas@gmx.de>
329
330         * gtk/gtkwindow.c (gtk_window_get_focus): Document that it may
331         return NULL.  (#102069)
332
333 2003-01-01  Matthias Clasen  <maclas@gmx.de>
334
335         * gtk/fnmatch.c (FNMATCH_TEST_CASES): #undef, since having
336         a main() in the library is obviously bad. 
337
338 2002-12-27  Matthias Clasen  <maclas@gmx.de>
339
340         * gtk/gtktextview.c (gtk_text_view_drag_data_received): Place the
341         cursor at drop point.  (#72384)
342         (gtk_text_view_size_allocate): Update the horizontal adjustment
343         value.  (#75694)
344
345 2002-12-25  Matthias Clasen  <maclas@gmx.de>
346
347         * gtk/gtktextdisplay.c (gtk_text_layout_draw): Fix highlighting of
348         selection wrt. to empty lines.  (#90435, #90582, #91619)
349
350         * gtk/gtktextview.c (gtk_text_view_preedit_changed_handler):
351         Keep the cursor on screen.  (#96929)
352
353 2002-12-24  Matthias Clasen  <maclas@gmx.de>
354
355         * gtk/gtktextbuffer.c (paste_from_buffer): 
356         (clipboard_text_received): Let the user action span the insertion
357         and the deletion of the old selection.  (#82844)
358
359 2002-12-23  Matthias Clasen  <maclas@gmx.de>
360
361         * gtk/gtktextiter.c (gtk_text_iter_backward_sentence_starts):
362         Don't call gtk_text_iter_backward_sentence_start() if
363         count is zero.  (#99115)
364
365         * gtk/gtktextview.c (gtk_text_view_move_cursor_internal): Call
366         move_cursor() even if the cursor hasn't moved, since it has the
367         side effect of canceling the selection.  (#81395, #98537, #98333)
368
369 2002-12-22  Matthias Clasen  <maclas@gmx.de>
370
371         * gtk/gtktextlayout.c (add_preedit_attrs): Don't add attributes
372         with empty ranges.  (fixes #101564 and #80637)
373
374 2002-12-21  Tor Lillqvist  <tml@iki.fi>
375
376         * gdk/win32/gdkwindow-win32.c (gdk_window_new): Move the code that
377         sets the window style and extended window style, and adjusts the
378         width and height to take the window decorations into account
379         earlier. The adjusted width and height used to be ignored. Remove
380         the local x, y, width and height variables, no need to further
381         confuse the code by having local copies. (Partial fix, I hope, for
382         #101588)
383
384         (gdk_window_move): When moving top-level windows, take title bar
385         and border width into account, offsetting the coordinates before
386         calling SetWindowPos().
387
388         (gdk_window_set_decorations, gdk_window_set_functions):
389         Reimplement, taking into account the peculiar semantics of
390         GDK_DECOR_ALL and GDK_FUNC_ALL. (#79036)
391
392         (gdk_window_get_decorations): Implement. (#98981)
393         
394         (gdk_window_set_type_hint): When setting
395         GDK_WINDOW_TYPE_HINT_MENU, call gdk_window_set_decorations().
396         (#79036)
397
398         * gdk/gdk.def: Add gdk_window_get_decorations. (#98981)
399
400 2002-12-21  Matthias Clasen  <maclas@gmx.de>
401
402         * gtk/gtktextview.c (gtk_text_view_set_background): New static
403         function to set the background of all windows.
404         (gtk_text_view_style_set): Use gtk_text_view_set_background().
405         (gtk_text_view_state_changed): New function; change background
406         according to state.  (#88126)
407
408 2002-12-21  Havoc Pennington  <hp@pobox.com>
409
410         * gtk/gtktextview.c (gtk_text_view_move_visually): fix the documentation
411