]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/gui/guiPasswordChange.h
Fix compile error
[dragonfireclient.git] / src / gui / guiPasswordChange.h
index 59f3513b28e69236928a1503471e52282e50a91f..7141100c08593a6eaf305c1fcc8f26bec4c72a55 100644 (file)
@@ -23,12 +23,14 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 #include <string>
 
 class Client;
+class ISimpleTextureSource;
 
 class GUIPasswordChange : public GUIModalMenu
 {
 public:
        GUIPasswordChange(gui::IGUIEnvironment *env, gui::IGUIElement *parent, s32 id,
-                       IMenuManager *menumgr, Client *client);
+                       IMenuManager *menumgr, Client *client,
+                       ISimpleTextureSource *tsrc);
        ~GUIPasswordChange();
 
        void removeChildren();
@@ -44,10 +46,18 @@ class GUIPasswordChange : public GUIModalMenu
        bool processInput();
 
        bool OnEvent(const SEvent &event);
+#ifdef __ANDROID__
+       bool getAndroidUIInput();
+#endif
+
+protected:
+       std::wstring getLabelByID(s32 id) { return L""; }
+       std::string getNameByID(s32 id);
 
 private:
        Client *m_client;
        std::wstring m_oldpass = L"";
        std::wstring m_newpass = L"";
        std::wstring m_newpass_confirm = L"";
+       ISimpleTextureSource *m_tsrc;
 };