1 /*
2 
3 Copyright (C) 2015-2018 Night Dive Studios, LLC.
4 
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9 
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14 
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 
18 */
19 #ifndef __MFDDIMS_H
20 #define __MFDDIMS_H
21 
22 /*
23  * $Source: n:/project/cit/src/inc/RCS/mfddims.h $
24  * $Revision: 1.1 $
25  * $Author: mahk $
26  * $Date: 1993/09/17 16:59:35 $
27  *
28  * $Log: mfddims.h $
29  * Revision 1.1  1993/09/17  16:59:35  mahk
30  * Initial revision
31  *
32  *
33  */
34 
35 // RELEVANT DIMENSIONS FOR MFD REGIONS
36 // Geography of the MFD view windows
37 #define MFD_VIEW_LFTX   8u
38 #define MFD_VIEW_RGTX 237u
39 #define MFD_VIEW_WID   74u
40 #define MFD_VIEW_Y    139u
41 #define MFD_VIEW_HGT   58u
42 
43 // Geography of the MFD button panels
44 #define MFD_BTTN_LFTX   0u
45 #define MFD_BTTN_RGTX 314u
46 #define MFD_BTTN_WID    6u
47 #define MFD_BTTN_Y    138u
48 #define MFD_BTTN_HGT   51u // 62
49 #define MFD_BTTN_SZ     9u
50 #define MFD_BTTN_BLNK   2u
51 
52 #endif // __MFDDIMS_H
53