2014-08-17 12:56:05 +00:00
|
|
|
/* Profile Select Header (Login Screen)
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
2018-03-28 07:10:52 +00:00
|
|
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 20:48:38 +00:00
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
* for more details. */
|
2011-11-26 04:00:31 +00:00
|
|
|
|
2011-10-01 12:54:20 +00:00
|
|
|
#ifndef PROFILESELECT_H
|
|
|
|
#define PROFILESELECT_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QModelIndex>
|
2012-01-11 11:25:36 +00:00
|
|
|
#include <QStandardItemModel>
|
2014-05-26 18:15:51 +00:00
|
|
|
#include <QSortFilterProxyModel>
|
2011-10-02 03:38:51 +00:00
|
|
|
#include <QMenu>
|
2011-10-01 12:54:20 +00:00
|
|
|
|
|
|
|
namespace Ui {
|
2014-04-17 05:52:25 +00:00
|
|
|
class ProfileSelect;
|
2011-10-01 12:54:20 +00:00
|
|
|
}
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
/*! \class ProfileSelect
|
|
|
|
\brief Simple Login Window providing a list of all profiles to select from
|
|
|
|
*/
|
2011-10-01 12:54:20 +00:00
|
|
|
class ProfileSelect : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
public:
|
2011-10-01 12:54:20 +00:00
|
|
|
explicit ProfileSelect(QWidget *parent = 0);
|
|
|
|
~ProfileSelect();
|
|
|
|
|
|
|
|
QString selectedProfile();
|
2011-11-18 09:18:41 +00:00
|
|
|
void QuickLogin();
|
2014-04-17 05:52:25 +00:00
|
|
|
private slots:
|
2011-10-01 12:54:20 +00:00
|
|
|
void on_selectButton_clicked();
|
|
|
|
|
|
|
|
void on_newProfileButton_clicked();
|
|
|
|
|
|
|
|
void on_listView_activated(const QModelIndex &index);
|
2011-10-02 01:29:20 +00:00
|
|
|
void earlyExit();
|
2011-10-01 12:54:20 +00:00
|
|
|
|
2011-10-02 03:38:51 +00:00
|
|
|
void openProfile();
|
|
|
|
void editProfile();
|
|
|
|
void deleteProfile();
|
|
|
|
|
|
|
|
void on_listView_customContextMenuRequested(const QPoint &pos);
|
|
|
|
|
2013-10-25 10:39:30 +00:00
|
|
|
void on_pushButton_clicked();
|
|
|
|
|
2014-05-26 18:15:51 +00:00
|
|
|
void on_filter_textChanged(const QString &arg1);
|
|
|
|
|
|
|
|
private:
|
2011-10-01 12:54:20 +00:00
|
|
|
Ui::ProfileSelect *ui;
|
|
|
|
QString m_selectedProfile;
|
|
|
|
int m_tries;
|
2011-10-02 03:38:51 +00:00
|
|
|
QMenu *popupMenu;
|
2012-01-11 11:25:36 +00:00
|
|
|
QStandardItemModel *model;
|
2014-05-26 18:15:51 +00:00
|
|
|
QSortFilterProxyModel *proxy;
|
2011-10-01 12:54:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PROFILESELECT_H
|