forked from psemiletov/tea-qt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fman.h
94 lines (65 loc) · 2.82 KB
/
fman.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
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
/**************************************************************************
* 2007-2017 by Peter Semiletov *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
**************************************************************************/
#ifndef FMAN_H
#define FMAN_H
#include <QObject>
#include <QStandardItemModel>
#include <QTreeView>
#include <QHeaderView>
#include <QDir>
#include <QDrag>
#include <QPainter>
#include "tzipper.h"
class CFMan: public QTreeView
{
Q_OBJECT
public:
CZipper zipper;
int sort_mode;
Qt::SortOrder sort_order;
QStandardItemModel *mymodel;
QList <QFileInfo> list;
QDir dir;
CFMan (QWidget *parent = 0);
//~CFMan();
void add_entry (const QFileInfo &fi);
void append_dot_entry (const QString &fname);
const QModelIndex index_from_name (const QString &name);
const QModelIndex index_from_idx (int idx);
int get_sel_index();
void nav (const QString &path);
QString get_sel_fname();
QStringList get_sel_fnames();
public slots:
void tv_activated (const QModelIndex &index);
void refresh();
void dir_up();
void cb_fman_currentChanged (const QModelIndex ¤t, const QModelIndex &previous);
void header_view_sortIndicatorChanged(int logicalIndex, Qt::SortOrder order);
signals:
void file_activated (const QString &path);
void dir_changed (const QString &path);
void current_file_changed (const QString &path, const QString &just_name);
protected:
void mouseMoveEvent (QMouseEvent *event);
void keyPressEvent (QKeyEvent *event);
void drawRow (QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const;
};
#endif