FlowArithmeticCalculator 1.0.0
Flow Arithmetic Calculator
Loading...
Searching...
No Matches
constants.h
Go to the documentation of this file.
1#ifndef GUI_CONSTANTS_H
2#define GUI_CONSTANTS_H
3
7namespace gui::constants {
8 constexpr int MENU_HEADLINE_FONT_SIZE_BASE = 17;
9 constexpr int MENU_CAPTION_FONT_SIZE_BASE = 10;
10 constexpr int CAPTION_FONT_SIZE_BASE = 7;
11 constexpr int MENU_CHOICE_FONT_SIZE_BASE = 14;
12
17 constexpr int FONT_ASPECT_BASE_WINDOW_WIDTH = 800;
22 constexpr int FONT_ASPECT_BASE_WINDOW_HEIGHT = 600;
23} // namespace gui::constants
24
25#endif // GUI_CONSTANTS_H
Namespace defining GUI constants.
Definition constants.h:7
constexpr int MENU_CHOICE_FONT_SIZE_BASE
Definition constants.h:11
constexpr int FONT_ASPECT_BASE_WINDOW_WIDTH
The base window width that the current width is divided by to obtain a scaling factor for font size.
Definition constants.h:17
constexpr int CAPTION_FONT_SIZE_BASE
Definition constants.h:10
constexpr int FONT_ASPECT_BASE_WINDOW_HEIGHT
The base window height that the current height is divided by to obtain a scaling factor for font size...
Definition constants.h:22
constexpr int MENU_CAPTION_FONT_SIZE_BASE
Definition constants.h:9
constexpr int MENU_HEADLINE_FONT_SIZE_BASE
Definition constants.h:8