-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfilesliste.h
38 lines (29 loc) · 877 Bytes
/
filesliste.h
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
#ifndef FILESLISTE_H
#define FILESLISTE_H
#include <QMainWindow>
#include <QFileInfo>
namespace Ui {
class FilesListe;
}
class FilesListe : public QMainWindow
{
Q_OBJECT
public:
explicit FilesListe(QWidget *parent = nullptr);
~FilesListe();
void clearitems();
void Populate(QStringList fileName, bool ClearBefore);
void SelCurPlay(unsigned int FsNumber);
private:
Ui::FilesListe *ui;
void FilterList(QDateTime dateTime);
void ShowAll();
bool FromDTPicker = false;
private slots:
void on_tableWidget_2_localfilist_cellClicked(int row, int column);
void on_FilesListe_destroyed();
void on_tableWidget_2_localfilist_itemSelectionChanged();
void on_dateTimeEdit_2_start_dateTimeChanged(const QDateTime &dateTime);
void on_dateTimeEdit_2_stop_dateTimeChanged(const QDateTime &dateTime);
};
#endif // FILESLISTE_H