Initial commit
[amiga/OpenBoopsi.git] / include / gadgets / ResizeGClass.h
1 #ifndef RESIZEGCLASS_H
2 #define RESIZEGCLASS_H
3 /*
4 **         $VER: ResizeGClass 0.1 (22.1.99)
5 **
6 **
7 **  ResizeGClass - (c) 1999 Matteo Cavalleri
8 **  
9 **
10 **  Please read the documentation for
11 **  usage and license of this source.
12 */
13
14 /* /// "Global" */
15
16 /* to debug a boopsi class it's best to compile it as a */
17 /* linked library, since this avoid a lot of troubles   */
18 #ifdef  DEBUG
19     #define PRIVATE_RESIZEGCLASS
20 #endif
21
22 /* attributes for this class */
23 #define RSA_Dummy               (TAG_USER  + 0x60100)
24 #define RSA_LabelDisplay        (RSA_Dummy + 1)
25
26 /* this should never be used by the application */
27 #define RSA_EditMode            (RSA_Dummy + 99)
28
29 #ifndef PRIVATE_RESIZEGCLASS
30     #define RESIZEGCLASS          "resizegclass"
31     #ifndef CLASSLIBRARY_H
32         #include "common/ClassLibrary.h"
33     #endif
34 #else
35     Class *makeResizeGClass(void);
36
37     #define freeResizeGClass(cl) FreeClass(cl)
38 #endif
39
40 /* /// */
41
42 #endif
43