allow theme to specify logical screen dimensions

This commit is contained in:
Chris Danford
2004-09-21 06:07:12 +00:00
parent 18f720cda6
commit 807d892f4f
48 changed files with 220 additions and 43 deletions
+7 -6
View File
@@ -8,14 +8,15 @@
#include "PrefsManager.h"
#include "ThemeManager.h"
#include "FontCharAliases.h"
#include "ScreenDimensions.h"
const float QUESTION_X = CENTER_X;
const float QUESTION_Y = CENTER_Y - 60;
#define QUESTION_X (CENTER_X)
#define QUESTION_Y (CENTER_Y - 60)
const float ANSWER_X = CENTER_X;
const float ANSWER_Y = CENTER_Y + 120;
const float ANSWER_WIDTH = 440;
const float ANSWER_HEIGHT = 30;
#define ANSWER_X (CENTER_X)
#define ANSWER_Y (CENTER_Y + 120)
#define ANSWER_WIDTH (440)
#define ANSWER_HEIGHT (30)
CString ScreenTextEntry::s_sLastAnswer = "";