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
|
/**************************************************************************
* Copyright (C) 2007-2010 by Peter Semiletov *
* peter.semiletov@gmail.com *
* *
* 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 <QtGui>
#include "tzipper.h"
class CTreeView;
class CTvFmanKeyPressEater: public QObject
{
Q_OBJECT
signals:
void backspacePressed();
protected:
bool eventFilter (QObject *obj, QEvent *event);
};
class CFMan: public QObject
{
Q_OBJECT
public:
CTvFmanKeyPressEater *evfilter;
CZipper zipper;
QStandardItemModel *model;
CTreeView *tree_view;
QList <QFileInfo> list;
QDir dir;
CFMan (QObject *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);
signals:
void file_activated (const QString &path);
void dir_changed (const QString &path);
void current_file_changed (const QString &path, const QString &just_name);
};
class CTreeView: public QTreeView
{
public:
CFMan *fman;
protected:
void mouseMoveEvent(QMouseEvent *event);
};
#endif
|