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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
//===========================================
// Lumina-DE source code
// Copyright (c) 2015, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
#ifndef _LUMINA_FM_DIRECTORY_BROWSER_WIDGET_H
#define _LUMINA_FM_DIRECTORY_BROWSER_WIDGET_H
#include <QList>
#include <QWidget>
#include <QObject>
#include <QMenu>
#include <QToolBar>
#include <QLineEdit>
#include <QShortcut>
#include <QFileSystemWatcher>
#include "../DirData.h"
#define ZSNAPDIR QString("/.zfs/snapshot/")
namespace Ui{
class DirWidget;
};
class DirWidget : public QWidget{
Q_OBJECT
public:
enum DETAILTYPES{ NAME, SIZE, TYPE, DATEMOD, DATECREATE};
DirWidget(QString objID, QWidget *parent = 0); //needs a unique ID (to distinguish from other DirWidgets)
~DirWidget();
//Directory Managment
void ChangeDir(QString dirpath);
void setDirCompleter(QCompleter *comp);
//Information
QString id();
QString currentDir();
//View Settings
void setShowDetails(bool show);
void setShowSidebar(bool show);
void setShowThumbnails(bool show);
void setDetails(QList<DETAILTYPES> list); //Which details to show and in which order (L->R)
void setThumbnailSize(int px);
void setShowCloseButton(bool show);
public slots:
void LoadDir(QString dir, LFileInfoList list);
void LoadSnaps(QString basedir, QStringList snaps);
//Refresh options
void refresh(); //Refresh current directory
void refreshButtons(); //Refresh action buttons only
//Theme change functions
void UpdateIcons();
void UpdateText();
//Button updates
void UpdateButtons();
private:
Ui::DirWidget *ui;
QString ID, CDIR; //unique ID assigned by the parent and the current dir path
LFileInfoList CLIST; //current item list (snap or not)
QString normalbasedir, snapbasedir, snaprelpath; //for maintaining direcoty context while moving between snapshots
QStringList snapshots;
bool showDetails, showThumbs, canmodify, stopload; //which widget to use for showing items
QList<DETAILTYPES> listDetails;
QMenu *contextMenu;
//The Toolbar and associated items
QToolBar *toolbar;
QLineEdit *line_dir;
QStringList history;
//Keyboard Shortcuts
QShortcut *copyFilesShort, *cutFilesShort, *pasteFilesShort, *deleteFilesShort, *refreshShort;
//Watcher to determine when the dir changes
QFileSystemWatcher *watcher;
//Functions for internal use
void setupConnections();
QStringList currentSelection();
private slots:
//UI BUTTONS/Actions
// -- Left Action Buttons
void on_tool_act_copy_clicked();
void on_tool_act_cut_clicked();
void on_tool_act_fav_clicked();
void on_tool_act_paste_clicked();
void on_tool_act_rename_clicked();
void on_tool_act_rm_clicked();
void on_tool_act_run_clicked();
void on_tool_act_runwith_clicked();
// -- Bottom Action Buttons
void on_tool_goToImages_clicked();
void on_tool_goToPlayer_clicked();
// -- Top Snapshot Buttons
void on_tool_snap_newer_clicked();
void on_tool_snap_older_clicked();
void on_slider_snap_valueChanged(int);
//Top Toolbar buttons
void on_actionBack_triggered();
void on_actionUp_triggered();
void on_actionHome_triggered();
void on_actionStopLoad_triggered();
void dir_changed(); //user manually changed the directory
void on_actionClose_Browser_triggered();
// - Other Actions without a specific button on the side
void fileCheckSums();
void fileProperties();
void openTerminal();
void NewFile();
void NewDir();
//Browser Functions
void OpenContextMenu();
void SelectionChanged();
signals:
//Directory loading/finding signals
void OpenDirectories(QStringList); //Directories to open in other tabs/columns
void LoadDirectory(QString, QString); //ID, dirpath (Directory to load here)
void findSnaps(QString, QString); //ID, dirpath (Request snapshot information for a directory)
void CloseBrowser(QString); //ID (Request that this browser be closed)
//External App/Widget launching
void PlayFiles(LFileInfoList); //open in multimedia player
void ViewFiles(LFileInfoList); //open in slideshow
void LaunchTerminal(QString); //dirpath
//System Interactions
void CutFiles(QStringList); //file selection
void CopyFiles(QStringList); //file selection
void PasteFiles(QString); //current dir
void FavoriteFiles(QStringList); //file selection
void RenameFiles(QStringList); //file selection
void RemoveFiles(QStringList); //file selection
};
#endif
|