summaryrefslogtreecommitdiffstats
path: root/clients/tde/src/dialogs/selectserverdlg.cpp
blob: 773ea981782fbdf9cd1852e1c35b50cf0ea63711 (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
/***************************************************************************
 *   Copyright (C) 2012 by Timothy Pearson                                 *
 *   kb9vqf@pearsoncomputing.net                                           *
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 ***************************************************************************/

#include <tqstringlist.h>
#include <tqlabel.h>
#include <tqmap.h>

#include <kapplication.h>
#include <ksimpleconfig.h>
#include <klocale.h>
#include <kdebug.h>
#include <kstandarddirs.h>
#include <kiconloader.h>
#include <dcopclient.h>
#include <kprocess.h>
#include <kcombobox.h>
#include <kmessagebox.h>

#include "selectserverdlg.h"
#include "selectserverdlgbase.h"

class Q_EXPORT StationTypeListViewItem : public TQListViewItem
{
	public:
		StationTypeListViewItem(TQListView * parent) : TQListViewItem(parent) {}
		StationTypeListViewItem(TQListViewItem * parent) : TQListViewItem(parent) {}
		StationTypeListViewItem(TQListView * parent, TQListViewItem * after) : TQListViewItem(parent, after) {}
		StationTypeListViewItem(TQListViewItem * parent, TQListViewItem * after) : TQListViewItem(parent, after) {}
		
		StationTypeListViewItem(TQListView * parent, TQString s1, TQString s2 = TQString::null, TQString s3 = TQString::null, TQString s4 = TQString::null, TQString s5 = TQString::null, TQString s6 = TQString::null, TQString s7 = TQString::null, TQString s8 = TQString::null) : TQListViewItem(parent, s1, s2, s3, s4, s5, s6, s7, s8) {}
		StationTypeListViewItem(TQListViewItem * parent, TQString s1, TQString s2 = TQString::null, TQString s3 = TQString::null, TQString s4 = TQString::null, TQString s5 = TQString::null, TQString s6 = TQString::null, TQString s7 = TQString::null, TQString s8 = TQString::null) : TQListViewItem(parent, s1, s2, s3, s4, s5, s6, s7, s8) {}
		
		StationTypeListViewItem(TQListView * parent, TQListViewItem * after, TQString s1, TQString s2 = TQString::null, TQString s3 = TQString::null, TQString s4 = TQString::null, TQString s5 = TQString::null, TQString s6 = TQString::null, TQString s7 = TQString::null, TQString s8 = TQString::null) : TQListViewItem(parent, after, s1, s2, s3, s4, s5, s6, s7, s8) {}
		StationTypeListViewItem(TQListViewItem * parent, TQListViewItem * after, TQString s1, TQString s2 = TQString::null, TQString s3 = TQString::null, TQString s4 = TQString::null, TQString s5 = TQString::null, TQString s6 = TQString::null, TQString s7 = TQString::null, TQString s8 = TQString::null) : TQListViewItem(parent, after, s1, s2, s3, s4, s5, s6, s7, s8) {}

		~StationTypeListViewItem() {}

	public:
		StationType m_stationType;
};

SelectServerDialog::SelectServerDialog(TQWidget* parent, const char* name, StationList sl)
	: KDialogBase(parent, name, true, i18n("Workspace Selection"), Ok|Cancel, Ok, true), m_stationList(sl)
{
	unsigned int i;
	unsigned int j;

	m_base = new SelectServerDlg(this);

	setMainWidget(m_base);

	m_base->serverList->setAllColumnsShowFocus(true);
	m_base->serverList->setFullWidth(true);

	connect(m_base->serverList, TQT_SIGNAL(executed(TQListViewItem*)), this, TQT_SLOT(slotOk()));

	for (i=0; i<m_stationList.count(); i++) {
		StationType st = m_stationList[i];
		TQString services;
		for (j=0; j<st.services.count(); j++) {
			ServiceType servicetype = st.services[j];
			if (j > 0) {
				services.append(", ");
			}
			services.append(servicetype.description);
		}
		bool newService = true;
		TQListViewItemIterator it(m_base->serverList);
		while (it.current()) {
			StationTypeListViewItem* curItem = dynamic_cast<StationTypeListViewItem*>(it.current());
			if (curItem) {
				if (curItem->m_stationType.services == st.services) {
					newService = false;
				}
				++it;
			}
		}
		if (newService) {
			StationTypeListViewItem* item = new StationTypeListViewItem(m_base->serverList, services);
			item->m_stationType = st;
		}
	}
}

void SelectServerDialog::slotOk() {
	StationTypeListViewItem* curItem = dynamic_cast<StationTypeListViewItem*>(m_base->serverList->selectedItem());

	if (!curItem) {
		KMessageBox::error(this, i18n("You must select a workstation type to continue!"), i18n("Input Required"));
		return;
	}

	m_selectedStation = curItem->m_stationType;

	accept();
}

#include "selectserverdlg.moc"