Merge pull request #4775 from jmarshallnz/empty_episode_playcount
[vuplus_xbmc] / xbmc / dialogs / GUIDialogGamepad.h
1 #pragma once
2
3 /*
4  *      Copyright (C) 2005-2013 Team XBMC
5  *      http://xbmc.org
6  *
7  *  This Program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2, or (at your option)
10  *  any later version.
11  *
12  *  This Program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with XBMC; see the file COPYING.  If not, see
19  *  <http://www.gnu.org/licenses/>.
20  *
21  */
22
23 #include "GUIDialogBoxBase.h"
24
25 class CGUIDialogGamepad :
26       public CGUIDialogBoxBase
27 {
28 public:
29   CGUIDialogGamepad(void);
30   virtual ~CGUIDialogGamepad(void);
31   virtual bool OnMessage(CGUIMessage& message);
32   bool IsCanceled() const;
33   CStdString m_strUserInput;
34   CStdString m_strPassword;
35   int m_iRetries;
36   bool m_bUserInputCleanup;
37   bool m_bHideInputChars;
38   static bool ShowAndGetInput(CStdString& aTextString, const CStdString& dlgHeading, bool bHideUserInput);
39   static bool ShowAndVerifyNewPassword(CStdString& strNewPassword);
40   static int ShowAndVerifyPassword(CStdString& strPassword, const CStdString& dlgHeading, int iRetries);
41   static bool ShowAndVerifyInput(CStdString& strPassword, const CStdString& dlgHeading, const CStdString& dlgLine0, const CStdString& dlgLine1, const CStdString& dlgLine2, bool bGetUserInput, bool bHideInputChars);
42 protected:
43   virtual bool OnAction(const CAction &action);
44   bool m_bCanceled;
45   char m_cHideInputChar;
46 };