1998-02-23 11:14:27 +00:00
|
|
|
|
1999-02-25 10:29:38 +00:00
|
|
|
Outstanding items:
|
|
|
|
|
1998-06-16 07:39:06 +00:00
|
|
|
* focus handling for GtkOptionMenu (needs the previous)
|
|
|
|
|
1998-06-30 20:31:00 +00:00
|
|
|
* implement gtk_default_draw_oval and other missing things in gtkstyle.c.
|
1998-02-27 16:31:06 +00:00
|
|
|
|
1998-02-23 11:14:27 +00:00
|
|
|
* enforce invariants on *_RESIZE* and *_REDRAW* flags.
|
1997-12-16 17:50:29 +00:00
|
|
|
|
1999-02-25 10:29:38 +00:00
|
|
|
* GtkToolTips: allocate GtkTooltipsData from memchunks
|
1998-02-23 11:14:27 +00:00
|
|
|
|
|
|
|
* Make all widget attributes configurable after the widget is created (timj).
|
1998-03-26 21:57:45 +00:00
|
|
|
|
1999-02-25 10:29:38 +00:00
|
|
|
* Radio buttons need to display CAN/HAS_DEFAULT correctly, if draw_inidicator
|
|
|
|
is TRUE.
|
1998-03-01 17:11:06 +00:00
|
|
|
|
1997-12-16 17:50:29 +00:00
|
|
|
* gdk_expose_compress: ala-Xt, this would really help for opaque moves and
|
|
|
|
such
|
|
|
|
|
1998-03-08 03:32:05 +00:00
|
|
|
* More dialogs: Print, GtkFontSelector, maybe others...
|
1998-02-23 11:14:27 +00:00
|
|
|
|
1998-03-01 17:11:06 +00:00
|
|
|
* make the gtk_main callbacks consistent in their add/remove behaviour.
|
|
|
|
|
1998-03-01 05:11:05 +00:00
|
|
|
* Check return values on all calls to XIC[Get/Set]Values
|
|
|
|
|
|
|
|
* Rewrite the interface to the i18n stuff so GTK widgets don't need to
|
|
|
|
retrieve X values, and so they don't have to know the value of the
|
|
|
|
XNxxx character constants.
|
|
|
|
|
1998-06-30 20:31:00 +00:00
|
|
|
* The "--geometry" option should be supported
|
1998-03-01 05:11:05 +00:00
|
|
|
|
|
|
|
- Having gdk_init() parse the geometry option. (putting it into
|
|
|
|
GDK means you can use XParseGeometry() without wrapping it)
|
|
|
|
|
|
|
|
- Add a call gdk_get_geometry() that retrieves the results
|
|
|
|
in a form like that returned by XParseGeometry()
|
|
|
|
|
|
|
|
- The application then can modify the results (as would gemvt)
|
|
|
|
then call a routine gtk_window_set_geometry() on whatever
|
|
|
|
it considers to be its main window.
|
|
|
|
|
|
|
|
- Then in some manner GtkWindow takes that into account when
|
|
|
|
setting its hints. (Probably it uses the size and position
|
|
|
|
as the current uposition and usize, and modulates that
|
|
|
|
be the equivalents of the X flags
|
|
|
|
|
|
|
|
XValue, YValue, WidthValue, HeightValue, XNegative, or YNegative
|
|
|
|
|
|
|
|
( You'd have to extend gdk_window_set_hints to accept the
|
|
|
|
window gravity option to get it right. )
|
|
|
|
|
1999-02-25 10:29:38 +00:00
|
|
|
* Allow moving the separator for paned widgets by dragging
|
1998-04-10 04:32:15 +00:00
|
|
|
it directly instead of using the handle.
|
|
|
|
|
|
|
|
* Check into XAddConnectionWatch - is this needed for XIM?
|
|
|
|
|
|
|
|
* Places where a _full variant is needed:
|
|
|
|
|
|
|
|
gtk_init_add
|
|
|
|
gtk_menu_popup
|
|
|
|
gtk_toolbar_prepend_element
|
|
|
|
gtk_toolbar_insert_element
|
|
|
|
|
|
|
|
* Try to rationally deal with someone else deleting one of our
|
|
|
|
windows??? This would mean keeping track of our window heirarchy
|
|
|
|
ourselves, for one thing, and will never be safe, because of
|
|
|
|
race conditions.
|
|
|
|
|
1998-04-13 00:20:17 +00:00
|
|
|
* Should all the default handlers really return FALSE? This can
|
|
|
|
cause confusing presses to be sent to containers that actually
|
|
|
|
want to get events on themselves.
|
|
|
|
|
1998-04-10 04:32:15 +00:00
|
|
|
Text/Edit widget:
|
1998-03-01 08:47:36 +00:00
|
|
|
|
|
|
|
Bugs:
|
|
|
|
|
1998-04-10 04:32:15 +00:00
|
|
|
- Really big font (150 pt), plus lots of editing caused segfault
|
1998-03-01 08:47:36 +00:00
|
|
|
|
|
|
|
Improvements:
|
|
|
|
|
|
|
|
- Unify the key binding support in some fashion between the
|
1999-02-25 10:29:38 +00:00
|
|
|
Entry and Text widget widgets, use GtkBindings for this.
|
1998-03-01 08:47:36 +00:00
|
|
|
|
1998-03-10 03:17:02 +00:00
|
|
|
- Figure out a way not to recompute the geometry on insertions/deletions
|
|
|
|
which are large, but not a significant fraction of the
|
|
|
|
entire text. (e.g., compute the changes as when the widget
|
|
|
|
is not frozen, but without the actual scrolling)
|
1998-03-01 08:47:36 +00:00
|
|
|
|
|
|
|
- Prune the line start cache. But since it is only 68 bytes
|
|
|
|
per line, and it is a lot faster when lines are in the cache,
|
|
|
|
it may be better not to, at least for now.
|
|
|
|
|
|
|
|
- Show the non-editable state by changing colors. (Use the
|
|
|
|
style entries for insensitive?)
|
|
|
|
|
|
|
|
- Multibyte support for the Text widget.
|
|
|
|
|
|
|
|
- Unicode support to do the multi-byte right.
|
|
|
|
|
|
|
|
- Support an .inputrc. (The readline one doesn't really work,
|
|
|
|
unless it is extended because it can't represent X keysyms,
|
|
|
|
just terminal type input)
|
|
|
|
|
|
|
|
- A vi mode
|
|
|
|
|
|
|
|
- Word wrap, instead of line folding. (Should the continuation
|
|
|
|
characters be shown?)
|
|
|
|
|
|
|
|
- Horizontal scrolling
|
1998-03-05 06:32:42 +00:00
|
|
|
|
|
|
|
- Disable pasting compound text
|
|
|
|
|
1998-03-08 21:47:14 +00:00
|
|
|
- When showing background pixmap (not editable) actually set
|
|
|
|
the background pixmap as the windows bg pixmap, to improve
|
|
|
|
appearance on exposes. But this would require using another
|
|
|
|
window to get the origins.
|
|
|
|
|
1998-03-23 06:48:22 +00:00
|
|
|
- In word wrap mode, break:
|
|
|
|
|
1998-03-27 05:17:11 +00:00
|
|
|
aaaaaaaaaaa bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
|
|
|
|
|
|
|
|
as:
|
1998-04-07 23:59:25 +00:00
|
|
|
| Maximum column
|
1998-03-27 05:17:11 +00:00
|
|
|
aaaaaaaaaaa bbbbbbbbbbb|
|
|
|
|
bbbbbbbbbbbbbbbbbbbbbbb|
|
|
|
|
bbbbbbbbb |
|
|
|
|
|
|
|
|
Instead of:
|
1998-04-07 23:59:25 +00:00
|
|
|
|
|
1998-03-27 05:17:11 +00:00
|
|
|
aaaaaaaaaaa |
|
|
|
|
bbbbbbbbbbbbbbbbbbbbbbb|
|
|
|
|
bbbbbbbbbbbbbbbbbbbb |
|
|
|
|
|
|
|
|
- Blinking cursor
|
|
|
|
|
|
|
|
- API's : gtk_text_clear, gtk_text_delete_lines (gint start, gint end),
|
|
|
|
gtk_text_append/prepend, gtk_text_insert_at (gint row, gint column),
|
|
|
|
some function to get the row/column from the x/y-coordinates of a
|
|
|
|
mouse click, some function to get the word/line under the mouse pointer
|
|
|
|
[ From: Stefan Jeske <jeske@braunschweig.netsurf.de> ]
|
1998-03-23 06:48:22 +00:00
|
|
|
|
1998-04-07 23:59:25 +00:00
|
|
|
- "changed" emitted when doing deletes on empty Text widget.
|
1998-08-25 00:06:38 +00:00
|
|
|
|
1998-09-12 14:41:04 +00:00
|
|
|
- Delete IC in editable->unrealize, not editable->finalize?
|
1998-09-27 18:32:00 +00:00
|
|
|
|
1998-11-06 22:05:02 +00:00
|
|
|
Themes
|
|
|
|
======
|
|
|
|
|
|
|
|
- When a scale gets shown/hidden only queue a redraw on the
|
|
|
|
non-window portion, not the whole area.
|
|
|
|
|
|
|
|
- In various places, to avoid shaping windows excessively,
|
|
|
|
we set parent relative backgrounds. This is an ugly
|
|
|
|
hack and needs a better solution. Plus, I don't think
|
|
|
|
these parent-relative backgrounds always persist to
|
|
|
|
when they are actually needed.
|
|
|
|
|
|
|
|
Such calls exist in: GtkButton, GtkHandeBox, GtkItem,
|
|
|
|
GtkListItem, GtkMenu, GtkMenuItem, GtkMisc,
|
|
|
|
GtkNoteBook, GtkOptionMenu, GtkPaned, GtkPreview,
|
|
|
|
GtkSpinButton and GtkTreeItem.
|
|
|
|
|
|
|
|
- For menus and for GtkWindow's, the realize() function
|
|
|
|
calls paint(), so that background pixmaps can be set
|
|
|
|
ahead of time, and prevent flashing when the window is
|
|
|
|
shown. This is an ugly hack and needs a better solution.
|
|
|
|
|
|
|
|
=======
|
|
|
|
|
1998-09-27 18:32:00 +00:00
|
|
|
Calendar Widget:
|
|
|
|
|
1998-11-06 22:05:02 +00:00
|
|
|
- The widget should be nicely resizeable vertical too.
|
1998-09-27 18:32:00 +00:00
|
|
|
|
|
|
|
- CALENDAR_MARGIN should be removed, uses INNER_BORDER and
|
|
|
|
style->class->[xy]thickness insted.
|
|
|
|
|
|
|
|
- Flag to choose between using standard three letter abbreviated
|
|
|
|
weekday name or just the first character from it. It looks like
|
|
|
|
that is what most other calendar-widgets do.
|
|
|
|
|
|
|
|
- Arrows should resize with the header-font.
|
|
|
|
|
|
|
|
- The keyboard support has to be finished.
|
|
|
|
|
Added a modular client-message-filter mechanism, that is used for the DND
Sun Oct 18 18:16:39 1998 Owen Taylor <otaylor@gtk.org>
* gdk/gdk.c gdkprivate.h: Added a modular client-message-filter
mechanism, that is used for the DND messages.
Removed all the old DND code.
* gdk/gdkcolormap.c gdk/gdkcolormap.h: Add a function to
get the visual of a given colormap.
* gtk/gtkcolorsel.c: Conversion to new DND, drag
a color-swatch.
* gdk/gdk.h gdk/gdkdnd.c: The low-level
X oriented portions of drag and drop protocols.
Sending and receiving client messages, and navigating
window trees.
* gdk/gdkimage.c: added a gdk_flush() when destroying
SHM images to hopefully make it more likely that
X will gracefully handle the segment being destroyed.
* gdk/gdkprivate.h gtk/gtkdebug.h: Add new
DND debugging flags.
* gtk/gtkeditable.[ch]: Updates for the selection handling
changes.
* gtk/gtkselection.[ch]: Added GtkTargetList, a
refcounted data structure for keeping track of lists
of GdkAtom + information. Removed selection_handler_add
in favor of a "drag_data_get" signal.
* gtk/gtkdnd.[ch] gtk/gtk.h: New files - highlevel (event loop
dependent) parts of the DND protocols, display of drag icons,
drag-under highlighting, and the "default handlers".
* gtk/gtkinvisible.[ch]: New widget - InputOnly offscreen
windows that are used for reliable pointer grabs and
selection handling in the DND code.
* gtk/testdnd.c: New test program for new DND. (Old
DND tests in testgtk still need to be converted.)
* gtk/testselection.c: Use the new selection API.
* docs/dnd_internals: Start at describing how
all the new code works inside.
* docs/Changes-1.2.txt: New file describing source-incompatible
changes in GTK+-1.2.
Sat Oct 17 22:50:34 1998 Owen Taylor <otaylor@gtk.org>
* gdk/gdkwindow.c (gdk_window_remove_filter): Free
the right list node.
* gdk/gdkwindow.c (gdk_window_init): Add gdk_root_parent
to the XID table so we can receive events on it.
Wed Oct 14 12:57:40 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c gdk/gdk.h (gdk_event_get_time): New function
to get the timestamp from a generic event.
Fri Oct 9 13:16:04 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_add_events): Added function
that safely adds additional events to a widget's event
mask, even if the widget has previously been realized.
(We can do this, but not remove events from the event
mask).
Fri Oct 2 17:35:35 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_property_get): Allow type == 0,
for AnyPropertyType.
Fri Oct 2 10:32:21 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Add client-local
hashing.
Thu Sep 24 20:33:54 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_event_send_clientmessage_toall): serial
isn't a timestamp.
Thu Sep 17 14:23:03 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_event_translate): Removed printing
of unknown window lookup warnings. (Made it
a GDK_NOTE) - they happen in many circumstances.
1998-10-18 22:51:24 +00:00
|
|
|
DND
|
|
|
|
===
|
|
|
|
|
|
|
|
- Use a cursor instead of an ICON when over Motif windows,
|
|
|
|
to get rid of the current junk that Motif leaves because
|
|
|
|
of it's XCopyArea stupidity for doing highlighting.
|
|
|
|
|
|
|
|
- Add a GTK_DRAG_VERIFY target flag and a "drag_data_verify"
|
|
|
|
signal so that apps can easily check if a, say,
|
|
|
|
text/uri-list URL looks OK during the drop.
|
|
|
|
|
|
|
|
- Check more for memory leaks.
|
|
|
|
|
|
|
|
- Drag and drop for Entry and Text widgets.
|
|
|
|
|
|
|
|
- Send synthetic motion events on structure changes so
|
|
|
|
drag_enter/leave get sent properly. (See the popup
|
|
|
|
in testdnd)
|