1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
/*
* Field.h -- Header for field item parts.
*
* Authors : Patrick Lecoanet.
* Creation date :
*
* $Id$
*/
/*
* Copyright (c) 2002 CENA, Patrick Lecoanet --
*
* This code is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This code 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this code; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#ifndef _Field_h
#define _Field_h
#include "Attrs.h"
#include "Types.h"
#include "List.h"
#include "Color.h"
#include "Image.h"
struct _ItemStruct;
/*
* Field array management record.
*
* This structure should be used only for internal
* management by items with fields. The rest of the code
* should use the methods in FIELD.
*
*/
typedef struct _FieldSetStruct {
struct _ItemStruct *item;
ZnLabelFormat label_format;
unsigned int num_fields;
struct _FieldStruct *fields;
ZnDim label_width; /* Describe the label size. Access these */
ZnDim label_height; /* 2 only with GetLabelBBox. -1 means
* not up to date. */
ZnPoint label_pos; /* Describe the label origin. */
} FieldSetStruct, *FieldSet;
extern struct _FIELD {
ZnAttrConfig *attr_desc;
void (*InitFields)(FieldSet fs);
void (*CloneFields)(FieldSet fs);
void (*FreeFields)(FieldSet fs);
int (*ConfigureField)(FieldSet fs, int field, int argc, Tcl_Obj *CONST argv[], int *flags);
int (*QueryField)(FieldSet fs, int field, int argc, Tcl_Obj *CONST argv[]);
void (*DrawFields)(FieldSet fs);
void (*RenderFields)(FieldSet fs);
int (*FieldsToArea)(FieldSet fs, ZnBBox *area);
ZnBool (*IsFieldSensitive)(FieldSet fs, int part);
double (*FieldsPick)(FieldSet fs, ZnPoint *p, int *part);
int (*FieldIndex)(FieldSet fs, int field, Tcl_Obj *index_spec, int *index);
ZnBool (*FieldInsertChars)(FieldSet fs, int field, int *index, char *chars);
ZnBool (*FieldDeleteChars)(FieldSet fs, int field,
int *first, int *last);
void (*FieldCursor)(FieldSet fs, int field, int index);
int (*FieldSelection)(FieldSet fs, int field, int offset,
char *chars, int max_chars);
void (*LeaderToLabel)(FieldSet fs, ZnPoint *start, ZnPoint *end);
void (*GetLabelBBox)(FieldSet fs, ZnDim *w, ZnDim *h);
void (*GetFieldBBox)(FieldSet fs, unsigned int index,
ZnBBox *field_bbox);
void (*SetFieldsAutoAlign)(FieldSet fs, int alignment);
void (*ClearFieldCache)(FieldSet fs, int field);
char *(*GetFieldStruct)(FieldSet fs, int field);
int (*NumFields)(FieldSet fs);
} FIELD;
#endif /* _Field_h */
|