-rw-r--r-- | noncore/apps/opie-console/atconfigdialog.cpp | 1 | ||||
-rw-r--r-- | noncore/apps/opie-console/dialdialog.cpp | 1 | ||||
-rw-r--r-- | noncore/apps/opie-console/dialer.cpp | 26 | ||||
-rw-r--r-- | noncore/apps/opie-console/io_layer.h | 6 | ||||
-rw-r--r-- | noncore/apps/opie-console/io_modem.h | 2 | ||||
-rw-r--r-- | noncore/apps/opie-console/io_serial.cpp | 6 | ||||
-rw-r--r-- | noncore/apps/opie-console/modemconfigwidget.cpp | 9 | ||||
-rw-r--r-- | noncore/apps/opie-console/profileeditordialog.cpp | 4 |
8 files changed, 30 insertions, 25 deletions
diff --git a/noncore/apps/opie-console/atconfigdialog.cpp b/noncore/apps/opie-console/atconfigdialog.cpp index 5c02692..e683ab3 100644 --- a/noncore/apps/opie-console/atconfigdialog.cpp +++ b/noncore/apps/opie-console/atconfigdialog.cpp | |||
@@ -108,96 +108,97 @@ QWidget* ATConfigDialog::tab1( QWidget* parent ) { | |||
108 | 108 | ||
109 | QLabel *dialTimeLabel = new QLabel( tr("Dial time " ), returnWidget ); | 109 | QLabel *dialTimeLabel = new QLabel( tr("Dial time " ), returnWidget ); |
110 | dialTimeSpin = new QSpinBox( returnWidget ); | 110 | dialTimeSpin = new QSpinBox( returnWidget ); |
111 | layout->addWidget( dialTimeLabel, 0, 0 ); | 111 | layout->addWidget( dialTimeLabel, 0, 0 ); |
112 | layout->addWidget( dialTimeSpin, 0, 1 ); | 112 | layout->addWidget( dialTimeSpin, 0, 1 ); |
113 | 113 | ||
114 | QLabel *delayRedialLabel = new QLabel( tr("Delay before redial " ), returnWidget ); | 114 | QLabel *delayRedialLabel = new QLabel( tr("Delay before redial " ), returnWidget ); |
115 | delayRedialSpin = new QSpinBox( returnWidget ); | 115 | delayRedialSpin = new QSpinBox( returnWidget ); |
116 | layout->addWidget( delayRedialLabel, 1, 0 ); | 116 | layout->addWidget( delayRedialLabel, 1, 0 ); |
117 | layout->addWidget( delayRedialSpin, 1, 1 ); | 117 | layout->addWidget( delayRedialSpin, 1, 1 ); |
118 | 118 | ||
119 | QLabel *numberTriesLabel = new QLabel( tr("Number of tries " ), returnWidget ); | 119 | QLabel *numberTriesLabel = new QLabel( tr("Number of tries " ), returnWidget ); |
120 | numberTriesSpin = new QSpinBox( returnWidget ); | 120 | numberTriesSpin = new QSpinBox( returnWidget ); |
121 | layout->addWidget( numberTriesLabel, 2, 0 ); | 121 | layout->addWidget( numberTriesLabel, 2, 0 ); |
122 | layout->addWidget( numberTriesSpin, 2, 1 ); | 122 | layout->addWidget( numberTriesSpin, 2, 1 ); |
123 | 123 | ||
124 | QLabel *dtrDropTimeLabel = new QLabel( tr("DTR drop time (0=no) " ), returnWidget ); | 124 | QLabel *dtrDropTimeLabel = new QLabel( tr("DTR drop time (0=no) " ), returnWidget ); |
125 | dtrDropTimeSpin = new QSpinBox( returnWidget ); | 125 | dtrDropTimeSpin = new QSpinBox( returnWidget ); |
126 | layout->addWidget( dtrDropTimeLabel, 3, 0 ); | 126 | layout->addWidget( dtrDropTimeLabel, 3, 0 ); |
127 | layout->addWidget( dtrDropTimeSpin, 3, 1 ); | 127 | layout->addWidget( dtrDropTimeSpin, 3, 1 ); |
128 | 128 | ||
129 | QLabel *bpsDetectLabel = new QLabel( tr("Auto bps detect " ), returnWidget ); | 129 | QLabel *bpsDetectLabel = new QLabel( tr("Auto bps detect " ), returnWidget ); |
130 | bpsDetectBox = new QComboBox( returnWidget ); | 130 | bpsDetectBox = new QComboBox( returnWidget ); |
131 | layout->addWidget( bpsDetectLabel, 4, 0 ); | 131 | layout->addWidget( bpsDetectLabel, 4, 0 ); |
132 | layout->addWidget( bpsDetectBox, 4, 1 ); | 132 | layout->addWidget( bpsDetectBox, 4, 1 ); |
133 | bpsDetectBox->insertItem( tr("No") ); | 133 | bpsDetectBox->insertItem( tr("No") ); |
134 | bpsDetectBox->insertItem( tr("Yes") ); | 134 | bpsDetectBox->insertItem( tr("Yes") ); |
135 | 135 | ||
136 | QLabel *dcdLinesLabel = new QLabel( tr("Modem has DCD line " ), returnWidget ); | 136 | QLabel *dcdLinesLabel = new QLabel( tr("Modem has DCD line " ), returnWidget ); |
137 | dcdLinesBox = new QComboBox( returnWidget ); | 137 | dcdLinesBox = new QComboBox( returnWidget ); |
138 | layout->addWidget( dcdLinesLabel, 5, 0 ); | 138 | layout->addWidget( dcdLinesLabel, 5, 0 ); |
139 | layout->addWidget( dcdLinesBox, 5, 1 ); | 139 | layout->addWidget( dcdLinesBox, 5, 1 ); |
140 | dcdLinesBox->insertItem( tr("No") ); | 140 | dcdLinesBox->insertItem( tr("No") ); |
141 | dcdLinesBox->insertItem( tr("Yes") ); | 141 | dcdLinesBox->insertItem( tr("Yes") ); |
142 | 142 | ||
143 | QLabel *multiLineUntagLabel = new QLabel( tr("Multi-line untag " ), returnWidget ); | 143 | QLabel *multiLineUntagLabel = new QLabel( tr("Multi-line untag " ), returnWidget ); |
144 | multiLineUntagBox = new QComboBox( returnWidget ); | 144 | multiLineUntagBox = new QComboBox( returnWidget ); |
145 | layout->addWidget( multiLineUntagLabel, 6, 0 ); | 145 | layout->addWidget( multiLineUntagLabel, 6, 0 ); |
146 | layout->addWidget( multiLineUntagBox, 6, 1 ); | 146 | layout->addWidget( multiLineUntagBox, 6, 1 ); |
147 | multiLineUntagBox->insertItem( tr("No") ); | 147 | multiLineUntagBox->insertItem( tr("No") ); |
148 | multiLineUntagBox->insertItem( tr("Yes") ); | 148 | multiLineUntagBox->insertItem( tr("Yes") ); |
149 | 149 | ||
150 | return returnWidget; | 150 | return returnWidget; |
151 | 151 | ||
152 | } | 152 | } |
153 | 153 | ||
154 | 154 | ||
155 | void ATConfigDialog::readConfig( const Profile& config ) { | 155 | void ATConfigDialog::readConfig( const Profile& config ) { |
156 | qWarning("config in atconfigdialog"); | ||
156 | 157 | ||
157 | initStringLine->setText( config.readEntry("InitString", MODEM_DEFAULT_INIT_STRING ) ); | 158 | initStringLine->setText( config.readEntry("InitString", MODEM_DEFAULT_INIT_STRING ) ); |
158 | resetStringLine->setText( config.readEntry("ResetString", MODEM_DEFAULT_RESET_STRING ) ); | 159 | resetStringLine->setText( config.readEntry("ResetString", MODEM_DEFAULT_RESET_STRING ) ); |
159 | dialPref1Line->setText( config.readEntry("DialPrefix1", MODEM_DEFAULT_DIAL_PREFIX1 ) ); | 160 | dialPref1Line->setText( config.readEntry("DialPrefix1", MODEM_DEFAULT_DIAL_PREFIX1 ) ); |
160 | dialSuf1Line->setText( config.readEntry("DialSuffix1", MODEM_DEFAULT_DIAL_SUFFIX1 ) ); | 161 | dialSuf1Line->setText( config.readEntry("DialSuffix1", MODEM_DEFAULT_DIAL_SUFFIX1 ) ); |
161 | dialPref2Line->setText( config.readEntry("DialPrefix2", MODEM_DEFAULT_DIAL_PREFIX1 ) ); | 162 | dialPref2Line->setText( config.readEntry("DialPrefix2", MODEM_DEFAULT_DIAL_PREFIX1 ) ); |
162 | dialSuf2Line->setText( config.readEntry("DialSuffix2", MODEM_DEFAULT_DIAL_SUFFIX1 ) ); | 163 | dialSuf2Line->setText( config.readEntry("DialSuffix2", MODEM_DEFAULT_DIAL_SUFFIX1 ) ); |
163 | dialPref3Line->setText( config.readEntry("DialPrefix3", MODEM_DEFAULT_DIAL_PREFIX1 ) ); | 164 | dialPref3Line->setText( config.readEntry("DialPrefix3", MODEM_DEFAULT_DIAL_PREFIX1 ) ); |
164 | dialSuf3Line->setText( config.readEntry("DialSuffix3", MODEM_DEFAULT_DIAL_SUFFIX1 ) ); | 165 | dialSuf3Line->setText( config.readEntry("DialSuffix3", MODEM_DEFAULT_DIAL_SUFFIX1 ) ); |
165 | connectLine->setText( config.readEntry("DefaultConnect", MODEM_DEFAULT_CONNECT_STRING ) ); | 166 | connectLine->setText( config.readEntry("DefaultConnect", MODEM_DEFAULT_CONNECT_STRING ) ); |
166 | hangupLine->setText( config.readEntry("HangupString", MODEM_DEFAULT_HANGUP_STRING ) ); | 167 | hangupLine->setText( config.readEntry("HangupString", MODEM_DEFAULT_HANGUP_STRING ) ); |
167 | dialTimeSpin->setValue( config.readNumEntry("DialTime", MODEM_DEFAULT_DIAL_TIME ) ); | 168 | dialTimeSpin->setValue( config.readNumEntry("DialTime", MODEM_DEFAULT_DIAL_TIME ) ); |
168 | delayRedialSpin->setValue( config.readNumEntry("DelayRedial", MODEM_DEFAULT_DELAY_REDIAL ) ); | 169 | delayRedialSpin->setValue( config.readNumEntry("DelayRedial", MODEM_DEFAULT_DELAY_REDIAL ) ); |
169 | numberTriesSpin->setValue( config.readNumEntry("NumberTries", MODEM_DEFAULT_NUMBER_TRIES ) ); | 170 | numberTriesSpin->setValue( config.readNumEntry("NumberTries", MODEM_DEFAULT_NUMBER_TRIES ) ); |
170 | dtrDropTimeSpin->setValue( config.readNumEntry("DTRDRopTime", MODEM_DEFAULT_DTR_DROP_TIME ) ); | 171 | dtrDropTimeSpin->setValue( config.readNumEntry("DTRDRopTime", MODEM_DEFAULT_DTR_DROP_TIME ) ); |
171 | bpsDetectBox->setCurrentItem( config.readBoolEntry("BPSDetect", MODEM_DEFAULT_BPS_DETECT ) ); | 172 | bpsDetectBox->setCurrentItem( config.readBoolEntry("BPSDetect", MODEM_DEFAULT_BPS_DETECT ) ); |
172 | dcdLinesBox->setCurrentItem( config.readBoolEntry("DCDLines", MODEM_DEFAULT_DCD_LINES ) ); | 173 | dcdLinesBox->setCurrentItem( config.readBoolEntry("DCDLines", MODEM_DEFAULT_DCD_LINES ) ); |
173 | multiLineUntagBox->setCurrentItem( config.readBoolEntry("MultiLineUntag", MODEM_DEFAULT_MULTI_LINE_UNTAG ) ); | 174 | multiLineUntagBox->setCurrentItem( config.readBoolEntry("MultiLineUntag", MODEM_DEFAULT_MULTI_LINE_UNTAG ) ); |
174 | 175 | ||
175 | // Not implemented yet | 176 | // Not implemented yet |
176 | resetStringLine->setEnabled(false); | 177 | resetStringLine->setEnabled(false); |
177 | dialSuf1Line->setEnabled(false); | 178 | dialSuf1Line->setEnabled(false); |
178 | dialPref2Line->setEnabled(false); | 179 | dialPref2Line->setEnabled(false); |
179 | dialSuf2Line->setEnabled(false); | 180 | dialSuf2Line->setEnabled(false); |
180 | dialPref3Line->setEnabled(false); | 181 | dialPref3Line->setEnabled(false); |
181 | dialSuf3Line->setEnabled(false); | 182 | dialSuf3Line->setEnabled(false); |
182 | dialTimeSpin->setEnabled(false); | 183 | dialTimeSpin->setEnabled(false); |
183 | delayRedialSpin->setEnabled(false); | 184 | delayRedialSpin->setEnabled(false); |
184 | numberTriesSpin->setEnabled(false); | 185 | numberTriesSpin->setEnabled(false); |
185 | dtrDropTimeSpin->setEnabled(false); | 186 | dtrDropTimeSpin->setEnabled(false); |
186 | bpsDetectBox->setEnabled(false); | 187 | bpsDetectBox->setEnabled(false); |
187 | dcdLinesBox->setEnabled(false); | 188 | dcdLinesBox->setEnabled(false); |
188 | multiLineUntagBox->setEnabled(false); | 189 | multiLineUntagBox->setEnabled(false); |
189 | } | 190 | } |
190 | 191 | ||
191 | void ATConfigDialog::writeConfig( Profile& config ) { | 192 | void ATConfigDialog::writeConfig( Profile& config ) { |
192 | 193 | ||
193 | config.writeEntry( "InitString", initStringLine->text() ); | 194 | config.writeEntry( "InitString", initStringLine->text() ); |
194 | config.writeEntry( "ResetString", resetStringLine->text() ); | 195 | config.writeEntry( "ResetString", resetStringLine->text() ); |
195 | config.writeEntry( "DialPrefix1", dialPref1Line->text() ); | 196 | config.writeEntry( "DialPrefix1", dialPref1Line->text() ); |
196 | config.writeEntry( "DialSuffix1", dialSuf1Line->text() ); | 197 | config.writeEntry( "DialSuffix1", dialSuf1Line->text() ); |
197 | config.writeEntry( "DialPrefix2", dialPref2Line->text() ); | 198 | config.writeEntry( "DialPrefix2", dialPref2Line->text() ); |
198 | config.writeEntry( "DialSuffix2", dialSuf2Line->text() ); | 199 | config.writeEntry( "DialSuffix2", dialSuf2Line->text() ); |
199 | config.writeEntry( "DialPrefix3", dialPref3Line->text() ); | 200 | config.writeEntry( "DialPrefix3", dialPref3Line->text() ); |
200 | config.writeEntry( "DialSuffix3", dialSuf3Line->text() ); | 201 | config.writeEntry( "DialSuffix3", dialSuf3Line->text() ); |
201 | config.writeEntry( "DefaultConnect", connectLine->text() ); | 202 | config.writeEntry( "DefaultConnect", connectLine->text() ); |
202 | config.writeEntry( "HangupString", hangupLine->text() ); | 203 | config.writeEntry( "HangupString", hangupLine->text() ); |
203 | config.writeEntry( "DialTime", dialTimeSpin->value() ); | 204 | config.writeEntry( "DialTime", dialTimeSpin->value() ); |
diff --git a/noncore/apps/opie-console/dialdialog.cpp b/noncore/apps/opie-console/dialdialog.cpp index ac1e1db..b91727b 100644 --- a/noncore/apps/opie-console/dialdialog.cpp +++ b/noncore/apps/opie-console/dialdialog.cpp | |||
@@ -1,70 +1,71 @@ | |||
1 | 1 | ||
2 | 2 | ||
3 | #include <qlayout.h> | 3 | #include <qlayout.h> |
4 | #include <qlabel.h> | 4 | #include <qlabel.h> |
5 | #include <qcombobox.h> | 5 | #include <qcombobox.h> |
6 | #include <qscrollview.h> | 6 | #include <qscrollview.h> |
7 | #include <qpushbutton.h> | 7 | #include <qpushbutton.h> |
8 | #include <qfont.h> | 8 | #include <qfont.h> |
9 | #include <qbuttongroup.h> | 9 | #include <qbuttongroup.h> |
10 | 10 | ||
11 | #include "dialdialog.h" | 11 | #include "dialdialog.h" |
12 | 12 | ||
13 | 13 | ||
14 | 14 | ||
15 | DialDialog::DialDialog( QWidget* parent, const char* name, bool modal, WFlags fl ) | 15 | DialDialog::DialDialog( QWidget* parent, const char* name, bool modal, WFlags fl ) |
16 | : QDialog( parent, name, modal, fl ) { | 16 | : QDialog( parent, name, modal, fl ) { |
17 | 17 | ||
18 | setCaption( tr( "Enter number" ) ); | 18 | setCaption( tr( "Enter number" ) ); |
19 | 19 | ||
20 | QVBoxLayout *mainLayout = new QVBoxLayout( this ); | 20 | QVBoxLayout *mainLayout = new QVBoxLayout( this ); |
21 | 21 | ||
22 | QLabel *textLabel = new QLabel( this ); | 22 | QLabel *textLabel = new QLabel( this ); |
23 | textLabel->setTextFormat( QLabel::RichText ); | ||
23 | textLabel->setText( tr("Enter the number you want to dial. When finished, press ok") ); | 24 | textLabel->setText( tr("Enter the number you want to dial. When finished, press ok") ); |
24 | 25 | ||
25 | m_dialLine = new QLineEdit( this ); | 26 | m_dialLine = new QLineEdit( this ); |
26 | m_dialLine->setReadOnly( true ); | 27 | m_dialLine->setReadOnly( true ); |
27 | m_dialLine->setFrame( false ); | 28 | m_dialLine->setFrame( false ); |
28 | m_dialLine->setAlignment( Qt::AlignLeft ); | 29 | m_dialLine->setAlignment( Qt::AlignLeft ); |
29 | QFont dialLine_font( m_dialLine->font() ); | 30 | QFont dialLine_font( m_dialLine->font() ); |
30 | dialLine_font.setBold( TRUE ); | 31 | dialLine_font.setBold( TRUE ); |
31 | dialLine_font.setPointSize( 18 ); | 32 | dialLine_font.setPointSize( 18 ); |
32 | m_dialLine->setFont( dialLine_font ); | 33 | m_dialLine->setFont( dialLine_font ); |
33 | 34 | ||
34 | QWidget* dialWidget = new QWidget( this ); | 35 | QWidget* dialWidget = new QWidget( this ); |
35 | QGridLayout *layout = new QGridLayout( dialWidget , 4, 3 ); | 36 | QGridLayout *layout = new QGridLayout( dialWidget , 4, 3 ); |
36 | 37 | ||
37 | QButtonGroup *dialButtons = new QButtonGroup( ); | 38 | QButtonGroup *dialButtons = new QButtonGroup( ); |
38 | 39 | ||
39 | QPushButton *number0 = new QPushButton( dialWidget ); | 40 | QPushButton *number0 = new QPushButton( dialWidget ); |
40 | number0->setText( QString( "0" ) ); | 41 | number0->setText( QString( "0" ) ); |
41 | QFont number0_font( number0->font() ); | 42 | QFont number0_font( number0->font() ); |
42 | number0_font.setBold( TRUE ); | 43 | number0_font.setBold( TRUE ); |
43 | number0->setFont( number0_font ); | 44 | number0->setFont( number0_font ); |
44 | layout->addWidget( number0, 4, 1 ); | 45 | layout->addWidget( number0, 4, 1 ); |
45 | dialButtons->insert( number0 ); | 46 | dialButtons->insert( number0 ); |
46 | 47 | ||
47 | int x = 0, y = 0; | 48 | int x = 0, y = 0; |
48 | for ( int i = 0 ; i < 9; i++ ) { | 49 | for ( int i = 0 ; i < 9; i++ ) { |
49 | QPushButton *number = new QPushButton( dialWidget ); | 50 | QPushButton *number = new QPushButton( dialWidget ); |
50 | number->setText( QString( "%1" ).arg( i + 1 ) ); | 51 | number->setText( QString( "%1" ).arg( i + 1 ) ); |
51 | QFont number_font( number->font() ); | 52 | QFont number_font( number->font() ); |
52 | number_font.setBold( TRUE ); | 53 | number_font.setBold( TRUE ); |
53 | number->setFont( number_font ); | 54 | number->setFont( number_font ); |
54 | 55 | ||
55 | dialButtons->insert( number ); | 56 | dialButtons->insert( number ); |
56 | 57 | ||
57 | layout->addWidget( number, x, y ); | 58 | layout->addWidget( number, x, y ); |
58 | 59 | ||
59 | if ( y < 2 ) { | 60 | if ( y < 2 ) { |
60 | y++; | 61 | y++; |
61 | } else { | 62 | } else { |
62 | x++; | 63 | x++; |
63 | y = 0; | 64 | y = 0; |
64 | } | 65 | } |
65 | } | 66 | } |
66 | 67 | ||
67 | connect( dialButtons, SIGNAL( clicked( int ) ), this, SLOT( slotEnterNumber( int ) ) ); | 68 | connect( dialButtons, SIGNAL( clicked( int ) ), this, SLOT( slotEnterNumber( int ) ) ); |
68 | 69 | ||
69 | mainLayout->addStretch( 2 ); | 70 | mainLayout->addStretch( 2 ); |
70 | mainLayout->addWidget( textLabel ); | 71 | mainLayout->addWidget( textLabel ); |
diff --git a/noncore/apps/opie-console/dialer.cpp b/noncore/apps/opie-console/dialer.cpp index 8524422..67ad10e 100644 --- a/noncore/apps/opie-console/dialer.cpp +++ b/noncore/apps/opie-console/dialer.cpp | |||
@@ -1,239 +1,235 @@ | |||
1 | #include "dialer.h" | 1 | #include "dialer.h" |
2 | 2 | ||
3 | #include <qlayout.h> | 3 | #include <qlayout.h> |
4 | #include <qprogressbar.h> | 4 | #include <qprogressbar.h> |
5 | #include <qlabel.h> | 5 | #include <qlabel.h> |
6 | #include <qpushbutton.h> | 6 | #include <qpushbutton.h> |
7 | #include <qapp.h> | 7 | #include <qapp.h> |
8 | #include <qtimer.h> | 8 | #include <qtimer.h> |
9 | #include <qmessagebox.h> | 9 | #include <qmessagebox.h> |
10 | 10 | ||
11 | #include <unistd.h> | 11 | #include <unistd.h> |
12 | #include <string.h> | 12 | #include <string.h> |
13 | #include <fcntl.h> | 13 | #include <fcntl.h> |
14 | #include <errno.h> | 14 | #include <errno.h> |
15 | 15 | ||
16 | #include "io_modem.h" | ||
17 | |||
16 | // State machine: | When an error occurs, we don't have to | 18 | // State machine: | When an error occurs, we don't have to |
17 | // | reset everything. | 19 | // | reset everything. |
18 | // (init) <------+ | But if the user wants to reset, | 20 | // (init) <------+ | But if the user wants to reset, |
19 | // | | | we stop dialing immediately. | 21 | // | | | we stop dialing immediately. |
20 | // v | | | 22 | // v | | |
21 | // (options) ----+ | Following the state machine is necessary | 23 | // (options) ----+ | Following the state machine is necessary |
22 | // | \ | to get determinable results. | 24 | // | \ | to get determinable results. |
23 | // v ^ | | 25 | // v ^ | |
24 | // (dial) ----+ | | 26 | // (dial) ----+ | |
25 | // | ^ | | 27 | // | ^ | |
26 | // v | | | 28 | // v | | |
27 | // (online) --+ | | 29 | // (online) --+ | |
28 | // | | | 30 | // | | |
29 | // v | | 31 | // v | |
30 | 32 | ||
31 | 33 | ||
32 | // from atconfigdialog | 34 | // from atconfigdialog |
33 | //initStringLine->setText( config.readEntry("InitString", MODEM_DEFAULT_INIT_STRING ) ); | 35 | //initStringLine->setText( config.readEntry("InitString", MODEM_DEFAULT_INIT_STRING ) ); |
34 | //resetStringLine->setText( config.readEntry("ResetString", MODEM_DEFAULT_RESET_STRING ) ); | 36 | //resetStringLine->setText( config.readEntry("ResetString", MODEM_DEFAULT_RESET_STRING ) ); |
35 | //dialPref1Line->setText( config.readEntry("DialPrefix1", MODEM_DEFAULT_DIAL_PREFIX1 ) ); | 37 | //dialPref1Line->setText( config.readEntry("DialPrefix1", MODEM_DEFAULT_DIAL_PREFIX1 ) ); |
36 | //dialSuf1Line->setText( config.readEntry("DialSuffix1", MODEM_DEFAULT_DIAL_SUFFIX1 ) ); | 38 | //dialSuf1Line->setText( config.readEntry("DialSuffix1", MODEM_DEFAULT_DIAL_SUFFIX1 ) ); |
37 | //dialPref2Line->setText( config.readEntry("DialPrefix2", MODEM_DEFAULT_DIAL_PREFIX1 ) ); | 39 | //dialPref2Line->setText( config.readEntry("DialPrefix2", MODEM_DEFAULT_DIAL_PREFIX1 ) ); |
38 | //dialSuf2Line->setText( config.readEntry("DialSuffix2", MODEM_DEFAULT_DIAL_SUFFIX1 ) ); | 40 | //dialSuf2Line->setText( config.readEntry("DialSuffix2", MODEM_DEFAULT_DIAL_SUFFIX1 ) ); |
39 | //dialPref3Line->setText( config.readEntry("DialPrefix3", MODEM_DEFAULT_DIAL_PREFIX1 ) ); | 41 | //dialPref3Line->setText( config.readEntry("DialPrefix3", MODEM_DEFAULT_DIAL_PREFIX1 ) ); |
40 | //dialSuf3Line->setText( config.readEntry("DialSuffix3", MODEM_DEFAULT_DIAL_SUFFIX1 ) ); | 42 | //dialSuf3Line->setText( config.readEntry("DialSuffix3", MODEM_DEFAULT_DIAL_SUFFIX1 ) ); |
41 | //connectLine->setText( config.readEntry("DefaultConnect" MODEM_DEFAULT_CONNECT_STRING ) ); | 43 | //connectLine->setText( config.readEntry("DefaultConnect" MODEM_DEFAULT_CONNECT_STRING ) ); |
42 | //hangupLine->setText( config.readEntry("HangupString", MODEM_DEFAULT_HANGUP_STRING ) ); | 44 | //hangupLine->setText( config.readEntry("HangupString", MODEM_DEFAULT_HANGUP_STRING ) ); |
43 | 45 | ||
44 | // from modemconfigwidget | 46 | // from modemconfigwidget |
45 | //int rad_flow = prof.readNumEntry("Flow"); | 47 | //int rad_flow = prof.readNumEntry("Flow"); |
46 | //int rad_parity = prof.readNumEntry("Parity"); | 48 | //int rad_parity = prof.readNumEntry("Parity"); |
47 | //int speed = prof.readNumEntry("Speed"); | 49 | //int speed = prof.readNumEntry("Speed"); |
48 | //QString number = prof.readEntry("Number"); | 50 | //QString number = prof.readEntry("Number"); |
49 | 51 | ||
50 | Dialer::Dialer(const Profile& profile, int fd, QWidget *parent, const char *name) | 52 | Dialer::Dialer(const Profile& profile, int fd, QWidget *parent, const char *name) |
51 | : QDialog(parent, name, true), m_fd(fd), m_profile(profile) | 53 | : QDialog(parent, name, true), m_fd(fd), m_profile(profile) |
52 | { | 54 | { |
53 | QVBoxLayout *vbox; | 55 | QVBoxLayout *vbox; |
54 | QLabel *desc; | 56 | QLabel *desc; |
55 | 57 | ||
56 | //m_profile.writeEntry("InitString", "ATZ"); | ||
57 | //m_profile.writeEntry("DialPrefix1", "ATDT"); | ||
58 | //m_profile.writeEntry("Termination", "\n"); | ||
59 | 58 | ||
60 | usercancel = 0; | 59 | usercancel = 0; |
61 | cleanshutdown = 0; | 60 | cleanshutdown = 0; |
62 | 61 | ||
63 | //fcntl(m_fd, F_SETFL, O_NONBLOCK); | ||
64 | 62 | ||
65 | desc = new QLabel(QObject::tr("Dialing number: %1").arg(m_profile.readEntry("Number")), this); | 63 | desc = new QLabel(QObject::tr("Dialing number: %1").arg(m_profile.readEntry("Number")), this); |
66 | progress = new QProgressBar(this); | 64 | progress = new QProgressBar(this); |
67 | status = new QLabel("", this); | 65 | status = new QLabel("", this); |
68 | status->setFrameStyle(QFrame::Panel | QFrame::Sunken); | 66 | status->setFrameStyle(QFrame::Panel | QFrame::Sunken); |
69 | cancel = new QPushButton(QObject::tr("Cancel"), this); | 67 | cancel = new QPushButton(QObject::tr("Cancel"), this); |
70 | 68 | ||
71 | vbox = new QVBoxLayout(this, 2); | 69 | vbox = new QVBoxLayout(this, 2); |
72 | vbox->add(desc); | 70 | vbox->add(desc); |
73 | vbox->add(progress); | 71 | vbox->add(progress); |
74 | vbox->add(status); | 72 | vbox->add(status); |
75 | vbox->add(cancel); | 73 | vbox->add(cancel); |
76 | 74 | ||
77 | connect(cancel, SIGNAL(clicked()), SLOT(slotCancel())); | 75 | connect(cancel, SIGNAL(clicked()), SLOT(slotCancel())); |
78 | 76 | ||
79 | show(); | 77 | show(); |
80 | 78 | ||
81 | QTimer::singleShot(500, this, SLOT(slotAutostart())); | 79 | QTimer::singleShot(500, this, SLOT(slotAutostart())); |
82 | } | 80 | } |
83 | 81 | ||
84 | Dialer::~Dialer() | 82 | Dialer::~Dialer() |
85 | { | 83 | { |
86 | } | 84 | } |
87 | 85 | ||
88 | void Dialer::setHangupOnly() | 86 | void Dialer::setHangupOnly() |
89 | { | 87 | { |
90 | state = state_cancel; | 88 | state = state_cancel; |
91 | usercancel = 1; | 89 | usercancel = 1; |
92 | send("+++ATH\r"); | 90 | send( m_profile.readEntry("HangupString", MODEM_DEFAULT_HANGUP_STRING )+"\r" ); |
93 | } | 91 | } |
94 | 92 | ||
95 | void Dialer::slotCancel() | 93 | void Dialer::slotCancel() |
96 | { | 94 | { |
97 | if(state != state_online) | 95 | if(state != state_online) |
98 | { | 96 | { |
99 | usercancel = 1; | 97 | usercancel = 1; |
100 | reset(); | 98 | reset(); |
101 | } | 99 | } |
102 | else { | 100 | else { |
103 | accept(); | 101 | accept(); |
104 | } | 102 | } |
105 | } | 103 | } |
106 | 104 | ||
107 | void Dialer::reset() | 105 | void Dialer::reset() |
108 | { | 106 | { |
109 | qWarning("reset"); | 107 | qWarning("reset"); |
110 | switchState(state_cancel); | 108 | switchState(state_cancel); |
111 | } | 109 | } |
112 | 110 | ||
113 | void Dialer::slotAutostart() | 111 | void Dialer::slotAutostart() |
114 | { | 112 | { |
115 | //state = state_preinit; | 113 | //state = state_preinit; |
116 | dial(m_profile.readEntry("Number")); | 114 | dial(m_profile.readEntry("Number")); |
117 | } | 115 | } |
118 | 116 | ||
119 | void Dialer::dial(const QString& number) | 117 | void Dialer::dial(const QString& number) |
120 | { | 118 | { |
121 | while(state != state_online) | 119 | while(state != state_online) |
122 | { | 120 | { |
123 | if(!usercancel) | 121 | if(!usercancel) |
124 | { | 122 | { |
125 | state = state_preinit; | 123 | state = state_preinit; |
126 | trydial(number); | 124 | trydial(number); |
127 | } | 125 | } |
128 | else break; | 126 | else break; |
129 | } | 127 | } |
130 | 128 | ||
131 | if(usercancel) | 129 | if(usercancel) |
132 | { | 130 | { |
133 | // modem hangup | 131 | // modem hangup |
134 | trydial(QString::null); | 132 | trydial(QString::null); |
135 | reject(); | 133 | reject(); |
136 | } | 134 | } |
137 | } | 135 | } |
138 | 136 | ||
139 | void Dialer::trydial(const QString& number) | 137 | void Dialer::trydial(const QString& number) |
140 | { | 138 | { |
141 | qWarning("TryDial:%s", number.latin1() ); | 139 | qWarning("TryDial:%s", number.latin1() ); |
142 | if(state != state_cancel) switchState(state_preinit); | 140 | if(state != state_cancel) switchState(state_preinit); |
143 | if(cleanshutdown) | 141 | if(cleanshutdown) |
144 | { | 142 | { |
145 | qWarning("HangupString " + m_profile.readEntry("HangupString")); | 143 | qWarning("HangupString " + m_profile.readEntry("HangupString", MODEM_DEFAULT_HANGUP_STRING)); |
146 | //send(m_profile.readEntry("HangupString")); | 144 | send(m_profile.readEntry("HangupString", MODEM_DEFAULT_HANGUP_STRING ) + "\r"); |
147 | send("+++ATH\r"); | ||
148 | //send(""); | ||
149 | } | 145 | } |
150 | 146 | ||
151 | if(state != state_cancel) | 147 | if(state != state_cancel) |
152 | { | 148 | { |
153 | switchState(state_init); | 149 | switchState(state_init); |
154 | //send("ATZ"); | 150 | // qWarning("Init String " + m_profile.readEntry("InitString") ); |
155 | qWarning("Init String " + m_profile.readEntry("InitString") ); | 151 | send(m_profile.readEntry("InitString",MODEM_DEFAULT_INIT_STRING ) + "\r"); |
156 | // send(m_profile.readEntry("InitString", "AT")); | ||
157 | send("AT\r"); | ||
158 | QString response2 = receive(); | 152 | QString response2 = receive(); |
159 | if(!response2.contains("\nOK\r")) | 153 | if(!response2.contains("\nOK\r")) |
160 | reset(); | 154 | reset(); |
161 | } | 155 | } |
162 | 156 | ||
163 | /*if(state != state_cancel) | 157 | /*if(state != state_cancel) |
164 | { | 158 | { |
165 | switchState(state_options); | 159 | switchState(state_options); |
166 | 160 | ||
167 | qWarning("ATM3l3"); | 161 | qWarning("ATM3l3"); |
168 | send("ATM3L3\r"); | 162 | send("ATM3L3\r"); |
169 | QString response3 = receive(); | 163 | QString response3 = receive(); |
170 | if(!response3.contains("\nOK\r")) | 164 | if(!response3.contains("\nOK\r")) |
171 | reset(); | 165 | reset(); |
172 | } | 166 | } |
173 | */ | 167 | */ |
174 | 168 | ||
175 | if(state != state_cancel) | 169 | if(state != state_cancel) |
176 | { | 170 | { |
177 | switchState(state_dialtone); | 171 | switchState(state_dialtone); |
178 | 172 | ||
179 | send("ATX1\r"); | 173 | send("ATX1\r"); |
180 | QString response4 = receive(); | 174 | QString response4 = receive(); |
181 | if(!response4.contains("\nOK\r")) | 175 | if(!response4.contains("\nOK\r")) |
182 | reset(); | 176 | reset(); |
183 | } | 177 | } |
184 | 178 | ||
185 | if(state != state_cancel) | 179 | if(state != state_cancel) |
186 | { | 180 | { |
187 | qWarning("progress"); | 181 | qWarning("progress"); |
188 | switchState(state_dialing); | 182 | switchState(state_dialing); |
189 | 183 | ||
190 | send(QString("ATDT %1\r").arg(number)); | 184 | // send(QString("ATDT %1\r").arg(number)); |
191 | // send(QString("%1 %2").arg(m_profile.readEntry("DialPrefix1")).arg(number)); | 185 | send(QString("%1 %2\r").arg(m_profile.readEntry("DialPrefix1", MODEM_DEFAULT_DIAL_PREFIX1 )) |
186 | .arg(number)); | ||
187 | |||
192 | QString response5 = receive(); | 188 | QString response5 = receive(); |
193 | if(!response5.contains("CONNECT") ) | 189 | if(!response5.contains("CONNECT") ) |
194 | { | 190 | { |
195 | if(response5.contains("BUSY")) | 191 | if(response5.contains("BUSY")) |
196 | switchState(state_dialing); | 192 | switchState(state_dialing); |
197 | else | 193 | else |
198 | { | 194 | { |
199 | QMessageBox::warning(this, | 195 | QMessageBox::warning(this, |
200 | QObject::tr("Failure"), | 196 | QObject::tr("Failure"), |
201 | QObject::tr("Dialing the number failed.")); | 197 | QObject::tr("Dialing the number failed.")); |
202 | slotCancel(); | 198 | slotCancel(); |
203 | } | 199 | } |
204 | } | 200 | } |
205 | } | 201 | } |
206 | 202 | ||
207 | 203 | ||
208 | if(state != state_cancel) | 204 | if(state != state_cancel) |
209 | { | 205 | { |
210 | state = state_online; | 206 | state = state_online; |
211 | slotCancel(); | 207 | slotCancel(); |
212 | } | 208 | } |
213 | } | 209 | } |
214 | 210 | ||
215 | void Dialer::send(const QString& msg) | 211 | void Dialer::send(const QString& msg) |
216 | { | 212 | { |
217 | QString m = msg; | 213 | QString m = msg; |
218 | int bytes; | 214 | int bytes; |
219 | QString termination; | 215 | QString termination; |
220 | 216 | ||
221 | qWarning("Sending: %s", m.latin1()); | 217 | qWarning("Sending: %s", m.latin1()); |
222 | 218 | ||
223 | /*termination = "\r"; | 219 | /*termination = "\r"; |
224 | //termination = m_profile.readEntry("Termination"); | 220 | //termination = m_profile.readEntry("Termination"); |
225 | if(termination == "\n") m = m + "\n"; | 221 | if(termination == "\n") m = m + "\n"; |
226 | else if(termination == "\r") m = m + "\r"; | 222 | else if(termination == "\r") m = m + "\r"; |
227 | else m = m + "\r\n"; | 223 | else m = m + "\r\n"; |
228 | */ | 224 | */ |
229 | m = m.replace(QRegExp("\n"), "\r"); | 225 | m = m.replace(QRegExp("\n"), "\r"); |
230 | 226 | ||
231 | bytes = ::write(m_fd, m.local8Bit(), strlen(m.local8Bit())); | 227 | bytes = ::write(m_fd, m.local8Bit(), strlen(m.local8Bit())); |
232 | if(bytes < 0) | 228 | if(bytes < 0) |
233 | { | 229 | { |
234 | reset(); | 230 | reset(); |
235 | } | 231 | } |
236 | } | 232 | } |
237 | 233 | ||
238 | QString Dialer::receive() | 234 | QString Dialer::receive() |
239 | { | 235 | { |
diff --git a/noncore/apps/opie-console/io_layer.h b/noncore/apps/opie-console/io_layer.h index af61099..ed4478b 100644 --- a/noncore/apps/opie-console/io_layer.h +++ b/noncore/apps/opie-console/io_layer.h | |||
@@ -49,78 +49,84 @@ public: | |||
49 | virtual ~IOLayer(); | 49 | virtual ~IOLayer(); |
50 | 50 | ||
51 | /** | 51 | /** |
52 | * a small internal identifier | 52 | * a small internal identifier |
53 | */ | 53 | */ |
54 | virtual QString identifier() const = 0; | 54 | virtual QString identifier() const = 0; |
55 | 55 | ||
56 | /** | 56 | /** |
57 | * a short name | 57 | * a short name |
58 | */ | 58 | */ |
59 | virtual QString name() const = 0; | 59 | virtual QString name() const = 0; |
60 | 60 | ||
61 | /** | 61 | /** |
62 | * a file descriptor which opens | 62 | * a file descriptor which opens |
63 | * the device for io but does not | 63 | * the device for io but does not |
64 | * do any ioctling on it... | 64 | * do any ioctling on it... |
65 | * and it'll stop listening to the before opened | 65 | * and it'll stop listening to the before opened |
66 | * device | 66 | * device |
67 | */ | 67 | */ |
68 | virtual int rawIO()const; | 68 | virtual int rawIO()const; |
69 | 69 | ||
70 | /** | 70 | /** |
71 | * will close the rawIO stuff | 71 | * will close the rawIO stuff |
72 | * and will listen to it's data again... | 72 | * and will listen to it's data again... |
73 | */ | 73 | */ |
74 | virtual void closeRawIO(int); | 74 | virtual void closeRawIO(int); |
75 | 75 | ||
76 | /** | 76 | /** |
77 | * What does the IOLayer support? | 77 | * What does the IOLayer support? |
78 | * Bits are related to features | 78 | * Bits are related to features |
79 | */ | 79 | */ |
80 | virtual QBitArray supports()const = 0; | 80 | virtual QBitArray supports()const = 0; |
81 | 81 | ||
82 | virtual bool isConnected() = 0; | 82 | virtual bool isConnected() = 0; |
83 | 83 | ||
84 | signals: | 84 | signals: |
85 | /** | 85 | /** |
86 | * received input as QCString | 86 | * received input as QCString |
87 | */ | 87 | */ |
88 | virtual void received( const QByteArray& ); | 88 | virtual void received( const QByteArray& ); |
89 | 89 | ||
90 | /** | 90 | /** |
91 | * an error occured | 91 | * an error occured |
92 | * int for the error number | 92 | * int for the error number |
93 | * and QString for a text | 93 | * and QString for a text |
94 | */ | 94 | */ |
95 | virtual void error( int, const QString& ); | 95 | virtual void error( int, const QString& ); |
96 | 96 | ||
97 | |||
97 | virtual void closed(); | 98 | virtual void closed(); |
99 | |||
100 | /* signal emitted for closure of the IOLayer | ||
101 | * for some reasons | ||
102 | */ | ||
103 | virtual void closed(IOLayer*); | ||
98 | public slots: | 104 | public slots: |
99 | /** | 105 | /** |
100 | * send a QCString to the device | 106 | * send a QCString to the device |
101 | */ | 107 | */ |
102 | virtual void send( const QByteArray& ) = 0; | 108 | virtual void send( const QByteArray& ) = 0; |
103 | 109 | ||
104 | /** | 110 | /** |
105 | * bool open | 111 | * bool open |
106 | */ | 112 | */ |
107 | virtual bool open() = 0; | 113 | virtual bool open() = 0; |
108 | 114 | ||
109 | /** | 115 | /** |
110 | * close the io | 116 | * close the io |
111 | */ | 117 | */ |
112 | virtual void close() = 0; | 118 | virtual void close() = 0; |
113 | 119 | ||
114 | /** | 120 | /** |
115 | * closes and reloads the settings | 121 | * closes and reloads the settings |
116 | */ | 122 | */ |
117 | virtual void reload( const Profile& ) = 0; | 123 | virtual void reload( const Profile& ) = 0; |
118 | 124 | ||
119 | /** | 125 | /** |
120 | * set the size | 126 | * set the size |
121 | * needed for pty | 127 | * needed for pty |
122 | */ | 128 | */ |
123 | virtual void setSize(int lines, int cols ); | 129 | virtual void setSize(int lines, int cols ); |
124 | }; | 130 | }; |
125 | 131 | ||
126 | #endif | 132 | #endif |
diff --git a/noncore/apps/opie-console/io_modem.h b/noncore/apps/opie-console/io_modem.h index 1328706..17228bd 100644 --- a/noncore/apps/opie-console/io_modem.h +++ b/noncore/apps/opie-console/io_modem.h | |||
@@ -1,64 +1,64 @@ | |||
1 | #ifndef OPIE_IO_MODEM | 1 | #ifndef OPIE_IO_MODEM |
2 | #define OPIE_IO_MODEM | 2 | #define OPIE_IO_MODEM |
3 | 3 | ||
4 | #include <opie/oprocess.h> | 4 | #include <opie/oprocess.h> |
5 | #include "io_serial.h" | 5 | #include "io_serial.h" |
6 | #include "profile.h" | 6 | #include "profile.h" |
7 | 7 | ||
8 | /* Default values to be used if the profile information is incomplete */ | 8 | /* Default values to be used if the profile information is incomplete */ |
9 | #define MODEM_DEFAULT_DEVICE "/dev/ttyS0" | 9 | #define MODEM_DEFAULT_DEVICE "/dev/ttyS0" |
10 | #define MODEM_DEFAULT_BAUD 9600 | 10 | #define MODEM_DEFAULT_BAUD 9600 |
11 | #define MODEM_DEFAULT_PARITY 0 | 11 | #define MODEM_DEFAULT_PARITY 0 |
12 | #define MODEM_DEFAULT_DBITS 8 | 12 | #define MODEM_DEFAULT_DBITS 8 |
13 | #define MODEM_DEFAULT_SBITS 1 | 13 | #define MODEM_DEFAULT_SBITS 1 |
14 | #define MODEM_DEFAULT_FLOW 0 | 14 | #define MODEM_DEFAULT_FLOW 0 |
15 | 15 | ||
16 | #define MODEM_DEFAULT_INIT_STRING "ATZ" | 16 | #define MODEM_DEFAULT_INIT_STRING "AT" |
17 | #define MODEM_DEFAULT_RESET_STRING "ATZ~" | 17 | #define MODEM_DEFAULT_RESET_STRING "ATZ~" |
18 | #define MODEM_DEFAULT_DIAL_PREFIX1 "ATDT" | 18 | #define MODEM_DEFAULT_DIAL_PREFIX1 "ATDT" |
19 | #define MODEM_DEFAULT_DIAL_SUFFIX1 "" | 19 | #define MODEM_DEFAULT_DIAL_SUFFIX1 "" |
20 | #define MODEM_DEFAULT_DIAL_PREFIX2 "" | 20 | #define MODEM_DEFAULT_DIAL_PREFIX2 "" |
21 | #define MODEM_DEFAULT_DIAL_SUFFIX2 "" | 21 | #define MODEM_DEFAULT_DIAL_SUFFIX2 "" |
22 | #define MODEM_DEFAULT_DIAL_PREFIX3 "" | 22 | #define MODEM_DEFAULT_DIAL_PREFIX3 "" |
23 | #define MODEM_DEFAULT_DIAL_SUFFIX3 "" | 23 | #define MODEM_DEFAULT_DIAL_SUFFIX3 "" |
24 | #define MODEM_DEFAULT_CONNECT_STRING "CONNECT" | 24 | #define MODEM_DEFAULT_CONNECT_STRING "CONNECT" |
25 | #define MODEM_DEFAULT_HANGUP_STRING "+++ATH" | 25 | #define MODEM_DEFAULT_HANGUP_STRING "+++ATH" |
26 | #define MODEM_DEFAULT_CANCEL_STRING "" | 26 | #define MODEM_DEFAULT_CANCEL_STRING "" |
27 | #define MODEM_DEFAULT_DIAL_TIME 45 | 27 | #define MODEM_DEFAULT_DIAL_TIME 45 |
28 | #define MODEM_DEFAULT_DELAY_REDIAL 2 | 28 | #define MODEM_DEFAULT_DELAY_REDIAL 2 |
29 | #define MODEM_DEFAULT_NUMBER_TRIES 10 | 29 | #define MODEM_DEFAULT_NUMBER_TRIES 10 |
30 | #define MODEM_DEFAULT_DTR_DROP_TIME 1 | 30 | #define MODEM_DEFAULT_DTR_DROP_TIME 1 |
31 | #define MODEM_DEFAULT_BPS_DETECT 0 // bool | 31 | #define MODEM_DEFAULT_BPS_DETECT 0 // bool |
32 | #define MODEM_DEFAULT_DCD_LINES 1 //bool | 32 | #define MODEM_DEFAULT_DCD_LINES 1 //bool |
33 | #define MODEM_DEFAULT_MULTI_LINE_UNTAG 0 // bool | 33 | #define MODEM_DEFAULT_MULTI_LINE_UNTAG 0 // bool |
34 | 34 | ||
35 | /* IOSerial implements a RS232 IO Layer */ | 35 | /* IOSerial implements a RS232 IO Layer */ |
36 | 36 | ||
37 | class IOModem : public IOSerial { | 37 | class IOModem : public IOSerial { |
38 | 38 | ||
39 | Q_OBJECT | 39 | Q_OBJECT |
40 | 40 | ||
41 | public: | 41 | public: |
42 | 42 | ||
43 | IOModem(const Profile &); | 43 | IOModem(const Profile &); |
44 | ~IOModem(); | 44 | ~IOModem(); |
45 | 45 | ||
46 | QString identifier() const; | 46 | QString identifier() const; |
47 | QString name() const; | 47 | QString name() const; |
48 | 48 | ||
49 | signals: | 49 | signals: |
50 | void received(const QByteArray &); | 50 | void received(const QByteArray &); |
51 | void error(int, const QString &); | 51 | void error(int, const QString &); |
52 | 52 | ||
53 | public slots: | 53 | public slots: |
54 | bool open(); | 54 | bool open(); |
55 | void close(); | 55 | void close(); |
56 | void reload(const Profile &); | 56 | void reload(const Profile &); |
57 | 57 | ||
58 | private: | 58 | private: |
59 | 59 | ||
60 | QString m_initString, m_resetString, m_dialPref1, m_dialSuf1, m_dialPref2, | 60 | QString m_initString, m_resetString, m_dialPref1, m_dialSuf1, m_dialPref2, |
61 | m_dialSuf2, m_dialPref3, m_dialSuf3, m_connect, m_hangup, m_cancel; | 61 | m_dialSuf2, m_dialPref3, m_dialSuf3, m_connect, m_hangup, m_cancel; |
62 | int m_dialTime, m_delayRedial, m_numberTries, m_dtrDropTime, | 62 | int m_dialTime, m_delayRedial, m_numberTries, m_dtrDropTime, |
63 | m_bpsDetect, m_dcdLines, m_multiLineUntag; | 63 | m_bpsDetect, m_dcdLines, m_multiLineUntag; |
64 | Profile m_profile; | 64 | Profile m_profile; |
diff --git a/noncore/apps/opie-console/io_serial.cpp b/noncore/apps/opie-console/io_serial.cpp index 03e92dd..ddd4994 100644 --- a/noncore/apps/opie-console/io_serial.cpp +++ b/noncore/apps/opie-console/io_serial.cpp | |||
@@ -121,101 +121,97 @@ bool IOSerial::open() { | |||
121 | m_connected = false; | 121 | m_connected = false; |
122 | return TRUE; | 122 | return TRUE; |
123 | } else { | 123 | } else { |
124 | emit error(Refuse, tr("Device is already connected")); | 124 | emit error(Refuse, tr("Device is already connected")); |
125 | m_fd = 0; | 125 | m_fd = 0; |
126 | return FALSE; | 126 | return FALSE; |
127 | } | 127 | } |
128 | } | 128 | } |
129 | 129 | ||
130 | void IOSerial::reload(const Profile &config) { | 130 | void IOSerial::reload(const Profile &config) { |
131 | m_device = config.readEntry("Device", SERIAL_DEFAULT_DEVICE); | 131 | m_device = config.readEntry("Device", SERIAL_DEFAULT_DEVICE); |
132 | m_baud = config.readNumEntry("Speed", SERIAL_DEFAULT_BAUD); | 132 | m_baud = config.readNumEntry("Speed", SERIAL_DEFAULT_BAUD); |
133 | m_parity = config.readNumEntry("Parity", SERIAL_DEFAULT_PARITY); | 133 | m_parity = config.readNumEntry("Parity", SERIAL_DEFAULT_PARITY); |
134 | m_dbits = config.readNumEntry("DataBits", SERIAL_DEFAULT_DBITS); | 134 | m_dbits = config.readNumEntry("DataBits", SERIAL_DEFAULT_DBITS); |
135 | m_sbits = config.readNumEntry("StopBits", SERIAL_DEFAULT_SBITS); | 135 | m_sbits = config.readNumEntry("StopBits", SERIAL_DEFAULT_SBITS); |
136 | m_flow = config.readNumEntry("Flow", SERIAL_DEFAULT_FLOW); | 136 | m_flow = config.readNumEntry("Flow", SERIAL_DEFAULT_FLOW); |
137 | 137 | ||
138 | } | 138 | } |
139 | 139 | ||
140 | int IOSerial::baud(int baud) const { | 140 | int IOSerial::baud(int baud) const { |
141 | switch (baud) { | 141 | switch (baud) { |
142 | case 300: return B300; break; | 142 | case 300: return B300; break; |
143 | case 600: return B600; break; | 143 | case 600: return B600; break; |
144 | case 1200: return B1200; break; | 144 | case 1200: return B1200; break; |
145 | case 2400: return B2400; break; | 145 | case 2400: return B2400; break; |
146 | case 4800: return B4800; break; | 146 | case 4800: return B4800; break; |
147 | case 9600: return B9600; break; | 147 | case 9600: return B9600; break; |
148 | case 19200: return B19200; break; | 148 | case 19200: return B19200; break; |
149 | case 38400: return B38400; break; | 149 | case 38400: return B38400; break; |
150 | case 57600: return B57600; break; | 150 | case 57600: return B57600; break; |
151 | case 115200: return B115200; break; | 151 | case 115200: return B115200; break; |
152 | } | 152 | } |
153 | return -1; | 153 | return -1; |
154 | } | 154 | } |
155 | 155 | ||
156 | void IOSerial::errorOccured() { | 156 | void IOSerial::errorOccured() { |
157 | emit error(ClosedUnexpected, strerror(errno)); | 157 | emit error(ClosedUnexpected, strerror(errno)); |
158 | close(); | 158 | close(); |
159 | } | 159 | } |
160 | 160 | ||
161 | void IOSerial::dataArrived() { | 161 | void IOSerial::dataArrived() { |
162 | QByteArray array(4097); | 162 | QByteArray array(4097); |
163 | 163 | ||
164 | int len = read(m_fd, array.data(), 4096); | 164 | int len = read(m_fd, array.data(), 4096); |
165 | if (len == 0) | 165 | if (len == 0) |
166 | close(); | 166 | close(); |
167 | if (len < 0) | 167 | if (len < 0) |
168 | return; | 168 | return; |
169 | qWarning("got from layer"); | 169 | |
170 | for (int i = 0; i < len; i++ ) { | ||
171 | printf("%c", array[i] ); | ||
172 | } | ||
173 | printf("\n"); | ||
174 | array.resize( len ); | 170 | array.resize( len ); |
175 | emit received(array); | 171 | emit received(array); |
176 | } | 172 | } |
177 | 173 | ||
178 | QString IOSerial::identifier() const { | 174 | QString IOSerial::identifier() const { |
179 | return "serial"; | 175 | return "serial"; |
180 | } | 176 | } |
181 | 177 | ||
182 | QString IOSerial::name() const { | 178 | QString IOSerial::name() const { |
183 | return "RS232 Serial IO Layer"; | 179 | return "RS232 Serial IO Layer"; |
184 | } | 180 | } |
185 | int IOSerial::rawIO()const { | 181 | int IOSerial::rawIO()const { |
186 | if (m_read ) | 182 | if (m_read ) |
187 | disconnect(m_read, SIGNAL(activated(int)), this, SLOT(dataArrived())); | 183 | disconnect(m_read, SIGNAL(activated(int)), this, SLOT(dataArrived())); |
188 | if (m_error ) | 184 | if (m_error ) |
189 | disconnect(m_error, SIGNAL(activated(int)), this, SLOT(errorOccured())); | 185 | disconnect(m_error, SIGNAL(activated(int)), this, SLOT(errorOccured())); |
190 | 186 | ||
191 | int fd = ::open(m_device, O_RDWR ); | 187 | int fd = ::open(m_device, O_RDWR ); |
192 | 188 | ||
193 | return fd; | 189 | return fd; |
194 | }; | 190 | }; |
195 | void IOSerial::closeRawIO(int fd) { | 191 | void IOSerial::closeRawIO(int fd) { |
196 | if (m_read ) | 192 | if (m_read ) |
197 | connect(m_read, SIGNAL(activated(int)), this, SLOT(dataArrived())); | 193 | connect(m_read, SIGNAL(activated(int)), this, SLOT(dataArrived())); |
198 | if (m_error ) | 194 | if (m_error ) |
199 | connect(m_error, SIGNAL(activated(int)), this, SLOT(errorOccured())); | 195 | connect(m_error, SIGNAL(activated(int)), this, SLOT(errorOccured())); |
200 | 196 | ||
201 | ::close( fd ); | 197 | ::close( fd ); |
202 | } | 198 | } |
203 | QBitArray IOSerial::supports()const { | 199 | QBitArray IOSerial::supports()const { |
204 | QBitArray ar(3); | 200 | QBitArray ar(3); |
205 | ar[0] = ar[2] = 0; | 201 | ar[0] = ar[2] = 0; |
206 | ar[1] = 1; | 202 | ar[1] = 1; |
207 | 203 | ||
208 | return ar; | 204 | return ar; |
209 | } | 205 | } |
210 | 206 | ||
211 | bool IOSerial::isConnected() { | 207 | bool IOSerial::isConnected() { |
212 | return m_connected; | 208 | return m_connected; |
213 | } | 209 | } |
214 | 210 | ||
215 | /* | 211 | /* |
216 | * this is used to give the | 212 | * this is used to give the |
217 | * class below IOSerial | 213 | * class below IOSerial |
218 | * the possibility of | 214 | * the possibility of |
219 | * exclusive usage | 215 | * exclusive usage |
220 | */ | 216 | */ |
221 | void IOSerial::internDetach() { | 217 | void IOSerial::internDetach() { |
diff --git a/noncore/apps/opie-console/modemconfigwidget.cpp b/noncore/apps/opie-console/modemconfigwidget.cpp index 37eb184..f7fb6f3 100644 --- a/noncore/apps/opie-console/modemconfigwidget.cpp +++ b/noncore/apps/opie-console/modemconfigwidget.cpp | |||
@@ -87,166 +87,171 @@ void ModemConfigWidget::load( const Profile& prof ) { | |||
87 | 87 | ||
88 | if ( rad_parity == 1 ) { | 88 | if ( rad_parity == 1 ) { |
89 | m_base->setParity( IOLayerBase::Even ); | 89 | m_base->setParity( IOLayerBase::Even ); |
90 | } else if ( rad_parity == 2 ){ | 90 | } else if ( rad_parity == 2 ){ |
91 | m_base->setParity( IOLayerBase::Odd ); | 91 | m_base->setParity( IOLayerBase::Odd ); |
92 | } else { | 92 | } else { |
93 | m_base->setParity( IOLayerBase::NonePar ); | 93 | m_base->setParity( IOLayerBase::NonePar ); |
94 | } | 94 | } |
95 | 95 | ||
96 | switch( speed ) { | 96 | switch( speed ) { |
97 | case 115200: | 97 | case 115200: |
98 | m_base->setSpeed( IOLayerBase::Baud_115200 ); | 98 | m_base->setSpeed( IOLayerBase::Baud_115200 ); |
99 | break; | 99 | break; |
100 | case 57600: | 100 | case 57600: |
101 | m_base->setSpeed( IOLayerBase::Baud_57600 ); | 101 | m_base->setSpeed( IOLayerBase::Baud_57600 ); |
102 | break; | 102 | break; |
103 | case 38400: | 103 | case 38400: |
104 | m_base->setSpeed( IOLayerBase::Baud_38400 ); | 104 | m_base->setSpeed( IOLayerBase::Baud_38400 ); |
105 | break; | 105 | break; |
106 | case 19200: | 106 | case 19200: |
107 | m_base->setSpeed( IOLayerBase::Baud_19200 ); | 107 | m_base->setSpeed( IOLayerBase::Baud_19200 ); |
108 | break; | 108 | break; |
109 | case 9600: | 109 | case 9600: |
110 | default: | 110 | default: |
111 | m_base->setSpeed( IOLayerBase::Baud_9600 ); | 111 | m_base->setSpeed( IOLayerBase::Baud_9600 ); |
112 | break; | 112 | break; |
113 | } | 113 | } |
114 | 114 | ||
115 | 115 | ||
116 | if ( dbits == 5) { | 116 | if ( dbits == 5) { |
117 | m_base->setData( IOLayerBase::Data_Five ); | 117 | m_base->setData( IOLayerBase::Data_Five ); |
118 | } else if (rad_flow == 6) { | 118 | } else if (rad_flow == 6) { |
119 | m_base->setData( IOLayerBase::Data_Six ); | 119 | m_base->setData( IOLayerBase::Data_Six ); |
120 | } else if (rad_flow == 7) { | 120 | } else if (rad_flow == 7) { |
121 | m_base->setData( IOLayerBase::Data_Seven ); | 121 | m_base->setData( IOLayerBase::Data_Seven ); |
122 | } else { | 122 | } else { |
123 | m_base->setData( IOLayerBase::Data_Eight ); | 123 | m_base->setData( IOLayerBase::Data_Eight ); |
124 | } | 124 | } |
125 | 125 | ||
126 | if ( sbits == 2) { | 126 | if ( sbits == 2) { |
127 | m_base->setStop( IOLayerBase::Stop_Two ); | 127 | m_base->setStop( IOLayerBase::Stop_Two ); |
128 | } else if ( sbits == 15 ) { | 128 | } else if ( sbits == 15 ) { |
129 | m_base->setStop( IOLayerBase::Stop_OnePointFive ); | 129 | m_base->setStop( IOLayerBase::Stop_OnePointFive ); |
130 | } else { | 130 | } else { |
131 | m_base->setStop( IOLayerBase::Stop_One ); | 131 | m_base->setStop( IOLayerBase::Stop_One ); |
132 | } | 132 | } |
133 | 133 | ||
134 | 134 | ||
135 | 135 | atConf->readConfig( prof ); | |
136 | if ( prof.readEntry( "Device" ).isEmpty() ) { | 136 | if ( prof.readEntry( "Device" ).isEmpty() ) { |
137 | qWarning("device empty!"); | ||
137 | return; | 138 | return; |
138 | } | 139 | } |
139 | setCurrent( prof.readEntry( "Device" ), m_deviceCmb ); | 140 | setCurrent( prof.readEntry( "Device" ), m_deviceCmb ); |
140 | 141 | ||
141 | atConf->readConfig( prof ); | 142 | |
142 | } | 143 | } |
143 | 144 | ||
144 | /* | 145 | /* |
145 | * save speed, | 146 | * save speed, |
146 | * flow, | 147 | * flow, |
147 | * parity | 148 | * parity |
148 | */ | 149 | */ |
149 | void ModemConfigWidget::save( Profile& prof ) { | 150 | void ModemConfigWidget::save( Profile& prof ) { |
150 | int flow, parity, speed, data, stop; | 151 | int flow, parity, speed, data, stop; |
151 | flow = parity = speed = data = stop = 0; | 152 | flow = parity = speed = data = stop = 0; |
152 | prof.writeEntry( "Device", m_deviceCmb->currentText() ); | 153 | prof.writeEntry( "Device", m_deviceCmb->currentText() ); |
153 | 154 | ||
154 | 155 | ||
155 | switch( m_base->flow() ) { | 156 | switch( m_base->flow() ) { |
156 | case IOLayerBase::None: | 157 | case IOLayerBase::None: |
157 | flow = 0; | 158 | flow = 0; |
158 | break; | 159 | break; |
159 | case IOLayerBase::Software: | 160 | case IOLayerBase::Software: |
160 | flow = 2; | 161 | flow = 2; |
161 | break; | 162 | break; |
162 | case IOLayerBase::Hardware: | 163 | case IOLayerBase::Hardware: |
163 | flow = 1; | 164 | flow = 1; |
164 | break; | 165 | break; |
165 | } | 166 | } |
166 | 167 | ||
167 | switch( m_base->parity() ) { | 168 | switch( m_base->parity() ) { |
168 | case IOLayerBase::Odd: | 169 | case IOLayerBase::Odd: |
169 | parity = 2; | 170 | parity = 2; |
170 | break; | 171 | break; |
171 | case IOLayerBase::Even: | 172 | case IOLayerBase::Even: |
172 | parity = 1; | 173 | parity = 1; |
173 | break; | 174 | break; |
174 | case IOLayerBase::NonePar: | 175 | case IOLayerBase::NonePar: |
175 | parity = 0; | 176 | parity = 0; |
176 | break; | 177 | break; |
177 | } | 178 | } |
178 | 179 | ||
179 | switch( m_base->speed() ) { | 180 | switch( m_base->speed() ) { |
180 | case IOLayerBase::Baud_115200: | 181 | case IOLayerBase::Baud_115200: |
181 | speed = 115200; | 182 | speed = 115200; |
182 | break; | 183 | break; |
183 | case IOLayerBase::Baud_57600: | 184 | case IOLayerBase::Baud_57600: |
184 | speed = 57600; | 185 | speed = 57600; |
185 | break; | 186 | break; |
186 | case IOLayerBase::Baud_38400: | 187 | case IOLayerBase::Baud_38400: |
187 | speed = 38400; | 188 | speed = 38400; |
188 | break; | 189 | break; |
189 | case IOLayerBase::Baud_19200: | 190 | case IOLayerBase::Baud_19200: |
190 | speed = 19200; | 191 | speed = 19200; |
191 | break; | 192 | break; |
192 | case IOLayerBase::Baud_9600: | 193 | case IOLayerBase::Baud_9600: |
193 | speed = 9600; | 194 | speed = 9600; |
194 | break; | 195 | break; |
195 | } | 196 | } |
196 | 197 | ||
197 | switch( m_base->data() ) { | 198 | switch( m_base->data() ) { |
198 | case IOLayerBase::Data_Five: | 199 | case IOLayerBase::Data_Five: |
199 | data = 5; | 200 | data = 5; |
200 | break; | 201 | break; |
201 | case IOLayerBase::Data_Six: | 202 | case IOLayerBase::Data_Six: |
202 | data = 6; | 203 | data = 6; |
203 | break; | 204 | break; |
204 | case IOLayerBase::Data_Seven: | 205 | case IOLayerBase::Data_Seven: |
205 | data = 7; | 206 | data = 7; |
206 | break; | 207 | break; |
207 | case IOLayerBase::Data_Eight: | 208 | case IOLayerBase::Data_Eight: |
208 | data = 8; | 209 | data = 8; |
209 | break; | 210 | break; |
210 | } | 211 | } |
211 | 212 | ||
212 | switch( m_base->stop() ) { | 213 | switch( m_base->stop() ) { |
213 | case IOLayerBase::Stop_One: | 214 | case IOLayerBase::Stop_One: |
214 | stop = 1; | 215 | stop = 1; |
215 | break; | 216 | break; |
216 | case IOLayerBase::Stop_OnePointFive: | 217 | case IOLayerBase::Stop_OnePointFive: |
217 | stop = 15; | 218 | stop = 15; |
218 | break; | 219 | break; |
219 | case IOLayerBase::Stop_Two: | 220 | case IOLayerBase::Stop_Two: |
220 | stop = 2; | 221 | stop = 2; |
221 | break; | 222 | break; |
222 | } | 223 | } |
223 | 224 | ||
224 | prof.writeEntry( "Flow", flow ); | 225 | prof.writeEntry( "Flow", flow ); |
225 | prof.writeEntry( "Parity", parity ); | 226 | prof.writeEntry( "Parity", parity ); |
226 | prof.writeEntry( "Speed", speed ); | 227 | prof.writeEntry( "Speed", speed ); |
227 | prof.writeEntry("DataBits", data); | 228 | prof.writeEntry("DataBits", data); |
228 | prof.writeEntry("StopBits", stop); | 229 | prof.writeEntry("StopBits", stop); |
229 | prof.writeEntry( "Number", m_telNumber->text() ); | 230 | prof.writeEntry( "Number", m_telNumber->text() ); |
230 | 231 | ||
231 | 232 | ||
232 | atConf->writeConfig(prof); | 233 | atConf->writeConfig(prof); |
233 | } | 234 | } |
234 | 235 | ||
235 | void ModemConfigWidget::slotAT() { | 236 | void ModemConfigWidget::slotAT() { |
236 | // ATConfigDialog conf( this, "ATConfig", true ); | 237 | // ATConfigDialog conf( this, "ATConfig", true ); |
238 | // josef/Max I know why don't you create the stuff on the stack | ||
239 | // but making it a TopLevel Dialog and ignoring | ||
240 | // cancel is not fun either... | ||
241 | // what to do? FIXME!!! -zecke | ||
237 | atConf->showMaximized(); | 242 | atConf->showMaximized(); |
238 | if ( atConf->exec() != QDialog::Accepted ) { | 243 | if ( atConf->exec() != QDialog::Accepted ) { |
239 | // reload old settings | 244 | // reload old settings |
240 | } | 245 | } |
241 | } | 246 | } |
242 | 247 | ||
243 | void ModemConfigWidget::slotDial() { | 248 | void ModemConfigWidget::slotDial() { |
244 | DialDialog dial( this, "DialConfig", true ); | 249 | DialDialog dial( this, "DialConfig", true ); |
245 | if(!m_telNumber->text().isEmpty()) { | 250 | if(!m_telNumber->text().isEmpty()) { |
246 | dial.setNumber(m_telNumber->text().replace(QRegExp("[\\-\\/\\ \\.\\,]"), "")); | 251 | dial.setNumber(m_telNumber->text().replace(QRegExp("[\\-\\/\\ \\.\\,]"), "")); |
247 | } | 252 | } |
248 | dial.showMaximized(); | 253 | dial.showMaximized(); |
249 | if ( dial.exec() == QDialog::Accepted ) { | 254 | if ( dial.exec() == QDialog::Accepted ) { |
250 | m_telNumber->setText( dial.number() ); | 255 | m_telNumber->setText( dial.number() ); |
251 | } | 256 | } |
252 | } | 257 | } |
diff --git a/noncore/apps/opie-console/profileeditordialog.cpp b/noncore/apps/opie-console/profileeditordialog.cpp index 36daaef..fd04b6b 100644 --- a/noncore/apps/opie-console/profileeditordialog.cpp +++ b/noncore/apps/opie-console/profileeditordialog.cpp | |||
@@ -21,101 +21,101 @@ namespace { | |||
21 | } | 21 | } |
22 | 22 | ||
23 | ProfileEditorDialog::ProfileEditorDialog( MetaFactory* fact, | 23 | ProfileEditorDialog::ProfileEditorDialog( MetaFactory* fact, |
24 | const Profile& prof ) | 24 | const Profile& prof ) |
25 | : QDialog(0, 0, TRUE), m_fact( fact ), m_prof( prof ) | 25 | : QDialog(0, 0, TRUE), m_fact( fact ), m_prof( prof ) |
26 | { | 26 | { |
27 | initUI(); | 27 | initUI(); |
28 | 28 | ||
29 | // Apply current profile | 29 | // Apply current profile |
30 | // plugin_plugin->load(profile); | 30 | // plugin_plugin->load(profile); |
31 | // ... (reset profile name line edit etc.) | 31 | // ... (reset profile name line edit etc.) |
32 | } | 32 | } |
33 | 33 | ||
34 | ProfileEditorDialog::ProfileEditorDialog( MetaFactory* fact ) | 34 | ProfileEditorDialog::ProfileEditorDialog( MetaFactory* fact ) |
35 | : QDialog(0, 0, TRUE), m_fact( fact ) | 35 | : QDialog(0, 0, TRUE), m_fact( fact ) |
36 | { | 36 | { |
37 | // Default profile | 37 | // Default profile |
38 | m_prof = Profile("New Profile", "serial", "default", Profile::Black, Profile::White, Profile::VT102); | 38 | m_prof = Profile("New Profile", "serial", "default", Profile::Black, Profile::White, Profile::VT102); |
39 | 39 | ||
40 | initUI(); | 40 | initUI(); |
41 | 41 | ||
42 | // Apply current profile | 42 | // Apply current profile |
43 | // plugin_plugin->load(profile); | 43 | // plugin_plugin->load(profile); |
44 | } | 44 | } |
45 | 45 | ||
46 | Profile ProfileEditorDialog::profile() const | 46 | Profile ProfileEditorDialog::profile() const |
47 | { | 47 | { |
48 | return m_prof; | 48 | return m_prof; |
49 | } | 49 | } |
50 | 50 | ||
51 | void ProfileEditorDialog::initUI() | 51 | void ProfileEditorDialog::initUI() |
52 | { | 52 | { |
53 | m_con = m_term = m_key = 0l; | 53 | m_con = m_term = m_key = 0l; |
54 | 54 | ||
55 | 55 | ||
56 | QVBoxLayout *mainLayout = new QVBoxLayout( this ); | 56 | QVBoxLayout *mainLayout = new QVBoxLayout( this ); |
57 | tabWidget = new OTabWidget( this ); | 57 | tabWidget = new OTabWidget( this ); |
58 | tabWidget->setTabStyle(OTabWidget::TextTab); | 58 | tabWidget->setTabStyle(OTabWidget::TextTab); |
59 | mainLayout->add(tabWidget); | 59 | mainLayout->add(tabWidget); |
60 | 60 | ||
61 | /* base tabs */ | 61 | /* base tabs */ |
62 | tabprof = new QWidget(this); | 62 | tabprof = new QWidget(this); |
63 | m_tabTerm = new QWidget(this); | 63 | m_tabTerm = new QWidget(this); |
64 | m_tabCon = new QWidget(this); | 64 | m_tabCon = new QWidget(this); |
65 | m_tabKey = new QWidget(this); | 65 | m_tabKey = new QWidget(this); |
66 | 66 | ||
67 | m_svCon = new QScrollView( m_tabCon ); | 67 | m_svCon = new QScrollView( m_tabCon ); |
68 | m_svCon->setResizePolicy( QScrollView::AutoOneFit ); | 68 | m_svCon->setResizePolicy( QScrollView::AutoOneFit ); |
69 | m_svCon->setHScrollBarMode( QScrollView::AlwaysOff ); | 69 | //m_svCon->setHScrollBarMode( QScrollView::AlwaysOff ); |
70 | m_svCon->setFrameShape( QFrame::NoFrame ); | 70 | m_svCon->setFrameShape( QFrame::NoFrame ); |
71 | m_svTerm = new QScrollView( m_tabTerm ); | 71 | m_svTerm = new QScrollView( m_tabTerm ); |
72 | m_svTerm->setResizePolicy( QScrollView::AutoOneFit ); | 72 | m_svTerm->setResizePolicy( QScrollView::AutoOneFit ); |
73 | m_svTerm->setHScrollBarMode( QScrollView::AlwaysOff ); | 73 | //m_svTerm->setHScrollBarMode( QScrollView::AlwaysOff ); |
74 | m_svTerm->setFrameShape( QFrame::NoFrame ); | 74 | m_svTerm->setFrameShape( QFrame::NoFrame ); |
75 | 75 | ||
76 | /* base layout for tabs */ | 76 | /* base layout for tabs */ |
77 | m_layCon = new QHBoxLayout( m_tabCon , 2 ); | 77 | m_layCon = new QHBoxLayout( m_tabCon , 2 ); |
78 | m_layTerm = new QHBoxLayout( m_tabTerm, 2 ); | 78 | m_layTerm = new QHBoxLayout( m_tabTerm, 2 ); |
79 | m_layKey = new QHBoxLayout( m_tabKey, 2 ); | 79 | m_layKey = new QHBoxLayout( m_tabKey, 2 ); |
80 | 80 | ||
81 | m_layCon->addWidget( m_svCon ); | 81 | m_layCon->addWidget( m_svCon ); |
82 | m_layTerm->addWidget( m_svTerm ); | 82 | m_layTerm->addWidget( m_svTerm ); |
83 | 83 | ||
84 | // profile tab | 84 | // profile tab |
85 | 85 | ||
86 | QLabel *name = new QLabel(QObject::tr("Profile name"), tabprof); | 86 | QLabel *name = new QLabel(QObject::tr("Profile name"), tabprof); |
87 | m_name = new QLineEdit(tabprof); | 87 | m_name = new QLineEdit(tabprof); |
88 | QLabel *con = new QLabel(tr("Connection"), tabprof ); | 88 | QLabel *con = new QLabel(tr("Connection"), tabprof ); |
89 | QLabel *term = new QLabel(tr("Terminal"), tabprof ); | 89 | QLabel *term = new QLabel(tr("Terminal"), tabprof ); |
90 | m_conCmb = new QComboBox( tabprof ); | 90 | m_conCmb = new QComboBox( tabprof ); |
91 | m_termCmb = new QComboBox( tabprof ); | 91 | m_termCmb = new QComboBox( tabprof ); |
92 | m_autoConnect = new QCheckBox(tr("Auto connect after load"), tabprof); | 92 | m_autoConnect = new QCheckBox(tr("Auto connect after load"), tabprof); |
93 | 93 | ||
94 | // layouting | 94 | // layouting |
95 | QVBoxLayout *vbox3 = new QVBoxLayout(tabprof, 2); | 95 | QVBoxLayout *vbox3 = new QVBoxLayout(tabprof, 2); |
96 | vbox3->add(name); | 96 | vbox3->add(name); |
97 | vbox3->add(m_name); | 97 | vbox3->add(m_name); |
98 | vbox3->add(con ); | 98 | vbox3->add(con ); |
99 | vbox3->add(m_conCmb ); | 99 | vbox3->add(m_conCmb ); |
100 | vbox3->add(term ); | 100 | vbox3->add(term ); |
101 | vbox3->add(m_termCmb ); | 101 | vbox3->add(m_termCmb ); |
102 | vbox3->add(m_autoConnect); | 102 | vbox3->add(m_autoConnect); |
103 | vbox3->addStretch(1); | 103 | vbox3->addStretch(1); |
104 | 104 | ||
105 | m_showconntab = 0; | 105 | m_showconntab = 0; |
106 | tabWidget->addTab(tabprof, "", QObject::tr("Profile")); | 106 | tabWidget->addTab(tabprof, "", QObject::tr("Profile")); |
107 | tabWidget->addTab(m_tabCon, "", QObject::tr("Connection")); | 107 | tabWidget->addTab(m_tabCon, "", QObject::tr("Connection")); |
108 | tabWidget->addTab(m_tabTerm, "", QObject::tr("Terminal")); | 108 | tabWidget->addTab(m_tabTerm, "", QObject::tr("Terminal")); |
109 | tabWidget->addTab(m_tabKey, "", QObject::tr("Special Keys")); | 109 | tabWidget->addTab(m_tabKey, "", QObject::tr("Special Keys")); |
110 | tabWidget->setCurrentTab( tabprof ); | 110 | tabWidget->setCurrentTab( tabprof ); |
111 | 111 | ||
112 | 112 | ||
113 | // fill the comboboxes | 113 | // fill the comboboxes |
114 | QStringList list = m_fact->connectionWidgets(); | 114 | QStringList list = m_fact->connectionWidgets(); |
115 | QStringList::Iterator it; | 115 | QStringList::Iterator it; |
116 | for (it =list.begin(); it != list.end(); ++it ) { | 116 | for (it =list.begin(); it != list.end(); ++it ) { |
117 | m_conCmb->insertItem( (*it) ); | 117 | m_conCmb->insertItem( (*it) ); |
118 | } | 118 | } |
119 | list = m_fact->terminalWidgets(); | 119 | list = m_fact->terminalWidgets(); |
120 | for (it =list.begin(); it != list.end(); ++it ) { | 120 | for (it =list.begin(); it != list.end(); ++it ) { |
121 | m_termCmb->insertItem( (*it) ); | 121 | m_termCmb->insertItem( (*it) ); |