All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ICityThemesService.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "CityThemes.h"
6 #include "ICityThemeChangedObservable.h"
7 #include <string>
8 
9 namespace Eegeo
10 {
11  namespace Resources
12  {
13  namespace CityThemes
14  {
16  {
17  public:
18  virtual ~ICityThemesService() {}
19  virtual bool ThemeChangeInProgress() const = 0;
20  virtual const CityThemeData& GetCurrentTheme() const = 0;
21  virtual bool HasCurrentTheme() const = 0;
22  virtual bool IsStreaming() const = 0;
23  virtual void SetSpecificTheme(CityThemeData const & cityTheme) = 0;
24  virtual bool RequestTransitionToState(const std::string& stateName, const float transitionSpeed) = 0;
25  virtual bool RequestTransitionToGlobeView(const std::string& globeViewStateName, const float transitionSpeed) =0;
26  virtual bool RequestTransitionToLastRequestedState(const float transitionSpeed) = 0;
27  virtual const EnvironmentThemesData& GetSharedThemeData() const = 0;
28  };
29  }
30  }
31 }