summaryrefslogtreecommitdiffstats
path: root/ksirc/KSPrefs/page_shortcuts.cpp
blob: 6947f97ba311dce3ae340b8ac48f9fc522f59a3d (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/***************************************************************************
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 ***************************************************************************/

#include <layout.h>
#include <tqgroupbox.h>

#include <kglobalaccel.h>

#include <kkeydialog.h>
#include "page_shortcuts.h"
#include "../servercontroller.h"

PageShortcuts::PageShortcuts( TQWidget *parent, const char *name ) : PageShortcutsBase( parent, name)
{
    globalGB->setColumnLayout( 0, Qt::Horizontal );

    m_key = new KKeyChooser(servercontroller::self()->getGlobalAccel(), globalGB);
    connect(m_key, TQT_SIGNAL(keyChange()), this, TQT_SLOT(changed()));
    globalGB->layout()->add(m_key);
}

PageShortcuts::~PageShortcuts()
{
}

void PageShortcuts::saveConfig()
{
    m_key->commitChanges();
    servercontroller::self()->getGlobalAccel()->writeSettings();
    servercontroller::self()->getGlobalAccel()->updateConnections();
}

void PageShortcuts::readConfig( const KSOGeneral *opts )
{
    servercontroller::self()->getGlobalAccel()->readSettings();
}

void PageShortcuts::defaultConfig()
{
    KSOGeneral opts;
    readConfig( &opts );
    m_key->allDefault();
}


void PageShortcuts::changed()
{
    emit modified();
}

#include "page_shortcuts.moc"