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
|
2020-10-03 17:02:38 +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
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
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
|
|
|
*/
|
|
|
|
|
1998-02-25 22:03:10 +00:00
|
|
|
#ifndef __GTK_SPIN_BUTTON_H__
|
|
|
|
#define __GTK_SPIN_BUTTON_H__
|
|
|
|
|
|
|
|
|
2012-12-28 14:57:34 +00:00
|
|
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
|
|
|
#error "Only <gtk/gtk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2017-05-04 16:31:41 +00:00
|
|
|
#include <gtk/gtkwidget.h>
|
1998-02-25 22:03:10 +00:00
|
|
|
|
|
|
|
|
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_IS_SPIN_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_SPIN_BUTTON))
|
1998-09-26 03:12:03 +00:00
|
|
|
|
2011-01-03 04:30:02 +00:00
|
|
|
/**
|
|
|
|
* GTK_INPUT_ERROR:
|
|
|
|
*
|
2021-02-25 17:23:39 +00:00
|
|
|
* Constant to return from a signal handler for the ::input
|
2011-01-03 04:30:02 +00:00
|
|
|
* signal in case of conversion failure.
|
2021-02-25 17:23:39 +00:00
|
|
|
*
|
|
|
|
* See [signal@Gtk.SpinButton::input].
|
2011-01-03 04:30:02 +00:00
|
|
|
*/
|
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:
|
2021-05-20 13:17:04 +00:00
|
|
|
* @GTK_UPDATE_ALWAYS: When refreshing your `GtkSpinButton`, the value is
|
2021-05-18 21:05:26 +00:00
|
|
|
* always displayed
|
2021-05-20 13:17:04 +00:00
|
|
|
* @GTK_UPDATE_IF_VALID: When refreshing your `GtkSpinButton`, the value is
|
2021-05-18 21:05:26 +00:00
|
|
|
* only displayed if it is valid within the bounds of the spin button's
|
|
|
|
* adjustment
|
2011-01-03 04:30:02 +00:00
|
|
|
*
|
2021-02-25 17:23:39 +00:00
|
|
|
* Determines whether the spin button displays values outside the adjustment
|
|
|
|
* bounds.
|
|
|
|
*
|
|
|
|
* See [method@Gtk.SpinButton.set_update_policy].
|
2011-01-03 04:30:02 +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
|
|
|
|
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;
|
1998-06-19 17:33:51 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-10-03 17:02:38 +00:00
|
|
|
GType gtk_spin_button_get_type (void) G_GNUC_CONST;
|
1998-02-25 22:03:10 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-10-03 17:02:38 +00:00
|
|
|
void gtk_spin_button_configure (GtkSpinButton *spin_button,
|
|
|
|
GtkAdjustment *adjustment,
|
|
|
|
double climb_rate,
|
|
|
|
guint digits);
|
1998-03-09 07:18:33 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-10-03 17:02:38 +00:00
|
|
|
GtkWidget* gtk_spin_button_new (GtkAdjustment *adjustment,
|
|
|
|
double climb_rate,
|
|
|
|
guint digits);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-10-03 17:02:38 +00:00
|
|
|
GtkWidget* gtk_spin_button_new_with_range (double min,
|
|
|
|
double max,
|
|
|
|
double step);
|
2001-03-30 03:35:47 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-10-03 17:02:38 +00:00
|
|
|
void gtk_spin_button_set_adjustment (GtkSpinButton *spin_button,
|
|
|
|
GtkAdjustment *adjustment);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-10-03 17:02:38 +00:00
|
|
|
GtkAdjustment* gtk_spin_button_get_adjustment (GtkSpinButton *spin_button);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-10-03 17:02:38 +00:00
|
|
|
void gtk_spin_button_set_digits (GtkSpinButton *spin_button,
|
|
|
|
guint digits);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
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
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-10-03 17:02:38 +00:00
|
|
|
void gtk_spin_button_set_increments (GtkSpinButton *spin_button,
|
|
|
|
double step,
|
|
|
|
double page);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2001-06-24 15:34:48 +00:00
|
|
|
void gtk_spin_button_get_increments (GtkSpinButton *spin_button,
|
2020-10-03 17:02:38 +00:00
|
|
|
double *step,
|
|
|
|
double *page);
|
2001-03-30 03:35:47 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-10-03 17:02:38 +00:00
|
|
|
void gtk_spin_button_set_range (GtkSpinButton *spin_button,
|
|
|
|
double min,
|
|
|
|
double max);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2001-06-24 15:34:48 +00:00
|
|
|
void gtk_spin_button_get_range (GtkSpinButton *spin_button,
|
2020-10-03 17:02:38 +00:00
|
|
|
double *min,
|
|
|
|
double *max);
|
2001-03-30 03:35:47 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-10-03 17:02:38 +00:00
|
|
|
double gtk_spin_button_get_value (GtkSpinButton *spin_button);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-10-03 17:02:38 +00:00
|
|
|
int gtk_spin_button_get_value_as_int (GtkSpinButton *spin_button);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-10-03 17:02:38 +00:00
|
|
|
void gtk_spin_button_set_value (GtkSpinButton *spin_button,
|
|
|
|
double value);
|
1998-02-25 22:03:10 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-10-03 17:02:38 +00:00
|
|
|
void gtk_spin_button_set_update_policy (GtkSpinButton *spin_button,
|
|
|
|
GtkSpinButtonUpdatePolicy policy);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
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
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-10-03 17:02:38 +00:00
|
|
|
void gtk_spin_button_set_numeric (GtkSpinButton *spin_button,
|
|
|
|
gboolean numeric);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
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
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-10-03 17:02:38 +00:00
|
|
|
void gtk_spin_button_spin (GtkSpinButton *spin_button,
|
|
|
|
GtkSpinType direction,
|
|
|
|
double increment);
|
1998-03-29 20:40:10 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-10-03 17:02:38 +00:00
|
|
|
void gtk_spin_button_set_wrap (GtkSpinButton *spin_button,
|
|
|
|
gboolean wrap);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
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
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-10-03 17:02:38 +00:00
|
|
|
void gtk_spin_button_set_snap_to_ticks (GtkSpinButton *spin_button,
|
|
|
|
gboolean snap_to_ticks);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2001-06-24 15:34:48 +00:00
|
|
|
gboolean gtk_spin_button_get_snap_to_ticks (GtkSpinButton *spin_button);
|
2020-10-03 17:02:38 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-10-03 17:02:38 +00:00
|
|
|
void gtk_spin_button_set_climb_rate (GtkSpinButton *spin_button,
|
|
|
|
double climb_rate);
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
|
|
double gtk_spin_button_get_climb_rate (GtkSpinButton *spin_button);
|
2017-05-06 15:05:58 +00:00
|
|
|
|
2020-10-03 17:02:38 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
|
|
|
void gtk_spin_button_update (GtkSpinButton *spin_button);
|
2017-05-06 15:05:58 +00:00
|
|
|
|
1999-01-11 23:24:41 +00:00
|
|
|
|
2005-03-21 15:34:36 +00:00
|
|
|
G_END_DECLS
|
1998-02-25 22:03:10 +00:00
|
|
|
|
|
|
|
#endif /* __GTK_SPIN_BUTTON_H__ */
|