summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/configdialog.cpp
authorzecke <zecke>2002-10-08 16:37:37 (UTC)
committer zecke <zecke>2002-10-08 16:37:37 (UTC)
commit76fb8a57bf9fbae3a7073c8b0be1216f34adf99c (patch) (unidiff)
tree3f486d66ce474039b1a0fc4ade770e6e8a7c32b3 /noncore/apps/opie-console/configdialog.cpp
parentfaeb94a4000dc539577af465107b5d10903f92d6 (diff)
downloadopie-76fb8a57bf9fbae3a7073c8b0be1216f34adf99c.zip
opie-76fb8a57bf9fbae3a7073c8b0be1216f34adf99c.tar.gz
opie-76fb8a57bf9fbae3a7073c8b0be1216f34adf99c.tar.bz2
SzModem:
Make it compile remove = 0 from sendFile Add a Type to Sz so it could cover SX,SY too MetaFactory: take QCString name QString uiString so Carsten will be able to translate and users can switch Language without losing profiles Default It's aware of all Default/BuiltIn Plugins and adds them to the factory Common typedef bool BOOL TT is not using bool because it wasn't available at that time they use uint : 1... maybe we should change UINT_8 to Q_UINT8... MainWindow: give the factory to the config widget use Default IOLayer reload should take Profile not Config ConfigDialog: make use of Factory and do not do new MetaFactory.. i should make the c'tor private and add MainWindow as friend ProfileEditorDialog: Huge clean ups to the architecture. I still need to convert the widgets. Use the factory right
Diffstat (limited to 'noncore/apps/opie-console/configdialog.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/configdialog.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/noncore/apps/opie-console/configdialog.cpp b/noncore/apps/opie-console/configdialog.cpp
index ee1ffb4..50512b6 100644
--- a/noncore/apps/opie-console/configdialog.cpp
+++ b/noncore/apps/opie-console/configdialog.cpp
@@ -26,14 +26,15 @@ ConfigListItem::~ConfigListItem() {
26Profile ConfigListItem::profile()const { 26Profile ConfigListItem::profile()const {
27 return m_prof; 27 return m_prof;
28} 28}
29 29
30/* Dialog */ 30/* Dialog */
31 31
32ConfigDialog::ConfigDialog( const Profile::ValueList& lis, QWidget* parent ) 32ConfigDialog::ConfigDialog( const Profile::ValueList& lis, MetaFactory* fa,
33 : ConfigureBase( parent, 0, TRUE ) 33 QWidget* parent )
34 : ConfigureBase( parent, 0, TRUE ), m_fact( fa )
34{ 35{
35 //init(); 36 //init();
36 { 37 {
37 Profile::ValueList::ConstIterator it; 38 Profile::ValueList::ConstIterator it;
38 for (it = lis.begin(); it != lis.end(); ++it ) { 39 for (it = lis.begin(); it != lis.end(); ++it ) {
39 new ConfigListItem( lstView, (*it) ); 40 new ConfigListItem( lstView, (*it) );
@@ -68,13 +69,13 @@ void ConfigDialog::slotEdit() {
68 69
69 if(!lstView->currentItem()) return; 70 if(!lstView->currentItem()) return;
70 71
71 // Load profile 72 // Load profile
72 p = ((ConfigListItem*)lstView->currentItem())->profile(); 73 p = ((ConfigListItem*)lstView->currentItem())->profile();
73 74
74 ProfileEditorDialog dlg(new MetaFactory(), p); 75 ProfileEditorDialog dlg(m_fact, p);
75 76
76 dlg.setCaption("Edit Connection Profile"); 77 dlg.setCaption("Edit Connection Profile");
77 dlg.showMaximized(); 78 dlg.showMaximized();
78 int ret = dlg.exec(); 79 int ret = dlg.exec();
79 80
80 if(ret == QDialog::Accepted) 81 if(ret == QDialog::Accepted)
@@ -87,13 +88,14 @@ void ConfigDialog::slotEdit() {
87 new ConfigListItem(lstView, p); 88 new ConfigListItem(lstView, p);
88 } 89 }
89} 90}
90 91
91 92
92void ConfigDialog::slotAdd() { 93void ConfigDialog::slotAdd() {
93 ProfileEditorDialog dlg(new MetaFactory()); 94 qWarning("slotAdd");
95 ProfileEditorDialog dlg(m_fact);
94 96
95 dlg.setCaption("New Connection"); 97 dlg.setCaption("New Connection");
96 dlg.showMaximized(); 98 dlg.showMaximized();
97 int ret = dlg.exec(); 99 int ret = dlg.exec();
98 100
99 if(ret == QDialog::Accepted) 101 if(ret == QDialog::Accepted)