added missing horizontal jumper icon
[dia.git] / lib / prop_sdarray.h
blob2c92877a12ef7f25ba4e4c3a18f705bcb15627b1
1 /* Dia -- a diagram creation/manipulation program -*- c -*-
2 * Copyright (C) 1998 Alexander Larsson
4 * Property system for dia objects/shapes.
5 * Copyright (C) 2000 James Henstridge
6 * Copyright (C) 2001 Cyrille Chepelov
7 * Major restructuration done in August 2001 by C. Chepelov
9 * Property types for static and dynamic arrays.
10 * These arrays are simply arrays of records whose structures are themselves
11 * described by property descriptors.
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 #ifndef PROP_SDARRAY_H
28 #define PROP_SDARRAY_H
30 #include "properties.h"
31 #include "dia_xml.h"
33 typedef struct {
34 Property common;
35 GPtrArray *ex_props; /* "example" properties. */
36 GPtrArray *records; /* subprops[i] is a GPtrArray of (Property *) */
37 } ArrayProperty;
39 void prop_sdarray_register(void);
40 #endif