1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
/*
* Copyright (C) 2005-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#pragma once
#include "filesystem/DirectoryHistory.h"
#include "filesystem/VirtualDirectory.h"
#include "guilib/GUIWindow.h"
#include "utils/JobManager.h"
#include <atomic>
#include <string>
#include <vector>
class CFileItem;
class CFileItemList;
class CGUIDialogProgress;
class CGUIWindowFileManager :
public CGUIWindow,
public CJobQueue
{
public:
CGUIWindowFileManager(void);
~CGUIWindowFileManager(void) override;
bool OnMessage(CGUIMessage& message) override;
bool OnAction(const CAction &action) override;
bool OnBack(int actionID) override;
const CFileItem &CurrentDirectory(int indx) const;
static int64_t CalculateFolderSize(const std::string &strDirectory, CGUIDialogProgress *pProgress = NULL);
void OnJobComplete(unsigned int jobID, bool success, CJob *job) override;
protected:
void OnInitWindow() override;
void SetInitialPath(const std::string &path);
void GoParentFolder(int iList);
void UpdateControl(int iList, int item);
bool Update(int iList, const std::string &strDirectory); //???
void OnStart(CFileItem *pItem, const std::string &player);
bool SelectItem(int iList, int &item);
void ClearFileItems(int iList);
void OnClick(int iList, int iItem);
void OnMark(int iList, int iItem);
void OnSort(int iList);
void UpdateButtons();
void OnCopy(int iList);
void OnMove(int iList);
void OnDelete(int iList);
void OnRename(int iList);
void OnSelectAll(int iList);
void OnNewFolder(int iList);
void Refresh();
void Refresh(int iList);
int GetSelectedItem(int iList);
bool HaveDiscOrConnection( std::string& strPath, int iDriveType );
void GetDirectoryHistoryString(const CFileItem* pItem, std::string& strHistoryString);
bool GetDirectory(int iList, const std::string &strDirectory, CFileItemList &items);
int NumSelected(int iList);
int GetFocusedList() const;
// functions to check for actions that we can perform
bool CanRename(int iList);
bool CanCopy(int iList);
bool CanMove(int iList);
bool CanDelete(int iList);
bool CanNewFolder(int iList);
void OnPopupMenu(int iList, int iItem, bool bContextDriven = true);
void ShowShareErrorMessage(CFileItem* pItem);
void UpdateItemCounts();
//
bool bCheckShareConnectivity;
std::string strCheckSharePath;
XFILE::CVirtualDirectory m_rootDir;
CFileItemList* m_vecItems[2];
typedef std::vector <CFileItem*> ::iterator ivecItems;
CFileItem* m_Directory[2];
std::string m_strParentPath[2];
CDirectoryHistory m_history[2];
int m_errorHeading, m_errorLine;
private:
std::atomic_bool m_updating = {false};
class CUpdateGuard
{
public:
CUpdateGuard(std::atomic_bool &update) : m_update(update)
{
m_update = true;
}
~CUpdateGuard()
{
m_update = false;
}
private:
std::atomic_bool &m_update;
};
};
|