summaryrefslogtreecommitdiff
path: root/noncore/settings/aqpkg/settingsimpl.cpp
blob: 9ee3a33a8ce85b42f34eefbb90fa693feae285a9 (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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/***************************************************************************
                          settingsimpl.cpp  -  description
                             -------------------
    begin                : Thu Aug 29 2002
    copyright            : (C) 2002 by Andy Qua
    email                : andy.qua@blueyonder.co.uk
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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 <fstream>
using namespace std;

#include <qlistbox.h>
#include <qlineedit.h>
#include <qpushbutton.h>
#include <qtabwidget.h>
#include <qcheckbox.h>

#ifdef QWS
#include <qpe/config.h>
#endif

#include "settingsimpl.h"

#include "global.h"

SettingsImpl :: SettingsImpl( DataManager *dataManager, QWidget * parent, const char* name, bool modal, WFlags fl )
    : SettingsBase( parent, name, modal, fl )
{
    dataMgr = dataManager;

    setupData();
    changed = false;
    newserver = false;
    newdestination = false;
}

SettingsImpl :: ~SettingsImpl()
{

}

bool SettingsImpl :: showDlg( int i )
{
	TabWidget->setCurrentPage( i );
	showMaximized();
	exec();

	if ( changed )
		dataMgr->writeOutIpkgConf();

	return changed;
}

void SettingsImpl :: setupData()
{
    // add servers
    vector<Server>::iterator it;
    for ( it = dataMgr->getServerList().begin() ; it != dataMgr->getServerList().end() ; ++it )
	{
		if ( it->getServerName() == LOCAL_SERVER || it->getServerName() == LOCAL_IPKGS )
			continue;

        servers->insertItem( it->getServerName() );
	}

    // add destinations
    vector<Destination>::iterator it2;
    for ( it2 = dataMgr->getDestinationList().begin() ; it2 != dataMgr->getDestinationList().end() ; ++it2 )
        destinations->insertItem( it2->getDestinationName() );

}

//------------------ Servers tab ----------------------

void SettingsImpl :: editServer( int sel )
{
	currentSelectedServer = sel;
    Server *s = dataMgr->getServer( servers->currentText() );
    serverName = s->getServerName();
    servername->setText( s->getServerName() );
    serverurl->setText( s->getServerUrl() );
    active->setChecked( s->isServerActive() );
}

void SettingsImpl :: newServer()
{
	newserver = true;
	servername->setText( "" );
	serverurl->setText( "" );
	servername->setFocus();
    active->setChecked( true );
}

void SettingsImpl :: removeServer()
{
	changed = true;
    Server *s = dataMgr->getServer( servers->currentText() );
	dataMgr->getServerList().erase( s );
	servers->removeItem( currentSelectedServer );
}

void SettingsImpl :: changeServerDetails()
{
	changed = true;

	QString newName = servername->text();
	if ( !newserver )
	{
		Server *s = dataMgr->getServer( serverName );

		// Update url
		s->setServerUrl( serverurl->text() );
        s->setActive( active->isChecked() );


		// Check if server name has changed, if it has then we need to replace the key in the map
		if ( serverName != newName )
		{
			// Update server name
			s->setServerName( newName );

			// See if this server is the active server
//			if ( dataMgr->getActiveServer() == serverName )
//				dataMgr->setActiveServer( newName );

			// Update list box
			servers->changeItem( newName, currentSelectedServer );
		}
	}
	else
	{
        Server s( newName, serverurl->text() );
        dataMgr->getServerList().push_back( Server( newName, serverurl->text() ) );
        dataMgr->getServerList().end()->setActive( active->isChecked() );
		servers->insertItem( newName );
		servers->setCurrentItem( servers->count() );
		newserver = false;
	}
}

//------------------ Destinations tab ----------------------

void SettingsImpl :: editDestination( int sel )
{
	currentSelectedDestination = sel;
    Destination *d = dataMgr->getDestination( destinations->currentText() );
    destinationName = d->getDestinationName();
    destinationname->setText( d->getDestinationName() );
    destinationurl->setText( d->getDestinationPath() );
    linkToRoot->setChecked( d->linkToRoot() );
}

void SettingsImpl :: newDestination()
{
	newdestination = true;
	destinationname->setText( "" );
	destinationurl->setText( "" );
	destinationname->setFocus();
    linkToRoot->setChecked( true );
}

void SettingsImpl :: removeDestination()
{
	changed = true;
    Destination *d = dataMgr->getDestination( destinations->currentText() );
	dataMgr->getDestinationList().erase( d );
	destinations->removeItem( currentSelectedDestination );
}

void SettingsImpl :: changeDestinationDetails()
{
	changed = true;

#ifdef QWS
    Config cfg( "aqpkg" );
    cfg.setGroup( "destinations" );
#endif

    QString newName = destinationname->text();
	if ( !newdestination )
	{
		Destination *d = dataMgr->getDestination( destinationName );

		// Update url
		d->setDestinationPath( destinationurl->text() );
        d->linkToRoot( linkToRoot->isChecked() );

		// Check if server name has changed, if it has then we need to replace the key in the map
		if ( destinationName != newName )
		{
			// Update server name
			d->setDestinationName( newName );

			// Update list box
			destinations->changeItem( newName, currentSelectedDestination );
		}
#ifdef QWS
        QString key = newName;
        key += "_linkToRoot";
        int val = d->linkToRoot();
        cfg.writeEntry( key, val );
#endif        
	}
	else
	{
		dataMgr->getDestinationList().push_back( Destination( newName, destinationurl->text() ) );
		destinations->insertItem( newName );
		destinations->setCurrentItem( destinations->count() );
		newdestination = false;

#ifdef QWS
        QString key = newName;
        key += "_linkToRoot";
        cfg.writeEntry( key, true );
#endif
	}
}