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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
/****************************************************************************
KHotKeys
Copyright (C) 1999-2001 Lubos Lunak <l.lunak@kde.org>
Distributed under the terms of the GNU General Public License version 2.
****************************************************************************/
#define _ACTION_GROUP_TAB_CPP_
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "action_group_tab.h"
#include <tqlineedit.h>
#include <tqcheckbox.h>
#include <tdelocale.h>
#include <tdemessagebox.h>
#include <ktextedit.h>
#include <actions.h>
#include <action_data.h>
#include "kcmkhotkeys.h"
namespace KHotKeys
{
Action_group_tab::Action_group_tab( TQWidget* parent_P , const char* name_P )
: Action_group_tab_ui( parent_P, name_P )
{
clear_data();
// KHotKeys::Module::changed()
connect( action_name_lineedit, TQT_SIGNAL( textChanged( const TQString& )),
module, TQT_SLOT( changed()));
connect( disable_checkbox, TQT_SIGNAL( clicked()),
module, TQT_SLOT( changed()));
connect( comment_multilineedit, TQT_SIGNAL( textChanged()),
module, TQT_SLOT( changed()));
}
void Action_group_tab::clear_data()
{
disconnect( action_name_lineedit, TQT_SIGNAL( textChanged( const TQString& )), this,
TQT_SLOT( action_group_name_changed( const TQString& )));
action_name_lineedit->clear();
action_name_lineedit->setReadOnly( false );
disable_checkbox->setChecked( false );
disable_checkbox->setText( i18n( "&Disable" ));
comment_multilineedit->clear();
system_group = Action_data_group::SYSTEM_NONE;
}
void Action_group_tab::set_data( const Action_data_group* data_P )
{
if( data_P == NULL )
{
clear_data();
return;
}
action_name_lineedit->setText( data_P->name());
action_name_lineedit->setReadOnly( data_P->is_system_group());
disable_checkbox->setChecked( !data_P->enabled( true ));
if( !data_P->parent()->enabled( false ))
disable_checkbox->setText( i18n( "&Disable (group is disabled)" ));
else
disable_checkbox->setText( i18n( "&Disable" ));
comment_multilineedit->setText( data_P->comment());
connect( action_name_lineedit, TQT_SIGNAL( textChanged( const TQString& )), this,
TQT_SLOT( action_group_name_changed( const TQString& )));
system_group = data_P->system_group();
}
Action_data_group* Action_group_tab::get_data( Action_data_group* parent_P,
Condition_list* conditions_P ) const
{
TQString name = action_name_lineedit->text();
return new Action_data_group( parent_P, name, comment_multilineedit->text(), conditions_P,
system_group, !disable_checkbox->isChecked());
}
void Action_group_tab::action_group_name_changed( const TQString& name_P )
{
module->action_name_changed( name_P );
}
} // namespace KHotKeys
#include "action_group_tab.moc"
|