OSCAR-code/sleepyhead/profileselect.h

62 lines
1.4 KiB
C
Raw Normal View History

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim: set ts=8 sts=4 et sw=4 tw=99:
*
* Profile Select Header (Login Screen)
*
* Copyright (c) 2011-2014 Mark Watkins <jedimark@users.sourceforge.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. */
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>
2011-10-02 03:38:51 +00:00
#include <QMenu>
2011-10-01 12:54:20 +00:00
namespace Ui {
class ProfileSelect;
2011-10-01 12:54:20 +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
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();
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);
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);
void on_pushButton_clicked();
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;
2011-10-01 12:54:20 +00:00
};
#endif // PROFILESELECT_H