X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=src%2Fgtksizes.h;h=fb483ec6266db8a2a00a4f70719d09485d4dd5f0;hb=fd6fa7c56a209cb5d4fa15f59a837b88795529ee;hp=9bffe25996c477b7c00aea203269167c9c47cec4;hpb=4c305c73f8110d03b99cec045b3c5741867fd46b;p=emu8051.git diff --git a/src/gtksizes.h b/src/gtksizes.h index 9bffe25..fb483ec 100644 --- a/src/gtksizes.h +++ b/src/gtksizes.h @@ -1,5 +1,32 @@ -#ifndef _GTKSIZES_HPP_ -#define _GTKSIZES_HPP_ +/* + * gtksizes.h + * + * Copyright (C) 1999 Jonathan St-André + * Copyright (C) 1999 Hugo Villeneuve + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +#ifndef _GTKSIZES_H_ +#define _GTKSIZES_H_ + +/* Width, in pixels, of a fixed font symbol. */ +#define FIXED_FONT_SYMBOL_WIDTH 10 + +/* Height, in pixels, of a fixed font symbol. */ +#define FIXED_FONT_SYMBOL_HEIGHT 22 #define NUMBER_OF_BUTTONS 5 #define BUTTON_WIDTH 60 @@ -7,18 +34,19 @@ #define BUTTONS_BAR_WIDTH (NUMBER_OF_BUTTONS * BUTTON_WIDTH) #define BUTTONS_BAR_HEIGHT BUTTON_HEIGHT -#define REG_WIN_WIDTH 100 -#define REG_WIN_HEIGHT 390 +/* 12 symbols + border. */ +#define REG_WIN_WIDTH (FIXED_FONT_SYMBOL_WIDTH * 13) +#define REG_WIN_HEIGHT (FIXED_FONT_SYMBOL_HEIGHT * 24) -#define PGM_WIN_WIDTH 480 -#define PGM_WIN_HEIGHT 390 +#define MEM_WIN_WIDTH (FIXED_FONT_SYMBOL_WIDTH * 68) /* 68 symbols. */ +#define MEM_WIN_HEIGHT (FIXED_FONT_SYMBOL_HEIGHT * 17) -#define MEM_WIN_WIDTH 590 -#define MEM_WIN_HEIGHT 280 +#define PGM_WIN_WIDTH (MEM_WIN_WIDTH - REG_WIN_WIDTH) +#define PGM_WIN_HEIGHT REG_WIN_HEIGHT #define MENU_BAR_HEIGHT 0 -#define MAIN_WIN_WIDTH (REG_WIN_WIDTH + PGM_WIN_WIDTH) +#define MAIN_WIN_WIDTH MEM_WIN_WIDTH #define MAIN_WIN_HEIGHT (BUTTONS_BAR_HEIGHT + REG_WIN_HEIGHT + MEM_WIN_HEIGHT) -#endif +#endif /* _GTKSIZES_H_ */