All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
LabelsModuleConfiguration.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 
6 #include "Types.h"
7 #include "Labels.h"
8 #include "VectorMath.h"
9 #include <string>
10 
11 namespace Eegeo
12 {
13  namespace Labels
14  {
16  {
18  : ReferenceViewportDimensions(v2::Zero())
19  , ReferenceViewportPPI(0.f)
20  , NominalPxPerInch(0.f)
21  , CustomTextScale(0.f)
22  {
23 
24  }
25 
26  std::string StyleSheetPath;
27  std::string CategoryIconMapPath;
28  v2 ReferenceViewportDimensions;
29  float ReferenceViewportPPI;
30  float NominalPxPerInch;
31  float CustomTextScale;
32  };
33  }
34 }