mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-04 02:00:43 +00:00
75 lines
1.7 KiB
C++
75 lines
1.7 KiB
C++
/* Profile Selector Header
|
|
*
|
|
* Copyright (c) 2019-2024 The OSCAR Team
|
|
* Copyright (c) 2018 Mark Watkins
|
|
*
|
|
* 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 source code
|
|
* for more details. */
|
|
|
|
#ifndef PROFILESELECTOR_H
|
|
#define PROFILESELECTOR_H
|
|
|
|
#include <QWidget>
|
|
#include <QStandardItemModel>
|
|
#include <QSortFilterProxyModel>
|
|
|
|
#include "SleepLib/profiles.h"
|
|
|
|
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();
|
|
Profile *SelectProfile(QString profname, bool skippassword);
|
|
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();
|
|
|
|
void on_diskSpaceInfo_linkActivated(const QString &link);
|
|
|
|
void on_selectionChanged(const QModelIndex ¤t, const QModelIndex &previous);
|
|
|
|
void on_resetFilterButton_clicked();
|
|
|
|
private:
|
|
QString getProfileDiskInfo(Profile *profile);
|
|
QString formatSize(qint64 size);
|
|
|
|
Ui::ProfileSelector *ui;
|
|
QStandardItemModel *model;
|
|
MySortFilterProxyModel2 *proxy;
|
|
|
|
bool showDiskUsage;
|
|
};
|
|
|
|
#endif // PROFILESELECTOR_H
|