~lightdm-team/lightdm/1.4

« back to all changes in this revision

Viewing changes to greeters/qt/loginprompt.h

  • Committer: David Edmundson
  • Date: 2011-05-21 19:15:11 UTC
  • mto: This revision was merged to the branch mainline in revision 460.
  • Revision ID: david@davidedmundson.co.uk-20110521191511-lqpby42budsrobja
Move library into a folder which matches it's namespace

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
    class Widget;
8
8
}
9
9
 
10
 
class LdmGreeter;
 
10
namespace QLightDM {
 
11
    class Greeter;
 
12
}
11
13
 
12
14
class LoginPrompt : public QWidget
13
15
{
14
16
    Q_OBJECT
15
17
 
16
18
public:
17
 
    explicit LoginPrompt(LdmGreeter* greeter, QWidget *parent = 0);
 
19
    explicit LoginPrompt(QLightDM::Greeter* greeter, QWidget *parent = 0);
18
20
    virtual ~LoginPrompt();
19
21
 
20
22
private slots:
23
25
    void prompt(const QString &message);
24
26
 
25
27
private:
26
 
    LdmGreeter *m_greeter;
 
28
    QLightDM::Greeter *m_greeter;
27
29
    Ui::Widget *ui;
28
30
};
29
31