[cosmetics] update date in GPL header
[vuplus_xbmc] / xbmc / windows / GUIWindowLoginScreen.h
1 #pragma once
2
3 /*
4  *      Copyright (C) 2005-2013 Team XBMC
5  *      http://www.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 "guilib/GUIDialog.h"
24 #include "view/GUIViewControl.h"
25 #include "utils/Stopwatch.h"
26
27 class CFileItemList;
28
29 class CGUIWindowLoginScreen : public CGUIWindow
30 {
31 public:
32   CGUIWindowLoginScreen(void);
33   virtual ~CGUIWindowLoginScreen(void);
34   virtual bool OnMessage(CGUIMessage& message);
35   virtual bool OnAction(const CAction &action);
36   virtual bool OnBack(int actionID);
37   virtual void FrameMove();
38   virtual bool HasListItems() const { return true; };
39   virtual CFileItemPtr GetCurrentListItem(int offset = 0);
40   int GetViewContainerID() const { return m_viewControl.GetCurrentControl(); };
41   static void LoadProfile(unsigned int profile);
42
43 protected:
44   virtual void OnInitWindow();
45   virtual void OnWindowLoaded();
46   virtual void OnWindowUnload();
47   void Update();
48   void SetLabel(int iControl, const CStdString& strLabel);
49
50   bool OnPopupMenu(int iItem);
51   CGUIViewControl m_viewControl;
52   CFileItemList* m_vecItems;
53
54   int m_iSelectedItem;
55   CStopWatch watch;
56 };