1998-02-25 22:03:10 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
1998-03-11 06:11:52 +00:00
|
|
|
* GtkSpinButton widget for GTK+
|
|
|
|
* Copyright (C) 1998 Lars Hamann and Stefan Jeske
|
|
|
|
*
|
1998-02-25 22:03:10 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
1998-04-13 02:02:47 +00:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
1998-02-25 22:03:10 +00:00
|
|
|
*/
|
|
|
|
|
1999-02-24 07:37:18 +00:00
|
|
|
/*
|
|
|
|
* Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
|
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
|
|
|
*/
|
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <math.h>
|
1998-03-11 06:11:52 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <locale.h>
|
1998-02-25 22:03:10 +00:00
|
|
|
#include "gdk/gdkkeysyms.h"
|
|
|
|
#include "gtkspinbutton.h"
|
|
|
|
#include "gtkmain.h"
|
|
|
|
#include "gtksignal.h"
|
|
|
|
|
|
|
|
|
1998-03-11 06:11:52 +00:00
|
|
|
#define MIN_SPIN_BUTTON_WIDTH 30
|
|
|
|
#define ARROW_SIZE 11
|
|
|
|
#define SPIN_BUTTON_INITIAL_TIMER_DELAY 200
|
|
|
|
#define SPIN_BUTTON_TIMER_DELAY 20
|
|
|
|
#define MAX_TEXT_LENGTH 256
|
|
|
|
#define MAX_TIMER_CALLS 5
|
1998-06-19 17:33:51 +00:00
|
|
|
#define EPSILON 1e-5
|
1998-02-25 22:03:10 +00:00
|
|
|
|
1998-09-26 03:12:03 +00:00
|
|
|
enum {
|
|
|
|
ARG_0,
|
|
|
|
ARG_ADJUSTMENT,
|
|
|
|
ARG_CLIMB_RATE,
|
|
|
|
ARG_DIGITS,
|
|
|
|
ARG_SNAP_TO_TICKS,
|
|
|
|
ARG_NUMERIC,
|
|
|
|
ARG_WRAP,
|
|
|
|
ARG_UPDATE_POLICY,
|
|
|
|
ARG_SHADOW_TYPE,
|
|
|
|
ARG_VALUE
|
|
|
|
};
|
|
|
|
|
1999-02-28 16:04:47 +00:00
|
|
|
/* Signals */
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
INPUT,
|
|
|
|
OUTPUT,
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
1998-02-25 22:03:10 +00:00
|
|
|
|
|
|
|
static void gtk_spin_button_class_init (GtkSpinButtonClass *klass);
|
|
|
|
static void gtk_spin_button_init (GtkSpinButton *spin_button);
|
documented necessary changes for 1.4 transition.
Fri May 12 17:13:32 2000 Tim Janik <timj@gtk.org>
* docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
* gtk/gtktext.c: made the adjustments no-construct args, simply
provide default adjustments.
(gtk_text_destroy): release adjustments.
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
adjustment argument non-construct.
* gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
instead of in finalize.
(gtk_progress_get_text_from_value):
(gtk_progress_get_current_text):
(gtk_progress_set_value):
(gtk_progress_get_percentage_from_value):
(gtk_progress_get_current_percentage):
(gtk_progress_set_percentage):
(gtk_progress_configure): ensure an adjustment is present.
Thu May 11 01:24:08 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcolorsel.[hc]:
* gtk/gtkcolorseldialog.[hc]:
* gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
their parent implementation, use bit fields for boolean values, don't
create unused widgets, usage of glib types, braces go on their own
lines, function argument alignment, #include directives etc. etc. etc..
* gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
Wed May 10 23:29:52 2000 Tim Janik <timj@gtk.org>
* gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
* gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
of NULL.
* gtk/gtkcombo.c (gtk_combo_item_destroy): don#t keep references
to freed data.
(gtk_combo_destroy): don't keep a pointer to a destroyed window.
* gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
to NULL when the toplevel is getting destroyed.
(gtk_menu_set_tearoff_state): same here for the tearoff_window.
(gtk_menu_destroy):
(gtk_menu_init): store the information of whether we have to
readd the initial child ref_count during destruction in a new
GtkMenu field needs_destruction_ref_count.
* gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
here, those reading: learn from my mistake! ;)
in order for set_?adjustment to support a default adjustemnt if
invoked with an adjustment pointer of NULL, the code read (pseudo):
if (v->adjustment) unref (v->adjustment);
if (!adjustment) adjustment = adjustment_new ();
if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
now imagine the first unref to actually free the old adjustment and
adjustment_new() creating a new adjustment from the very same memory
portion. here, the latter comparision will unintendedly fail, and
all hell breaks loose.
(gtk_viewport_set_hadjustment):
(gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
after unreferencing it.
* gtk/gtkcontainer.[hc]: removed toplevel registration
functions: gtk_container_register_toplevel(),
gtk_container_unregister_toplevel() and
gtk_container_get_toplevels() which had wrong semantics
anyways: it didn't reference and copy the list.
* gtk/gtkwindow.c: we take over the container toplevel registration
bussiness now. windows are registered across multiple destructions,
untill they are finalized. the initial implicit reference count
users are holding on windows is removed with the first destruction
though.
(gtk_window_init): ref & sink and set has_user_ref_count, got
rid of gtk_container_register_toplevel() call. add window to
toplevel_list.
(gtk_window_destroy): unref the window if has_user_ref_count
is still set, got rid of call to
gtk_container_unregister_toplevel().
(gtk_window_finalize): remove window from toplevel list.
(gtk_window_list_toplevels): new function to return a newly
created list with referenced toplevels.
(gtk_window_read_rcfiles): use gtk_window_list_toplevels().
* gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
adjustment a non-construct arg.
* gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
* gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkrange.c: added some realized checks.
(gtk_range_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize. remove timer.
(gtk_range_get_adjustment): demand create adjustment.
* gtk/gtkviewport.c: made h/v adjustment non-construct args.
we simply create them on demand now and get rid of them in
the destroy handler.
(gtk_viewport_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize.
(gtk_viewport_get_hadjustment):
(gtk_viewport_get_vadjustment):
(gtk_viewport_size_allocate): demand create h/v adjustment
if required.
* gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
gtk_widget_real_destroy () functionality.
(gtk_widget_real_destroy): reinitialize with a new style, instead
of setting widget->style to NULL.
Fri May 5 13:02:09 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcalendar.c:
* gtk/gtkbutton.c: ported _get_type() implementation over to
GType, either to preserve memchunks allocation facilities,
or because Gtk+ 1.0 GtkTypeInfo was still being used.
* gtk/gtkobject.[hc]: derive from GObject. ported various functions
over. prepare for ::destroy to be emitted multiple times.
removed reference tracer magic. chain into GObjectClass.shutdown()
to emit ::destroy signal.
* gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
fundamental.
* gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
cludge.
* gtk/gtksocket.c:
* gtk/gtkplug.c:
* gtk/gtklayout.c:
* gtk/gtklabel.c:
* gtk/gtkargcollector.c:
* gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
not being a fundamental anymore, and to work with the new
type system (nuked fundamental type varargs clutter).
* gtk/*.c: install finalize handlers in the GObjectClass
part of the class structure.
changed direct GTK_OBJECT()->klass accesses to
GTK_*_GET_CLASS().
changed direct object_class->type accesses to GTK_CLASS_TYPE().
* gtktypeutils.[hc]: use the reserved fundamental ids provided by
GType. made most of the GTK_*() type macros and Gtk* typedefs
simple wrappers around macros and types provided by GType.
most notably, a significant portion of the old API vanished:
GTK_TYPE_MAKE(),
GTK_TYPE_SEQNO(),
GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
GTK_TYPE_ARGS,
GTK_TYPE_CALLBACK,
GTK_TYPE_C_CALLBACK,
GTK_TYPE_FOREIGN,
GtkTypeQuery,
gtk_type_query(),
gtk_type_set_varargs_type(),
gtk_type_get_varargs_type(),
gtk_type_check_object_cast(),
gtk_type_check_class_cast(),
gtk_type_describe_tree(),
gtk_type_describe_heritage(),
gtk_type_free(),
gtk_type_children_types(),
gtk_type_set_chunk_alloc(),
gtk_type_register_enum(),
gtk_type_register_flags(),
gtk_type_parent_class().
replacements, where available are described in ../docs/Changes-1.4.txt.
implemented compatibility functions for the remaining API.
* configure.in: depend on glib 1.3.1, use gobject module.
2000-05-12 15:25:50 +00:00
|
|
|
static void gtk_spin_button_finalize (GObject *object);
|
1998-09-26 03:12:03 +00:00
|
|
|
static void gtk_spin_button_set_arg (GtkObject *object,
|
|
|
|
GtkArg *arg,
|
|
|
|
guint arg_id);
|
|
|
|
static void gtk_spin_button_get_arg (GtkObject *object,
|
|
|
|
GtkArg *arg,
|
|
|
|
guint arg_id);
|
1998-02-25 22:03:10 +00:00
|
|
|
static void gtk_spin_button_map (GtkWidget *widget);
|
|
|
|
static void gtk_spin_button_unmap (GtkWidget *widget);
|
|
|
|
static void gtk_spin_button_realize (GtkWidget *widget);
|
|
|
|
static void gtk_spin_button_unrealize (GtkWidget *widget);
|
|
|
|
static void gtk_spin_button_size_request (GtkWidget *widget,
|
|
|
|
GtkRequisition *requisition);
|
|
|
|
static void gtk_spin_button_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation);
|
|
|
|
static void gtk_spin_button_paint (GtkWidget *widget,
|
|
|
|
GdkRectangle *area);
|
|
|
|
static void gtk_spin_button_draw (GtkWidget *widget,
|
|
|
|
GdkRectangle *area);
|
|
|
|
static gint gtk_spin_button_expose (GtkWidget *widget,
|
|
|
|
GdkEventExpose *event);
|
|
|
|
static gint gtk_spin_button_button_press (GtkWidget *widget,
|
|
|
|
GdkEventButton *event);
|
|
|
|
static gint gtk_spin_button_button_release (GtkWidget *widget,
|
|
|
|
GdkEventButton *event);
|
|
|
|
static gint gtk_spin_button_motion_notify (GtkWidget *widget,
|
|
|
|
GdkEventMotion *event);
|
|
|
|
static gint gtk_spin_button_enter_notify (GtkWidget *widget,
|
|
|
|
GdkEventCrossing *event);
|
|
|
|
static gint gtk_spin_button_leave_notify (GtkWidget *widget,
|
|
|
|
GdkEventCrossing *event);
|
|
|
|
static gint gtk_spin_button_focus_out (GtkWidget *widget,
|
|
|
|
GdkEventFocus *event);
|
|
|
|
static void gtk_spin_button_draw_arrow (GtkSpinButton *spin_button,
|
|
|
|
guint arrow);
|
|
|
|
static gint gtk_spin_button_timer (GtkSpinButton *spin_button);
|
1998-06-19 17:33:51 +00:00
|
|
|
static void gtk_spin_button_value_changed (GtkAdjustment *adjustment,
|
1998-02-25 22:03:10 +00:00
|
|
|
GtkSpinButton *spin_button);
|
|
|
|
static gint gtk_spin_button_key_press (GtkWidget *widget,
|
|
|
|
GdkEventKey *event);
|
1998-06-17 20:07:31 +00:00
|
|
|
static gint gtk_spin_button_key_release (GtkWidget *widget,
|
|
|
|
GdkEventKey *event);
|
2000-02-18 20:02:24 +00:00
|
|
|
static gint gtk_spin_button_scroll (GtkWidget *widget,
|
|
|
|
GdkEventScroll *event);
|
1998-03-10 03:17:02 +00:00
|
|
|
static void gtk_spin_button_activate (GtkEditable *editable);
|
1998-03-11 06:11:52 +00:00
|
|
|
static void gtk_spin_button_snap (GtkSpinButton *spin_button,
|
|
|
|
gfloat val);
|
|
|
|
static void gtk_spin_button_insert_text (GtkEditable *editable,
|
|
|
|
const gchar *new_text,
|
1998-06-19 17:33:51 +00:00
|
|
|
gint new_text_length,
|
1998-03-11 06:11:52 +00:00
|
|
|
gint *position);
|
1998-06-19 17:33:51 +00:00
|
|
|
static void gtk_spin_button_real_spin (GtkSpinButton *spin_button,
|
|
|
|
gfloat step);
|
1999-02-28 16:04:47 +00:00
|
|
|
static gint gtk_spin_button_default_input (GtkSpinButton *spin_button,
|
|
|
|
gfloat *new_val);
|
|
|
|
static gint gtk_spin_button_default_output (GtkSpinButton *spin_button);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
|
|
|
|
1998-06-19 17:33:51 +00:00
|
|
|
static GtkEntryClass *parent_class = NULL;
|
1999-02-28 16:04:47 +00:00
|
|
|
static guint spinbutton_signals[LAST_SIGNAL] = {0};
|
1998-02-25 22:03:10 +00:00
|
|
|
|
|
|
|
|
1998-09-26 03:12:03 +00:00
|
|
|
GtkType
|
1998-05-03 22:41:32 +00:00
|
|
|
gtk_spin_button_get_type (void)
|
1998-02-25 22:03:10 +00:00
|
|
|
{
|
|
|
|
static guint spin_button_type = 0;
|
|
|
|
|
|
|
|
if (!spin_button_type)
|
|
|
|
{
|
1998-11-30 19:07:15 +00:00
|
|
|
static const GtkTypeInfo spin_button_info =
|
1998-02-25 22:03:10 +00:00
|
|
|
{
|
|
|
|
"GtkSpinButton",
|
|
|
|
sizeof (GtkSpinButton),
|
|
|
|
sizeof (GtkSpinButtonClass),
|
|
|
|
(GtkClassInitFunc) gtk_spin_button_class_init,
|
|
|
|
(GtkObjectInitFunc) gtk_spin_button_init,
|
1998-07-04 15:31:30 +00:00
|
|
|
/* reserved_1 */ NULL,
|
|
|
|
/* reserved_2 */ NULL,
|
1998-06-28 07:46:10 +00:00
|
|
|
(GtkClassInitFunc) NULL,
|
1998-02-25 22:03:10 +00:00
|
|
|
};
|
|
|
|
|
1998-09-26 03:12:03 +00:00
|
|
|
spin_button_type = gtk_type_unique (GTK_TYPE_ENTRY, &spin_button_info);
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
|
|
|
return spin_button_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_spin_button_class_init (GtkSpinButtonClass *class)
|
|
|
|
{
|
documented necessary changes for 1.4 transition.
Fri May 12 17:13:32 2000 Tim Janik <timj@gtk.org>
* docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
* gtk/gtktext.c: made the adjustments no-construct args, simply
provide default adjustments.
(gtk_text_destroy): release adjustments.
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
adjustment argument non-construct.
* gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
instead of in finalize.
(gtk_progress_get_text_from_value):
(gtk_progress_get_current_text):
(gtk_progress_set_value):
(gtk_progress_get_percentage_from_value):
(gtk_progress_get_current_percentage):
(gtk_progress_set_percentage):
(gtk_progress_configure): ensure an adjustment is present.
Thu May 11 01:24:08 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcolorsel.[hc]:
* gtk/gtkcolorseldialog.[hc]:
* gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
their parent implementation, use bit fields for boolean values, don't
create unused widgets, usage of glib types, braces go on their own
lines, function argument alignment, #include directives etc. etc. etc..
* gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
Wed May 10 23:29:52 2000 Tim Janik <timj@gtk.org>
* gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
* gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
of NULL.
* gtk/gtkcombo.c (gtk_combo_item_destroy): don#t keep references
to freed data.
(gtk_combo_destroy): don't keep a pointer to a destroyed window.
* gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
to NULL when the toplevel is getting destroyed.
(gtk_menu_set_tearoff_state): same here for the tearoff_window.
(gtk_menu_destroy):
(gtk_menu_init): store the information of whether we have to
readd the initial child ref_count during destruction in a new
GtkMenu field needs_destruction_ref_count.
* gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
here, those reading: learn from my mistake! ;)
in order for set_?adjustment to support a default adjustemnt if
invoked with an adjustment pointer of NULL, the code read (pseudo):
if (v->adjustment) unref (v->adjustment);
if (!adjustment) adjustment = adjustment_new ();
if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
now imagine the first unref to actually free the old adjustment and
adjustment_new() creating a new adjustment from the very same memory
portion. here, the latter comparision will unintendedly fail, and
all hell breaks loose.
(gtk_viewport_set_hadjustment):
(gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
after unreferencing it.
* gtk/gtkcontainer.[hc]: removed toplevel registration
functions: gtk_container_register_toplevel(),
gtk_container_unregister_toplevel() and
gtk_container_get_toplevels() which had wrong semantics
anyways: it didn't reference and copy the list.
* gtk/gtkwindow.c: we take over the container toplevel registration
bussiness now. windows are registered across multiple destructions,
untill they are finalized. the initial implicit reference count
users are holding on windows is removed with the first destruction
though.
(gtk_window_init): ref & sink and set has_user_ref_count, got
rid of gtk_container_register_toplevel() call. add window to
toplevel_list.
(gtk_window_destroy): unref the window if has_user_ref_count
is still set, got rid of call to
gtk_container_unregister_toplevel().
(gtk_window_finalize): remove window from toplevel list.
(gtk_window_list_toplevels): new function to return a newly
created list with referenced toplevels.
(gtk_window_read_rcfiles): use gtk_window_list_toplevels().
* gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
adjustment a non-construct arg.
* gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
* gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkrange.c: added some realized checks.
(gtk_range_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize. remove timer.
(gtk_range_get_adjustment): demand create adjustment.
* gtk/gtkviewport.c: made h/v adjustment non-construct args.
we simply create them on demand now and get rid of them in
the destroy handler.
(gtk_viewport_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize.
(gtk_viewport_get_hadjustment):
(gtk_viewport_get_vadjustment):
(gtk_viewport_size_allocate): demand create h/v adjustment
if required.
* gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
gtk_widget_real_destroy () functionality.
(gtk_widget_real_destroy): reinitialize with a new style, instead
of setting widget->style to NULL.
Fri May 5 13:02:09 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcalendar.c:
* gtk/gtkbutton.c: ported _get_type() implementation over to
GType, either to preserve memchunks allocation facilities,
or because Gtk+ 1.0 GtkTypeInfo was still being used.
* gtk/gtkobject.[hc]: derive from GObject. ported various functions
over. prepare for ::destroy to be emitted multiple times.
removed reference tracer magic. chain into GObjectClass.shutdown()
to emit ::destroy signal.
* gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
fundamental.
* gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
cludge.
* gtk/gtksocket.c:
* gtk/gtkplug.c:
* gtk/gtklayout.c:
* gtk/gtklabel.c:
* gtk/gtkargcollector.c:
* gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
not being a fundamental anymore, and to work with the new
type system (nuked fundamental type varargs clutter).
* gtk/*.c: install finalize handlers in the GObjectClass
part of the class structure.
changed direct GTK_OBJECT()->klass accesses to
GTK_*_GET_CLASS().
changed direct object_class->type accesses to GTK_CLASS_TYPE().
* gtktypeutils.[hc]: use the reserved fundamental ids provided by
GType. made most of the GTK_*() type macros and Gtk* typedefs
simple wrappers around macros and types provided by GType.
most notably, a significant portion of the old API vanished:
GTK_TYPE_MAKE(),
GTK_TYPE_SEQNO(),
GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
GTK_TYPE_ARGS,
GTK_TYPE_CALLBACK,
GTK_TYPE_C_CALLBACK,
GTK_TYPE_FOREIGN,
GtkTypeQuery,
gtk_type_query(),
gtk_type_set_varargs_type(),
gtk_type_get_varargs_type(),
gtk_type_check_object_cast(),
gtk_type_check_class_cast(),
gtk_type_describe_tree(),
gtk_type_describe_heritage(),
gtk_type_free(),
gtk_type_children_types(),
gtk_type_set_chunk_alloc(),
gtk_type_register_enum(),
gtk_type_register_flags(),
gtk_type_parent_class().
replacements, where available are described in ../docs/Changes-1.4.txt.
implemented compatibility functions for the remaining API.
* configure.in: depend on glib 1.3.1, use gobject module.
2000-05-12 15:25:50 +00:00
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (class);
|
1998-03-11 06:11:52 +00:00
|
|
|
GtkObjectClass *object_class;
|
|
|
|
GtkWidgetClass *widget_class;
|
1998-03-01 05:11:05 +00:00
|
|
|
GtkEditableClass *editable_class;
|
1998-02-25 22:03:10 +00:00
|
|
|
|
1998-03-11 06:11:52 +00:00
|
|
|
object_class = (GtkObjectClass*) class;
|
|
|
|
widget_class = (GtkWidgetClass*) class;
|
|
|
|
editable_class = (GtkEditableClass*) class;
|
1998-02-25 22:03:10 +00:00
|
|
|
|
1998-09-26 03:12:03 +00:00
|
|
|
parent_class = gtk_type_class (GTK_TYPE_ENTRY);
|
|
|
|
|
documented necessary changes for 1.4 transition.
Fri May 12 17:13:32 2000 Tim Janik <timj@gtk.org>
* docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
* gtk/gtktext.c: made the adjustments no-construct args, simply
provide default adjustments.
(gtk_text_destroy): release adjustments.
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
adjustment argument non-construct.
* gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
instead of in finalize.
(gtk_progress_get_text_from_value):
(gtk_progress_get_current_text):
(gtk_progress_set_value):
(gtk_progress_get_percentage_from_value):
(gtk_progress_get_current_percentage):
(gtk_progress_set_percentage):
(gtk_progress_configure): ensure an adjustment is present.
Thu May 11 01:24:08 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcolorsel.[hc]:
* gtk/gtkcolorseldialog.[hc]:
* gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
their parent implementation, use bit fields for boolean values, don't
create unused widgets, usage of glib types, braces go on their own
lines, function argument alignment, #include directives etc. etc. etc..
* gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
Wed May 10 23:29:52 2000 Tim Janik <timj@gtk.org>
* gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
* gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
of NULL.
* gtk/gtkcombo.c (gtk_combo_item_destroy): don#t keep references
to freed data.
(gtk_combo_destroy): don't keep a pointer to a destroyed window.
* gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
to NULL when the toplevel is getting destroyed.
(gtk_menu_set_tearoff_state): same here for the tearoff_window.
(gtk_menu_destroy):
(gtk_menu_init): store the information of whether we have to
readd the initial child ref_count during destruction in a new
GtkMenu field needs_destruction_ref_count.
* gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
here, those reading: learn from my mistake! ;)
in order for set_?adjustment to support a default adjustemnt if
invoked with an adjustment pointer of NULL, the code read (pseudo):
if (v->adjustment) unref (v->adjustment);
if (!adjustment) adjustment = adjustment_new ();
if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
now imagine the first unref to actually free the old adjustment and
adjustment_new() creating a new adjustment from the very same memory
portion. here, the latter comparision will unintendedly fail, and
all hell breaks loose.
(gtk_viewport_set_hadjustment):
(gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
after unreferencing it.
* gtk/gtkcontainer.[hc]: removed toplevel registration
functions: gtk_container_register_toplevel(),
gtk_container_unregister_toplevel() and
gtk_container_get_toplevels() which had wrong semantics
anyways: it didn't reference and copy the list.
* gtk/gtkwindow.c: we take over the container toplevel registration
bussiness now. windows are registered across multiple destructions,
untill they are finalized. the initial implicit reference count
users are holding on windows is removed with the first destruction
though.
(gtk_window_init): ref & sink and set has_user_ref_count, got
rid of gtk_container_register_toplevel() call. add window to
toplevel_list.
(gtk_window_destroy): unref the window if has_user_ref_count
is still set, got rid of call to
gtk_container_unregister_toplevel().
(gtk_window_finalize): remove window from toplevel list.
(gtk_window_list_toplevels): new function to return a newly
created list with referenced toplevels.
(gtk_window_read_rcfiles): use gtk_window_list_toplevels().
* gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
adjustment a non-construct arg.
* gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
* gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkrange.c: added some realized checks.
(gtk_range_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize. remove timer.
(gtk_range_get_adjustment): demand create adjustment.
* gtk/gtkviewport.c: made h/v adjustment non-construct args.
we simply create them on demand now and get rid of them in
the destroy handler.
(gtk_viewport_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize.
(gtk_viewport_get_hadjustment):
(gtk_viewport_get_vadjustment):
(gtk_viewport_size_allocate): demand create h/v adjustment
if required.
* gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
gtk_widget_real_destroy () functionality.
(gtk_widget_real_destroy): reinitialize with a new style, instead
of setting widget->style to NULL.
Fri May 5 13:02:09 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcalendar.c:
* gtk/gtkbutton.c: ported _get_type() implementation over to
GType, either to preserve memchunks allocation facilities,
or because Gtk+ 1.0 GtkTypeInfo was still being used.
* gtk/gtkobject.[hc]: derive from GObject. ported various functions
over. prepare for ::destroy to be emitted multiple times.
removed reference tracer magic. chain into GObjectClass.shutdown()
to emit ::destroy signal.
* gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
fundamental.
* gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
cludge.
* gtk/gtksocket.c:
* gtk/gtkplug.c:
* gtk/gtklayout.c:
* gtk/gtklabel.c:
* gtk/gtkargcollector.c:
* gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
not being a fundamental anymore, and to work with the new
type system (nuked fundamental type varargs clutter).
* gtk/*.c: install finalize handlers in the GObjectClass
part of the class structure.
changed direct GTK_OBJECT()->klass accesses to
GTK_*_GET_CLASS().
changed direct object_class->type accesses to GTK_CLASS_TYPE().
* gtktypeutils.[hc]: use the reserved fundamental ids provided by
GType. made most of the GTK_*() type macros and Gtk* typedefs
simple wrappers around macros and types provided by GType.
most notably, a significant portion of the old API vanished:
GTK_TYPE_MAKE(),
GTK_TYPE_SEQNO(),
GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
GTK_TYPE_ARGS,
GTK_TYPE_CALLBACK,
GTK_TYPE_C_CALLBACK,
GTK_TYPE_FOREIGN,
GtkTypeQuery,
gtk_type_query(),
gtk_type_set_varargs_type(),
gtk_type_get_varargs_type(),
gtk_type_check_object_cast(),
gtk_type_check_class_cast(),
gtk_type_describe_tree(),
gtk_type_describe_heritage(),
gtk_type_free(),
gtk_type_children_types(),
gtk_type_set_chunk_alloc(),
gtk_type_register_enum(),
gtk_type_register_flags(),
gtk_type_parent_class().
replacements, where available are described in ../docs/Changes-1.4.txt.
implemented compatibility functions for the remaining API.
* configure.in: depend on glib 1.3.1, use gobject module.
2000-05-12 15:25:50 +00:00
|
|
|
gobject_class->finalize = gtk_spin_button_finalize;
|
|
|
|
|
|
|
|
object_class->set_arg = gtk_spin_button_set_arg;
|
|
|
|
object_class->get_arg = gtk_spin_button_get_arg;
|
|
|
|
|
|
|
|
widget_class->map = gtk_spin_button_map;
|
|
|
|
widget_class->unmap = gtk_spin_button_unmap;
|
|
|
|
widget_class->realize = gtk_spin_button_realize;
|
|
|
|
widget_class->unrealize = gtk_spin_button_unrealize;
|
|
|
|
widget_class->size_request = gtk_spin_button_size_request;
|
|
|
|
widget_class->size_allocate = gtk_spin_button_size_allocate;
|
|
|
|
widget_class->draw = gtk_spin_button_draw;
|
|
|
|
widget_class->expose_event = gtk_spin_button_expose;
|
|
|
|
widget_class->scroll_event = gtk_spin_button_scroll;
|
|
|
|
widget_class->button_press_event = gtk_spin_button_button_press;
|
|
|
|
widget_class->button_release_event = gtk_spin_button_button_release;
|
|
|
|
widget_class->motion_notify_event = gtk_spin_button_motion_notify;
|
|
|
|
widget_class->key_press_event = gtk_spin_button_key_press;
|
|
|
|
widget_class->key_release_event = gtk_spin_button_key_release;
|
|
|
|
widget_class->enter_notify_event = gtk_spin_button_enter_notify;
|
|
|
|
widget_class->leave_notify_event = gtk_spin_button_leave_notify;
|
|
|
|
widget_class->focus_out_event = gtk_spin_button_focus_out;
|
|
|
|
|
|
|
|
editable_class->insert_text = gtk_spin_button_insert_text;
|
|
|
|
editable_class->activate = gtk_spin_button_activate;
|
|
|
|
|
|
|
|
class->input = NULL;
|
|
|
|
class->output = NULL;
|
|
|
|
|
1998-09-26 03:12:03 +00:00
|
|
|
gtk_object_add_arg_type ("GtkSpinButton::adjustment",
|
|
|
|
GTK_TYPE_ADJUSTMENT,
|
|
|
|
GTK_ARG_READWRITE,
|
|
|
|
ARG_ADJUSTMENT);
|
|
|
|
gtk_object_add_arg_type ("GtkSpinButton::climb_rate",
|
|
|
|
GTK_TYPE_FLOAT,
|
|
|
|
GTK_ARG_READWRITE,
|
|
|
|
ARG_CLIMB_RATE);
|
|
|
|
gtk_object_add_arg_type ("GtkSpinButton::digits",
|
|
|
|
GTK_TYPE_UINT,
|
|
|
|
GTK_ARG_READWRITE,
|
|
|
|
ARG_DIGITS);
|
|
|
|
gtk_object_add_arg_type ("GtkSpinButton::snap_to_ticks",
|
|
|
|
GTK_TYPE_BOOL,
|
|
|
|
GTK_ARG_READWRITE,
|
|
|
|
ARG_SNAP_TO_TICKS);
|
|
|
|
gtk_object_add_arg_type ("GtkSpinButton::numeric",
|
|
|
|
GTK_TYPE_BOOL,
|
|
|
|
GTK_ARG_READWRITE,
|
|
|
|
ARG_NUMERIC);
|
|
|
|
gtk_object_add_arg_type ("GtkSpinButton::wrap",
|
|
|
|
GTK_TYPE_BOOL,
|
|
|
|
GTK_ARG_READWRITE,
|
|
|
|
ARG_WRAP);
|
|
|
|
gtk_object_add_arg_type ("GtkSpinButton::update_policy",
|
|
|
|
GTK_TYPE_SPIN_BUTTON_UPDATE_POLICY,
|
|
|
|
GTK_ARG_READWRITE,
|
|
|
|
ARG_UPDATE_POLICY);
|
|
|
|
gtk_object_add_arg_type ("GtkSpinButton::shadow_type",
|
|
|
|
GTK_TYPE_SHADOW_TYPE,
|
|
|
|
GTK_ARG_READWRITE,
|
|
|
|
ARG_SHADOW_TYPE);
|
|
|
|
gtk_object_add_arg_type ("GtkSpinButton::value",
|
|
|
|
GTK_TYPE_FLOAT,
|
|
|
|
GTK_ARG_READWRITE,
|
|
|
|
ARG_VALUE);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
1999-02-28 16:04:47 +00:00
|
|
|
spinbutton_signals[INPUT] =
|
|
|
|
gtk_signal_new ("input",
|
|
|
|
GTK_RUN_LAST,
|
documented necessary changes for 1.4 transition.
Fri May 12 17:13:32 2000 Tim Janik <timj@gtk.org>
* docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
* gtk/gtktext.c: made the adjustments no-construct args, simply
provide default adjustments.
(gtk_text_destroy): release adjustments.
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
adjustment argument non-construct.
* gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
instead of in finalize.
(gtk_progress_get_text_from_value):
(gtk_progress_get_current_text):
(gtk_progress_set_value):
(gtk_progress_get_percentage_from_value):
(gtk_progress_get_current_percentage):
(gtk_progress_set_percentage):
(gtk_progress_configure): ensure an adjustment is present.
Thu May 11 01:24:08 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcolorsel.[hc]:
* gtk/gtkcolorseldialog.[hc]:
* gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
their parent implementation, use bit fields for boolean values, don't
create unused widgets, usage of glib types, braces go on their own
lines, function argument alignment, #include directives etc. etc. etc..
* gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
Wed May 10 23:29:52 2000 Tim Janik <timj@gtk.org>
* gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
* gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
of NULL.
* gtk/gtkcombo.c (gtk_combo_item_destroy): don#t keep references
to freed data.
(gtk_combo_destroy): don't keep a pointer to a destroyed window.
* gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
to NULL when the toplevel is getting destroyed.
(gtk_menu_set_tearoff_state): same here for the tearoff_window.
(gtk_menu_destroy):
(gtk_menu_init): store the information of whether we have to
readd the initial child ref_count during destruction in a new
GtkMenu field needs_destruction_ref_count.
* gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
here, those reading: learn from my mistake! ;)
in order for set_?adjustment to support a default adjustemnt if
invoked with an adjustment pointer of NULL, the code read (pseudo):
if (v->adjustment) unref (v->adjustment);
if (!adjustment) adjustment = adjustment_new ();
if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
now imagine the first unref to actually free the old adjustment and
adjustment_new() creating a new adjustment from the very same memory
portion. here, the latter comparision will unintendedly fail, and
all hell breaks loose.
(gtk_viewport_set_hadjustment):
(gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
after unreferencing it.
* gtk/gtkcontainer.[hc]: removed toplevel registration
functions: gtk_container_register_toplevel(),
gtk_container_unregister_toplevel() and
gtk_container_get_toplevels() which had wrong semantics
anyways: it didn't reference and copy the list.
* gtk/gtkwindow.c: we take over the container toplevel registration
bussiness now. windows are registered across multiple destructions,
untill they are finalized. the initial implicit reference count
users are holding on windows is removed with the first destruction
though.
(gtk_window_init): ref & sink and set has_user_ref_count, got
rid of gtk_container_register_toplevel() call. add window to
toplevel_list.
(gtk_window_destroy): unref the window if has_user_ref_count
is still set, got rid of call to
gtk_container_unregister_toplevel().
(gtk_window_finalize): remove window from toplevel list.
(gtk_window_list_toplevels): new function to return a newly
created list with referenced toplevels.
(gtk_window_read_rcfiles): use gtk_window_list_toplevels().
* gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
adjustment a non-construct arg.
* gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
* gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkrange.c: added some realized checks.
(gtk_range_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize. remove timer.
(gtk_range_get_adjustment): demand create adjustment.
* gtk/gtkviewport.c: made h/v adjustment non-construct args.
we simply create them on demand now and get rid of them in
the destroy handler.
(gtk_viewport_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize.
(gtk_viewport_get_hadjustment):
(gtk_viewport_get_vadjustment):
(gtk_viewport_size_allocate): demand create h/v adjustment
if required.
* gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
gtk_widget_real_destroy () functionality.
(gtk_widget_real_destroy): reinitialize with a new style, instead
of setting widget->style to NULL.
Fri May 5 13:02:09 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcalendar.c:
* gtk/gtkbutton.c: ported _get_type() implementation over to
GType, either to preserve memchunks allocation facilities,
or because Gtk+ 1.0 GtkTypeInfo was still being used.
* gtk/gtkobject.[hc]: derive from GObject. ported various functions
over. prepare for ::destroy to be emitted multiple times.
removed reference tracer magic. chain into GObjectClass.shutdown()
to emit ::destroy signal.
* gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
fundamental.
* gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
cludge.
* gtk/gtksocket.c:
* gtk/gtkplug.c:
* gtk/gtklayout.c:
* gtk/gtklabel.c:
* gtk/gtkargcollector.c:
* gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
not being a fundamental anymore, and to work with the new
type system (nuked fundamental type varargs clutter).
* gtk/*.c: install finalize handlers in the GObjectClass
part of the class structure.
changed direct GTK_OBJECT()->klass accesses to
GTK_*_GET_CLASS().
changed direct object_class->type accesses to GTK_CLASS_TYPE().
* gtktypeutils.[hc]: use the reserved fundamental ids provided by
GType. made most of the GTK_*() type macros and Gtk* typedefs
simple wrappers around macros and types provided by GType.
most notably, a significant portion of the old API vanished:
GTK_TYPE_MAKE(),
GTK_TYPE_SEQNO(),
GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
GTK_TYPE_ARGS,
GTK_TYPE_CALLBACK,
GTK_TYPE_C_CALLBACK,
GTK_TYPE_FOREIGN,
GtkTypeQuery,
gtk_type_query(),
gtk_type_set_varargs_type(),
gtk_type_get_varargs_type(),
gtk_type_check_object_cast(),
gtk_type_check_class_cast(),
gtk_type_describe_tree(),
gtk_type_describe_heritage(),
gtk_type_free(),
gtk_type_children_types(),
gtk_type_set_chunk_alloc(),
gtk_type_register_enum(),
gtk_type_register_flags(),
gtk_type_parent_class().
replacements, where available are described in ../docs/Changes-1.4.txt.
implemented compatibility functions for the remaining API.
* configure.in: depend on glib 1.3.1, use gobject module.
2000-05-12 15:25:50 +00:00
|
|
|
GTK_CLASS_TYPE (object_class),
|
1999-02-28 16:04:47 +00:00
|
|
|
GTK_SIGNAL_OFFSET (GtkSpinButtonClass, input),
|
|
|
|
gtk_marshal_INT__POINTER,
|
|
|
|
GTK_TYPE_INT, 1, GTK_TYPE_POINTER);
|
|
|
|
|
|
|
|
spinbutton_signals[OUTPUT] =
|
|
|
|
gtk_signal_new ("output",
|
|
|
|
GTK_RUN_LAST,
|
documented necessary changes for 1.4 transition.
Fri May 12 17:13:32 2000 Tim Janik <timj@gtk.org>
* docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
* gtk/gtktext.c: made the adjustments no-construct args, simply
provide default adjustments.
(gtk_text_destroy): release adjustments.
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
adjustment argument non-construct.
* gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
instead of in finalize.
(gtk_progress_get_text_from_value):
(gtk_progress_get_current_text):
(gtk_progress_set_value):
(gtk_progress_get_percentage_from_value):
(gtk_progress_get_current_percentage):
(gtk_progress_set_percentage):
(gtk_progress_configure): ensure an adjustment is present.
Thu May 11 01:24:08 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcolorsel.[hc]:
* gtk/gtkcolorseldialog.[hc]:
* gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
their parent implementation, use bit fields for boolean values, don't
create unused widgets, usage of glib types, braces go on their own
lines, function argument alignment, #include directives etc. etc. etc..
* gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
Wed May 10 23:29:52 2000 Tim Janik <timj@gtk.org>
* gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
* gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
of NULL.
* gtk/gtkcombo.c (gtk_combo_item_destroy): don#t keep references
to freed data.
(gtk_combo_destroy): don't keep a pointer to a destroyed window.
* gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
to NULL when the toplevel is getting destroyed.
(gtk_menu_set_tearoff_state): same here for the tearoff_window.
(gtk_menu_destroy):
(gtk_menu_init): store the information of whether we have to
readd the initial child ref_count during destruction in a new
GtkMenu field needs_destruction_ref_count.
* gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
here, those reading: learn from my mistake! ;)
in order for set_?adjustment to support a default adjustemnt if
invoked with an adjustment pointer of NULL, the code read (pseudo):
if (v->adjustment) unref (v->adjustment);
if (!adjustment) adjustment = adjustment_new ();
if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
now imagine the first unref to actually free the old adjustment and
adjustment_new() creating a new adjustment from the very same memory
portion. here, the latter comparision will unintendedly fail, and
all hell breaks loose.
(gtk_viewport_set_hadjustment):
(gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
after unreferencing it.
* gtk/gtkcontainer.[hc]: removed toplevel registration
functions: gtk_container_register_toplevel(),
gtk_container_unregister_toplevel() and
gtk_container_get_toplevels() which had wrong semantics
anyways: it didn't reference and copy the list.
* gtk/gtkwindow.c: we take over the container toplevel registration
bussiness now. windows are registered across multiple destructions,
untill they are finalized. the initial implicit reference count
users are holding on windows is removed with the first destruction
though.
(gtk_window_init): ref & sink and set has_user_ref_count, got
rid of gtk_container_register_toplevel() call. add window to
toplevel_list.
(gtk_window_destroy): unref the window if has_user_ref_count
is still set, got rid of call to
gtk_container_unregister_toplevel().
(gtk_window_finalize): remove window from toplevel list.
(gtk_window_list_toplevels): new function to return a newly
created list with referenced toplevels.
(gtk_window_read_rcfiles): use gtk_window_list_toplevels().
* gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
adjustment a non-construct arg.
* gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
* gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkrange.c: added some realized checks.
(gtk_range_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize. remove timer.
(gtk_range_get_adjustment): demand create adjustment.
* gtk/gtkviewport.c: made h/v adjustment non-construct args.
we simply create them on demand now and get rid of them in
the destroy handler.
(gtk_viewport_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize.
(gtk_viewport_get_hadjustment):
(gtk_viewport_get_vadjustment):
(gtk_viewport_size_allocate): demand create h/v adjustment
if required.
* gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
gtk_widget_real_destroy () functionality.
(gtk_widget_real_destroy): reinitialize with a new style, instead
of setting widget->style to NULL.
Fri May 5 13:02:09 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcalendar.c:
* gtk/gtkbutton.c: ported _get_type() implementation over to
GType, either to preserve memchunks allocation facilities,
or because Gtk+ 1.0 GtkTypeInfo was still being used.
* gtk/gtkobject.[hc]: derive from GObject. ported various functions
over. prepare for ::destroy to be emitted multiple times.
removed reference tracer magic. chain into GObjectClass.shutdown()
to emit ::destroy signal.
* gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
fundamental.
* gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
cludge.
* gtk/gtksocket.c:
* gtk/gtkplug.c:
* gtk/gtklayout.c:
* gtk/gtklabel.c:
* gtk/gtkargcollector.c:
* gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
not being a fundamental anymore, and to work with the new
type system (nuked fundamental type varargs clutter).
* gtk/*.c: install finalize handlers in the GObjectClass
part of the class structure.
changed direct GTK_OBJECT()->klass accesses to
GTK_*_GET_CLASS().
changed direct object_class->type accesses to GTK_CLASS_TYPE().
* gtktypeutils.[hc]: use the reserved fundamental ids provided by
GType. made most of the GTK_*() type macros and Gtk* typedefs
simple wrappers around macros and types provided by GType.
most notably, a significant portion of the old API vanished:
GTK_TYPE_MAKE(),
GTK_TYPE_SEQNO(),
GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
GTK_TYPE_ARGS,
GTK_TYPE_CALLBACK,
GTK_TYPE_C_CALLBACK,
GTK_TYPE_FOREIGN,
GtkTypeQuery,
gtk_type_query(),
gtk_type_set_varargs_type(),
gtk_type_get_varargs_type(),
gtk_type_check_object_cast(),
gtk_type_check_class_cast(),
gtk_type_describe_tree(),
gtk_type_describe_heritage(),
gtk_type_free(),
gtk_type_children_types(),
gtk_type_set_chunk_alloc(),
gtk_type_register_enum(),
gtk_type_register_flags(),
gtk_type_parent_class().
replacements, where available are described in ../docs/Changes-1.4.txt.
implemented compatibility functions for the remaining API.
* configure.in: depend on glib 1.3.1, use gobject module.
2000-05-12 15:25:50 +00:00
|
|
|
GTK_CLASS_TYPE (object_class),
|
1999-02-28 16:04:47 +00:00
|
|
|
GTK_SIGNAL_OFFSET (GtkSpinButtonClass, output),
|
|
|
|
gtk_marshal_BOOL__NONE,
|
|
|
|
GTK_TYPE_BOOL, 0);
|
|
|
|
|
|
|
|
gtk_object_class_add_signals (object_class, spinbutton_signals, LAST_SIGNAL);
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
|
|
|
|
1998-09-26 03:12:03 +00:00
|
|
|
static void
|
|
|
|
gtk_spin_button_set_arg (GtkObject *object,
|
|
|
|
GtkArg *arg,
|
|
|
|
guint arg_id)
|
|
|
|
{
|
|
|
|
GtkSpinButton *spin_button;
|
|
|
|
|
|
|
|
spin_button = GTK_SPIN_BUTTON (object);
|
|
|
|
|
|
|
|
switch (arg_id)
|
|
|
|
{
|
|
|
|
GtkAdjustment *adjustment;
|
|
|
|
|
|
|
|
case ARG_ADJUSTMENT:
|
|
|
|
adjustment = GTK_VALUE_POINTER (*arg);
|
|
|
|
if (!adjustment)
|
|
|
|
adjustment = (GtkAdjustment*) gtk_adjustment_new (0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
|
|
|
|
gtk_spin_button_set_adjustment (spin_button, adjustment);
|
|
|
|
break;
|
|
|
|
case ARG_CLIMB_RATE:
|
|
|
|
gtk_spin_button_configure (spin_button,
|
|
|
|
spin_button->adjustment,
|
|
|
|
GTK_VALUE_FLOAT (*arg),
|
|
|
|
spin_button->digits);
|
|
|
|
break;
|
|
|
|
case ARG_DIGITS:
|
|
|
|
gtk_spin_button_configure (spin_button,
|
|
|
|
spin_button->adjustment,
|
|
|
|
spin_button->climb_rate,
|
|
|
|
GTK_VALUE_UINT (*arg));
|
|
|
|
break;
|
|
|
|
case ARG_SNAP_TO_TICKS:
|
|
|
|
gtk_spin_button_set_snap_to_ticks (spin_button, GTK_VALUE_BOOL (*arg));
|
|
|
|
break;
|
|
|
|
case ARG_NUMERIC:
|
|
|
|
gtk_spin_button_set_numeric (spin_button, GTK_VALUE_BOOL (*arg));
|
|
|
|
break;
|
|
|
|
case ARG_WRAP:
|
|
|
|
gtk_spin_button_set_wrap (spin_button, GTK_VALUE_BOOL (*arg));
|
|
|
|
break;
|
|
|
|
case ARG_UPDATE_POLICY:
|
|
|
|
gtk_spin_button_set_update_policy (spin_button, GTK_VALUE_ENUM (*arg));
|
|
|
|
break;
|
|
|
|
case ARG_SHADOW_TYPE:
|
|
|
|
gtk_spin_button_set_shadow_type (spin_button, GTK_VALUE_ENUM (*arg));
|
|
|
|
break;
|
|
|
|
case ARG_VALUE:
|
|
|
|
gtk_spin_button_set_value (spin_button, GTK_VALUE_FLOAT (*arg));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_spin_button_get_arg (GtkObject *object,
|
|
|
|
GtkArg *arg,
|
|
|
|
guint arg_id)
|
|
|
|
{
|
|
|
|
GtkSpinButton *spin_button;
|
|
|
|
|
|
|
|
spin_button = GTK_SPIN_BUTTON (object);
|
|
|
|
|
|
|
|
switch (arg_id)
|
|
|
|
{
|
|
|
|
case ARG_ADJUSTMENT:
|
|
|
|
GTK_VALUE_POINTER (*arg) = spin_button->adjustment;
|
|
|
|
break;
|
|
|
|
case ARG_CLIMB_RATE:
|
|
|
|
GTK_VALUE_FLOAT (*arg) = spin_button->climb_rate;
|
|
|
|
break;
|
|
|
|
case ARG_DIGITS:
|
|
|
|
GTK_VALUE_UINT (*arg) = spin_button->digits;
|
|
|
|
break;
|
|
|
|
case ARG_SNAP_TO_TICKS:
|
|
|
|
GTK_VALUE_BOOL (*arg) = spin_button->snap_to_ticks;
|
|
|
|
break;
|
|
|
|
case ARG_NUMERIC:
|
|
|
|
GTK_VALUE_BOOL (*arg) = spin_button->numeric;
|
|
|
|
break;
|
|
|
|
case ARG_WRAP:
|
|
|
|
GTK_VALUE_BOOL (*arg) = spin_button->wrap;
|
|
|
|
break;
|
|
|
|
case ARG_UPDATE_POLICY:
|
|
|
|
GTK_VALUE_ENUM (*arg) = spin_button->update_policy;
|
|
|
|
break;
|
|
|
|
case ARG_SHADOW_TYPE:
|
|
|
|
GTK_VALUE_ENUM (*arg) = spin_button->shadow_type;
|
|
|
|
break;
|
|
|
|
case ARG_VALUE:
|
|
|
|
GTK_VALUE_FLOAT (*arg) = spin_button->adjustment->value;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
arg->type = GTK_TYPE_INVALID;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
static void
|
|
|
|
gtk_spin_button_init (GtkSpinButton *spin_button)
|
|
|
|
{
|
|
|
|
spin_button->adjustment = NULL;
|
1998-03-11 06:11:52 +00:00
|
|
|
spin_button->panel = NULL;
|
1998-06-19 17:33:51 +00:00
|
|
|
spin_button->shadow_type = GTK_SHADOW_NONE;
|
1998-02-25 22:03:10 +00:00
|
|
|
spin_button->timer = 0;
|
1998-06-17 20:07:31 +00:00
|
|
|
spin_button->ev_time = 0;
|
1998-02-25 22:03:10 +00:00
|
|
|
spin_button->climb_rate = 0.0;
|
|
|
|
spin_button->timer_step = 0.0;
|
1998-06-17 20:07:31 +00:00
|
|
|
spin_button->update_policy = GTK_UPDATE_ALWAYS;
|
1998-02-25 22:03:10 +00:00
|
|
|
spin_button->in_child = 2;
|
|
|
|
spin_button->click_child = 2;
|
|
|
|
spin_button->button = 0;
|
1998-06-19 17:33:51 +00:00
|
|
|
spin_button->need_timer = FALSE;
|
1998-02-25 22:03:10 +00:00
|
|
|
spin_button->timer_calls = 0;
|
|
|
|
spin_button->digits = 0;
|
1998-06-17 20:07:31 +00:00
|
|
|
spin_button->numeric = FALSE;
|
|
|
|
spin_button->wrap = FALSE;
|
|
|
|
spin_button->snap_to_ticks = FALSE;
|
1998-09-26 03:12:03 +00:00
|
|
|
gtk_spin_button_set_adjustment (spin_button,
|
1999-02-28 16:04:47 +00:00
|
|
|
(GtkAdjustment*) gtk_adjustment_new (0, 0, 0, 0, 0, 0));
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
documented necessary changes for 1.4 transition.
Fri May 12 17:13:32 2000 Tim Janik <timj@gtk.org>
* docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
* gtk/gtktext.c: made the adjustments no-construct args, simply
provide default adjustments.
(gtk_text_destroy): release adjustments.
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
adjustment argument non-construct.
* gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
instead of in finalize.
(gtk_progress_get_text_from_value):
(gtk_progress_get_current_text):
(gtk_progress_set_value):
(gtk_progress_get_percentage_from_value):
(gtk_progress_get_current_percentage):
(gtk_progress_set_percentage):
(gtk_progress_configure): ensure an adjustment is present.
Thu May 11 01:24:08 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcolorsel.[hc]:
* gtk/gtkcolorseldialog.[hc]:
* gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
their parent implementation, use bit fields for boolean values, don't
create unused widgets, usage of glib types, braces go on their own
lines, function argument alignment, #include directives etc. etc. etc..
* gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
Wed May 10 23:29:52 2000 Tim Janik <timj@gtk.org>
* gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
* gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
of NULL.
* gtk/gtkcombo.c (gtk_combo_item_destroy): don#t keep references
to freed data.
(gtk_combo_destroy): don't keep a pointer to a destroyed window.
* gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
to NULL when the toplevel is getting destroyed.
(gtk_menu_set_tearoff_state): same here for the tearoff_window.
(gtk_menu_destroy):
(gtk_menu_init): store the information of whether we have to
readd the initial child ref_count during destruction in a new
GtkMenu field needs_destruction_ref_count.
* gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
here, those reading: learn from my mistake! ;)
in order for set_?adjustment to support a default adjustemnt if
invoked with an adjustment pointer of NULL, the code read (pseudo):
if (v->adjustment) unref (v->adjustment);
if (!adjustment) adjustment = adjustment_new ();
if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
now imagine the first unref to actually free the old adjustment and
adjustment_new() creating a new adjustment from the very same memory
portion. here, the latter comparision will unintendedly fail, and
all hell breaks loose.
(gtk_viewport_set_hadjustment):
(gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
after unreferencing it.
* gtk/gtkcontainer.[hc]: removed toplevel registration
functions: gtk_container_register_toplevel(),
gtk_container_unregister_toplevel() and
gtk_container_get_toplevels() which had wrong semantics
anyways: it didn't reference and copy the list.
* gtk/gtkwindow.c: we take over the container toplevel registration
bussiness now. windows are registered across multiple destructions,
untill they are finalized. the initial implicit reference count
users are holding on windows is removed with the first destruction
though.
(gtk_window_init): ref & sink and set has_user_ref_count, got
rid of gtk_container_register_toplevel() call. add window to
toplevel_list.
(gtk_window_destroy): unref the window if has_user_ref_count
is still set, got rid of call to
gtk_container_unregister_toplevel().
(gtk_window_finalize): remove window from toplevel list.
(gtk_window_list_toplevels): new function to return a newly
created list with referenced toplevels.
(gtk_window_read_rcfiles): use gtk_window_list_toplevels().
* gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
adjustment a non-construct arg.
* gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
* gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkrange.c: added some realized checks.
(gtk_range_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize. remove timer.
(gtk_range_get_adjustment): demand create adjustment.
* gtk/gtkviewport.c: made h/v adjustment non-construct args.
we simply create them on demand now and get rid of them in
the destroy handler.
(gtk_viewport_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize.
(gtk_viewport_get_hadjustment):
(gtk_viewport_get_vadjustment):
(gtk_viewport_size_allocate): demand create h/v adjustment
if required.
* gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
gtk_widget_real_destroy () functionality.
(gtk_widget_real_destroy): reinitialize with a new style, instead
of setting widget->style to NULL.
Fri May 5 13:02:09 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcalendar.c:
* gtk/gtkbutton.c: ported _get_type() implementation over to
GType, either to preserve memchunks allocation facilities,
or because Gtk+ 1.0 GtkTypeInfo was still being used.
* gtk/gtkobject.[hc]: derive from GObject. ported various functions
over. prepare for ::destroy to be emitted multiple times.
removed reference tracer magic. chain into GObjectClass.shutdown()
to emit ::destroy signal.
* gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
fundamental.
* gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
cludge.
* gtk/gtksocket.c:
* gtk/gtkplug.c:
* gtk/gtklayout.c:
* gtk/gtklabel.c:
* gtk/gtkargcollector.c:
* gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
not being a fundamental anymore, and to work with the new
type system (nuked fundamental type varargs clutter).
* gtk/*.c: install finalize handlers in the GObjectClass
part of the class structure.
changed direct GTK_OBJECT()->klass accesses to
GTK_*_GET_CLASS().
changed direct object_class->type accesses to GTK_CLASS_TYPE().
* gtktypeutils.[hc]: use the reserved fundamental ids provided by
GType. made most of the GTK_*() type macros and Gtk* typedefs
simple wrappers around macros and types provided by GType.
most notably, a significant portion of the old API vanished:
GTK_TYPE_MAKE(),
GTK_TYPE_SEQNO(),
GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
GTK_TYPE_ARGS,
GTK_TYPE_CALLBACK,
GTK_TYPE_C_CALLBACK,
GTK_TYPE_FOREIGN,
GtkTypeQuery,
gtk_type_query(),
gtk_type_set_varargs_type(),
gtk_type_get_varargs_type(),
gtk_type_check_object_cast(),
gtk_type_check_class_cast(),
gtk_type_describe_tree(),
gtk_type_describe_heritage(),
gtk_type_free(),
gtk_type_children_types(),
gtk_type_set_chunk_alloc(),
gtk_type_register_enum(),
gtk_type_register_flags(),
gtk_type_parent_class().
replacements, where available are described in ../docs/Changes-1.4.txt.
implemented compatibility functions for the remaining API.
* configure.in: depend on glib 1.3.1, use gobject module.
2000-05-12 15:25:50 +00:00
|
|
|
gtk_spin_button_finalize (GObject *object)
|
1998-02-25 22:03:10 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (object));
|
|
|
|
|
|
|
|
gtk_object_unref (GTK_OBJECT (GTK_SPIN_BUTTON (object)->adjustment));
|
|
|
|
|
documented necessary changes for 1.4 transition.
Fri May 12 17:13:32 2000 Tim Janik <timj@gtk.org>
* docs/Changes-1.4.txt: documented necessary changes for 1.4 transition.
* gtk/gtktext.c: made the adjustments no-construct args, simply
provide default adjustments.
(gtk_text_destroy): release adjustments.
* gtk/gtkprogressbar.c (gtk_progress_bar_class_init): made the
adjustment argument non-construct.
* gtk/gtkprogress.c (gtk_progress_destroy): release adjustment here,
instead of in finalize.
(gtk_progress_get_text_from_value):
(gtk_progress_get_current_text):
(gtk_progress_set_value):
(gtk_progress_get_percentage_from_value):
(gtk_progress_get_current_percentage):
(gtk_progress_set_percentage):
(gtk_progress_configure): ensure an adjustment is present.
Thu May 11 01:24:08 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcolorsel.[hc]:
* gtk/gtkcolorseldialog.[hc]:
* gtk/gtkhsv.[hc]: major code cleanups, destroy handlers need to chain
their parent implementation, use bit fields for boolean values, don't
create unused widgets, usage of glib types, braces go on their own
lines, function argument alignment, #include directives etc. etc. etc..
* gtk/Makefile.am (gtk_public_h_sources): install gtkhsv.h.
Wed May 10 23:29:52 2000 Tim Janik <timj@gtk.org>
* gtk/gtktoolbar.c (gtk_toolbar_destroy): don't unref a NULL tooltips.
* gtk/gtkfilesel.c (gtk_file_selection_destroy): don't free a cmpl_state
of NULL.
* gtk/gtkcombo.c (gtk_combo_item_destroy): don#t keep references
to freed data.
(gtk_combo_destroy): don't keep a pointer to a destroyed window.
* gtk/gtkmenu.c (gtk_menu_init): reset the menu's toplevel pointer
to NULL when the toplevel is getting destroyed.
(gtk_menu_set_tearoff_state): same here for the tearoff_window.
(gtk_menu_destroy):
(gtk_menu_init): store the information of whether we have to
readd the initial child ref_count during destruction in a new
GtkMenu field needs_destruction_ref_count.
* gtk/gtkviewport.c: SHAME! ok this one is tricky, so i note it
here, those reading: learn from my mistake! ;)
in order for set_?adjustment to support a default adjustemnt if
invoked with an adjustment pointer of NULL, the code read (pseudo):
if (v->adjustment) unref (v->adjustment);
if (!adjustment) adjustment = adjustment_new ();
if (v->adjustment != adjustment) v->adjustment = ref (adjustment);
now imagine the first unref to actually free the old adjustment and
adjustment_new() creating a new adjustment from the very same memory
portion. here, the latter comparision will unintendedly fail, and
all hell breaks loose.
(gtk_viewport_set_hadjustment):
(gtk_viewport_set_vadjustment): reset viewport->?adjustment to NULL
after unreferencing it.
* gtk/gtkcontainer.[hc]: removed toplevel registration
functions: gtk_container_register_toplevel(),
gtk_container_unregister_toplevel() and
gtk_container_get_toplevels() which had wrong semantics
anyways: it didn't reference and copy the list.
* gtk/gtkwindow.c: we take over the container toplevel registration
bussiness now. windows are registered across multiple destructions,
untill they are finalized. the initial implicit reference count
users are holding on windows is removed with the first destruction
though.
(gtk_window_init): ref & sink and set has_user_ref_count, got
rid of gtk_container_register_toplevel() call. add window to
toplevel_list.
(gtk_window_destroy): unref the window if has_user_ref_count
is still set, got rid of call to
gtk_container_unregister_toplevel().
(gtk_window_finalize): remove window from toplevel list.
(gtk_window_list_toplevels): new function to return a newly
created list with referenced toplevels.
(gtk_window_read_rcfiles): use gtk_window_list_toplevels().
* gtk/gtkhscale.c (gtk_hscale_class_init): made the GtkRange
adjustment a non-construct arg.
* gtk/gtkvscale.c (gtk_vscale_class_init): likewise.
* gtk/gtkhscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkvscrollbar.c (gtk_vscrollbar_class_init): likewise.
* gtk/gtkrange.c: added some realized checks.
(gtk_range_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize. remove timer.
(gtk_range_get_adjustment): demand create adjustment.
* gtk/gtkviewport.c: made h/v adjustment non-construct args.
we simply create them on demand now and get rid of them in
the destroy handler.
(gtk_viewport_destroy): get rid of the h/v adjustments in the
destroy handler instead of finalize.
(gtk_viewport_get_hadjustment):
(gtk_viewport_get_vadjustment):
(gtk_viewport_size_allocate): demand create h/v adjustment
if required.
* gtk/gtkwidget.c (gtk_widget_finalize): duplicate part of the
gtk_widget_real_destroy () functionality.
(gtk_widget_real_destroy): reinitialize with a new style, instead
of setting widget->style to NULL.
Fri May 5 13:02:09 2000 Tim Janik <timj@gtk.org>
* gtk/gtkcalendar.c:
* gtk/gtkbutton.c: ported _get_type() implementation over to
GType, either to preserve memchunks allocation facilities,
or because Gtk+ 1.0 GtkTypeInfo was still being used.
* gtk/gtkobject.[hc]: derive from GObject. ported various functions
over. prepare for ::destroy to be emitted multiple times.
removed reference tracer magic. chain into GObjectClass.shutdown()
to emit ::destroy signal.
* gtk/gtksignal.c: removed assumptions about GTK_TYPE_OBJECT being
fundamental.
* gtk/gtkmain.c: removed gtk_object_post_arg_parsing_init()
cludge.
* gtk/gtksocket.c:
* gtk/gtkplug.c:
* gtk/gtklayout.c:
* gtk/gtklabel.c:
* gtk/gtkargcollector.c:
* gtk/gtkarg.c: various fixups to work with GTK_TYPE_OBJECT
not being a fundamental anymore, and to work with the new
type system (nuked fundamental type varargs clutter).
* gtk/*.c: install finalize handlers in the GObjectClass
part of the class structure.
changed direct GTK_OBJECT()->klass accesses to
GTK_*_GET_CLASS().
changed direct object_class->type accesses to GTK_CLASS_TYPE().
* gtktypeutils.[hc]: use the reserved fundamental ids provided by
GType. made most of the GTK_*() type macros and Gtk* typedefs
simple wrappers around macros and types provided by GType.
most notably, a significant portion of the old API vanished:
GTK_TYPE_MAKE(),
GTK_TYPE_SEQNO(),
GTK_TYPE_FLAT_FIRST, GTK_TYPE_FLAT_LAST,
GTK_TYPE_STRUCTURED_FIRST, GTK_TYPE_STRUCTURED_LAST,
GTK_TYPE_ARGS,
GTK_TYPE_CALLBACK,
GTK_TYPE_C_CALLBACK,
GTK_TYPE_FOREIGN,
GtkTypeQuery,
gtk_type_query(),
gtk_type_set_varargs_type(),
gtk_type_get_varargs_type(),
gtk_type_check_object_cast(),
gtk_type_check_class_cast(),
gtk_type_describe_tree(),
gtk_type_describe_heritage(),
gtk_type_free(),
gtk_type_children_types(),
gtk_type_set_chunk_alloc(),
gtk_type_register_enum(),
gtk_type_register_flags(),
gtk_type_parent_class().
replacements, where available are described in ../docs/Changes-1.4.txt.
implemented compatibility functions for the remaining API.
* configure.in: depend on glib 1.3.1, use gobject module.
2000-05-12 15:25:50 +00:00
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_spin_button_map (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
g_return_if_fail (widget != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (widget));
|
|
|
|
|
1998-03-03 00:20:49 +00:00
|
|
|
if (GTK_WIDGET_REALIZED (widget) && !GTK_WIDGET_MAPPED (widget))
|
1998-02-25 22:03:10 +00:00
|
|
|
{
|
|
|
|
GTK_WIDGET_CLASS (parent_class)->map (widget);
|
1998-04-05 06:58:29 +00:00
|
|
|
gdk_window_show (GTK_SPIN_BUTTON (widget)->panel);
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_spin_button_unmap (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
g_return_if_fail (widget != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (widget));
|
|
|
|
|
|
|
|
if (GTK_WIDGET_MAPPED (widget))
|
|
|
|
{
|
|
|
|
gdk_window_hide (GTK_SPIN_BUTTON (widget)->panel);
|
|
|
|
GTK_WIDGET_CLASS (parent_class)->unmap (widget);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_spin_button_realize (GtkWidget *widget)
|
|
|
|
{
|
1999-02-28 16:04:47 +00:00
|
|
|
GtkSpinButton *spin_button;
|
1998-02-25 22:03:10 +00:00
|
|
|
GdkWindowAttr attributes;
|
|
|
|
gint attributes_mask;
|
1998-04-05 06:58:29 +00:00
|
|
|
guint real_width;
|
1999-02-28 16:04:47 +00:00
|
|
|
gint return_val;
|
1998-02-25 22:03:10 +00:00
|
|
|
|
|
|
|
g_return_if_fail (widget != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (widget));
|
1998-04-05 06:58:29 +00:00
|
|
|
|
1999-02-28 16:04:47 +00:00
|
|
|
spin_button = GTK_SPIN_BUTTON (widget);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
1998-04-05 06:58:29 +00:00
|
|
|
real_width = widget->allocation.width;
|
|
|
|
widget->allocation.width -= ARROW_SIZE + 2 * widget->style->klass->xthickness;
|
1998-06-17 20:07:31 +00:00
|
|
|
gtk_widget_set_events (widget, gtk_widget_get_events (widget) |
|
|
|
|
GDK_KEY_RELEASE_MASK);
|
1998-02-25 22:03:10 +00:00
|
|
|
GTK_WIDGET_CLASS (parent_class)->realize (widget);
|
1998-06-17 20:07:31 +00:00
|
|
|
|
1998-04-05 06:58:29 +00:00
|
|
|
widget->allocation.width = real_width;
|
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
attributes.window_type = GDK_WINDOW_CHILD;
|
|
|
|
attributes.wclass = GDK_INPUT_OUTPUT;
|
|
|
|
attributes.visual = gtk_widget_get_visual (widget);
|
|
|
|
attributes.colormap = gtk_widget_get_colormap (widget);
|
|
|
|
attributes.event_mask = gtk_widget_get_events (widget);
|
|
|
|
attributes.event_mask |= GDK_EXPOSURE_MASK | GDK_BUTTON_PRESS_MASK
|
|
|
|
| GDK_BUTTON_RELEASE_MASK | GDK_LEAVE_NOTIFY_MASK | GDK_ENTER_NOTIFY_MASK
|
|
|
|
| GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK;
|
|
|
|
|
|
|
|
attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP;
|
|
|
|
|
1998-04-05 06:58:29 +00:00
|
|
|
attributes.x = (widget->allocation.x + widget->allocation.width - ARROW_SIZE -
|
|
|
|
2 * widget->style->klass->xthickness);
|
|
|
|
attributes.y = widget->allocation.y + (widget->allocation.height -
|
|
|
|
widget->requisition.height) / 2;
|
|
|
|
attributes.width = ARROW_SIZE + 2 * widget->style->klass->xthickness;
|
|
|
|
attributes.height = widget->requisition.height;
|
1998-02-25 22:03:10 +00:00
|
|
|
|
1999-02-28 16:04:47 +00:00
|
|
|
spin_button->panel = gdk_window_new (gtk_widget_get_parent_window (widget),
|
|
|
|
&attributes, attributes_mask);
|
|
|
|
gdk_window_set_user_data (spin_button->panel, widget);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
1999-02-28 16:04:47 +00:00
|
|
|
gtk_style_set_background (widget->style, spin_button->panel, GTK_STATE_NORMAL);
|
|
|
|
|
|
|
|
return_val = FALSE;
|
|
|
|
gtk_signal_emit (GTK_OBJECT (spin_button), spinbutton_signals[OUTPUT],
|
|
|
|
&return_val);
|
|
|
|
if (return_val == FALSE)
|
|
|
|
gtk_spin_button_default_output (spin_button);
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_spin_button_unrealize (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkSpinButton *spin;
|
|
|
|
|
|
|
|
g_return_if_fail (widget != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (widget));
|
|
|
|
|
|
|
|
spin = GTK_SPIN_BUTTON (widget);
|
|
|
|
|
|
|
|
GTK_WIDGET_CLASS (parent_class)->unrealize (widget);
|
|
|
|
|
|
|
|
if (spin->panel)
|
|
|
|
{
|
1998-03-03 00:20:49 +00:00
|
|
|
gdk_window_set_user_data (spin->panel, NULL);
|
1998-02-25 22:03:10 +00:00
|
|
|
gdk_window_destroy (spin->panel);
|
|
|
|
spin->panel = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_spin_button_size_request (GtkWidget *widget,
|
|
|
|
GtkRequisition *requisition)
|
|
|
|
{
|
|
|
|
g_return_if_fail (widget != NULL);
|
|
|
|
g_return_if_fail (requisition != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (widget));
|
|
|
|
|
|
|
|
GTK_WIDGET_CLASS (parent_class)->size_request (widget, requisition);
|
|
|
|
|
|
|
|
requisition->width = MIN_SPIN_BUTTON_WIDTH + ARROW_SIZE
|
|
|
|
+ 2 * widget->style->klass->xthickness;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_spin_button_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation)
|
|
|
|
{
|
|
|
|
GtkAllocation child_allocation;
|
|
|
|
|
|
|
|
g_return_if_fail (widget != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (widget));
|
|
|
|
g_return_if_fail (allocation != NULL);
|
|
|
|
|
|
|
|
child_allocation = *allocation;
|
2000-03-14 19:57:25 +00:00
|
|
|
if (child_allocation.width > ARROW_SIZE + 2 * widget->style->klass->xthickness)
|
|
|
|
child_allocation.width -= ARROW_SIZE + 2 * widget->style->klass->xthickness;
|
1998-02-25 22:03:10 +00:00
|
|
|
|
|
|
|
GTK_WIDGET_CLASS (parent_class)->size_allocate (widget, &child_allocation);
|
|
|
|
|
|
|
|
widget->allocation = *allocation;
|
1998-03-03 00:20:49 +00:00
|
|
|
|
|
|
|
if (GTK_WIDGET_REALIZED (widget))
|
|
|
|
{
|
1998-04-05 06:58:29 +00:00
|
|
|
child_allocation.width = ARROW_SIZE + 2 * widget->style->klass->xthickness;
|
1998-03-03 00:20:49 +00:00
|
|
|
child_allocation.height = widget->requisition.height;
|
|
|
|
child_allocation.x = (allocation->x + allocation->width - ARROW_SIZE -
|
|
|
|
2 * widget->style->klass->xthickness);
|
1998-04-05 06:58:29 +00:00
|
|
|
child_allocation.y = allocation->y + (allocation->height - widget->requisition.height) / 2;
|
1998-03-03 00:20:49 +00:00
|
|
|
|
|
|
|
gdk_window_move_resize (GTK_SPIN_BUTTON (widget)->panel,
|
|
|
|
child_allocation.x,
|
|
|
|
child_allocation.y,
|
|
|
|
child_allocation.width,
|
|
|
|
child_allocation.height);
|
|
|
|
}
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_spin_button_paint (GtkWidget *widget,
|
|
|
|
GdkRectangle *area)
|
|
|
|
{
|
|
|
|
GtkSpinButton *spin;
|
|
|
|
|
|
|
|
g_return_if_fail (widget != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (widget));
|
|
|
|
|
|
|
|
spin = GTK_SPIN_BUTTON (widget);
|
|
|
|
|
|
|
|
if (GTK_WIDGET_DRAWABLE (widget))
|
|
|
|
{
|
1998-06-13 08:56:27 +00:00
|
|
|
if (spin->shadow_type != GTK_SHADOW_NONE)
|
1998-11-06 22:05:02 +00:00
|
|
|
gtk_paint_box (widget->style, spin->panel,
|
|
|
|
GTK_STATE_NORMAL, spin->shadow_type,
|
|
|
|
area, widget, "spinbutton",
|
|
|
|
0, 0,
|
|
|
|
ARROW_SIZE + 2 * widget->style->klass->xthickness,
|
|
|
|
widget->requisition.height);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gdk_window_set_back_pixmap (spin->panel, NULL, TRUE);
|
|
|
|
gdk_window_clear_area (spin->panel, area->x, area->y, area->width, area->height);
|
|
|
|
}
|
|
|
|
gtk_spin_button_draw_arrow (spin, GTK_ARROW_UP);
|
|
|
|
gtk_spin_button_draw_arrow (spin, GTK_ARROW_DOWN);
|
|
|
|
|
|
|
|
GTK_WIDGET_CLASS (parent_class)->draw (widget, area);
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_spin_button_draw (GtkWidget *widget,
|
|
|
|
GdkRectangle *area)
|
|
|
|
{
|
|
|
|
g_return_if_fail (widget != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (widget));
|
|
|
|
g_return_if_fail (area != NULL);
|
|
|
|
|
|
|
|
if (GTK_WIDGET_DRAWABLE (widget))
|
|
|
|
gtk_spin_button_paint (widget, area);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gint
|
|
|
|
gtk_spin_button_expose (GtkWidget *widget,
|
|
|
|
GdkEventExpose *event)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (widget != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (widget), FALSE);
|
|
|
|
g_return_val_if_fail (event != NULL, FALSE);
|
|
|
|
|
|
|
|
if (GTK_WIDGET_DRAWABLE (widget))
|
|
|
|
gtk_spin_button_paint (widget, &event->area);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_spin_button_draw_arrow (GtkSpinButton *spin_button,
|
|
|
|
guint arrow)
|
|
|
|
{
|
|
|
|
GtkStateType state_type;
|
|
|
|
GtkShadowType shadow_type;
|
|
|
|
GtkWidget *widget;
|
1998-06-17 20:07:31 +00:00
|
|
|
gint x;
|
|
|
|
gint y;
|
1998-02-25 22:03:10 +00:00
|
|
|
|
|
|
|
g_return_if_fail (spin_button != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
|
|
widget = GTK_WIDGET (spin_button);
|
|
|
|
|
|
|
|
if (GTK_WIDGET_DRAWABLE (spin_button))
|
|
|
|
{
|
1998-12-06 14:18:46 +00:00
|
|
|
if (!spin_button->wrap &&
|
|
|
|
(((arrow == GTK_ARROW_UP &&
|
|
|
|
(spin_button->adjustment->upper - spin_button->adjustment->value
|
|
|
|
<= EPSILON))) ||
|
|
|
|
((arrow == GTK_ARROW_DOWN &&
|
|
|
|
(spin_button->adjustment->value - spin_button->adjustment->lower
|
|
|
|
<= EPSILON)))))
|
|
|
|
{
|
|
|
|
shadow_type = GTK_SHADOW_ETCHED_IN;
|
|
|
|
state_type = GTK_STATE_NORMAL;
|
|
|
|
}
|
1998-02-25 22:03:10 +00:00
|
|
|
else
|
1998-12-06 14:18:46 +00:00
|
|
|
{
|
|
|
|
if (spin_button->in_child == arrow)
|
|
|
|
{
|
|
|
|
if (spin_button->click_child == arrow)
|
|
|
|
state_type = GTK_STATE_ACTIVE;
|
|
|
|
else
|
|
|
|
state_type = GTK_STATE_PRELIGHT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
state_type = GTK_STATE_NORMAL;
|
|
|
|
|
|
|
|
if (spin_button->click_child == arrow)
|
|
|
|
shadow_type = GTK_SHADOW_IN;
|
|
|
|
else
|
|
|
|
shadow_type = GTK_SHADOW_OUT;
|
|
|
|
}
|
1998-02-25 22:03:10 +00:00
|
|
|
if (arrow == GTK_ARROW_UP)
|
|
|
|
{
|
1998-06-17 20:07:31 +00:00
|
|
|
if (spin_button->shadow_type != GTK_SHADOW_NONE)
|
|
|
|
{
|
|
|
|
x = widget->style->klass->xthickness;
|
|
|
|
y = widget->style->klass->ythickness;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x = widget->style->klass->xthickness - 1;
|
|
|
|
y = widget->style->klass->ythickness - 1;
|
|
|
|
}
|
1998-11-06 22:05:02 +00:00
|
|
|
gtk_paint_arrow (widget->style, spin_button->panel,
|
|
|
|
state_type, shadow_type,
|
|
|
|
NULL, widget, "spinbutton",
|
|
|
|
arrow, TRUE,
|
|
|
|
x, y, ARROW_SIZE, widget->requisition.height / 2
|
|
|
|
- widget->style->klass->ythickness);
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1998-06-17 20:07:31 +00:00
|
|
|
if (spin_button->shadow_type != GTK_SHADOW_NONE)
|
|
|
|
{
|
|
|
|
x = widget->style->klass->xthickness;
|
|
|
|
y = widget->requisition.height / 2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x = widget->style->klass->xthickness - 1;
|
|
|
|
y = widget->requisition.height / 2 + 1;
|
|
|
|
}
|
1998-11-06 22:05:02 +00:00
|
|
|
gtk_paint_arrow (widget->style, spin_button->panel,
|
|
|
|
state_type, shadow_type,
|
|
|
|
NULL, widget, "spinbutton",
|
|
|
|
arrow, TRUE,
|
|
|
|
x, y, ARROW_SIZE, widget->requisition.height / 2
|
|
|
|
- widget->style->klass->ythickness);
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gint
|
|
|
|
gtk_spin_button_enter_notify (GtkWidget *widget,
|
|
|
|
GdkEventCrossing *event)
|
|
|
|
{
|
|
|
|
GtkSpinButton *spin;
|
|
|
|
|
|
|
|
g_return_val_if_fail (widget != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (widget), FALSE);
|
|
|
|
g_return_val_if_fail (event != NULL, FALSE);
|
|
|
|
|
|
|
|
spin = GTK_SPIN_BUTTON (widget);
|
|
|
|
|
|
|
|
if (event->window == spin->panel)
|
|
|
|
{
|
|
|
|
gint x;
|
|
|
|
gint y;
|
|
|
|
|
|
|
|
gdk_window_get_pointer (spin->panel, &x, &y, NULL);
|
|
|
|
|
|
|
|
if (y <= widget->requisition.height / 2)
|
|
|
|
{
|
|
|
|
spin->in_child = GTK_ARROW_UP;
|
|
|
|
if (spin->click_child == 2)
|
|
|
|
gtk_spin_button_draw_arrow (spin, GTK_ARROW_UP);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
spin->in_child = GTK_ARROW_DOWN;
|
|
|
|
if (spin->click_child == 2)
|
|
|
|
gtk_spin_button_draw_arrow (spin, GTK_ARROW_DOWN);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gint
|
|
|
|
gtk_spin_button_leave_notify (GtkWidget *widget,
|
|
|
|
GdkEventCrossing *event)
|
|
|
|
{
|
|
|
|
GtkSpinButton *spin;
|
|
|
|
|
|
|
|
g_return_val_if_fail (widget != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (widget), FALSE);
|
|
|
|
g_return_val_if_fail (event != NULL, FALSE);
|
|
|
|
|
|
|
|
spin = GTK_SPIN_BUTTON (widget);
|
|
|
|
|
|
|
|
if (event->window == spin->panel && spin->click_child == 2)
|
|
|
|
{
|
|
|
|
if (spin->in_child == GTK_ARROW_UP)
|
|
|
|
{
|
|
|
|
spin->in_child = 2;
|
|
|
|
gtk_spin_button_draw_arrow (spin, GTK_ARROW_UP);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
spin->in_child = 2;
|
|
|
|
gtk_spin_button_draw_arrow (spin, GTK_ARROW_DOWN);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gint
|
|
|
|
gtk_spin_button_focus_out (GtkWidget *widget,
|
|
|
|
GdkEventFocus *event)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (widget != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (widget), FALSE);
|
|
|
|
g_return_val_if_fail (event != NULL, FALSE);
|
|
|
|
|
1998-12-14 19:13:58 +00:00
|
|
|
if (GTK_EDITABLE (widget)->editable)
|
|
|
|
gtk_spin_button_update (GTK_SPIN_BUTTON (widget));
|
1998-02-25 22:03:10 +00:00
|
|
|
|
1998-03-11 06:11:52 +00:00
|
|
|
return GTK_WIDGET_CLASS (parent_class)->focus_out_event (widget, event);
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
|
|
|
|
2000-02-18 20:02:24 +00:00
|
|
|
static gint
|
|
|
|
gtk_spin_button_scroll (GtkWidget *widget,
|
|
|
|
GdkEventScroll *event)
|
|
|
|
{
|
|
|
|
GtkSpinButton *spin;
|
|
|
|
|
|
|
|
g_return_val_if_fail (widget != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (widget), FALSE);
|
|
|
|
g_return_val_if_fail (event != NULL, FALSE);
|
|
|
|
|
|
|
|
spin = GTK_SPIN_BUTTON (widget);
|
|
|
|
|
|
|
|
if (event->direction == GDK_SCROLL_UP)
|
|
|
|
{
|
|
|
|
if (!GTK_WIDGET_HAS_FOCUS (widget))
|
|
|
|
gtk_widget_grab_focus (widget);
|
|
|
|
gtk_spin_button_real_spin (spin, spin->adjustment->step_increment);
|
|
|
|
}
|
|
|
|
else if (event->direction == GDK_SCROLL_DOWN)
|
|
|
|
{
|
|
|
|
if (!GTK_WIDGET_HAS_FOCUS (widget))
|
|
|
|
gtk_widget_grab_focus (widget);
|
|
|
|
gtk_spin_button_real_spin (spin, -spin->adjustment->step_increment);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
static gint
|
|
|
|
gtk_spin_button_button_press (GtkWidget *widget,
|
|
|
|
GdkEventButton *event)
|
|
|
|
{
|
|
|
|
GtkSpinButton *spin;
|
|
|
|
|
|
|
|
g_return_val_if_fail (widget != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (widget), FALSE);
|
|
|
|
g_return_val_if_fail (event != NULL, FALSE);
|
|
|
|
|
|
|
|
spin = GTK_SPIN_BUTTON (widget);
|
|
|
|
|
|
|
|
if (!spin->button)
|
|
|
|
{
|
2000-02-18 20:02:24 +00:00
|
|
|
if (event->window == spin->panel)
|
1998-02-25 22:03:10 +00:00
|
|
|
{
|
|
|
|
if (!GTK_WIDGET_HAS_FOCUS (widget))
|
|
|
|
gtk_widget_grab_focus (widget);
|
|
|
|
gtk_grab_add (widget);
|
|
|
|
spin->button = event->button;
|
1998-03-11 06:11:52 +00:00
|
|
|
|
1998-12-14 19:13:58 +00:00
|
|
|
if (GTK_EDITABLE (widget)->editable)
|
|
|
|
gtk_spin_button_update (spin);
|
1998-03-11 06:11:52 +00:00
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
if (event->y <= widget->requisition.height / 2)
|
|
|
|
{
|
|
|
|
spin->click_child = GTK_ARROW_UP;
|
|
|
|
if (event->button == 1)
|
|
|
|
{
|
1998-06-24 07:59:05 +00:00
|
|
|
gtk_spin_button_real_spin (spin,
|
1998-06-19 17:33:51 +00:00
|
|
|
spin->adjustment->step_increment);
|
1998-02-25 22:03:10 +00:00
|
|
|
if (!spin->timer)
|
|
|
|
{
|
|
|
|
spin->timer_step = spin->adjustment->step_increment;
|
|
|
|
spin->need_timer = TRUE;
|
|
|
|
spin->timer = gtk_timeout_add
|
|
|
|
(SPIN_BUTTON_INITIAL_TIMER_DELAY,
|
|
|
|
(GtkFunction) gtk_spin_button_timer, (gpointer) spin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (event->button == 2)
|
|
|
|
{
|
1998-06-24 07:59:05 +00:00
|
|
|
gtk_spin_button_real_spin (spin,
|
1998-06-19 17:33:51 +00:00
|
|
|
spin->adjustment->page_increment);
|
1998-02-25 22:03:10 +00:00
|
|
|
if (!spin->timer)
|
|
|
|
{
|
|
|
|
spin->timer_step = spin->adjustment->page_increment;
|
|
|
|
spin->need_timer = TRUE;
|
|
|
|
spin->timer = gtk_timeout_add
|
|
|
|
(SPIN_BUTTON_INITIAL_TIMER_DELAY,
|
|
|
|
(GtkFunction) gtk_spin_button_timer, (gpointer) spin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
gtk_spin_button_draw_arrow (spin, GTK_ARROW_UP);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
spin->click_child = GTK_ARROW_DOWN;
|
|
|
|
if (event->button == 1)
|
|
|
|
{
|
1998-06-24 07:59:05 +00:00
|
|
|
gtk_spin_button_real_spin (spin,
|
|
|
|
-spin->adjustment->step_increment);
|
1998-02-25 22:03:10 +00:00
|
|
|
if (!spin->timer)
|
|
|
|
{
|
|
|
|
spin->timer_step = spin->adjustment->step_increment;
|
|
|
|
spin->need_timer = TRUE;
|
|
|
|
spin->timer = gtk_timeout_add
|
|
|
|
(SPIN_BUTTON_INITIAL_TIMER_DELAY,
|
|
|
|
(GtkFunction) gtk_spin_button_timer, (gpointer) spin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (event->button == 2)
|
|
|
|
{
|
1998-06-24 07:59:05 +00:00
|
|
|
gtk_spin_button_real_spin (spin,
|
|
|
|
-spin->adjustment->page_increment);
|
1998-02-25 22:03:10 +00:00
|
|
|
if (!spin->timer)
|
|
|
|
{
|
|
|
|
spin->timer_step = spin->adjustment->page_increment;
|
|
|
|
spin->need_timer = TRUE;
|
|
|
|
spin->timer = gtk_timeout_add
|
|
|
|
(SPIN_BUTTON_INITIAL_TIMER_DELAY,
|
|
|
|
(GtkFunction) gtk_spin_button_timer, (gpointer) spin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
gtk_spin_button_draw_arrow (spin, GTK_ARROW_DOWN);
|
|
|
|
}
|
|
|
|
}
|
1998-03-11 06:11:52 +00:00
|
|
|
else
|
1998-02-25 22:03:10 +00:00
|
|
|
GTK_WIDGET_CLASS (parent_class)->button_press_event (widget, event);
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gint
|
|
|
|
gtk_spin_button_button_release (GtkWidget *widget,
|
|
|
|
GdkEventButton *event)
|
|
|
|
{
|
|
|
|
GtkSpinButton *spin;
|
|
|
|
|
|
|
|
g_return_val_if_fail (widget != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (widget), FALSE);
|
|
|
|
g_return_val_if_fail (event != NULL, FALSE);
|
|
|
|
|
|
|
|
spin = GTK_SPIN_BUTTON (widget);
|
|
|
|
|
|
|
|
if (event->button == spin->button)
|
|
|
|
{
|
|
|
|
guint click_child;
|
|
|
|
|
|
|
|
if (spin->timer)
|
|
|
|
{
|
|
|
|
gtk_timeout_remove (spin->timer);
|
|
|
|
spin->timer = 0;
|
|
|
|
spin->timer_calls = 0;
|
|
|
|
spin->need_timer = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (event->button == 3)
|
|
|
|
{
|
|
|
|
if (event->y >= 0 && event->x >= 0 &&
|
|
|
|
event->y <= widget->requisition.height &&
|
|
|
|
event->x <= ARROW_SIZE + 2 * widget->style->klass->xthickness)
|
|
|
|
{
|
|
|
|
if (spin->click_child == GTK_ARROW_UP &&
|
|
|
|
event->y <= widget->requisition.height / 2)
|
1998-06-24 07:59:05 +00:00
|
|
|
{
|
|
|
|
gfloat diff;
|
|
|
|
|
|
|
|
diff = spin->adjustment->upper - spin->adjustment->value;
|
|
|
|
if (diff > EPSILON)
|
|
|
|
gtk_spin_button_real_spin (spin, diff);
|
|
|
|
}
|
1998-02-25 22:03:10 +00:00
|
|
|
else if (spin->click_child == GTK_ARROW_DOWN &&
|
|
|
|
event->y > widget->requisition.height / 2)
|
1998-06-24 07:59:05 +00:00
|
|
|
{
|
|
|
|
gfloat diff;
|
|
|
|
|
|
|
|
diff = spin->adjustment->value - spin->adjustment->lower;
|
|
|
|
if (diff > EPSILON)
|
|
|
|
gtk_spin_button_real_spin (spin, -diff);
|
|
|
|
}
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
gtk_grab_remove (widget);
|
|
|
|
click_child = spin->click_child;
|
|
|
|
spin->click_child = 2;
|
|
|
|
spin->button = 0;
|
|
|
|
gtk_spin_button_draw_arrow (spin, click_child);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
GTK_WIDGET_CLASS (parent_class)->button_release_event (widget, event);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gint
|
|
|
|
gtk_spin_button_motion_notify (GtkWidget *widget,
|
|
|
|
GdkEventMotion *event)
|
|
|
|
{
|
|
|
|
GtkSpinButton *spin;
|
|
|
|
|
|
|
|
g_return_val_if_fail (widget != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (widget), FALSE);
|
|
|
|
g_return_val_if_fail (event != NULL, FALSE);
|
|
|
|
|
|
|
|
spin = GTK_SPIN_BUTTON (widget);
|
|
|
|
|
|
|
|
if (spin->button)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (event->window == spin->panel)
|
|
|
|
{
|
|
|
|
gint y;
|
|
|
|
|
|
|
|
y = event->y;
|
|
|
|
if (event->is_hint)
|
|
|
|
gdk_window_get_pointer (spin->panel, NULL, &y, NULL);
|
|
|
|
|
|
|
|
if (y <= widget->requisition.height / 2 &&
|
|
|
|
spin->in_child == GTK_ARROW_DOWN)
|
|
|
|
{
|
|
|
|
spin->in_child = GTK_ARROW_UP;
|
|
|
|
gtk_spin_button_draw_arrow (spin, GTK_ARROW_UP);
|
|
|
|
gtk_spin_button_draw_arrow (spin, GTK_ARROW_DOWN);
|
|
|
|
}
|
|
|
|
else if (y > widget->requisition.height / 2 &&
|
|
|
|
spin->in_child == GTK_ARROW_UP)
|
|
|
|
{
|
|
|
|
spin->in_child = GTK_ARROW_DOWN;
|
|
|
|
gtk_spin_button_draw_arrow (spin, GTK_ARROW_UP);
|
|
|
|
gtk_spin_button_draw_arrow (spin, GTK_ARROW_DOWN);
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
1998-03-11 06:11:52 +00:00
|
|
|
return GTK_WIDGET_CLASS (parent_class)->motion_notify_event (widget, event);
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gint
|
|
|
|
gtk_spin_button_timer (GtkSpinButton *spin_button)
|
|
|
|
{
|
1998-12-15 07:32:11 +00:00
|
|
|
gboolean retval = FALSE;
|
|
|
|
|
1998-12-16 20:09:30 +00:00
|
|
|
GDK_THREADS_ENTER ();
|
1998-02-25 22:03:10 +00:00
|
|
|
|
|
|
|
if (spin_button->timer)
|
|
|
|
{
|
1998-06-24 07:59:05 +00:00
|
|
|
if (spin_button->click_child == GTK_ARROW_UP)
|
|
|
|
gtk_spin_button_real_spin (spin_button, spin_button->timer_step);
|
|
|
|
else
|
|
|
|
gtk_spin_button_real_spin (spin_button, -spin_button->timer_step);
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
|
|
if (spin_button->need_timer)
|
|
|
|
{
|
|
|
|
spin_button->need_timer = FALSE;
|
|
|
|
spin_button->timer = gtk_timeout_add
|
|
|
|
(SPIN_BUTTON_TIMER_DELAY, (GtkFunction) gtk_spin_button_timer,
|
|
|
|
(gpointer) spin_button);
|
|
|
|
}
|
1998-12-15 07:32:11 +00:00
|
|
|
else
|
1998-02-25 22:03:10 +00:00
|
|
|
{
|
1998-12-15 07:32:11 +00:00
|
|
|
if (spin_button->climb_rate > 0.0 && spin_button->timer_step
|
|
|
|
< spin_button->adjustment->page_increment)
|
1998-02-25 22:03:10 +00:00
|
|
|
{
|
1998-12-15 07:32:11 +00:00
|
|
|
if (spin_button->timer_calls < MAX_TIMER_CALLS)
|
|
|
|
spin_button->timer_calls++;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
spin_button->timer_calls = 0;
|
|
|
|
spin_button->timer_step += spin_button->climb_rate;
|
|
|
|
}
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
1998-12-15 07:32:11 +00:00
|
|
|
retval = TRUE;
|
1998-06-19 17:33:51 +00:00
|
|
|
}
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
1998-12-15 07:32:11 +00:00
|
|
|
|
1998-12-16 20:09:30 +00:00
|
|
|
GDK_THREADS_LEAVE ();
|
1998-12-15 07:32:11 +00:00
|
|
|
|
|
|
|
return retval;
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1998-06-19 17:33:51 +00:00
|
|
|
gtk_spin_button_value_changed (GtkAdjustment *adjustment,
|
1998-02-25 22:03:10 +00:00
|
|
|
GtkSpinButton *spin_button)
|
|
|
|
{
|
1999-02-28 16:04:47 +00:00
|
|
|
gint return_val;
|
1998-02-25 22:03:10 +00:00
|
|
|
|
1998-06-19 17:33:51 +00:00
|
|
|
g_return_if_fail (adjustment != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_ADJUSTMENT (adjustment));
|
1998-03-11 06:11:52 +00:00
|
|
|
|
1999-02-28 16:04:47 +00:00
|
|
|
return_val = FALSE;
|
|
|
|
gtk_signal_emit (GTK_OBJECT (spin_button), spinbutton_signals[OUTPUT],
|
|
|
|
&return_val);
|
|
|
|
if (return_val == FALSE)
|
|
|
|
gtk_spin_button_default_output (spin_button);
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
1998-03-11 06:11:52 +00:00
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
static gint
|
|
|
|
gtk_spin_button_key_press (GtkWidget *widget,
|
|
|
|
GdkEventKey *event)
|
|
|
|
{
|
|
|
|
GtkSpinButton *spin;
|
1998-03-11 06:11:52 +00:00
|
|
|
gint key;
|
1998-06-17 20:07:31 +00:00
|
|
|
gboolean key_repeat = FALSE;
|
1998-03-11 06:11:52 +00:00
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
g_return_val_if_fail (widget != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (widget), FALSE);
|
1998-06-19 17:33:51 +00:00
|
|
|
g_return_val_if_fail (event != NULL, FALSE);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
|
|
|
spin = GTK_SPIN_BUTTON (widget);
|
1998-03-11 06:11:52 +00:00
|
|
|
key = event->keyval;
|
1998-02-25 22:03:10 +00:00
|
|
|
|
1998-06-17 20:07:31 +00:00
|
|
|
key_repeat = (event->time == spin->ev_time);
|
|
|
|
|
1998-12-14 19:13:58 +00:00
|
|
|
if (GTK_EDITABLE (widget)->editable &&
|
|
|
|
(key == GDK_Up || key == GDK_Down ||
|
|
|
|
key == GDK_Page_Up || key == GDK_Page_Down))
|
1998-03-11 06:11:52 +00:00
|
|
|
gtk_spin_button_update (spin);
|
|
|
|
|
|
|
|
switch (key)
|
1998-02-25 22:03:10 +00:00
|
|
|
{
|
|
|
|
case GDK_Up:
|
1998-06-19 17:33:51 +00:00
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
if (GTK_WIDGET_HAS_FOCUS (widget))
|
|
|
|
{
|
|
|
|
gtk_signal_emit_stop_by_name (GTK_OBJECT (widget),
|
|
|
|
"key_press_event");
|
1998-06-17 20:07:31 +00:00
|
|
|
if (!key_repeat)
|
|
|
|
spin->timer_step = spin->adjustment->step_increment;
|
|
|
|
|
1998-06-24 07:59:05 +00:00
|
|
|
gtk_spin_button_real_spin (spin, spin->timer_step);
|
1998-06-17 20:07:31 +00:00
|
|
|
|
|
|
|
if (key_repeat)
|
|
|
|
{
|
|
|
|
if (spin->climb_rate > 0.0 && spin->timer_step
|
|
|
|
< spin->adjustment->page_increment)
|
|
|
|
{
|
|
|
|
if (spin->timer_calls < MAX_TIMER_CALLS)
|
|
|
|
spin->timer_calls++;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
spin->timer_calls = 0;
|
|
|
|
spin->timer_step += spin->climb_rate;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1998-02-25 22:03:10 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
1998-06-19 17:33:51 +00:00
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
case GDK_Down:
|
1998-06-19 17:33:51 +00:00
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
if (GTK_WIDGET_HAS_FOCUS (widget))
|
|
|
|
{
|
|
|
|
gtk_signal_emit_stop_by_name (GTK_OBJECT (widget),
|
|
|
|
"key_press_event");
|
1998-06-17 20:07:31 +00:00
|
|
|
if (!key_repeat)
|
|
|
|
spin->timer_step = spin->adjustment->step_increment;
|
|
|
|
|
1998-06-24 07:59:05 +00:00
|
|
|
gtk_spin_button_real_spin (spin, -spin->timer_step);
|
1998-06-17 20:07:31 +00:00
|
|
|
|
|
|
|
if (key_repeat)
|
|
|
|
{
|
|
|
|
if (spin->climb_rate > 0.0 && spin->timer_step
|
|
|
|
< spin->adjustment->page_increment)
|
|
|
|
{
|
|
|
|
if (spin->timer_calls < MAX_TIMER_CALLS)
|
|
|
|
spin->timer_calls++;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
spin->timer_calls = 0;
|
|
|
|
spin->timer_step += spin->climb_rate;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1998-02-25 22:03:10 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
1998-06-19 17:33:51 +00:00
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
case GDK_Page_Up:
|
1998-06-19 17:33:51 +00:00
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
if (event->state & GDK_CONTROL_MASK)
|
1998-06-24 07:59:05 +00:00
|
|
|
{
|
|
|
|
gfloat diff = spin->adjustment->upper - spin->adjustment->value;
|
|
|
|
if (diff > EPSILON)
|
|
|
|
gtk_spin_button_real_spin (spin, diff);
|
|
|
|
}
|
1998-02-25 22:03:10 +00:00
|
|
|
else
|
1998-06-24 07:59:05 +00:00
|
|
|
gtk_spin_button_real_spin (spin, spin->adjustment->page_increment);
|
1998-02-25 22:03:10 +00:00
|
|
|
return TRUE;
|
1998-06-19 17:33:51 +00:00
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
case GDK_Page_Down:
|
1998-06-19 17:33:51 +00:00
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
if (event->state & GDK_CONTROL_MASK)
|
1998-06-24 07:59:05 +00:00
|
|
|
{
|
|
|
|
gfloat diff = spin->adjustment->value - spin->adjustment->lower;
|
|
|
|
if (diff > EPSILON)
|
|
|
|
gtk_spin_button_real_spin (spin, -diff);
|
|
|
|
}
|
1998-02-25 22:03:10 +00:00
|
|
|
else
|
1998-06-24 07:59:05 +00:00
|
|
|
gtk_spin_button_real_spin (spin, -spin->adjustment->page_increment);
|
1998-02-25 22:03:10 +00:00
|
|
|
return TRUE;
|
1998-06-19 17:33:51 +00:00
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
1998-06-19 17:33:51 +00:00
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
return GTK_WIDGET_CLASS (parent_class)->key_press_event (widget, event);
|
|
|
|
}
|
|
|
|
|
1998-06-17 20:07:31 +00:00
|
|
|
static gint
|
|
|
|
gtk_spin_button_key_release (GtkWidget *widget,
|
|
|
|
GdkEventKey *event)
|
|
|
|
{
|
|
|
|
GtkSpinButton *spin;
|
|
|
|
|
|
|
|
g_return_val_if_fail (widget != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (widget), FALSE);
|
|
|
|
|
|
|
|
spin = GTK_SPIN_BUTTON (widget);
|
|
|
|
|
|
|
|
spin->ev_time = event->time;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
1998-03-11 06:11:52 +00:00
|
|
|
static void
|
|
|
|
gtk_spin_button_snap (GtkSpinButton *spin_button,
|
|
|
|
gfloat val)
|
|
|
|
{
|
|
|
|
gfloat inc;
|
|
|
|
gfloat tmp;
|
|
|
|
|
|
|
|
inc = spin_button->adjustment->step_increment;
|
|
|
|
tmp = (val - spin_button->adjustment->lower) / inc;
|
|
|
|
if (tmp - floor (tmp) < ceil (tmp) - tmp)
|
|
|
|
val = spin_button->adjustment->lower + floor (tmp) * inc;
|
|
|
|
else
|
|
|
|
val = spin_button->adjustment->lower + ceil (tmp) * inc;
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
|
|
if (fabs (val - spin_button->adjustment->value) > EPSILON)
|
|
|
|
gtk_adjustment_set_value (spin_button->adjustment, val);
|
|
|
|
else
|
|
|
|
{
|
1999-02-28 16:04:47 +00:00
|
|
|
gint return_val = FALSE;
|
|
|
|
gtk_signal_emit (GTK_OBJECT (spin_button), spinbutton_signals[OUTPUT],
|
|
|
|
&return_val);
|
|
|
|
if (return_val == FALSE)
|
|
|
|
gtk_spin_button_default_output (spin_button);
|
1998-06-19 17:33:51 +00:00
|
|
|
}
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1998-03-10 03:17:02 +00:00
|
|
|
gtk_spin_button_activate (GtkEditable *editable)
|
1998-02-25 22:03:10 +00:00
|
|
|
{
|
1998-03-10 03:17:02 +00:00
|
|
|
g_return_if_fail (editable != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (editable));
|
1998-02-25 22:03:10 +00:00
|
|
|
|
1998-03-10 03:17:02 +00:00
|
|
|
if (editable->editable)
|
|
|
|
gtk_spin_button_update (GTK_SPIN_BUTTON (editable));
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
|
|
|
|
1998-06-19 17:33:51 +00:00
|
|
|
static void
|
|
|
|
gtk_spin_button_insert_text (GtkEditable *editable,
|
|
|
|
const gchar *new_text,
|
|
|
|
gint new_text_length,
|
|
|
|
gint *position)
|
|
|
|
{
|
|
|
|
GtkEntry *entry;
|
|
|
|
GtkSpinButton *spin;
|
|
|
|
|
|
|
|
g_return_if_fail (editable != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (editable));
|
|
|
|
|
|
|
|
entry = GTK_ENTRY (editable);
|
|
|
|
spin = GTK_SPIN_BUTTON (editable);
|
|
|
|
|
|
|
|
if (spin->numeric)
|
|
|
|
{
|
|
|
|
struct lconv *lc;
|
|
|
|
gboolean sign;
|
|
|
|
gint dotpos = -1;
|
|
|
|
gint i;
|
Destroy widgets _after_ propagating unrealize signals through the widget
Mon Dec 7 10:27:09 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c: Destroy widgets _after_ propagating unrealize
signals through the widget heirarchy. This is unpleasant, as it
causes more X traffic, but is necessary, because we have to clean
up our Input Contexts before destroying the X windows.
(from matsu-981109-0.patch)
Mon Dec 7 10:18:18 1998 Owen Taylor <otaylor@redhat.com>
Applied gtk-a-higuti-981202-0 :
[ a-higuti@math.sci.hokudai.ac.jp (Akira Higuchi) ]
* gdk/gdk.h gdk/gdk.c
(gdk_mbstowcs): New function. Nearly equals to mbstowcs, but
implemented by a combination of Xlib functions, so
it works even with X_LOCALE.
(gdk_wcstombs): New function.
(g_mbtowc): Removed. No longer needed.
* gdk/gdk.h gdk/gdkfont.c gdk/gdkdraw.c:
Added _wc() variants to gdk_text_width(),
gdk_char_width(), gdk_draw_text(),
* gdk/gdki18n.h
(mblen, mbtowc, wctomb, mbstowcs, wcstombs,
wcslen, wcscpy, wcsncpy):
Removed. No longer needed.
(iswalnum): Removed.
(gdk_iswalnum): New macro.
(gdk_iswspace): New macro.
* gdk/gdktype.h
(GdkWChar): New typedef.
* gtk/gtkentry.h, gtk/gtkentry.c
There are many changes according to the change of the
internal representation of text, from multibyte string
to wide characters.
* gtk/gtkprivate.h, gtk/gtkmain.c
Removed the variable gtk_use_mb and related codes.
* gtk/gtkspinbutton.c
Some changes according to the change of type of entry->text.
* gtk/gtktext.h, gtk/gtktext.c
Changed the internal representation of text. We use GdkWchar
if a fontset is supplied. If not, we use guchar to save
memory.
1998-12-09 06:36:57 +00:00
|
|
|
GdkWChar pos_sign;
|
|
|
|
GdkWChar neg_sign;
|
|
|
|
guint entry_length;
|
|
|
|
|
|
|
|
entry_length = entry->text_length;
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
|
|
lc = localeconv ();
|
|
|
|
|
|
|
|
if (*(lc->negative_sign))
|
|
|
|
neg_sign = *(lc->negative_sign);
|
|
|
|
else
|
|
|
|
neg_sign = '-';
|
|
|
|
|
|
|
|
if (*(lc->positive_sign))
|
|
|
|
pos_sign = *(lc->positive_sign);
|
|
|
|
else
|
|
|
|
pos_sign = '+';
|
|
|
|
|
Destroy widgets _after_ propagating unrealize signals through the widget
Mon Dec 7 10:27:09 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c: Destroy widgets _after_ propagating unrealize
signals through the widget heirarchy. This is unpleasant, as it
causes more X traffic, but is necessary, because we have to clean
up our Input Contexts before destroying the X windows.
(from matsu-981109-0.patch)
Mon Dec 7 10:18:18 1998 Owen Taylor <otaylor@redhat.com>
Applied gtk-a-higuti-981202-0 :
[ a-higuti@math.sci.hokudai.ac.jp (Akira Higuchi) ]
* gdk/gdk.h gdk/gdk.c
(gdk_mbstowcs): New function. Nearly equals to mbstowcs, but
implemented by a combination of Xlib functions, so
it works even with X_LOCALE.
(gdk_wcstombs): New function.
(g_mbtowc): Removed. No longer needed.
* gdk/gdk.h gdk/gdkfont.c gdk/gdkdraw.c:
Added _wc() variants to gdk_text_width(),
gdk_char_width(), gdk_draw_text(),
* gdk/gdki18n.h
(mblen, mbtowc, wctomb, mbstowcs, wcstombs,
wcslen, wcscpy, wcsncpy):
Removed. No longer needed.
(iswalnum): Removed.
(gdk_iswalnum): New macro.
(gdk_iswspace): New macro.
* gdk/gdktype.h
(GdkWChar): New typedef.
* gtk/gtkentry.h, gtk/gtkentry.c
There are many changes according to the change of the
internal representation of text, from multibyte string
to wide characters.
* gtk/gtkprivate.h, gtk/gtkmain.c
Removed the variable gtk_use_mb and related codes.
* gtk/gtkspinbutton.c
Some changes according to the change of type of entry->text.
* gtk/gtktext.h, gtk/gtktext.c
Changed the internal representation of text. We use GdkWchar
if a fontset is supplied. If not, we use guchar to save
memory.
1998-12-09 06:36:57 +00:00
|
|
|
for (sign=0, i=0; i<entry_length; i++)
|
|
|
|
if ((entry->text[i] == neg_sign) ||
|
|
|
|
(entry->text[i] == pos_sign))
|
|
|
|
{
|
|
|
|
sign = 1;
|
|
|
|
break;
|
|
|
|
}
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
|
|
if (sign && !(*position))
|
|
|
|
return;
|
|
|
|
|
Destroy widgets _after_ propagating unrealize signals through the widget
Mon Dec 7 10:27:09 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c: Destroy widgets _after_ propagating unrealize
signals through the widget heirarchy. This is unpleasant, as it
causes more X traffic, but is necessary, because we have to clean
up our Input Contexts before destroying the X windows.
(from matsu-981109-0.patch)
Mon Dec 7 10:18:18 1998 Owen Taylor <otaylor@redhat.com>
Applied gtk-a-higuti-981202-0 :
[ a-higuti@math.sci.hokudai.ac.jp (Akira Higuchi) ]
* gdk/gdk.h gdk/gdk.c
(gdk_mbstowcs): New function. Nearly equals to mbstowcs, but
implemented by a combination of Xlib functions, so
it works even with X_LOCALE.
(gdk_wcstombs): New function.
(g_mbtowc): Removed. No longer needed.
* gdk/gdk.h gdk/gdkfont.c gdk/gdkdraw.c:
Added _wc() variants to gdk_text_width(),
gdk_char_width(), gdk_draw_text(),
* gdk/gdki18n.h
(mblen, mbtowc, wctomb, mbstowcs, wcstombs,
wcslen, wcscpy, wcsncpy):
Removed. No longer needed.
(iswalnum): Removed.
(gdk_iswalnum): New macro.
(gdk_iswspace): New macro.
* gdk/gdktype.h
(GdkWChar): New typedef.
* gtk/gtkentry.h, gtk/gtkentry.c
There are many changes according to the change of the
internal representation of text, from multibyte string
to wide characters.
* gtk/gtkprivate.h, gtk/gtkmain.c
Removed the variable gtk_use_mb and related codes.
* gtk/gtkspinbutton.c
Some changes according to the change of type of entry->text.
* gtk/gtktext.h, gtk/gtktext.c
Changed the internal representation of text. We use GdkWchar
if a fontset is supplied. If not, we use guchar to save
memory.
1998-12-09 06:36:57 +00:00
|
|
|
for (dotpos=-1, i=0; i<entry_length; i++)
|
|
|
|
if (entry->text[i] == *(lc->decimal_point))
|
|
|
|
{
|
|
|
|
dotpos = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1998-06-19 17:33:51 +00:00
|
|
|
if (dotpos > -1 && *position > dotpos &&
|
Destroy widgets _after_ propagating unrealize signals through the widget
Mon Dec 7 10:27:09 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c: Destroy widgets _after_ propagating unrealize
signals through the widget heirarchy. This is unpleasant, as it
causes more X traffic, but is necessary, because we have to clean
up our Input Contexts before destroying the X windows.
(from matsu-981109-0.patch)
Mon Dec 7 10:18:18 1998 Owen Taylor <otaylor@redhat.com>
Applied gtk-a-higuti-981202-0 :
[ a-higuti@math.sci.hokudai.ac.jp (Akira Higuchi) ]
* gdk/gdk.h gdk/gdk.c
(gdk_mbstowcs): New function. Nearly equals to mbstowcs, but
implemented by a combination of Xlib functions, so
it works even with X_LOCALE.
(gdk_wcstombs): New function.
(g_mbtowc): Removed. No longer needed.
* gdk/gdk.h gdk/gdkfont.c gdk/gdkdraw.c:
Added _wc() variants to gdk_text_width(),
gdk_char_width(), gdk_draw_text(),
* gdk/gdki18n.h
(mblen, mbtowc, wctomb, mbstowcs, wcstombs,
wcslen, wcscpy, wcsncpy):
Removed. No longer needed.
(iswalnum): Removed.
(gdk_iswalnum): New macro.
(gdk_iswspace): New macro.
* gdk/gdktype.h
(GdkWChar): New typedef.
* gtk/gtkentry.h, gtk/gtkentry.c
There are many changes according to the change of the
internal representation of text, from multibyte string
to wide characters.
* gtk/gtkprivate.h, gtk/gtkmain.c
Removed the variable gtk_use_mb and related codes.
* gtk/gtkspinbutton.c
Some changes according to the change of type of entry->text.
* gtk/gtktext.h, gtk/gtktext.c
Changed the internal representation of text. We use GdkWchar
if a fontset is supplied. If not, we use guchar to save
memory.
1998-12-09 06:36:57 +00:00
|
|
|
spin->digits - entry_length
|
|
|
|
+ dotpos - new_text_length + 1 < 0)
|
1998-06-19 17:33:51 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < new_text_length; i++)
|
|
|
|
{
|
|
|
|
if (new_text[i] == neg_sign || new_text[i] == pos_sign)
|
|
|
|
{
|
|
|
|
if (sign || (*position) || i)
|
|
|
|
return;
|
|
|
|
sign = TRUE;
|
|
|
|
}
|
|
|
|
else if (new_text[i] == *(lc->decimal_point))
|
|
|
|
{
|
|
|
|
if (!spin->digits || dotpos > -1 ||
|
Destroy widgets _after_ propagating unrealize signals through the widget
Mon Dec 7 10:27:09 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c: Destroy widgets _after_ propagating unrealize
signals through the widget heirarchy. This is unpleasant, as it
causes more X traffic, but is necessary, because we have to clean
up our Input Contexts before destroying the X windows.
(from matsu-981109-0.patch)
Mon Dec 7 10:18:18 1998 Owen Taylor <otaylor@redhat.com>
Applied gtk-a-higuti-981202-0 :
[ a-higuti@math.sci.hokudai.ac.jp (Akira Higuchi) ]
* gdk/gdk.h gdk/gdk.c
(gdk_mbstowcs): New function. Nearly equals to mbstowcs, but
implemented by a combination of Xlib functions, so
it works even with X_LOCALE.
(gdk_wcstombs): New function.
(g_mbtowc): Removed. No longer needed.
* gdk/gdk.h gdk/gdkfont.c gdk/gdkdraw.c:
Added _wc() variants to gdk_text_width(),
gdk_char_width(), gdk_draw_text(),
* gdk/gdki18n.h
(mblen, mbtowc, wctomb, mbstowcs, wcstombs,
wcslen, wcscpy, wcsncpy):
Removed. No longer needed.
(iswalnum): Removed.
(gdk_iswalnum): New macro.
(gdk_iswspace): New macro.
* gdk/gdktype.h
(GdkWChar): New typedef.
* gtk/gtkentry.h, gtk/gtkentry.c
There are many changes according to the change of the
internal representation of text, from multibyte string
to wide characters.
* gtk/gtkprivate.h, gtk/gtkmain.c
Removed the variable gtk_use_mb and related codes.
* gtk/gtkspinbutton.c
Some changes according to the change of type of entry->text.
* gtk/gtktext.h, gtk/gtktext.c
Changed the internal representation of text. We use GdkWchar
if a fontset is supplied. If not, we use guchar to save
memory.
1998-12-09 06:36:57 +00:00
|
|
|
(new_text_length - 1 - i + entry_length
|
|
|
|
- *position > spin->digits))
|
1998-06-19 17:33:51 +00:00
|
|
|
return;
|
|
|
|
dotpos = *position + i;
|
|
|
|
}
|
|
|
|
else if (new_text[i] < 0x30 || new_text[i] > 0x39)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GTK_EDITABLE_CLASS (parent_class)->insert_text (editable, new_text,
|
|
|
|
new_text_length, position);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_spin_button_real_spin (GtkSpinButton *spin_button,
|
1998-06-24 07:59:05 +00:00
|
|
|
gfloat increment)
|
1998-06-19 17:33:51 +00:00
|
|
|
{
|
|
|
|
GtkAdjustment *adj;
|
|
|
|
gfloat new_value = 0.0;
|
1998-06-24 07:59:05 +00:00
|
|
|
|
1998-06-19 17:33:51 +00:00
|
|
|
g_return_if_fail (spin_button != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
|
|
adj = spin_button->adjustment;
|
|
|
|
|
1998-06-24 07:59:05 +00:00
|
|
|
new_value = adj->value + increment;
|
|
|
|
|
|
|
|
if (increment > 0)
|
1998-06-19 17:33:51 +00:00
|
|
|
{
|
|
|
|
if (spin_button->wrap)
|
|
|
|
{
|
|
|
|
if (fabs (adj->value - adj->upper) < EPSILON)
|
|
|
|
new_value = adj->lower;
|
|
|
|
else if (new_value > adj->upper)
|
|
|
|
new_value = adj->upper;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
new_value = MIN (new_value, adj->upper);
|
|
|
|
}
|
1998-06-24 07:59:05 +00:00
|
|
|
else if (increment < 0)
|
1998-06-19 17:33:51 +00:00
|
|
|
{
|
|
|
|
if (spin_button->wrap)
|
|
|
|
{
|
|
|
|
if (fabs (adj->value - adj->lower) < EPSILON)
|
|
|
|
new_value = adj->upper;
|
|
|
|
else if (new_value < adj->lower)
|
|
|
|
new_value = adj->lower;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
new_value = MAX (new_value, adj->lower);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fabs (new_value - adj->value) > EPSILON)
|
|
|
|
gtk_adjustment_set_value (adj, new_value);
|
|
|
|
}
|
|
|
|
|
1999-02-28 16:04:47 +00:00
|
|
|
static gint
|
|
|
|
gtk_spin_button_default_input (GtkSpinButton *spin_button,
|
|
|
|
gfloat *new_val)
|
|
|
|
{
|
|
|
|
gchar *err = NULL;
|
|
|
|
|
|
|
|
*new_val = strtod (gtk_entry_get_text (GTK_ENTRY (spin_button)), &err);
|
|
|
|
if (*err)
|
|
|
|
return INPUT_ERROR;
|
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gint
|
|
|
|
gtk_spin_button_default_output (GtkSpinButton *spin_button)
|
|
|
|
{
|
|
|
|
gchar buf[MAX_TEXT_LENGTH];
|
|
|
|
|
|
|
|
sprintf (buf, "%0.*f", spin_button->digits, spin_button->adjustment->value);
|
|
|
|
if (strcmp (buf, gtk_entry_get_text (GTK_ENTRY (spin_button))))
|
|
|
|
gtk_entry_set_text (GTK_ENTRY (spin_button), buf);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
|
|
/***********************************************************
|
|
|
|
***********************************************************
|
|
|
|
*** Public interface ***
|
|
|
|
***********************************************************
|
|
|
|
***********************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
void
|
1998-09-26 03:12:03 +00:00
|
|
|
gtk_spin_button_configure (GtkSpinButton *spin_button,
|
1998-06-19 17:33:51 +00:00
|
|
|
GtkAdjustment *adjustment,
|
|
|
|
gfloat climb_rate,
|
1998-09-26 03:12:03 +00:00
|
|
|
guint digits)
|
1998-06-19 17:33:51 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (spin_button != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
1998-09-26 03:12:03 +00:00
|
|
|
g_return_if_fail (digits < 6);
|
1998-06-19 17:33:51 +00:00
|
|
|
|
1998-09-26 03:12:03 +00:00
|
|
|
if (adjustment)
|
|
|
|
gtk_spin_button_set_adjustment (spin_button, adjustment);
|
|
|
|
else
|
|
|
|
adjustment = spin_button->adjustment;
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
|
|
spin_button->digits = digits;
|
|
|
|
spin_button->climb_rate = climb_rate;
|
1998-09-26 03:12:03 +00:00
|
|
|
gtk_adjustment_value_changed (adjustment);
|
1998-06-19 17:33:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget *
|
|
|
|
gtk_spin_button_new (GtkAdjustment *adjustment,
|
|
|
|
gfloat climb_rate,
|
1998-09-26 03:12:03 +00:00
|
|
|
guint digits)
|
1998-06-19 17:33:51 +00:00
|
|
|
{
|
|
|
|
GtkSpinButton *spin;
|
|
|
|
|
1998-09-26 03:12:03 +00:00
|
|
|
if (adjustment)
|
|
|
|
g_return_val_if_fail (GTK_IS_ADJUSTMENT (adjustment), NULL);
|
|
|
|
g_return_val_if_fail (digits < 6, NULL);
|
1998-06-19 17:33:51 +00:00
|
|
|
|
1998-09-26 03:12:03 +00:00
|
|
|
spin = gtk_type_new (GTK_TYPE_SPIN_BUTTON);
|
1998-06-19 17:33:51 +00:00
|
|
|
|
1998-09-26 03:12:03 +00:00
|
|
|
gtk_spin_button_configure (spin, adjustment, climb_rate, digits);
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
|
|
return GTK_WIDGET (spin);
|
|
|
|
}
|
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
void
|
|
|
|
gtk_spin_button_set_adjustment (GtkSpinButton *spin_button,
|
|
|
|
GtkAdjustment *adjustment)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
|
|
if (spin_button->adjustment != adjustment)
|
|
|
|
{
|
|
|
|
if (spin_button->adjustment)
|
|
|
|
{
|
|
|
|
gtk_signal_disconnect_by_data (GTK_OBJECT (spin_button->adjustment),
|
|
|
|
(gpointer) spin_button);
|
|
|
|
gtk_object_unref (GTK_OBJECT (spin_button->adjustment));
|
|
|
|
}
|
|
|
|
spin_button->adjustment = adjustment;
|
|
|
|
if (adjustment)
|
|
|
|
{
|
|
|
|
gtk_object_ref (GTK_OBJECT (adjustment));
|
|
|
|
gtk_object_sink (GTK_OBJECT (adjustment));
|
1998-06-19 17:33:51 +00:00
|
|
|
gtk_signal_connect (GTK_OBJECT (adjustment), "value_changed",
|
|
|
|
(GtkSignalFunc) gtk_spin_button_value_changed,
|
|
|
|
(gpointer) spin_button);
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkAdjustment *
|
|
|
|
gtk_spin_button_get_adjustment (GtkSpinButton *spin_button)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (spin_button != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), NULL);
|
|
|
|
|
|
|
|
return spin_button->adjustment;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_spin_button_set_digits (GtkSpinButton *spin_button,
|
1998-09-26 03:12:03 +00:00
|
|
|
guint digits)
|
1998-02-25 22:03:10 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (spin_button != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
1998-09-26 03:12:03 +00:00
|
|
|
g_return_if_fail (digits < 6);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
|
|
|
if (spin_button->digits != digits)
|
|
|
|
{
|
|
|
|
spin_button->digits = digits;
|
1998-06-19 17:33:51 +00:00
|
|
|
gtk_spin_button_value_changed (spin_button->adjustment, spin_button);
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gfloat
|
|
|
|
gtk_spin_button_get_value_as_float (GtkSpinButton *spin_button)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (spin_button != NULL, 0.0);
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), 0.0);
|
|
|
|
|
|
|
|
return spin_button->adjustment->value;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
gtk_spin_button_get_value_as_int (GtkSpinButton *spin_button)
|
|
|
|
{
|
|
|
|
gfloat val;
|
|
|
|
|
|
|
|
g_return_val_if_fail (spin_button != NULL, 0);
|
|
|
|
g_return_val_if_fail (GTK_IS_SPIN_BUTTON (spin_button), 0);
|
|
|
|
|
|
|
|
val = spin_button->adjustment->value;
|
|
|
|
if (val - floor (val) < ceil (val) - val)
|
|
|
|
return floor (val);
|
|
|
|
else
|
|
|
|
return ceil (val);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_spin_button_set_value (GtkSpinButton *spin_button,
|
|
|
|
gfloat value)
|
|
|
|
{
|
|
|
|
g_return_if_fail (spin_button != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
1998-06-19 17:33:51 +00:00
|
|
|
if (fabs (value - spin_button->adjustment->value) > EPSILON)
|
1998-03-11 06:11:52 +00:00
|
|
|
gtk_adjustment_set_value (spin_button->adjustment, value);
|
1998-06-19 17:33:51 +00:00
|
|
|
else
|
|
|
|
{
|
1999-02-28 16:04:47 +00:00
|
|
|
gint return_val = FALSE;
|
|
|
|
gtk_signal_emit (GTK_OBJECT (spin_button), spinbutton_signals[OUTPUT],
|
|
|
|
&return_val);
|
|
|
|
if (return_val == FALSE)
|
|
|
|
gtk_spin_button_default_output (spin_button);
|
1998-06-19 17:33:51 +00:00
|
|
|
}
|
1998-02-25 22:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_spin_button_set_update_policy (GtkSpinButton *spin_button,
|
|
|
|
GtkSpinButtonUpdatePolicy policy)
|
|
|
|
{
|
|
|
|
g_return_if_fail (spin_button != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
|
|
spin_button->update_policy = policy;
|
1998-03-11 06:11:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_spin_button_set_numeric (GtkSpinButton *spin_button,
|
1998-09-26 03:12:03 +00:00
|
|
|
gboolean numeric)
|
1998-03-11 06:11:52 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (spin_button != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
|
|
spin_button->numeric = (numeric != 0);
|
|
|
|
}
|
|
|
|
|
1998-03-29 20:40:10 +00:00
|
|
|
void
|
|
|
|
gtk_spin_button_set_wrap (GtkSpinButton *spin_button,
|
1998-09-26 03:12:03 +00:00
|
|
|
gboolean wrap)
|
1998-03-29 20:40:10 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (spin_button != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
|
|
spin_button->wrap = (wrap != 0);
|
|
|
|
}
|
1998-06-13 08:56:27 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
gtk_spin_button_set_shadow_type (GtkSpinButton *spin_button,
|
|
|
|
GtkShadowType shadow_type)
|
|
|
|
{
|
|
|
|
g_return_if_fail (spin_button != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
|
|
if (shadow_type != spin_button->shadow_type)
|
|
|
|
{
|
|
|
|
spin_button->shadow_type = shadow_type;
|
|
|
|
if (GTK_WIDGET_DRAWABLE (spin_button))
|
1998-09-26 03:12:03 +00:00
|
|
|
gtk_widget_queue_draw (GTK_WIDGET (spin_button));
|
1998-06-13 08:56:27 +00:00
|
|
|
}
|
|
|
|
}
|
1998-06-17 20:07:31 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
gtk_spin_button_set_snap_to_ticks (GtkSpinButton *spin_button,
|
1998-09-26 03:12:03 +00:00
|
|
|
gboolean snap_to_ticks)
|
1998-06-17 20:07:31 +00:00
|
|
|
{
|
|
|
|
guint new_val;
|
|
|
|
|
|
|
|
g_return_if_fail (spin_button != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
|
|
new_val = (snap_to_ticks != 0);
|
|
|
|
|
|
|
|
if (new_val != spin_button->snap_to_ticks)
|
|
|
|
{
|
|
|
|
spin_button->snap_to_ticks = new_val;
|
1999-02-28 16:04:47 +00:00
|
|
|
if (new_val && GTK_EDITABLE (spin_button)->editable)
|
|
|
|
gtk_spin_button_update (spin_button);
|
1998-06-17 20:07:31 +00:00
|
|
|
}
|
|
|
|
}
|
1998-06-19 17:33:51 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
gtk_spin_button_spin (GtkSpinButton *spin_button,
|
|
|
|
GtkSpinType direction,
|
|
|
|
gfloat increment)
|
|
|
|
{
|
|
|
|
GtkAdjustment *adj;
|
|
|
|
gfloat diff;
|
|
|
|
|
|
|
|
g_return_if_fail (spin_button != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
|
|
adj = spin_button->adjustment;
|
|
|
|
|
1998-06-24 07:59:05 +00:00
|
|
|
/* for compatibility with the 1.0.x version of this function */
|
|
|
|
if (increment != 0 && increment != adj->step_increment &&
|
1998-06-25 07:43:27 +00:00
|
|
|
(direction == GTK_SPIN_STEP_FORWARD ||
|
|
|
|
direction == GTK_SPIN_STEP_BACKWARD))
|
1998-06-24 07:59:05 +00:00
|
|
|
{
|
|
|
|
if (direction == GTK_SPIN_STEP_BACKWARD && increment > 0)
|
|
|
|
increment = -increment;
|
|
|
|
direction = GTK_SPIN_USER_DEFINED;
|
|
|
|
}
|
|
|
|
|
1998-06-19 17:33:51 +00:00
|
|
|
switch (direction)
|
|
|
|
{
|
|
|
|
case GTK_SPIN_STEP_FORWARD:
|
|
|
|
|
1998-06-24 07:59:05 +00:00
|
|
|
gtk_spin_button_real_spin (spin_button, adj->step_increment);
|
1998-06-19 17:33:51 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GTK_SPIN_STEP_BACKWARD:
|
|
|
|
|
1998-06-24 07:59:05 +00:00
|
|
|
gtk_spin_button_real_spin (spin_button, -adj->step_increment);
|
1998-06-19 17:33:51 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GTK_SPIN_PAGE_FORWARD:
|
|
|
|
|
1998-06-24 07:59:05 +00:00
|
|
|
gtk_spin_button_real_spin (spin_button, adj->page_increment);
|
1998-06-19 17:33:51 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GTK_SPIN_PAGE_BACKWARD:
|
|
|
|
|
1998-06-24 07:59:05 +00:00
|
|
|
gtk_spin_button_real_spin (spin_button, -adj->page_increment);
|
1998-06-19 17:33:51 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GTK_SPIN_HOME:
|
|
|
|
|
|
|
|
diff = adj->value - adj->lower;
|
|
|
|
if (diff > EPSILON)
|
1998-06-24 07:59:05 +00:00
|
|
|
gtk_spin_button_real_spin (spin_button, -diff);
|
1998-06-19 17:33:51 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GTK_SPIN_END:
|
|
|
|
|
|
|
|
diff = adj->upper - adj->value;
|
|
|
|
if (diff > EPSILON)
|
1998-06-24 07:59:05 +00:00
|
|
|
gtk_spin_button_real_spin (spin_button, diff);
|
1998-06-19 17:33:51 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GTK_SPIN_USER_DEFINED:
|
|
|
|
|
|
|
|
if (increment != 0)
|
1998-06-24 07:59:05 +00:00
|
|
|
gtk_spin_button_real_spin (spin_button, increment);
|
1998-06-19 17:33:51 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1999-02-28 16:04:47 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
gtk_spin_button_update (GtkSpinButton *spin_button)
|
|
|
|
{
|
|
|
|
gfloat val;
|
|
|
|
gint error = 0;
|
|
|
|
gint return_val;
|
|
|
|
|
|
|
|
g_return_if_fail (spin_button != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_SPIN_BUTTON (spin_button));
|
|
|
|
|
|
|
|
return_val = FALSE;
|
|
|
|
gtk_signal_emit (GTK_OBJECT (spin_button), spinbutton_signals[INPUT],
|
|
|
|
&val, &return_val);
|
|
|
|
if (return_val == FALSE)
|
|
|
|
{
|
|
|
|
return_val = gtk_spin_button_default_input (spin_button, &val);
|
|
|
|
error = (return_val == INPUT_ERROR);
|
|
|
|
}
|
|
|
|
else if (return_val == INPUT_ERROR)
|
|
|
|
error = 1;
|
|
|
|
|
|
|
|
if (spin_button->update_policy == GTK_UPDATE_ALWAYS)
|
|
|
|
{
|
|
|
|
if (val < spin_button->adjustment->lower)
|
|
|
|
val = spin_button->adjustment->lower;
|
|
|
|
else if (val > spin_button->adjustment->upper)
|
|
|
|
val = spin_button->adjustment->upper;
|
|
|
|
}
|
|
|
|
else if ((spin_button->update_policy == GTK_UPDATE_IF_VALID) &&
|
|
|
|
(error ||
|
|
|
|
val < spin_button->adjustment->lower ||
|
|
|
|
val > spin_button->adjustment->upper))
|
|
|
|
{
|
|
|
|
gtk_spin_button_value_changed (spin_button->adjustment, spin_button);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (spin_button->snap_to_ticks)
|
|
|
|
gtk_spin_button_snap (spin_button, val);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (fabs (val - spin_button->adjustment->value) > EPSILON)
|
|
|
|
gtk_adjustment_set_value (spin_button->adjustment, val);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return_val = FALSE;
|
|
|
|
gtk_signal_emit (GTK_OBJECT (spin_button), spinbutton_signals[OUTPUT],
|
|
|
|
&return_val);
|
|
|
|
if (return_val == FALSE)
|
|
|
|
gtk_spin_button_default_output (spin_button);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|