]> Pileus Git - ~andy/gtk/blob - TODO
new fundtion to return the widget that the menu is attached to.
[~andy/gtk] / TODO
1
2 TODO BEFORE GTK 1.0
3 -------------------
4
5 BUGS
6 ----
7  * Fix focus activation of list items. Does list item activation have to be
8    completely reorganized?
9
10  * Lists should scroll to center the recently selected item if it isn't
11    visible.
12
13  * Notebook: there are a few cosmetic problems left
14
15  * Vertical scrollbar: the expose event looks hosed and is causing 
16    quite a bit of flickering
17
18  * Make sure a widget added to a list is a list item and a widget added
19    to a menu is a menu item, etc. GTK_BASIC was a first attempt at this,
20    but it fails with subsequent container_add()s. maybe have another
21    GTK_PARENT_BASIC (similar to GTK_PARENT_SENSITIVE) flag, to prevent
22    tree iterations upon every container addition.
23  
24  * Make gtk_menu_item_set_submenu() and gtk_option_menu_set_menu() fit into
25    the normal tree manner (e.g. make propagation possible).
26  
27  * GtkOptionMenu needs to reference its curent GtkMenuItem.
28  
29  * GtkMenu needs to properly unref() accelerator tables upon destroy.
30  
31  * Display of GtkToggleButton is messed up if GtkContainer::container_width
32    is greate than 0. GtkCheckButton and GtkRadioButton are only messed up
33    if draw_indicator is FALSE.
34
35  * Using gtk_container_add() on an option menu to add a label works, but then
36    gtk_option_menu_button_press() segfaults. This is supposed to fail while
37    adding due to a g_return_if_fail (GTK_IS_MENU_ITEM (child));
38  
39  * the new fileselection dialog sometimes segfaults after subsequent
40    selections from the option menu, because it destroyes the menu
41    that is connected to the optionmenu, and the option menu only handles
42    the deactivation, but not the destruction of it's submenu.
43    this is not a bug in the fileselection code but in the optionmenu
44    code.
45    
46
47 NEW FEATURES
48 ------------
49  * gdk_expose_compress: ala-Xt, this would really help for opaque moves and
50    such
51
52 WIDGETS
53 -------
54  * Column-list (Jay Painter)
55  * Text widget (needs to be finished)
56  * Entry should have a password mode (and it should show stars
57    for user feedback)
58
59 DND
60 ---
61   It seems to be having problems again.  The way DND data types are set in
62   GtkWidget really needs to be fixed.  This is pretty high on my priority
63   list, and I'll get to it as soon as the column list widget is done.  The
64   correct way dnd data needs to be set is to have a additional keyed data
65   type with GtkWidget, which is applied to the widget's window upon realize.
66   There also needs to be a way to set dnd-data on widget windows which are
67   not the main window (for widgets that create more than one window).
68     -Jay Painter
69   DnD seems to work for me, but yes, there needs to be some sort of
70   gtk_widget layer that makes it easier... Also, adding support for drop
71   zones might be nice.
72     -- Elliot
73   This one is reproducabel for me:
74   testgtk --sync
75   popup colorselection
76   drag/drop works
77   start up preview color
78   drag works but not dropping
79   end preview color
80   drag/drop works
81   start up prewiev color
82   segfault in malloc
83   -timj
84
85 OTHER
86 -----
87  * Documentation
88
89
90 PLANNED FOR GTK AFTER 1.0
91 -------------------------
92 (add your thoughts here)
93
94 ============================================================================
95 Other stuff todo, as of yet not categorized into the above:
96
97 -Widget redrawing when the window resizes sometimes messes up.
98
99 -More dialogs? Print, font, etc?
100
101 -Multiple document interface (MDI)?
102
103 -Support another widget style? Should be possible using GtkStyle's, but
104  there may be some work needed to remove any style dependencies in widget
105  code. Maybe GtkStyle's should have 'draw_push_button', 'draw_check_button',
106  etc, functions to draw the various widgets.
107
108 -Make all widget attributes configurable after the widget is created.