1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
/*
* Copyright (c) 2006 prissi
*
* This file is part of the Simutrans project under the artistic licence.
* (see licence.txt)
*/
#ifndef list_button_h
#define list_button_h
#define BUTTON_WIDTH (92)
#define BUTTON_HEIGHT (14)
#define BUTTON_SPACER (2)
#define BUTTON1_X (2)
#define BUTTON2_X (2+1*(BUTTON_WIDTH+BUTTON_SPACER))
#define BUTTON3_X (2+2*(BUTTON_WIDTH+BUTTON_SPACER))
#define BUTTON4_X (2+3*(BUTTON_WIDTH+BUTTON_SPACER))
#define TOTAL_WIDTH (4*(BUTTON_WIDTH+BUTTON_SPACER))
#define INDICATOR_WIDTH (20)
#define INDICATOR_HEIGHT (4)
#endif
|