GNU Octave  4.2.1
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
find-files-model.h
Go to the documentation of this file.
1 /*
2 
3 Copyright (C) 2013-2017 John Donoghue
4 
5 This file is part of Octave.
6 
7 Octave is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 3 of the License, or (at your
10 option) any later version.
11 
12 Octave is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16 
17 You should have received a copy of the GNU General Public License
18 along with Octave; see the file COPYING. If not, see
19 <http://www.gnu.org/licenses/>.
20 
21 */
22 #if ! defined (octave_find_files_model_h)
23 #define octave_find_files_model_h 1
24 
25 #include <QAbstractListModel>
26 #include <QStringList>
27 #include <QList>
28 #include <QFileInfo>
29 #include <QIcon>
30 
31 
33 {
34  Q_OBJECT
35 
36 public:
39 
40  void clear ();
41 
42  void addFile (const QFileInfo &info);
43 
44  int rowCount (const QModelIndex & p=QModelIndex ()) const;
45 
46  int columnCount (const QModelIndex & p=QModelIndex ()) const;
47 
48  QVariant data (const QModelIndex& idx, int role) const;
49 
50  QVariant headerData (int section, Qt::Orientation orientation,
51  int role = Qt::DisplayRole) const;
52 
53  void sort (int column, Qt::SortOrder order=Qt::AscendingOrder);
54 
55  QFileInfo fileInfo (const QModelIndex & p) const;
56  QIcon fileIcon (const QModelIndex &p) const;
57 private:
59  QStringList _columnNames;
61 };
62 
63 #endif
OCTAVE_EXPORT octave_value_list column
Definition: sparse.cc:123
QVariant data(const QModelIndex &idx, int role) const
QIcon fileIcon(const QModelIndex &p) const
find_files_model(QObject *p=0)
int rowCount(const QModelIndex &p=QModelIndex()) const
void addFile(const QFileInfo &info)
int columnCount(const QModelIndex &p=QModelIndex()) const
QStringList _columnNames
QVariant headerData(int section, Qt::Orientation orientation, int role=Qt::DisplayRole) const
p
Definition: lu.cc:138
QFileInfo fileInfo(const QModelIndex &p) const
void sort(int column, Qt::SortOrder order=Qt::AscendingOrder)
QList< QFileInfo > _files