summaryrefslogblamecommitdiffstats
path: root/src/loginform.h
blob: e414d2bd4dd004630889731d0b567ded3b6ad5a8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                             
                 
 
                           
 


                     









                                
       
                                                  



                                                  
                               
                                           
                                                                            


                                                                               
                       








                                                                                       
                                                  


                      
                                                               

                            
                            

                  


                     
/*
* Copyright (c) 2012-2015 Christian Surlykke
*
* This file is part of qt-lightdm-greeter 
* It is distributed under the LGPL 2.1 or later license.
* Please refer to the LICENSE file for a copy of the license.
*/
#ifndef LOGINFORM_H
#define LOGINFORM_H

#include <QWidget>
#include <QProcess>
#include <QDialog>
#include <QKeyEvent>
#include <QGraphicsOpacityEffect>
#include <QMap>
#include <QTimer>

#include <QLightDM/Greeter>

namespace QLightDM {
class PowerInterface;
}

namespace Ui
{
class LoginForm;
}

class LoginForm : public QWidget
{
    Q_OBJECT

public:
    explicit LoginForm(QWidget *parent = nullptr);
    ~LoginForm();
    virtual void setFocus(Qt::FocusReason reason);

public slots:
    void startAuthentication();
    void leaveDropDownActivated(int index);
    void onPrompt(QString prompt, QLightDM::Greeter::PromptType promptType);
    void onMessage(QString prompt, QLightDM::Greeter::MessageType messageType);
    void onAuthenticationComplete();
    void cancelLogin();
    void hideMessage();

protected:
    virtual void keyPressEvent(QKeyEvent *event);

private:
    void initialize();
    void addLeaveEntry(bool canDo, QString iconName, QString text, QString actionName);
    QString currentSession();
    void setCurrentSession(QString session);
    void showMessage(QString message, bool error);

    Ui::LoginForm *ui;

    QMap<int, void (QLightDM::PowerInterface::*)()> powerSlots;

    QTimer cancelLoginTimer;
    QTimer hideMessageTimer;

    bool clearMsg;
};

#endif // LOGINFORM_H