summaryrefslogtreecommitdiffstats
path: root/yakuake/src/first_run_dialog.h
blob: 97ff69520170e83f8c4d8d949717a7c985b947ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.
*/

/*
  Copyright (C) 2007 Eike Hein <hein@kde.org>
*/


#ifndef FIRST_RUN_DIALOG_H
#define FIRST_RUN_DIALOG_H


#include "first_run_dialog_ui.h"


class TDEShortcut;

class FirstRunDialog : public FirstRunDialogUI
{
    TQ_OBJECT
  

    public:
        explicit FirstRunDialog(TQWidget* parent, const char* name=NULL);
        ~FirstRunDialog();

        TDEShortcut shortcut();


    public slots:
        void setShortcut(const TDEShortcut& shortcut);


    private slots:
        void validateShortcut(const TDEShortcut& shortcut);
};


#endif /* FIRST_RUN_DIALOG_H */