- 15 Jun, 1998 1 commit
-
-
Owen Taylor authored
Mon Jun 15 16:29:45 1998 Owen Taylor <otaylor@gtk.org> * gdk/gdktypes.h gdk/gdkprivate.h gtk/gtk*.h gtk/Makefile.am gtk/makenums.pl Removed out the G_ENUM/FLAGS mechanism in favor of a perl script that parses the standard headers (with occasional /*< nick=foo >*/ style overrides) and extracts the enumerations. gtk/maketypes.awk: Small improvments to the translation of names. (Avoid splitting gc into g_c_.) Mon Jun 15 16:25:44 1998 Owen Taylor <otaylor@gtk.org> * gtk/Makefile.am gtk/gtk.h gtk/gtkfontsel.[ch] gtk/testgtk.c: Damon Chaplin's <DAChaplin@email.msn.com> Font selection widget, and a simple example for testgtk. Mon Jun 15 15:58:34 1998 Owen Taylor <otaylor@gtk.org> * gtk/gtkentry.c: - Restored gtk_entry_adjust_scroll to static - Changed text positioning code so that we always display as large a portion of the text as possible. Mon Jun 15 15:42:12 1998 Owen Taylor <otaylor@gtk.org> * gtk/gtktext.c (gtk_text_finalize): Free internal structures of text widget. Also, unreference pixmaps when unrealizing. Sat Jun 13 19:14:39 1998 Owen Taylor <otaylor@gtk.org> * gdk/gdkinputcommon.h (gdk_input_device_new): Change 3.3.1 bug workaround to number keys starting at 1. Sat Jun 13 11:56:57 1998 Owen Taylor <otaylor@gtk.org> * docs/gtk_tut.sgml: Fixed urls for complete example source for scribble+widget-writing examples.
-
- 14 Jun, 1998 5 commits
-
-
Elliot Lee authored
-
Elliot Lee authored
-
Tim Janik authored
commit later this night (so gtk at least compiles for people).
-
Tim Janik authored
-
Elliot Lee authored
s/string_data/pointer_data/ as needed to match GtkArg
-
- 13 Jun, 1998 4 commits
-
-
Owen Taylor authored
Sat Jun 13 11:48:26 1998 Owen Taylor <otaylor@gtk.org> * gdk/gdkpixmap.c (gdk_pixmap_extract_color): Patch from Tom Bech <tomb@ii.uib.no>, to handle color specs of the form c #abcdef [ more keys ] properly.
-
Stefan Jeske authored
-
Stefan Jeske authored
-
Owen Taylor authored
Fri Jun 12 21:20:42 1998 Owen Taylor <otaylor@gtk.org> * gtk/gtkoptionmenu.c (gtk_option_menu_expose): Removed code for drawing the child in two places at once. Unfortunately, not only does it not work anymore (because reparenting has been fixed), but it also triggers reparent/expose loops in some cases. * gtk/gtkoptionmenu.c (gtk_option_menu_remove_contents): Removed an unecessary unrealize.
-
- 12 Jun, 1998 2 commits
-
-
Tim Janik authored
Fri Jun 12 09:24:47 1998 Tim Janik <timj@gtk.org> * gtk/gtkpacker.h: * gtk/gtkpacker.c: renamed enum GtkAnchor and GtkSide to GtkAnchorType and GtkSideType, to be consistent with the rest of Gtk's enum definitions. wrapped the enum definitions with the G_ eunm wrappers. spelled out the GTK_ANCHOR_* enum values, since single letters don't work out corectly as nick-names (left the old values as aliases). some signdness corrections (border-width, spacing), could stand more.
-
CDT 1998 Shawn T. Amundson authored
Thu Jun 11 14:38:33 CDT 1998 Shawn T. Amundson <amundson@gtk.org> * gtk/gtkpacker.c, gtk/gtkpacker.h, gtk/gtk.h, gtk/Makefile.am: Added gtkpacker * examples/packer/pack.c, examples/packer/Makefile: Added gtkpacker example
-
- 11 Jun, 1998 7 commits
-
-
Dick Porter authored
-
Owen Taylor authored
Thu Jun 11 13:09:00 1998 Owen Taylor <otaylor@gtk.org> * gtk/gtktext.c (remove_cache_line): Fixed broken list-removal code. * gtk/gtktext.c: (gtk_text_delete_(forward/backward)_cahr) Check bounds before deleting.
-
Owen Taylor authored
Wed Jun 10 23:21:33 1998 Owen Taylor <otaylor@gtk.org> * autogen.sh: Support ACLOCAL_FLAGS
-
Manish Singh authored
-Yosh
-
Owen Taylor authored
Wed Jun 10 20:54:37 1998 Owen Taylor <otaylor@gtk.org> * gtk-config.in: Added missing quotes.
-
Raja R Harinath authored
* acconfig.h (GTK_COMPILED_WITH_DEBUGGING): Renamed from G_COMPILED_WITH_DEBUGGING.
-
Raja R Harinath authored
* configure.in (fd_set): Explain check better. * acinclude.m4: New file. Contains `libtool.m4' from libtool-1.2, the version from which gtk+'s libtool forked. Needed for people who use post-1.2 alphas of libtool.
-
- 10 Jun, 1998 10 commits
-
-
Raja R Harinath authored
-
Owen Taylor authored
Wed Jun 10 19:36:35 1998 Owen Taylor <otaylor@gtk.org> * glib/* Moved to glib module * INSTALL Makefile.am acconfig.h autogen.sh configure.in gtk-config.in gtk.m4 gdk/Makefile.am gtk/Makefile.am configuration changes for the above: - Use AM_PATH_GLIB by default to find glib; also accept a --with-glib option for using an uninstalled glib. - Put --enable-debug information into config.h so that we rebuild when it changes. (was in glibconfig.h)
-
Lars Hamann authored
* gtk/gtkctree.c (draw_row): adapted clist pixmap clipping * gtk/gtknotebook.h (struct _GtkNotebookClass): * gtk/gtknotebook.c (gtk_real_notebook_switch_page): added missing argument (according to Joseph Coleman's bug report) * gtk/gtknotebook.c (gtk_notebook_set_focus_child): new class function to fix notebook focus handling
-
Owen Taylor authored
-
Tim Janik authored
Wed Jun 10 06:25:17 1998 Tim Janik <timj@gtk.org> * gdk/gdk.c (gdk_init): prevent gdk_init() from segfaulting when invoked with (NULL, NULL); (this worked sometime ago). * gtk/gtktypeutils.h: * gtk/gtktypeutils.c: enum and flags type creation can now be done through gtk_type_register_enum() and gtk_type_register_flags(), which allow to specify the enum value arrays directly. the NULL terminated value arrays can be retrived through gtk_type_enum_get_values() and gtk_type_flags_get_values(); (gtk_type_children_types): new function to query derived types.
-
Tim Janik authored
Wed Jun 10 06:25:17 1998 Tim Janik <timj@gtk.org> * gtk/gtktypeutils.h: * gtk/gtktypeutils.c: enum and flags type creation can now be done through gtk_type_register_enum() and gtk_type_register_flags(), which allow to specify the enum value arrays directly. the NULL terminated value arrays can be retrived through gtk_type_enum_get_values() and gtk_type_flags_get_values();
-
Raja R Harinath authored
-
Raja R Harinath authored
1998-06-09 Raja R Harinath <harinath@cs.umn.edu> * gtk/Makefile.am (gtk.defs,gtktypebuiltins*): Add $(srcdir) where needed (in the rule), and removed it where not needed (in the dependencies).
-
Raja R Harinath authored
1998-06-09 Raja R Harinath <harinath@cs.umn.edu> * gtk/Makefile.am (gtkmarshal.c gtkmarshal.h): Pass $srcdir in environment to genmarshal.pl. * gtk/genmarshal.pl: Look for `gtkmarshal.list' in $srcdir.
-
Tim Janik authored
-
- 09 Jun, 1998 8 commits
-
-
Owen Taylor authored
Tue Jun 9 18:44:57 1998 Owen Taylor <otaylor@gtk.org> * gtk/gtkobject.c: Removed g_object_pointer_hash, which was just g_direct_hash. Mon May 25 19:54:20 1998 Owen Taylor <otaylor@gtk.org> * configure.in: x_libs=, not $x_libs=. Enough said. (Case only hit for --disable-xshm) Mon May 25 12:08:14 1998 Owen Taylor <otaylor@gtk.org> * configure.in (LDFLAGS): Add to $CFLAGS and $LDFLAGS when testing for X libraries, don't replace them. Because the user might have specified the path to the X libraries themself before running configure. * examples/**.c: Changed all gpointer * to gpointer Sat May 23 21:54:05 1998 Owen Taylor <otaylor@gtk.org> * configure.in (LDFLAGS): Bomb out with a moderately helpful message if detection of X libraries fails. Sat May 23 18:57:06 1998 Owen Taylor <otaylor@gtk.org> [ Combination of: gtk-rrh-980412-0.patch (Raja R Harinath <harinath@cs.umn.edu>) gtk-jbuhler-980516-0 (Jeremy Buhler <jbuhler@cs.washington.edu>) ] * gdk/gdk.h gdk/gdkcc.c gdk/gdkfont.c gtk/gtkmain.c gtk/gtksignal.c gtk/gtktext.c: Fixups for warnings from adding const to type of GHashFunc, GCompareFunc * gtk/gtkcombo.c (gtk_combo_entry_key_press): Minor style/ ansi-warnings fixups. Tue Jun 9 17:47:33 1998 Owen Taylor <otaylor@gtk.org> * glib.h: Remove #error - HP/UX. Sat May 23 19:00:01 1998 Owen Taylor <otaylor@gtk.org> [ Combination of: gtk-rrh-980412-0.patch (Raja R Harinath <harinath@cs.umn.edu>) gtk-jbuhler-980516-0 (Jeremy Buhler <jbuhler@cs.washington.edu>) ] * glib.h ghash.c gstring.c gdataset.c gutils.c: - Added new typedef g_const_pointer; expunged all incorrect uses of 'const gpointer'. - Fixed up warnings that that created, - Changed GHashFunc and GCompareFunc to take g_const_pointer arguments. (Necessary, but will cause warnings in existing code until fixed) - Added other new const in harmless positions.
-
Federico Mena Quintero authored
1998-06-09 Federico Mena Quintero <federico@nuclecu.unam.mx> * gtk/gtkhandlebox.h (struct _GtkHandleBox): Removed the fleur_cursor field. Now the cursor is created/destroyed on demand by the routines that need it. * gtk/gtkhandlebox.c (gtk_handle_box_button_changed): (gtk_handle_box_motion): The fleur cursor is created and destroyed only when needed.
-
Elliot Lee authored
-
Elliot Lee authored
Just a convenience to parallel gtk-config
-
Manish Singh authored
-Yosh
-
Tim Janik authored
Tue Jun 9 09:57:09 1998 Tim Janik <timj@gtk.org> * gtk/gtktypeutils.h: * gtk/gtktypeutils.c: renamed the newly created gtk_enum_get_values and gtk_enum_set_values to gtk_type_enum_get_values and gtk_type_enum_set_values respectively, since they are actually type system features. * gtk/gtktypebuiltins_evals.c: oops, screwed the NULL termination with my last commit. ;)
-
Tim Janik authored
-
Tim Janik authored
Tue Jun 9 01:57:23 1998 Tim Janik <timj@gtk.org> * gtk/gtkselection.h: * gtk/gtkselection.c: new functions gtk_selection_data_copy and gtk_selection_data_free. * gtk/gtkwidget.c (gtk_widget_class_init): fixed gtk_signal_new() call for "selection_received", which was completely bogus. * other fixups to gtk_signal_new() calls all over the place. * gtk/gtktypebuiltins.h: types as variables (formerly macros). * gtk/gtktypebuiltins_vars.c: type variable implementations. * gtk/gtktypebuiltins_ids.c: array entries for builtin type declarations. * gtk/gtktypebuiltins_evals.c: enum value arrays. * gtk/gtk-boxed.defs: gtk and gdk structure definitions, used to build gtk.defs. * gtk/gtk.defs: generated file with scheme syntax for type definitions of gtk and gdk structures and enums. * gtk/gtktypeutils.h: * gtk/gtktypeutils.c: reworked type ids, so they are variables not macros anymore (this fixes binary incompatibility with new enum definitions). * gtk/gtkwidget.c (gtk_widget_real_key_press_event): proccess possible key bindings for this widget. * gtk/gtkwindow.c (gtk_window_key_press_event): chain parent class' handler. * gtk/gtkobject.h: * gtk/gtkobject.c: removed gtk_object_class_new_user_signal_no_recurse() again. new functions gtk_object_class_user_signal_new () and gtk_object_class_user_signal_newv (), to feature the GtkSignalRunType flag on the signal creation. Mon Jun 8 20:52:21 1998 Tim Janik <timj@gtk.org> * gtk/gtkcontainer.h: new signal GtkContainer::set_focus_child.
-
- 08 Jun, 1998 3 commits
-
-
Tim Janik authored
-
Tim Janik authored
Mon Jun 8 02:52:37 1998 Tim Janik <timj@gtk.org> * gdk/gdkprivate.h: * gdk/gdktypes.h: * gtk/gtkprivate.h: * gtk/gtkwidget.h: * gtk/gtkobject.h: wrapped enum definitions with glib macros. * reworked enum value array generation code. gtk.defs is a generated file now.
-
Elliot Lee authored
Start of marshalling centralization. Please check this over for sanity. I think the perl script and Makefile might need fixing up to allow builddir != srcdir I will start converting all the widgets to use this scheme if no problems arise.
-