summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/popuphelper.cpp
authorzecke <zecke>2002-07-12 17:14:58 (UTC)
committer zecke <zecke>2002-07-12 17:14:58 (UTC)
commit89dce758480cc90502ad14b6c4cf80774e6c1845 (patch) (unidiff)
tree2ff4e635c8aa86385dfd896084f5cd419efd0840 /noncore/net/opietooth/manager/popuphelper.cpp
parent716211b5e06bb25145cfbcf62a11a7c52c79dde5 (diff)
downloadopie-89dce758480cc90502ad14b6c4cf80774e6c1845.zip
opie-89dce758480cc90502ad14b6c4cf80774e6c1845.tar.gz
opie-89dce758480cc90502ad14b6c4cf80774e6c1845.tar.bz2
- Connection -> ConnectionState
- Factory adjustments - Factory function - Refactoring the QListViewItem derived class BTListItem | - BTDeviceItem for RemoteDevices | - BTServiceItem for Services | - BTConnectionItem for ConnectionState - misc bug fixes
Diffstat (limited to 'noncore/net/opietooth/manager/popuphelper.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/popuphelper.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/noncore/net/opietooth/manager/popuphelper.cpp b/noncore/net/opietooth/manager/popuphelper.cpp
index 2a6dad0..d8404d6 100644
--- a/noncore/net/opietooth/manager/popuphelper.cpp
+++ b/noncore/net/opietooth/manager/popuphelper.cpp
@@ -1,7 +1,9 @@
1 1
2#include "stdpopups.h"
3
2#include "popuphelper.h" 4#include "popuphelper.h"
3 5
4using namespace OpieTooth; 6using namespace OpieTooth;
5 7
6PopupHelper::PopupHelper() { 8PopupHelper::PopupHelper() {
7 init(); 9 init();
@@ -9,17 +11,18 @@ PopupHelper::PopupHelper() {
9PopupHelper::~PopupHelper() { 11PopupHelper::~PopupHelper() {
10 12
11} 13}
12void PopupHelper::insert( int id, popupFactory fact ) { 14void PopupHelper::insert( int id, popupFactory fact ) {
13 m_map.insert(id, fact ); 15 m_map.insert(id, fact );
14} 16}
15QPopupMenu* PopupHelper::find( int id ) { 17QPopupMenu* PopupHelper::find( int id, const Services& ser, QListViewItem* item ) {
16 FactoryMap::Iterator it = m_map.find(id ); 18 FactoryMap::Iterator it = m_map.find(id );
17 if ( it != m_map.end() ) { 19 if ( it != m_map.end() ) {
18 popupFactory fact = it.data(); 20 popupFactory fact = it.data();
19 return (*fact)(); 21 return (*fact)(ser, item);
20 } 22 }
21 return 0l; 23 return 0l;
22} 24}
23void PopupHelper::init() { 25void PopupHelper::init() {
24 26 insert( 1, newRfcComPopup );
27 insert(2, newObexPushPopup );
25} 28}