2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2003-02-05 22:39:40 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2003-02-05 22:39:40 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2003-02-05 22:39:40 +08:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2018-07-12 05:27:07 +08:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2003-02-05 22:39:40 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_MEASURE_OPTIONS_H__
|
|
|
|
#define __GIMP_MEASURE_OPTIONS_H__
|
|
|
|
|
|
|
|
|
2018-06-10 04:35:46 +08:00
|
|
|
#include "gimptransformoptions.h"
|
2003-02-05 22:39:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_TYPE_MEASURE_OPTIONS (gimp_measure_options_get_type ())
|
|
|
|
#define GIMP_MEASURE_OPTIONS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_MEASURE_OPTIONS, GimpMeasureOptions))
|
|
|
|
#define GIMP_MEASURE_OPTIONS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_MEASURE_OPTIONS, GimpMeasureOptionsClass))
|
|
|
|
#define GIMP_IS_MEASURE_OPTIONS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_MEASURE_OPTIONS))
|
|
|
|
#define GIMP_IS_MEASURE_OPTIONS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_MEASURE_OPTIONS))
|
|
|
|
#define GIMP_MEASURE_OPTIONS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_MEASURE_OPTIONS, GimpMeasureOptionsClass))
|
|
|
|
|
|
|
|
|
2018-06-10 04:35:46 +08:00
|
|
|
typedef struct _GimpMeasureOptions GimpMeasureOptions;
|
|
|
|
typedef struct _GimpMeasureOptionsClass GimpMeasureOptionsClass;
|
2003-02-05 22:39:40 +08:00
|
|
|
|
|
|
|
struct _GimpMeasureOptions
|
|
|
|
{
|
2018-07-16 06:59:03 +08:00
|
|
|
GimpTransformOptions parent_instance;
|
2003-02-05 22:39:40 +08:00
|
|
|
|
2018-07-16 06:59:03 +08:00
|
|
|
GimpCompassOrientation orientation;
|
|
|
|
gboolean use_info_window;
|
2018-06-10 13:24:56 +08:00
|
|
|
|
|
|
|
/* options gui */
|
2018-07-16 06:59:03 +08:00
|
|
|
GtkWidget *straighten_button;
|
2018-06-10 04:35:46 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpMeasureOptionsClass
|
|
|
|
{
|
|
|
|
GimpTransformOptionsClass parent_class;
|
2003-02-05 22:39:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-02-10 01:32:52 +08:00
|
|
|
GType gimp_measure_options_get_type (void) G_GNUC_CONST;
|
2003-02-05 22:39:40 +08:00
|
|
|
|
2003-02-10 01:32:52 +08:00
|
|
|
GtkWidget * gimp_measure_options_gui (GimpToolOptions *tool_options);
|
2003-02-05 22:39:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GIMP_MEASURE_OPTIONS_H__ */
|