mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
63 lines
1.4 KiB
C++
63 lines
1.4 KiB
C++
/* Profile Select Header (Login Screen)
|
|
*
|
|
* Copyright (c) 2011-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 source code
|
|
* for more details. */
|
|
|
|
#ifndef PROFILESELECT_H
|
|
#define PROFILESELECT_H
|
|
|
|
#include <QDialog>
|
|
#include <QModelIndex>
|
|
#include <QStandardItemModel>
|
|
#include <QSortFilterProxyModel>
|
|
#include <QMenu>
|
|
|
|
namespace Ui {
|
|
class ProfileSelect;
|
|
}
|
|
|
|
/*! \class ProfileSelect
|
|
\brief Simple Login Window providing a list of all profiles to select from
|
|
*/
|
|
class ProfileSelect : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ProfileSelect(QWidget *parent = 0);
|
|
~ProfileSelect();
|
|
|
|
QString selectedProfile();
|
|
void QuickLogin();
|
|
private slots:
|
|
void on_selectButton_clicked();
|
|
|
|
void on_newProfileButton_clicked();
|
|
|
|
void on_listView_activated(const QModelIndex &index);
|
|
void earlyExit();
|
|
|
|
void openProfile();
|
|
void editProfile();
|
|
void deleteProfile();
|
|
|
|
void on_listView_customContextMenuRequested(const QPoint &pos);
|
|
|
|
void on_pushButton_clicked();
|
|
|
|
void on_filter_textChanged(const QString &arg1);
|
|
|
|
private:
|
|
Ui::ProfileSelect *ui;
|
|
QString m_selectedProfile;
|
|
int m_tries;
|
|
QMenu *popupMenu;
|
|
QStandardItemModel *model;
|
|
QSortFilterProxyModel *proxy;
|
|
};
|
|
|
|
#endif // PROFILESELECT_H
|