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
@@ -8,105 +8,107 @@
8 8
9class ConfigListItem : public QListViewItem { 9class ConfigListItem : public QListViewItem {
10public: 10public:
11 ConfigListItem( QListView* item, const Profile& ); 11 ConfigListItem( QListView* item, const Profile& );
12 ~ConfigListItem(); 12 ~ConfigListItem();
13 Profile profile()const; 13 Profile profile()const;
14 14
15private: 15private:
16 Profile m_prof; 16 Profile m_prof;
17}; 17};
18ConfigListItem::ConfigListItem( QListView* item, const Profile& prof ) 18ConfigListItem::ConfigListItem( QListView* item, const Profile& prof )
19 : QListViewItem( item ), m_prof( prof ) 19 : QListViewItem( item ), m_prof( prof )
20{ 20{
21 setText(0, prof.name() ); 21 setText(0, prof.name() );
22} 22}
23ConfigListItem::~ConfigListItem() { 23ConfigListItem::~ConfigListItem() {
24 24
25} 25}
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) );
40 } 41 }
41 } 42 }
42} 43}
43ConfigDialog::~ConfigDialog() { 44ConfigDialog::~ConfigDialog() {
44 45
45} 46}
46Profile::ValueList ConfigDialog::list()const { 47Profile::ValueList ConfigDialog::list()const {
47/* iterate over the list */ 48/* iterate over the list */
48 Profile::ValueList lst; 49 Profile::ValueList lst;
49 QListViewItemIterator it(lstView); 50 QListViewItemIterator it(lstView);
50 for ( ; it.current(); ++it ) { 51 for ( ; it.current(); ++it ) {
51 ConfigListItem* item = (ConfigListItem*)it.current(); 52 ConfigListItem* item = (ConfigListItem*)it.current();
52 lst.append( item->profile() ); 53 lst.append( item->profile() );
53 } 54 }
54 return lst; 55 return lst;
55} 56}
56/* our slots */ 57/* our slots */
57void ConfigDialog::slotRemove() { 58void ConfigDialog::slotRemove() {
58 ConfigListItem* item = (ConfigListItem*)lstView->currentItem(); 59 ConfigListItem* item = (ConfigListItem*)lstView->currentItem();
59 if (!item ) 60 if (!item )
60 return; 61 return;
61 62
62 lstView->takeItem( item ); 63 lstView->takeItem( item );
63 delete item; 64 delete item;
64} 65}
65 66
66void ConfigDialog::slotEdit() { 67void ConfigDialog::slotEdit() {
67 Profile p; 68 Profile p;
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)
81 { 82 {
82 if(lstView->currentItem()) delete lstView->currentItem(); 83 if(lstView->currentItem()) delete lstView->currentItem();
83 84
84 // use dlg.terminal()! 85 // use dlg.terminal()!
85 Profile p = dlg.profile(); 86 Profile p = dlg.profile();
86 87
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)
100 { 102 {
101 // TODO: Move into general profile save part 103 // TODO: Move into general profile save part
102 // assignments 104 // assignments
103 //QString type = dlg.term_type(); 105 //QString type = dlg.term_type();
104 //if(type == "VT102") profile = Profile::VT102; 106 //if(type == "VT102") profile = Profile::VT102;
105 107
106 // get profile from editor 108 // get profile from editor
107 Profile p = dlg.profile(); 109 Profile p = dlg.profile();
108 110
109 new ConfigListItem(lstView, p); 111 new ConfigListItem(lstView, p);
110 } 112 }
111} 113}
112 114