cf20462abc
* BUG: Input: Comment all NoDelay related stuff out * BUG: Window: PrintCenter() handles empty lines now * NEW: Pair: Allocate all pairs at initialisation and inhibit any change to them. Array accessors can be used to get the pair number for a given fore-/background combination * NEW: Window: Rewrite the Window class * NEW: Remove the Insert() method * NEW: Remove .Window.Attrs' Color property * NEW: BorderFrame is an optional argument to the constructor (default True) to specify if there shall be a border frame around the window setting the border apart from the content * NEW: Ask() returns the choice number to ease translation * NEW: Ask() supports a default choice in upper case * NEW: Make Read event work * NEW: Screen: Rewrite it mostly (is a static class again) * NEW: Remove Read event * NEW: Make Resize event work * NEW: Rename .Cols and .Lines to .Width resp. .Height * NEW: Declare gb.ncurses "Unfinished" * OPT: Tidy up sources * OPT: Window: Use werase() instead of wclear() to clear [EXAMPLES] * NEW: Add 'Pong' in the Games section git-svn-id: svn://localhost/gambas/trunk@5543 867c0c6c-44f3-4631-809d-bfa615b0a4ec
13 lines
363 B
C
13 lines
363 B
C
#ifndef __C_COLOR_H
|
|
#define __C_COLOR_H
|
|
|
|
extern GB_DESC CColorDesc[];
|
|
extern GB_DESC CColorInfoDesc[];
|
|
extern GB_DESC CPairDesc[];
|
|
|
|
extern void COLOR_init();
|
|
extern int CCOLOR_setcolor(short index, float r, float g, float b);
|
|
extern int CCOLOR_setcolor_one(short index, float val, int which);
|
|
extern short CPAIR_get(short fg, short bg);
|
|
|
|
#endif /* __C_COLOR_H */
|