You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.1 KiB
45 lines
1.1 KiB
/****************************************************************************
|
|
|
|
KHotKeys
|
|
|
|
Copyright (C) 1999-2001 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
Distributed under the terms of the GNU General Public License version 2.
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef _MENUENTRY_WIDGET_H_
|
|
#define _MENUENTRY_WIDGET_H_
|
|
|
|
#include <menuentry_widget_ui.h>
|
|
|
|
namespace KHotKeys
|
|
{
|
|
|
|
class Menuentry_action;
|
|
class Action_data;
|
|
|
|
class Menuentry_widget
|
|
: public Menuentry_widget_ui
|
|
{
|
|
TQ_OBJECT
|
|
public:
|
|
Menuentry_widget( TQWidget* parent_P = NULL, const char* name_P = NULL );
|
|
void set_data( const Menuentry_action* data_P );
|
|
Menuentry_action* get_data( Action_data* data_P ) const;
|
|
public slots:
|
|
void clear_data();
|
|
protected slots:
|
|
virtual void browse_pressed();
|
|
};
|
|
|
|
typedef Menuentry_widget Menuentry_tab;
|
|
|
|
//***************************************************************************
|
|
// Inline
|
|
//***************************************************************************
|
|
|
|
} // namespace KHotKeys
|
|
|
|
#endif
|