1 /* Copyright (C) 2000-2012 by George Williams */
2 /*
3  * Redistribution and use in source and binary forms, with or without
4  * modification, are permitted provided that the following conditions are met:
5 
6  * Redistributions of source code must retain the above copyright notice, this
7  * list of conditions and the following disclaimer.
8 
9  * Redistributions in binary form must reproduce the above copyright notice,
10  * this list of conditions and the following disclaimer in the documentation
11  * and/or other materials provided with the distribution.
12 
13  * The name of the author may not be used to endorse or promote products
14  * derived from this software without specific prior written permission.
15 
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
17  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
19  * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 #ifndef FONTFORGE_GRESEDIT_H
29 #define FONTFORGE_GRESEDIT_H
30 
31 #include "basics.h"
32 #include "ggadget.h"
33 #include "gresource.h"
34 
35 enum res_type2 { rt_stringlong = rt_string+1, rt_coloralpha, rt_image, rt_font };
36 
37 struct resed {
38     const char *name, *resname;
39     enum res_type type;
40     void *val;
41     char *popup;
42     void *(*cvt)(char *,void *);
43     union { int ival; double dval; char *sval; GFont *fontval; } orig;
44     int cid;
45     int found;
46 };
47 
48 #define RESED_EMPTY { NULL, NULL, 0, NULL, NULL, NULL, { 0 }, 0, 0 }
49 
50 
51 typedef struct gresinfo {
52     struct gresinfo *next;
53     struct gresinfo *inherits_from;
54     struct gresinfo *seealso1, *seealso2;
55     GBox *boxdata;
56     GFont **font;
57     GGadgetCreateData *examples;
58     struct resed *extras;
59     char *name;
60     char *initialcomment;
61     char *resname;
62     char *progname;
63     uint8 is_button;		/* Activate default button border flag */
64     uint32 override_mask;
65     GBox *overrides;
66     GBox orig_state;
67     void (*refresh)(void);	/* Called when user OKs the resource editor dlg */
68     void *reserved_for_future_use1;
69     void *reserved_for_future_use2;
70 } GResInfo;
71 
72 enum override_mask_flags {
73     /* First 8 flags are the enum box_flags */
74     omf_border_type	= 0x100,
75     omf_border_shape	= 0x200,
76     omf_border_width	= 0x400,
77     omf_padding		= 0x800,
78     omf_rr_radius	= 0x1000,
79 
80     omf_refresh         = 0x2000, /* Not a real override flag. A hack */
81 				/* I use it to indicate that the refresh field*/
82 			        /* is meaningful. That field didn't exist in  */
83 			        /* old versions of the library, adding this   */
84 			        /* mask means we don't need to break binary   */
85 			        /* compatibility */
86 
87     omf_main_foreground		= 0x10000,
88     omf_disabled_foreground	= 0x20000,
89     omf_main_background		= 0x40000,
90     omf_disabled_background	= 0x80000,
91     omf_depressed_background	= 0x100000,
92     omf_gradient_bg_end		= 0x200000,
93     omf_border_brightest	= 0x400000,
94     omf_border_brighter		= 0x800000,
95     omf_border_darkest		= 0x1000000,
96     omf_border_darker		= 0x2000000,
97     omf_active_border		= 0x4000000,
98 
99     omf_font			= 0x80000000
100 };
101 
102 extern void GResEdit(GResInfo *additional,const char *def_res_file,void (*change_res_filename)(const char *));
103 extern void GResEditFind( struct resed *resed, char *prefix);
104 
105 #endif /* FONTFORGE_GRESEDIT_H */
106