summaryrefslogtreecommitdiffstats
path: root/khotkeys/kcontrol/waiting_widget.h
blob: 520e7742e90b1cb5a743a50258a95ab3c0445c3c (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
/****************************************************************************

 KHotKeys

 Copyright (C) 1999-2001 Lubos Lunak <l.lunak@kde.org>

 Distributed under the terms of the GNU General Public License version 2.

****************************************************************************/

#ifndef _WAITING_WIDGET_H_
#define _WAITING_WIDGET_H_

#include <waiting_widget_ui.h>

namespace KHotKeys
{

class Waiting_action;
class Action_data;

class Waiting_widget
    : public Waiting_widget_ui
    {
    Q_OBJECT
    public:
        Waiting_widget( TQWidget* parent_P = NULL, const char* name_P = NULL );
        void set_data( const Waiting_action* data_P );
        Waiting_action* get_data( Action_data* data_P ) const;
    };

typedef Waiting_widget Waiting_tab;

} // namespace KHotKeys

#endif