root/foundation-apps/gmemusage-maxx/display.h

Revision 1, 1.7 KB (checked in by emasson, 3 years ago)

initial import for the community edition

Line 
1/*
2        gmemusage
3
4        Copyright 1998, Michael Pruett
5        Copyright 1999, Mark B. Allan
6        Copyright 2000-2008, Eric Masson
7        Copyright 2008-2009, Genirix Systems
8
9        This program is free software; you can redistribute it and/or
10        modify it under the terms of the GNU General Public License
11        as published by the Free Software Foundation; either version 2
12        of the License, or (at your option) any later version.
13
14        This program is distributed in the hope that it will be useful,
15        but WITHOUT ANY WARRANTY; without even the implied warranty of
16        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17        GNU General Public License for more details.
18
19        You should have received a copy of the GNU General Public License
20        along with this program; if not, write to the Free Software
21        Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
22        USA.
23*/
24#ifndef display_h
25#define display_h
26
27/*--------------------------------------------------------*/
28unsigned char black[3]                  = {  0,   0,   0};
29unsigned char freeColor[]               = {113, 198, 113};
30unsigned char systemColor[]             = {142,  56, 142};
31unsigned char backgroundColor[] = { 10,  53,  96};
32//unsigned char shadowColor[]           = {  7,  39,  72};
33unsigned char shadowColor[]             = {  4,  36,  68};
34//unsigned char loadColor[]             = { 61,  83, 147};
35//unsigned char loadColor[]             = {113, 113, 198};
36unsigned char loadColor[]               = {145, 145, 230};
37//unsigned char loadColor[]             = {  7,  39,  72};
38
39int colorCount = 4;
40unsigned char colors[][3] =
41{
42  {113, 113, 198},    /* blue */
43  { 56, 142, 142},    /* green */
44  {142, 142,  56},    /* yellow */
45  {198, 113, 113},    /* coral */
46};
47
48/*--------------------------------------------------------*/
49void displayMain (void);
50void displayLinux (void);
51void displaySmall (void);
52void displayHelp (void);
53
54#endif
Note: See TracBrowser for help on using the browser.