All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
WindowsInputBoxFactory.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 #include "InputBox.h"
7 #include "IInputBoxFactory.h"
8 #include <string>
9 #include "WindowsNativeState.h"
10 
11 namespace Eegeo
12 {
13  namespace UI
14  {
15  namespace NativeInput
16  {
17  namespace Windows
18  {
20  {
21  WindowsNativeState* m_pState;
22  public:
24  :m_pState(pState)
25  { }
26 
27  virtual ~WindowsInputBoxFactory() {}
28 
29  virtual IInputBox* CreateInputBox(const std::string& title,
30  const std::string& message,
31  const std::string& button,
32  const std::string& placeholder,
33  bool initialContentIsPlaceholder,
34  IInputBoxDismissedHandler& handler);
35  };
36  }
37  }
38  }
39 }
40 
41