summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Released GTK+ 1.1.1GTK_1_1_1PDT 1998 Shawn T. Amundson1998-08-058-1/+29
| | | | | | Tue Aug 4 22:02:49 PDT 1998 Shawn T. Amundson <amundson@gtk.org> * Released GTK+ 1.1.1
* changed to return a gboolean (gtk_ctree_insert_gnode): new function forLars Hamann1998-08-0510-18/+213
| | | | | | | | | | | | | Wed Aug 5 02:57:20 1998 Lars Hamann <lars@gtk.org> * gtk/gtkctree.h: * gtk/gtkctree.c: (gtk_ctree_find): changed to return a gboolean (gtk_ctree_insert_gnode): new function for recursive insertion of a GNode tree. (gtk_ctree_real_select_recursive): fix for extended selection (gtk_ctree_sort_recursive): in case node == NULL, sort root nodes too. (gtk_ctree_set_node_info) (set_node_info): few fixes for expanded flag
* version bump to 1.1.1, binary age 0, interface age 0. GLib version 1.1.1Tim Janik1998-08-0412-14/+73
| | | | | | | | | | Tue Aug 4 16:18:26 1998 Tim Janik <timj@gtk.org> * configure.in: version bump to 1.1.1, binary age 0, interface age 0. GLib version 1.1.1 is now required at minimum. * docs/Makefile.am: added gtk_tut_fr.sgml to EXTRA_DIST (french version of the Gtk+ tutorial, contributed by Eric Jacoboni <jaco@dotcom.fr>.
* Added missing elsemerge-to-themes-2-1Owen Taylor1998-08-048-13/+14
|
* Undraw the cursor before (possibly) deleting the cursor's text property.Owen Taylor1998-08-048-12/+143
| | | | | | | | | | | | | | Mon Aug 3 19:24:48 1998 Owen Taylor <otaylor@redhat.com> * gtk/gtktext.c (gtk_text_forward_delete): Undraw the cursor before (possibly) deleting the cursor's text property. * gtk/gtktext.c (correct_cache_delete): More attempts to clean the line-start cache up after inserting a property. Among other things, make sure to fix up text->current_line, since it is used to refetch the changed lines.
* Empty rows/columns of the table should not have been marked as being ableOwen Taylor1998-08-049-8/+78
| | | | | | | | Tue Aug 4 10:59:19 1998 Owen Taylor <otaylor@redhat.com> * gtk/gtktable.[ch]: Empty rows/columns of the table should not have been marked as being able to shrink. (Fixes prorlem with shrinking scrollbarless GIMP canvases)
* Changed a %postun to a %preun, should get rid of errors when uninstallingMichael Fulbright1998-08-041-1/+5
| | | | Dr Mike <msf@redhat.com>
* New public function to find a row by its data pointer using a customFederico Mena Quintero1998-08-039-0/+67
| | | | | | | | 1998-08-03 Federico Mena Quintero <federico@nuclecu.unam.mx> * gtk/gtkctree.c (gtk_ctree_find_by_row_data_custom): New public function to find a row by its data pointer using a custom comparison function.
* Mon, 3 Aug 1998 20:08:46 +0200 [Vincent]Vincent Renardias1998-08-032-0/+17200
| | | | * French version of the Gtk+ tutorial contributed by Eric Jacoboni <jaco@dotcom.fr>
* don't you hate it when you apply the wrong patch and discover it onlyGeorge Lebl1998-08-031-1/+3
| | | | | after applying it and committing -George
* draw the buttons during a "draw" as well, this fixes a bug when the wholeGeorge Lebl1998-08-038-0/+48
| | | | | | | | Sun Aug 02 22:58:00 1998 George Lebl <jirka@5z.com> * gtk/gtkclist.c: draw the buttons during a "draw" as well, this fixes a bug when the whole widget is made non-sesitive the buttons weren't redrawn
* reset drag_pos after abort removed a few unneeded lines fixed compilerLars Hamann1998-08-029-31/+51
| | | | | | | | Mon Aug 3 00:04:09 1998 Lars Hamann <lars@gtk.org> * gtk/gtkclist.c (abort_column_resize): reset drag_pos after abort * gtk/gtkclist.c (gtk_clist_key_press): removed a few unneeded lines * gtk/gtkcombo.c (gtk_combo_list_key_press): fixed compiler warning
* Change window_private->parent pointer when reparenting.Owen Taylor1998-08-029-0/+46
| | | | | | | Sun Aug 2 03:08:07 1998 Owen Taylor <otaylor@gtk.org> * gdk/gdkwindow.c (gdk_window_reparent): Change window_private->parent pointer when reparenting.
* Made some config changes to make it work better both as a standaloneRaph Levien1998-08-028-2/+52
| | | | | module (i.e. with Gtk 1.0) and as a module under Gtk 1.1+, i.e. harmonized with the separate GdkRgb release.
* Few fixes for column resize. Store resize column in clist->drag_pos.Lars Hamann1998-07-3117-913/+3140
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org> * gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion) (gtk_clist_button_release) (new_column_width): Few fixes for column resize. Store resize column in clist->drag_pos. Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org> * gtk/gtkctree.h * gtk/gtkctree.c * gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node to GtkCTreeNode *node. * gtk/gtklist.h : added extended selection mode and auto scrolling. (struct _GtkList): removed unneeded variables timer, button, selection_start_pos, selection_end_pos, scroll_direction, have_grab. Added new variables undo_selection, undo_unselection, last_focus_child, undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state, drag_selection, add_mode. New functions : (gtk_list_extend_selection), (gtk_list_start_selection), (gtk_list_end_selection), (gtk_list_select_all), (gtk_list_unselect_all), (gtk_list_scroll_horizontal), (gtk_list_scroll_vertical), (gtk_list_toggle_add_mode), (gtk_list_toggle_focus_row), (gtk_list_toggle_row), (gtk_list_undo_selection), (gtk_list_end_drag_selection) * gtk/gtklist.c : (gtk_list_enter_notify): removed, because auto scrolling now works with gtk_list_motion_notify New functions, needed for auto scrolling : (gtk_list_motion_notify) (gtk_list_move_focus_child) New functions for extended selection support : (gtk_list_set_anchor), (gtk_list_fake_unselect_all), (gtk_list_fake_toggle_row), (gtk_list_update_extended_selection), (gtk_list_focus_lost) (gtk_list_set_focus_child): modified gtk_container_set_focus_child function to support auto scrolling, and avoid out-of-sync errors in case auf GTK_SELECTION_BROWSE (gtk_list_focus): modified gtk_container_focus function to avoid out off sync errors in case auf GTK_SELECTION_EXTENDED * gtk/gtklistitem.h * gtk/gtklistitem.c : New signal functions for key binding support : (toggle_focus_row), (select_all), (list_item), (unselect_all) (list_item), (undo_selection), (start_selection), (end_selection) (extend_selection), (scroll_horizontal), (scroll_vertical), (toggle_add_mode) (gtk_list_item_realize): added GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK (gtk_list_item_draw_focus): modify gc if parent has add_mode set. * gtk/gtkcombo.c : (gtk_combo_popup_button_press): grab pointer for combo->list (gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB (gtk_combo_list_key_press): take care of which child HAS_GRAB (gtk_comb_init): don't connect combo->button with button_release_event
* file pixmap_theme_main.c was initially added on branch themes-2.Carsten Haitzler1998-07-310-0/+0
|
* file pixmap_theme_draw.c was initially added on branch themes-2.Carsten Haitzler1998-07-310-0/+0
|
* file pixmap_theme.h was initially added on branch themes-2.Carsten Haitzler1998-07-310-0/+0
|
* file b_full.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file b3.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file b2.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file b1.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file b0.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _rulev.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _ruleh.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _prog_vgrad.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _option2.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _option1.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _focus.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _check2.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _check1.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _box_out_dgrad6.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _box_out_dgrad5.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _box_out_dgrad4.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _box_out_dgrad3.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _box_out_dgrad2.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _box_out_dgrad1.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _arrow_u3.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _arrow_u2.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _arrow_u1.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _arrow_r3.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _arrow_r2.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _arrow_r1.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _arrow_l3.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _arrow_l2.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _arrow_l1.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _arrow_d3.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _arrow_d2.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file _arrow_d1.png was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|
* file win95_theme_main.c was initially added on branch themes-2.Carsten Haitzler1998-07-300-0/+0
|