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
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1998-02-25 22:03:10 +00:00
|
|
|
* 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
|
1998-03-29 20:40:10 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
1998-02-25 22:03:10 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* You should have received a copy of the GNU Lesser 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
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
1999-02-24 07:37:18 +00:00
|
|
|
* 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
|
|
|
#ifndef __GTK_SPIN_BUTTON_H__
|
|
|
|
#define __GTK_SPIN_BUTTON_H__
|
|
|
|
|
|
|
|
|
|
|
|
#include <gdk/gdk.h>
|
|
|
|
#include <gtk/gtkentry.h>
|
|
|
|
#include <gtk/gtkadjustment.h>
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
1998-09-26 03:12:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
#define GTK_TYPE_SPIN_BUTTON (gtk_spin_button_get_type ())
|
|
|
|
#define GTK_SPIN_BUTTON(obj) (GTK_CHECK_CAST ((obj), GTK_TYPE_SPIN_BUTTON, GtkSpinButton))
|
|
|
|
#define GTK_SPIN_BUTTON_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_SPIN_BUTTON, GtkSpinButtonClass))
|
|
|
|
#define GTK_IS_SPIN_BUTTON(obj) (GTK_CHECK_TYPE ((obj), GTK_TYPE_SPIN_BUTTON))
|
|
|
|
#define GTK_IS_SPIN_BUTTON_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_SPIN_BUTTON))
|
2000-02-13 08:16:48 +00:00
|
|
|
#define GTK_SPIN_BUTTON_GET_CLASS(obj) (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_SPIN_BUTTON, GtkSpinButtonClass))
|
1998-09-26 03:12:03 +00:00
|
|
|
|
2000-09-07 18:07:59 +00:00
|
|
|
#define GTK_INPUT_ERROR -1
|
1998-09-26 03:12:03 +00:00
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
1998-06-17 20:07:31 +00:00
|
|
|
GTK_UPDATE_ALWAYS,
|
|
|
|
GTK_UPDATE_IF_VALID
|
1998-02-25 22:03:10 +00:00
|
|
|
} GtkSpinButtonUpdatePolicy;
|
1998-09-26 03:12:03 +00:00
|
|
|
|
1998-06-19 17:33:51 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GTK_SPIN_STEP_FORWARD,
|
|
|
|
GTK_SPIN_STEP_BACKWARD,
|
|
|
|
GTK_SPIN_PAGE_FORWARD,
|
|
|
|
GTK_SPIN_PAGE_BACKWARD,
|
|
|
|
GTK_SPIN_HOME,
|
|
|
|
GTK_SPIN_END,
|
|
|
|
GTK_SPIN_USER_DEFINED
|
|
|
|
} GtkSpinType;
|
|
|
|
|
|
|
|
|
1998-03-29 20:40:10 +00:00
|
|
|
typedef struct _GtkSpinButton GtkSpinButton;
|
1998-02-25 22:03:10 +00:00
|
|
|
typedef struct _GtkSpinButtonClass GtkSpinButtonClass;
|
|
|
|
|
|
|
|
|
|
|
|
struct _GtkSpinButton
|
|
|
|
{
|
|
|
|
GtkEntry entry;
|
1998-03-29 20:40:10 +00:00
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
GtkAdjustment *adjustment;
|
1998-03-29 20:40:10 +00:00
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
GdkWindow *panel;
|
1998-09-26 03:12:03 +00:00
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
guint32 timer;
|
1998-06-17 20:07:31 +00:00
|
|
|
guint32 ev_time;
|
1998-03-29 20:40:10 +00:00
|
|
|
|
2001-03-19 21:06:38 +00:00
|
|
|
gdouble climb_rate;
|
|
|
|
gdouble timer_step;
|
1998-03-29 20:40:10 +00:00
|
|
|
|
1998-06-17 20:07:31 +00:00
|
|
|
GtkSpinButtonUpdatePolicy update_policy;
|
1998-03-29 20:40:10 +00:00
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
guint in_child : 2;
|
|
|
|
guint click_child : 2;
|
|
|
|
guint button : 2;
|
|
|
|
guint need_timer : 1;
|
|
|
|
guint timer_calls : 3;
|
2001-06-20 04:13:37 +00:00
|
|
|
guint digits : 10;
|
1998-03-11 06:11:52 +00:00
|
|
|
guint numeric : 1;
|
1998-03-29 20:40:10 +00:00
|
|
|
guint wrap : 1;
|
1998-06-17 20:07:31 +00:00
|
|
|
guint snap_to_ticks : 1;
|
1998-02-25 22:03:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GtkSpinButtonClass
|
|
|
|
{
|
|
|
|
GtkEntryClass parent_class;
|
1999-02-28 16:04:47 +00:00
|
|
|
|
|
|
|
gint (*input) (GtkSpinButton *spin_button,
|
2001-03-19 21:06:38 +00:00
|
|
|
gdouble *new_value);
|
1999-02-28 16:04:47 +00:00
|
|
|
gint (*output) (GtkSpinButton *spin_button);
|
2001-03-30 03:35:47 +00:00
|
|
|
void (*value_changed) (GtkSpinButton *spin_button);
|
1998-02-25 22:03:10 +00:00
|
|
|
};
|
|
|
|
|
1998-06-19 17:33:51 +00:00
|
|
|
|
2000-08-30 00:33:38 +00:00
|
|
|
GtkType gtk_spin_button_get_type (void) G_GNUC_CONST;
|
1998-02-25 22:03:10 +00:00
|
|
|
|
1998-09-26 03:12:03 +00:00
|
|
|
void gtk_spin_button_configure (GtkSpinButton *spin_button,
|
1998-03-17 03:16:11 +00:00
|
|
|
GtkAdjustment *adjustment,
|
2001-03-19 21:06:38 +00:00
|
|
|
gdouble climb_rate,
|
1998-09-26 03:12:03 +00:00
|
|
|
guint digits);
|
1998-03-09 07:18:33 +00:00
|
|
|
|
1998-03-29 20:40:10 +00:00
|
|
|
GtkWidget* gtk_spin_button_new (GtkAdjustment *adjustment,
|
2001-03-19 21:06:38 +00:00
|
|
|
gdouble climb_rate,
|
1998-09-26 03:12:03 +00:00
|
|
|
guint digits);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
2001-03-30 03:35:47 +00:00
|
|
|
GtkWidget* gtk_spin_button_new_with_range (gdouble min,
|
|
|
|
gdouble max,
|
|
|
|
gdouble step);
|
|
|
|
|
1998-03-29 20:40:10 +00:00
|
|
|
void gtk_spin_button_set_adjustment (GtkSpinButton *spin_button,
|
1998-03-17 03:16:11 +00:00
|
|
|
GtkAdjustment *adjustment);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
1998-03-29 20:40:10 +00:00
|
|
|
GtkAdjustment* gtk_spin_button_get_adjustment (GtkSpinButton *spin_button);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
1998-03-29 20:40:10 +00:00
|
|
|
void gtk_spin_button_set_digits (GtkSpinButton *spin_button,
|
1998-09-26 03:12:03 +00:00
|
|
|
guint digits);
|
2001-06-24 15:34:48 +00:00
|
|
|
guint gtk_spin_button_get_digits (GtkSpinButton *spin_button);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
2001-03-30 03:35:47 +00:00
|
|
|
void gtk_spin_button_set_increments (GtkSpinButton *spin_button,
|
|
|
|
gdouble step,
|
|
|
|
gdouble page);
|
2001-06-24 15:34:48 +00:00
|
|
|
void gtk_spin_button_get_increments (GtkSpinButton *spin_button,
|
|
|
|
gdouble *step,
|
|
|
|
gdouble *page);
|
2001-03-30 03:35:47 +00:00
|
|
|
|
|
|
|
void gtk_spin_button_set_range (GtkSpinButton *spin_button,
|
|
|
|
gdouble min,
|
|
|
|
gdouble max);
|
2001-06-24 15:34:48 +00:00
|
|
|
void gtk_spin_button_get_range (GtkSpinButton *spin_button,
|
|
|
|
gdouble *min,
|
|
|
|
gdouble *max);
|
2001-03-30 03:35:47 +00:00
|
|
|
|
2001-06-05 20:07:02 +00:00
|
|
|
gdouble gtk_spin_button_get_value (GtkSpinButton *spin_button);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
1998-03-17 03:16:11 +00:00
|
|
|
gint gtk_spin_button_get_value_as_int (GtkSpinButton *spin_button);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
1998-03-29 20:40:10 +00:00
|
|
|
void gtk_spin_button_set_value (GtkSpinButton *spin_button,
|
2001-03-19 21:06:38 +00:00
|
|
|
gdouble value);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
1998-03-17 03:16:11 +00:00
|
|
|
void gtk_spin_button_set_update_policy (GtkSpinButton *spin_button,
|
|
|
|
GtkSpinButtonUpdatePolicy policy);
|
2001-06-24 15:34:48 +00:00
|
|
|
GtkSpinButtonUpdatePolicy gtk_spin_button_get_update_policy (GtkSpinButton *spin_button);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
1998-03-29 20:40:10 +00:00
|
|
|
void gtk_spin_button_set_numeric (GtkSpinButton *spin_button,
|
1998-09-26 03:12:03 +00:00
|
|
|
gboolean numeric);
|
2001-06-24 15:34:48 +00:00
|
|
|
gboolean gtk_spin_button_get_numeric (GtkSpinButton *spin_button);
|
1998-03-17 03:16:11 +00:00
|
|
|
|
1998-06-19 17:33:51 +00:00
|
|
|
void gtk_spin_button_spin (GtkSpinButton *spin_button,
|
|
|
|
GtkSpinType direction,
|
2001-03-19 21:06:38 +00:00
|
|
|
gdouble increment);
|
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);
|
2001-06-24 15:34:48 +00:00
|
|
|
gboolean gtk_spin_button_get_wrap (GtkSpinButton *spin_button);
|
1998-03-29 20:40:10 +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);
|
2001-06-24 15:34:48 +00:00
|
|
|
gboolean gtk_spin_button_get_snap_to_ticks (GtkSpinButton *spin_button);
|
1999-01-11 23:24:41 +00:00
|
|
|
void gtk_spin_button_update (GtkSpinButton *spin_button);
|
|
|
|
|
1998-03-29 20:40:10 +00:00
|
|
|
|
2001-06-05 20:07:02 +00:00
|
|
|
#ifndef GTK_DISABLE_DEPRECATED
|
|
|
|
#define gtk_spin_button_get_value_as_float gtk_spin_button_get_value
|
|
|
|
#endif
|
1998-03-11 06:11:52 +00:00
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GTK_SPIN_BUTTON_H__ */
|