2008-07-01 22:57:50 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
1998-02-25 22:03:10 +00:00
|
|
|
* 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
|
2008-05-28 15:35:43 +00:00
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
1999-02-24 07:37:18 +00:00
|
|
|
*/
|
|
|
|
|
2009-10-21 18:30:04 +00:00
|
|
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
2008-05-28 15:07:04 +00:00
|
|
|
#error "Only <gtk/gtk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
#ifndef __GTK_SPIN_BUTTON_H__
|
|
|
|
#define __GTK_SPIN_BUTTON_H__
|
|
|
|
|
|
|
|
|
|
|
|
#include <gtk/gtkentry.h>
|
|
|
|
#include <gtk/gtkadjustment.h>
|
|
|
|
|
|
|
|
|
2005-03-20 07:01:23 +00:00
|
|
|
G_BEGIN_DECLS
|
1998-09-26 03:12:03 +00:00
|
|
|
|
|
|
|
#define GTK_TYPE_SPIN_BUTTON (gtk_spin_button_get_type ())
|
2002-10-10 01:02:25 +00:00
|
|
|
#define GTK_SPIN_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_SPIN_BUTTON, GtkSpinButton))
|
|
|
|
#define GTK_SPIN_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_SPIN_BUTTON, GtkSpinButtonClass))
|
|
|
|
#define GTK_IS_SPIN_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_SPIN_BUTTON))
|
|
|
|
#define GTK_IS_SPIN_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_SPIN_BUTTON))
|
|
|
|
#define GTK_SPIN_BUTTON_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_SPIN_BUTTON, GtkSpinButtonClass))
|
1998-09-26 03:12:03 +00:00
|
|
|
|
2011-01-03 04:30:02 +00:00
|
|
|
/**
|
|
|
|
* GTK_INPUT_ERROR:
|
|
|
|
*
|
|
|
|
* Constant to return from a signal handler for the #GtkSpinButton::input
|
|
|
|
* signal in case of conversion failure.
|
|
|
|
*/
|
2000-09-07 18:07:59 +00:00
|
|
|
#define GTK_INPUT_ERROR -1
|
1998-09-26 03:12:03 +00:00
|
|
|
|
2011-01-03 04:30:02 +00:00
|
|
|
/**
|
|
|
|
* GtkSpinButtonUpdatePolicy:
|
|
|
|
* @GTK_UPDATE_ALWAYS: When refreshing your #GtkSpinButton, the value is
|
|
|
|
* always displayed
|
|
|
|
* @GTK_UPDATE_IF_VALID: When refreshing your #GtkSpinButton, the value is
|
|
|
|
* only displayed if it is valid within the bounds of the spin button's
|
|
|
|
* adjustment
|
|
|
|
*
|
|
|
|
* The spin button update policy determines whether the spin button displays
|
|
|
|
* values even if they are outside the bounds of its adjustment.
|
|
|
|
* See gtk_spin_button_set_update_policy().
|
|
|
|
*/
|
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
|
|
|
|
2011-01-03 04:30:02 +00:00
|
|
|
/**
|
|
|
|
* GtkSpinType:
|
|
|
|
* @GTK_SPIN_STEP_FORWARD: Increment by the adjustments step increment.
|
|
|
|
* @GTK_SPIN_STEP_BACKWARD: Decrement by the adjustments step increment.
|
|
|
|
* @GTK_SPIN_PAGE_FORWARD: Increment by the adjustments page increment.
|
|
|
|
* @GTK_SPIN_PAGE_BACKWARD: Decrement by the adjustments page increment.
|
|
|
|
* @GTK_SPIN_HOME: Go to the adjustments lower bound.
|
|
|
|
* @GTK_SPIN_END: Go to the adjustments upper bound.
|
|
|
|
* @GTK_SPIN_USER_DEFINED: Change by a specified amount.
|
|
|
|
*
|
|
|
|
* The values of the GtkSpinType enumeration are used to specify the
|
|
|
|
* change to make in gtk_spin_button_spin().
|
|
|
|
*/
|
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;
|
|
|
|
|
|
|
|
|
2010-08-26 17:15:37 +00:00
|
|
|
typedef struct _GtkSpinButton GtkSpinButton;
|
|
|
|
typedef struct _GtkSpinButtonPrivate GtkSpinButtonPrivate;
|
|
|
|
typedef struct _GtkSpinButtonClass GtkSpinButtonClass;
|
1998-02-25 22:03:10 +00:00
|
|
|
|
2011-01-03 04:30:02 +00:00
|
|
|
/**
|
|
|
|
* GtkSpinButton:
|
|
|
|
*
|
|
|
|
* The #GtkSpinButton struct contains only private data and should
|
|
|
|
* not be directly modified.
|
|
|
|
*/
|
1998-02-25 22:03:10 +00:00
|
|
|
struct _GtkSpinButton
|
|
|
|
{
|
|
|
|
GtkEntry entry;
|
2008-05-28 15:35:43 +00:00
|
|
|
|
2010-10-26 04:35:10 +00:00
|
|
|
/*< private >*/
|
2010-08-26 17:15:37 +00:00
|
|
|
GtkSpinButtonPrivate *priv;
|
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);
|
2002-02-08 02:38:44 +00:00
|
|
|
|
2002-02-08 03:25:31 +00:00
|
|
|
/* Action signals for keybindings, do not connect to these */
|
|
|
|
void (*change_value) (GtkSpinButton *spin_button,
|
|
|
|
GtkScrollType scroll);
|
2002-02-23 20:22:05 +00:00
|
|
|
|
2006-01-30 17:35:49 +00:00
|
|
|
void (*wrapped) (GtkSpinButton *spin_button);
|
|
|
|
|
2002-02-23 20:22:05 +00:00
|
|
|
/* Padding for future expansion */
|
|
|
|
void (*_gtk_reserved1) (void);
|
|
|
|
void (*_gtk_reserved2) (void);
|
|
|
|
void (*_gtk_reserved3) (void);
|
2010-10-19 17:07:36 +00:00
|
|
|
void (*_gtk_reserved4) (void);
|
1998-02-25 22:03:10 +00:00
|
|
|
};
|
|
|
|
|
1998-06-19 17:33:51 +00:00
|
|
|
|
2002-10-10 01:02:25 +00:00
|
|
|
GType 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
|
|
|
|
2008-05-28 15:35:43 +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);
|
|
|
|
|
2010-07-12 22:11:39 +00:00
|
|
|
/* private */
|
|
|
|
GdkWindow* _gtk_spin_button_get_panel (GtkSpinButton *spin_button);
|
|
|
|
|
2005-03-21 15:34:36 +00:00
|
|
|
G_END_DECLS
|
1998-02-25 22:03:10 +00:00
|
|
|
|
|
|
|
#endif /* __GTK_SPIN_BUTTON_H__ */
|