2010-10-15 04:15:25 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
2004-05-08 06:16:15 +08:00
|
|
|
*
|
|
|
|
* gimpunitstore.h
|
|
|
|
* Copyright (C) 2004 Sven Neumann <sven@gimp.org>
|
|
|
|
*
|
2010-10-15 04:15:25 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2004-05-08 06:16:15 +08:00
|
|
|
*
|
2010-10-15 04:15:25 +08:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2004-05-08 06:16:15 +08:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2010-10-15 04:15:25 +08:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2004-05-08 06:16:15 +08:00
|
|
|
*
|
2010-10-15 04:15:25 +08:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see
|
2018-07-12 05:27:07 +08:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
2004-05-08 06:16:15 +08:00
|
|
|
*/
|
|
|
|
|
2011-04-28 20:30:41 +08:00
|
|
|
#if !defined (__GIMP_WIDGETS_H_INSIDE__) && !defined (GIMP_WIDGETS_COMPILATION)
|
|
|
|
#error "Only <libgimpwidgets/gimpwidgets.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2004-05-08 06:16:15 +08:00
|
|
|
#ifndef __GIMP_UNIT_STORE_H__
|
|
|
|
#define __GIMP_UNIT_STORE_H__
|
|
|
|
|
2011-04-28 20:30:41 +08:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2004-05-08 06:16:15 +08:00
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
GIMP_UNIT_STORE_UNIT,
|
|
|
|
GIMP_UNIT_STORE_UNIT_FACTOR,
|
|
|
|
GIMP_UNIT_STORE_UNIT_DIGITS,
|
|
|
|
GIMP_UNIT_STORE_UNIT_IDENTIFIER,
|
|
|
|
GIMP_UNIT_STORE_UNIT_SYMBOL,
|
|
|
|
GIMP_UNIT_STORE_UNIT_ABBREVIATION,
|
|
|
|
GIMP_UNIT_STORE_UNIT_SINGULAR,
|
|
|
|
GIMP_UNIT_STORE_UNIT_PLURAL,
|
2010-11-05 23:26:58 +08:00
|
|
|
GIMP_UNIT_STORE_UNIT_SHORT_FORMAT,
|
|
|
|
GIMP_UNIT_STORE_UNIT_LONG_FORMAT,
|
2004-05-08 06:16:15 +08:00
|
|
|
GIMP_UNIT_STORE_UNIT_COLUMNS,
|
|
|
|
GIMP_UNIT_STORE_FIRST_VALUE = GIMP_UNIT_STORE_UNIT_COLUMNS
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_TYPE_UNIT_STORE (gimp_unit_store_get_type ())
|
|
|
|
#define GIMP_UNIT_STORE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_UNIT_STORE, GimpUnitStore))
|
|
|
|
#define GIMP_UNIT_STORE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_UNIT_STORE, GimpUnitStoreClass))
|
|
|
|
#define GIMP_IS_UNIT_STORE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_UNIT_STORE))
|
|
|
|
#define GIMP_IS_UNIT_STORE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_UNIT_STORE))
|
|
|
|
#define GIMP_UNIT_STORE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_UNIT_STORE, GimpUnitStoreClass))
|
|
|
|
|
|
|
|
|
2018-05-03 18:51:36 +08:00
|
|
|
typedef struct _GimpUnitStorePrivate GimpUnitStorePrivate;
|
|
|
|
typedef struct _GimpUnitStoreClass GimpUnitStoreClass;
|
2004-05-08 06:16:15 +08:00
|
|
|
|
2010-11-01 05:15:52 +08:00
|
|
|
struct _GimpUnitStore
|
|
|
|
{
|
2018-05-03 18:51:36 +08:00
|
|
|
GObject parent_instance;
|
|
|
|
|
|
|
|
GimpUnitStorePrivate *priv;
|
2010-11-01 05:15:52 +08:00
|
|
|
};
|
|
|
|
|
2004-05-08 06:16:15 +08:00
|
|
|
struct _GimpUnitStoreClass
|
|
|
|
{
|
|
|
|
GObjectClass parent_class;
|
2010-10-15 04:15:25 +08:00
|
|
|
|
|
|
|
/* Padding for future expansion */
|
2018-05-03 18:51:36 +08:00
|
|
|
void (*_gimp_reserved1) (void);
|
|
|
|
void (*_gimp_reserved2) (void);
|
|
|
|
void (*_gimp_reserved3) (void);
|
|
|
|
void (*_gimp_reserved4) (void);
|
|
|
|
void (*_gimp_reserved5) (void);
|
|
|
|
void (*_gimp_reserved6) (void);
|
|
|
|
void (*_gimp_reserved7) (void);
|
|
|
|
void (*_gimp_reserved8) (void);
|
2004-05-08 06:16:15 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-11-01 05:15:52 +08:00
|
|
|
GType gimp_unit_store_get_type (void) G_GNUC_CONST;
|
2004-05-08 06:16:15 +08:00
|
|
|
|
|
|
|
GimpUnitStore * gimp_unit_store_new (gint num_values);
|
|
|
|
|
2010-10-15 06:15:48 +08:00
|
|
|
void gimp_unit_store_set_has_pixels (GimpUnitStore *store,
|
|
|
|
gboolean has_pixels);
|
|
|
|
gboolean gimp_unit_store_get_has_pixels (GimpUnitStore *store);
|
|
|
|
|
2010-10-15 07:27:02 +08:00
|
|
|
void gimp_unit_store_set_has_percent (GimpUnitStore *store,
|
|
|
|
gboolean has_percent);
|
|
|
|
gboolean gimp_unit_store_get_has_percent (GimpUnitStore *store);
|
|
|
|
|
2004-05-08 06:16:15 +08:00
|
|
|
void gimp_unit_store_set_pixel_value (GimpUnitStore *store,
|
|
|
|
gint index,
|
|
|
|
gdouble value);
|
|
|
|
void gimp_unit_store_set_pixel_values (GimpUnitStore *store,
|
|
|
|
gdouble first_value,
|
|
|
|
...);
|
|
|
|
void gimp_unit_store_set_resolution (GimpUnitStore *store,
|
|
|
|
gint index,
|
|
|
|
gdouble resolution);
|
|
|
|
void gimp_unit_store_set_resolutions (GimpUnitStore *store,
|
|
|
|
gdouble first_resolution,
|
|
|
|
...);
|
2019-08-21 00:21:45 +08:00
|
|
|
gdouble gimp_unit_store_get_nth_value (GimpUnitStore *store,
|
2004-05-08 06:16:15 +08:00
|
|
|
GimpUnit unit,
|
|
|
|
gint index);
|
|
|
|
void gimp_unit_store_get_values (GimpUnitStore *store,
|
|
|
|
GimpUnit unit,
|
|
|
|
gdouble *first_value,
|
|
|
|
...);
|
|
|
|
|
2014-03-10 07:12:31 +08:00
|
|
|
void _gimp_unit_store_sync_units (GimpUnitStore *store);
|
|
|
|
|
2004-05-08 06:16:15 +08:00
|
|
|
|
2011-04-28 20:30:41 +08:00
|
|
|
G_END_DECLS
|
|
|
|
|
2004-05-08 06:16:15 +08:00
|
|
|
#endif /* __GIMP_UNIT_STORE_H__ */
|