|
|
|
/****************************************************************************
|
|
|
|
|
|
|
|
KHotKeys
|
|
|
|
|
|
|
|
Copyright (C) 1999-2001 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
|
|
|
|
Distributed under the terms of the GNU General Public License version 2.
|
|
|
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _KCMKHOTKEYS_H_
|
|
|
|
#define _KCMKHOTKEYS_H_
|
|
|
|
|
|
|
|
#include <tdecmodule.h>
|
|
|
|
#include <tdeshortcut.h>
|
|
|
|
|
|
|
|
#include <actions.h>
|
|
|
|
#include <settings.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace KHotKeys
|
|
|
|
{
|
|
|
|
|
|
|
|
class Actions_listview_widget;
|
|
|
|
class Tab_widget;
|
|
|
|
class Action_data_base;
|
|
|
|
class Main_buttons_widget;
|
|
|
|
|
|
|
|
class Module
|
|
|
|
: public TDECModule
|
|
|
|
{
|
|
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
|
|
Module( TQWidget *parent_P, const char *name_P );
|
|
|
|
virtual ~Module();
|
|
|
|
virtual void load();
|
|
|
|
virtual void save();
|
|
|
|
// virtual void defaults(); not used
|
|
|
|
TQString quickHelp() const;
|
|
|
|
int buttons();
|
|
|
|
void set_current_action_data( Action_data_base* data_P );
|
|
|
|
Action_data_base* current_action_data();
|
|
|
|
void action_name_changed( const TQString& name_P );
|
|
|
|
Action_data_group* actions_root() const;
|
|
|
|
void set_gestures_disabled( bool set );
|
|
|
|
bool gestures_disabled() const;
|
|
|
|
void set_gesture_button( int button );
|
|
|
|
int gesture_button() const;
|
|
|
|
void set_gesture_timeout( int time );
|
|
|
|
int gesture_timeout() const;
|
|
|
|
void set_gestures_exclude( Windowdef_list* windows );
|
|
|
|
const Windowdef_list* gestures_exclude() const;
|
|
|
|
void set_daemon_disabled( bool disable );
|
|
|
|
bool daemon_disabled() const;
|
|
|
|
void import();
|
|
|
|
TDEShortcut voice_shortcut() const;
|
|
|
|
void set_voice_shortcut( const TDEShortcut&) ;
|
|
|
|
public slots:
|
|
|
|
void changed();
|
|
|
|
protected:
|
|
|
|
void set_new_current_action( bool save_old_P );
|
|
|
|
void init_arts();
|
|
|
|
Actions_listview_widget* actions_listview_widget;
|
|
|
|
Tab_widget* tab_widget;
|
|
|
|
Main_buttons_widget* buttons_widget;
|
|
|
|
Action_data_group* _actions_root; // vlastni vsechny Action_data
|
|
|
|
Action_data_base* _current_action_data;
|
|
|
|
bool listview_is_changed;
|
|
|
|
bool deleting_action;
|
|
|
|
Settings settings;
|
|
|
|
protected slots:
|
|
|
|
void listview_current_action_changed();
|
|
|
|
void new_action();
|
|
|
|
void new_action_group();
|
|
|
|
void delete_action();
|
|
|
|
void global_settings();
|
|
|
|
};
|
|
|
|
|
|
|
|
extern Module* module;
|
|
|
|
|
|
|
|
//***************************************************************************
|
|
|
|
// Inline
|
|
|
|
//***************************************************************************
|
|
|
|
|
|
|
|
// Module
|
|
|
|
|
|
|
|
inline
|
|
|
|
Action_data_group* Module::actions_root() const
|
|
|
|
{
|
|
|
|
return _actions_root;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
Action_data_base* Module::current_action_data()
|
|
|
|
{
|
|
|
|
return _current_action_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
void Module::set_gestures_disabled( bool set )
|
|
|
|
{
|
|
|
|
settings.gestures_disabled_globally = set;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
bool Module::gestures_disabled() const
|
|
|
|
{
|
|
|
|
return settings.gestures_disabled_globally;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
void Module::set_gesture_button( int button )
|
|
|
|
{
|
|
|
|
settings.gesture_mouse_button = button;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
int Module::gesture_button() const
|
|
|
|
{
|
|
|
|
return settings.gesture_mouse_button;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
void Module::set_gesture_timeout( int time )
|
|
|
|
{
|
|
|
|
settings.gesture_timeout = time;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
int Module::gesture_timeout() const
|
|
|
|
{
|
|
|
|
return settings.gesture_timeout;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
const Windowdef_list* Module::gestures_exclude() const
|
|
|
|
{
|
|
|
|
return settings.gestures_exclude;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
void Module::set_daemon_disabled( bool disabled_P )
|
|
|
|
{
|
|
|
|
settings.daemon_disabled = disabled_P;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
bool Module::daemon_disabled() const
|
|
|
|
{
|
|
|
|
return settings.daemon_disabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline
|
|
|
|
void Module::set_voice_shortcut( const TDEShortcut& cut)
|
|
|
|
{
|
|
|
|
settings.voice_shortcut=cut;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
|
|
|
TDEShortcut Module::voice_shortcut() const
|
|
|
|
{
|
|
|
|
return settings.voice_shortcut;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace KHotKeys
|
|
|
|
|
|
|
|
#endif
|