2018-05-06 17:56:05 +00:00
|
|
|
|
/* Profile Selector Header
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2018 Mark Watkins <mark@jedimark.net>
|
|
|
|
|
*
|
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
|
* License. See the file COPYING in the main directory of the Linux
|
|
|
|
|
* distribution for more details. */
|
|
|
|
|
|
|
|
|
|
#ifndef PROFILESELECTOR_H
|
2018-04-22 12:06:48 +00:00
|
|
|
|
#define PROFILESELECTOR_H
|
|
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
#include <QStandardItemModel>
|
|
|
|
|
#include <QSortFilterProxyModel>
|
|
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
class ProfileSelector;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class MySortFilterProxyModel2:public QSortFilterProxyModel
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
MySortFilterProxyModel2(QObject *parent = 0);
|
|
|
|
|
|
|
|
|
|
bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class ProfileSelector : public QWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit ProfileSelector(QWidget *parent = 0);
|
|
|
|
|
~ProfileSelector();
|
|
|
|
|
|
|
|
|
|
void updateProfileList();
|
|
|
|
|
void SelectProfile(QString profname);
|
|
|
|
|
void updateProfileHighlight(QString name);
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void on_profileView_doubleClicked(const QModelIndex &index);
|
|
|
|
|
|
|
|
|
|
void on_profileFilter_textChanged(const QString &arg1);
|
|
|
|
|
|
|
|
|
|
void on_buttonOpenProfile_clicked();
|
|
|
|
|
|
|
|
|
|
void on_buttonEditProfile_clicked();
|
|
|
|
|
|
|
|
|
|
void on_buttonNewProfile_clicked();
|
|
|
|
|
|
|
|
|
|
void on_buttonDestroyProfile_clicked();
|
|
|
|
|
|
2018-05-06 21:45:56 +00:00
|
|
|
|
void on_diskSpaceInfo_linkActivated(const QString &link);
|
|
|
|
|
|
2018-04-22 12:06:48 +00:00
|
|
|
|
private:
|
|
|
|
|
Ui::ProfileSelector *ui;
|
|
|
|
|
QStandardItemModel *model;
|
|
|
|
|
MySortFilterProxyModel2 *proxy;
|
|
|
|
|
|
2018-05-06 21:45:56 +00:00
|
|
|
|
bool showDiskUsage;
|
2018-04-22 12:06:48 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // PROFILESELECTOR_H
|