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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
/************************************************************************/
/* */
/* Application inspector with different subject pages. */
/* */
/************************************************************************/
# ifndef APP_INSPECTOR_H
# define APP_INSPECTOR_H
# include <stdio.h>
# include <bmcolor.h>
# include <appGuiBase.h>
# include <appGuiResource.h>
/************************************************************************/
/* */
/* Facilities to make property inspectors. */
/* */
/************************************************************************/
struct AppInspector;
typedef void (*InspectorSubjectGotColor)(
void * through,
int property,
const RGB8Color * rgb8 );
typedef void (*InspectorNotifySubject)(
struct AppInspector * ai,
int from,
int to );
typedef struct InspectorSubject
{
APP_WIDGET isPage;
APP_WIDGET isMenuitem;
void * isPrivate;
int isEnabled;
APP_WIDGET isPrevButton;
APP_WIDGET isNextButton;
APP_WIDGET isSelectButton;
APP_WIDGET isDeleteButton;
APP_WIDGET isInsertButton;
APP_WIDGET isAppendButton;
APP_WIDGET isRevertButton;
APP_WIDGET isApplyButton;
InspectorSubjectGotColor isGotColor;
} InspectorSubject;
typedef struct AppInspector
{
APP_WIDGET aiTopWidget;
APP_WIDGET aiPaned;
APP_WIDGET aiSeparator;
APP_WIDGET aiPageParent;
AppOptionmenu aiSubjectOptionmenu;
InspectorNotifySubject aiNotifySubject;
void * aiRgbChooser; /* RgbChooserPage */
int aiRgbSubjectNumber;
AppToolDestroy aiDestroy;
void * aiTarget;
int aiSubjectCount;
int aiCurrentSubject;
InspectorSubject aiSubjects[1]; /* LAST !! */
} AppInspector;
typedef struct InspectorSubjectResources
{
char * isrSubjectName;
char * isrApplyToSubject;
char * isrRevert;
char * isrNextButtonText;
char * isrPrevButtonText;
char * isrSelectButtonText;
char * isrDeleteButtonText;
char * isrInsertButtonText;
char * isrAppendButtonText;
} InspectorSubjectResources;
/************************************************************************/
/* */
/* Routine declarations. */
/* */
/************************************************************************/
extern void appInspectorSelectSubject( AppInspector * ai,
int subject );
extern void appFinishInspector( AppInspector * ai );
extern void appEnableInspector( AppInspector * ai,
int enabled );
extern void appEnableInspectorSubject( AppInspector * ai,
int subject ,
int enabled );
extern void appInspectorGotColor(
AppInspector * ai,
int subjectPage,
int property,
const RGB8Color * rgb8 );
extern void appInspectorShowRgbPage( AppInspector * ai,
int fromSubject,
int fromProperty,
const RGB8Color * rgb8 );
extern void appInspectorSetRgbPage( AppInspector * ai,
void * vrcp,
int subjectNumber );
# endif
|