2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2005-05-19 06:50:54 +08:00
|
|
|
* Copyright (C) 1995-1999 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimpdashpattern.h
|
|
|
|
* Copyright (C) 2003 Simon Budig
|
|
|
|
* Copyright (C) 2005 Sven Neumann
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2005-05-19 06:50:54 +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
|
2005-05-19 06:50:54 +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
|
2009-01-18 06:28:01 +08:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-05-19 06:50:54 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_DASH_PATTERN_H__
|
|
|
|
#define __GIMP_DASH_PATTERN_H__
|
|
|
|
|
|
|
|
|
2007-01-13 04:27:40 +08:00
|
|
|
#define GIMP_TYPE_DASH_PATTERN (gimp_dash_pattern_get_type ())
|
|
|
|
#define GIMP_VALUE_HOLDS_DASH_PATTERN(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_DASH_PATTERN))
|
2005-05-19 08:40:48 +08:00
|
|
|
|
|
|
|
|
2007-01-13 04:27:40 +08:00
|
|
|
GType gimp_dash_pattern_get_type (void) G_GNUC_CONST;
|
2005-05-19 06:50:54 +08:00
|
|
|
|
2007-01-13 04:27:40 +08:00
|
|
|
GArray * gimp_dash_pattern_new_from_preset (GimpDashPreset preset);
|
|
|
|
GArray * gimp_dash_pattern_new_from_segments (const gboolean *segments,
|
|
|
|
gint n_segments,
|
|
|
|
gdouble dash_length);
|
|
|
|
|
|
|
|
void gimp_dash_pattern_fill_segments (GArray *pattern,
|
|
|
|
gboolean *segments,
|
|
|
|
gint n_segments);
|
|
|
|
|
|
|
|
GArray * gimp_dash_pattern_from_value_array (GValueArray *value_array);
|
|
|
|
GValueArray * gimp_dash_pattern_to_value_array (GArray *pattern);
|
|
|
|
|
|
|
|
GArray * gimp_dash_pattern_copy (GArray *pattern);
|
|
|
|
void gimp_dash_pattern_free (GArray *pattern);
|
2005-05-22 04:24:42 +08:00
|
|
|
|
2005-05-19 06:50:54 +08:00
|
|
|
|
|
|
|
#endif /* __GIMP_DASH_PATTERN_H__ */
|