summaryrefslogtreecommitdiffstats
path: root/ksirc/KSPrefs/page_general.cpp
blob: 6bf8d47658acbdcfb6e0e9f2a0364d26aff2d6e6 (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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/***************************************************************************
 *                                                                         *
 *   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 <tqcheckbox.h>
#include <tqspinbox.h>

#include <klocale.h>
#include <kcharsets.h>
#include "page_general.h"
#include "../servercontroller.h"

PageGeneral::PageGeneral( TQWidget *parent, const char *name ) : PageGeneralBase( parent, name)
{
}

PageGeneral::~PageGeneral()
{
}

void PageGeneral::saveConfig()
{
    ksopts->runDocked = dockedOnlyCB->isChecked();
    servercontroller::self()->checkDocking();
    ksopts->autoCreateWin = autoCreateWindowCB->isChecked();
    ksopts->autoCreateWinForNotice = autoCreateWindowForNoticeCB->isChecked();
    ksopts->nickCompletion = nickCompletionCB->isChecked();
    ksopts->displayTopic = displayTopicCB->isChecked();
    ksopts->colorPicker = colorPickerPopupCB->isChecked();
    ksopts->autoRejoin = autoRejoinCB->isChecked();
    ksopts->oneLineEntry = oneLineEditCB->isChecked();
    ksopts->useColourNickList = useColourNickListCB->isChecked();
    ksopts->dockPopups = dockPopupsCB->isChecked();
    ksopts->autoSaveHistory = autoSaveHistoryCB->isChecked();
    ksopts->windowLength = historySB->value();

    ksopts->channel["global"]["global"].timeStamp = timeStampCB->isChecked();
    ksopts->channel["global"]["global"].beepOnMsg = beepCB->isChecked();
    ksopts->channel["global"]["global"].topicShow = showTopicCB->isChecked();
    ksopts->channel["global"]["global"].logging = enLoggingCB->isChecked();
    ksopts->channel["global"]["global"].encoding = encodingsCB->currentText();
    ksopts->channel["global"]["global"].filterJoinPart = joinPartCB->isChecked();

    if(applyGloballyCB->isChecked()){
        ksopts->applyChannelGlobal();
    }

    ksopts->publicAway = publicAway->isChecked();
}

void PageGeneral::readConfig( const KSOGeneral *opts )
{
    dockedOnlyCB->setChecked( opts->runDocked );
    autoCreateWindowCB->setChecked( opts->autoCreateWin );
    autoCreateWindowForNoticeCB->setChecked( opts->autoCreateWinForNotice );
    nickCompletionCB->setChecked( opts->nickCompletion );
    displayTopicCB->setChecked( opts->displayTopic );
    colorPickerPopupCB->setChecked( opts->colorPicker );
    autoRejoinCB->setChecked( opts->autoRejoin );
    oneLineEditCB->setChecked( opts->oneLineEntry );
    useColourNickListCB->setChecked( opts->useColourNickList );
    dockPopupsCB->setChecked( opts->dockPopups );
    dockPopupsCB->setEnabled(dockedOnlyCB->isChecked());

    autoSaveHistoryCB->setChecked( opts->autoSaveHistory );

    historySB->setValue( opts->windowLength );

    timeStampCB->setChecked( ksopts->channel["global"]["global"].timeStamp );
    beepCB->setChecked( ksopts->channel["global"]["global"].beepOnMsg );
    showTopicCB->setChecked( ksopts->channel["global"]["global"].topicShow );
    enLoggingCB->setChecked( ksopts->channel["global"]["global"].logging );
    joinPartCB->setChecked( ksopts->channel["global"]["global"].filterJoinPart );

    publicAway->setChecked( ksopts->publicAway );

    encodingsCB->clear();


    TQStringList encodings = TDEGlobal::charsets()->descriptiveEncodingNames();

    // remove utf16/ucs2 as it just doesn't work for IRC
    TQStringList::Iterator encodingIt = encodings.begin();
    while ( encodingIt != encodings.end() ) {
	if ( ( *encodingIt ).find( "utf16" ) != -1 ||
	     ( *encodingIt ).find( "iso-10646" ) != -1 )
	    encodingIt = encodings.remove( encodingIt );
	else
	    ++encodingIt;
    }
    encodings.prepend( i18n( "Default" ) );
    encodingsCB->insertStringList(encodings);
    int eindex = encodings.findIndex(ksopts->channel["global"]["global"].encoding);
    if(eindex == -1)
	encodingsCB->setCurrentItem(0);
    else
        encodingsCB->setCurrentItem(eindex);
}

void PageGeneral::defaultConfig()
{
    KSOGeneral opts;
    readConfig( &opts );
}

void PageGeneral::changed()
{
    dockPopupsCB->setEnabled(dockedOnlyCB->isChecked());
    emit modified();
}

#include "page_general.moc"