char * checkboxFg, * checkboxBg;
char * actCheckboxFg, * actCheckboxBg;
char * entryFg, * entryBg;
+ char * labelFg, * labelBg;
};
extern struct newtColors newtDefaultColorPalette;
typedef struct newtComponent * newtComponent;
newtComponent newtButton(int left, int top, char * text);
+newtComponent newtLabel(int left, int top, char * text);
newtComponent newtCheckbox(int left, int top, char * text, char defValue,
char * seq, char * result);
newtComponent newtRadiobutton(int left, int top, char * text, int isDefault,
newtComponent newtForm(void);
void newtFormAddComponent(newtComponent form, newtComponent co);
void newtFormAddComponents(newtComponent form, ...);
+void newtFormSetSize(newtComponent co, int width, int height);
newtComponent newtRunForm(newtComponent form);
#define NEWT_ENTRY_SCROLL (1 << 0)