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

Revision 1, 1.3 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/*! \file   enum.h
25 *  \brief  global enumerations
26 *
27 */
28#ifndef enum_h
29#define enum_h
30
31enum
32{
33        DisplayMain             = 1,
34        DisplayLinux            = 2,
35        DisplayCurrentProc      = 3,
36        DisplaySmallProc        = 4,
37        DisplayHelp             = 5
38};
39
40enum
41{
42        DEFAULT_WINDOW_WIDTH = 400,
43        DEFAULT_WINDOW_HEIGHT = 700,
44        BORDER_WIDTH = 20,
45        BORDER_HEIGHT = 60,
46        BAR_WIDTH = 100,
47        FONT_SIZE = 12,
48        LINE_WIDTH = 100,
49        CONNECT_SPACE = 2
50};
51
52enum
53{
54        NoText          = 0,
55        TexmapText      = 1,
56        BitmapText      = 2
57};
58
59#endif
Note: See TracBrowser for help on using the browser.