ADTF Qt5
Loading...
Searching...
No Matches
qt_control_metrics.h
Go to the documentation of this file.
1
7
8/*
9 * This file depends on Qt which is licensed under LGPLv3.
10 * See ADTF_DIR/3rdparty/qt5 and doc/license for detailed information.
11 */
12#pragma once
13
14#include <adtf_utils.h>
15
16#include <cmath>
17
18namespace adtf
19{
20namespace ui
21{
22namespace osborn
23{
24
25namespace control_metrics
26{
31const float GOLDEN_RATIO = (1.0f + std::sqrt(5.0f)) / 2.0f;
35const uint16_t EMPTY_PAGE_FONT_PT = 12;
36} // namespace control_metrics
37
38} // namespace osborn
39
40namespace v0
41{
42
43namespace control_metrics = osborn::control_metrics;
44
45}
46
47namespace control_metrics = v0::control_metrics;
48
49} // namespace ui
50} // namespace adtf
Legacy version namespace for all functionality of the ADTF UI SDK taken over from ADTF v3....
Definition qt_control_metrics.h:23
Namespace for all ui classes and interfaces provided since v1.0.0.
Definition adtfui_pkg.h:13
Namespace for the ADTF UI SDK.
Definition adtfui_pkg.h:13
Namespace for all functionality provided by ADTF and its SDKs.
Definition adtfui_pkg.h:13
const float GOLDEN_RATIO
The golden ratio constant.
Definition qt_control_metrics.h:31
const uint16_t EMPTY_PAGE_FONT_PT
The base font point size for empty page messages.
Definition qt_control_metrics.h:35