summaryrefslogblamecommitdiffstats
path: root/src/loginform.h
blob: 79a862e2bf3ae43a59a30d8dd7ac1f38225a72ca (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) override;
    virtual bool eventFilter(QObject *object, QEvent *event) override;

private:
    void initialize();
    void checkCaps();
    void addLeaveEntry(bool canDo, QString iconName, QString text, QString actionName);
    QString currentSession();
    void setCurrentSession(QString session);
    void showMessage(QString message, bool error);
    void resetForm();
    Ui::LoginForm *ui;

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

    QTimer cancelLoginTimer;
    QTimer hideMessageTimer;
    QTimer resetFormTimer;

    bool clearMsg;
    int capsOn;
};

#endif // LOGINFORM_H