summaryrefslogtreecommitdiff
path: root/noncore/net/networksetup/addconnectionimp.cpp
Unidiff
Diffstat (limited to 'noncore/net/networksetup/addconnectionimp.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/networksetup/addconnectionimp.cpp37
1 files changed, 0 insertions, 37 deletions
diff --git a/noncore/net/networksetup/addconnectionimp.cpp b/noncore/net/networksetup/addconnectionimp.cpp
deleted file mode 100644
index 07545f7..0000000
--- a/noncore/net/networksetup/addconnectionimp.cpp
+++ b/dev/null
@@ -1,37 +0,0 @@
1#include "addconnectionimp.h"
2#include <qlistview.h>
3#include <qlist.h>
4#include <qlabel.h>
5#include <qheader.h>
6
7/**
8 * Constructor
9 */
10AddConnectionImp::AddConnectionImp(QWidget *parent, const char *name, WFlags f):AddConnection(parent, name, f){
11 connect(registeredServicesList, SIGNAL(selectionChanged()), this, SLOT(changed()));
12 registeredServicesList->header()->hide();
13};
14
15/**
16 * The current item changed, update the discription.
17 */
18void AddConnectionImp::changed(){
19 QListViewItem *item = registeredServicesList->currentItem();
20 if(item)
21 help->setText(list[item->text(0)]);
22}
23
24/**
25 * Save a copy of newList for the discriptions and append them all to the view
26 * @param newList the new list of possible interfaces
27 */
28void AddConnectionImp::addConnections(const QMap<QString, QString> &newList){
29 list = newList;
30 QMap<QString, QString>::Iterator it;
31 for( it = list.begin(); it != list.end(); ++it )
32 QListViewItem *item = new QListViewItem(registeredServicesList, it.key());
33 registeredServicesList->setCurrentItem(registeredServicesList->firstChild());
34}
35
36// addserviceimp.cpp
37