00001 00002 #include "rfcpopup.h" 00003 #include "obexpopup.h" 00004 #include "panpopup.h" 00005 #include "dunpopup.h" 00006 00007 #include "stdpopups.h" 00008 00009 extern "C" { 00010 00011 QPopupMenu* newRfcComPopup( const OpieTooth::Services& service, OpieTooth::BTDeviceItem* item ) { 00012 return new OpieTooth::RfcCommPopup(/* servive,*/ item ); // fix spellin RfComm vs. RfcComm and paramaters 00013 //return 0l; 00014 } 00015 QPopupMenu* newObexPushPopup( const OpieTooth::Services&, OpieTooth::BTDeviceItem* ) { 00016 return new OpieTooth::ObexPopup(); 00017 } 00018 QPopupMenu* newPanPopup( const OpieTooth::Services& service, OpieTooth::BTDeviceItem* item ) { 00019 return new OpieTooth::PanPopup( item ); 00020 } 00021 00022 QPopupMenu* newDunPopup( const OpieTooth::Services& service, OpieTooth::BTDeviceItem* item ) { 00023 return new OpieTooth::DunPopup( item ); 00024 } 00025 } 00026
1.4.2