xbmc
GUIWindowSettingsProfile.h
1 /*
2  * Copyright (C) 2005-2018 Team Kodi
3  * This file is part of Kodi - https://kodi.tv
4  *
5  * SPDX-License-Identifier: GPL-2.0-or-later
6  * See LICENSES/README.md for more information.
7  */
8 
9 #pragma once
10 
11 #include "guilib/GUIWindow.h"
12 
13 class CFileItemList;
14 
16  public CGUIWindow
17 {
18 public:
20  ~CGUIWindowSettingsProfile(void) override;
21  bool OnMessage(CGUIMessage& message) override;
22 
23 protected:
24  void OnInitWindow() override;
25  CFileItemList *m_listItems;
26 
27  void OnPopupMenu(int iItem);
28  void DoRename(int iItem);
29  void DoOverwrite(int iItem);
30  int GetSelectedItem();
31  void LoadList();
32  void SetLastLoaded();
33  void ClearListItems();
34  bool GetAutoLoginProfileChoice(int &iProfile);
35 };
Represents a list of files.
Definition: FileItem.h:713
Definition: GUIMessage.h:365
Definition: GUIWindowSettingsProfile.h:15
Definition: GUIWindow.h:58
void OnInitWindow() override
Called on window open.
Definition: GUIWindowSettingsProfile.cpp:222