summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/gui/configwindow.cpp
Unidiff
Diffstat (limited to 'noncore/net/wellenreiter/gui/configwindow.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/wellenreiter/gui/configwindow.cpp94
1 files changed, 66 insertions, 28 deletions
diff --git a/noncore/net/wellenreiter/gui/configwindow.cpp b/noncore/net/wellenreiter/gui/configwindow.cpp
index 84d4c63..3ec190b 100644
--- a/noncore/net/wellenreiter/gui/configwindow.cpp
+++ b/noncore/net/wellenreiter/gui/configwindow.cpp
@@ -54,14 +54,47 @@ WellenreiterConfigWindow::WellenreiterConfigWindow( QWidget * parent, const char
54 { 54 {
55 if ( it.current()->isWireless() ) 55 if ( it.current()->isWireless() )
56 interfaceName->insertItem( it.current()->name() ); 56 interfaceName->insertItem( it.current()->name() );
57 ++it; 57 ++it;
58 } 58 }
59 59
60 if ( !load() ) // no configuration present 60 load();
61
62 #ifdef Q_WS_X11 // We're on X11: adding an Ok-Button for the Dialog here
63 QPushButton* okButton = new QPushButton( "ok", this );
64 okButton->show();
65 WellenreiterConfigBaseLayout->addWidget( okButton, 0, 3 ); //FIXME: rename this in configbase.ui
66 connect( okButton, SIGNAL( clicked() ), this, SLOT( accept() ) );
67 #endif
68
69 WellenreiterConfigWindow::_instance = this;
70
71 connect( deviceType, SIGNAL( activated(int) ), this, SLOT( changedDeviceType(int) ) );
72 connect( getCaptureFileName, SIGNAL( clicked() ), this, SLOT( getCaptureFileNameClicked() ) );
73
74 // make the checkbox 'channelAll' control all other channels
75 connect( channelAll, SIGNAL( stateChanged(int) ), this, SLOT( channelAllClicked(int) ) );
76
77 connect( autodetect, SIGNAL( clicked() ), this, SLOT( performAutodetection() ) );
78};
79
80
81WellenreiterConfigWindow::~WellenreiterConfigWindow()
61 { 82 {
83 save();
84}
85
86
87void WellenreiterConfigWindow::performAutodetection()
88{
89 //TODO: insert modal splash screen here
90 // and sleep a second, so that it looks
91 // like we're actually doing something fancy... ;-)
92
93 qDebug( "WellenreiterConfigWindow::performAutodetection()" );
94
62 // try to guess device type 95 // try to guess device type
63 QFile m( "/proc/modules" ); 96 QFile m( "/proc/modules" );
64 if ( m.open( IO_ReadOnly ) ) 97 if ( m.open( IO_ReadOnly ) )
65 { 98 {
66 int devicetype(0); 99 int devicetype(0);
67 QString line; 100 QString line;
@@ -80,34 +113,12 @@ WellenreiterConfigWindow::WellenreiterConfigWindow( QWidget * parent, const char
80 _guess = devicetype; 113 _guess = devicetype;
81 qDebug( "Wellenreiter: guessed device type to be #%d", devicetype ); 114 qDebug( "Wellenreiter: guessed device type to be #%d", devicetype );
82 } 115 }
83 } 116 }
84 } 117 }
85 118
86 #ifdef Q_WS_X11 // We're on X11: adding an Ok-Button for the Dialog here
87 QPushButton* okButton = new QPushButton( "ok", this );
88 okButton->show();
89 WellenreiterConfigBaseLayout->addWidget( okButton, 0, 3 ); //FIXME: rename this in configbase.ui
90 connect( okButton, SIGNAL( clicked() ), this, SLOT( accept() ) );
91 #endif
92
93 WellenreiterConfigWindow::_instance = this;
94
95 connect( deviceType, SIGNAL( activated(int) ), this, SLOT( changedDeviceType(int) ) );
96 connect( getCaptureFileName, SIGNAL( clicked() ), this, SLOT( getCaptureFileNameClicked() ) );
97
98 // make the checkbox 'channelAll' control all other channels
99 connect( channelAll, SIGNAL( stateChanged(int) ), this, SLOT( channelAllClicked(int) ) );
100};
101
102
103WellenreiterConfigWindow::~WellenreiterConfigWindow()
104{
105 save();
106}
107
108 119
109int WellenreiterConfigWindow::driverType() const 120int WellenreiterConfigWindow::driverType() const
110{ 121{
111 QString name = deviceType->currentText(); 122 QString name = deviceType->currentText();
112 if ( _devicetype.contains( name ) ) 123 if ( _devicetype.contains( name ) )
113 { 124 {
@@ -218,27 +229,55 @@ int WellenreiterConfigWindow::gpsPort() const
218{ 229{
219 bool ok; 230 bool ok;
220 return useGPS() ? gpsdPort->value() : -1; 231 return useGPS() ? gpsdPort->value() : -1;
221} 232}
222 233
223 234
224bool WellenreiterConfigWindow::load() 235void WellenreiterConfigWindow::load()
225{ 236{
226#ifdef Q_WS_X11 237#ifdef Q_WS_X11
227 #warning Persistent Configuration not yet implemented for standalone X11 build 238 #warning Persistent Configuration not yet implemented for standalone X11 build
228 return false; 239 performAutodetection();
229#else 240#else
230 qDebug( "loading configuration settings..." ); 241 qDebug( "loading configuration settings..." );
231 242
232 /* This is dumb monkey typing stuff... We _need_ to do this automatically! */ 243 /* This is dumb monkey typing stuff... We _need_ to do this automatically! */
233 244
234 OConfig* c = oApp->config(); 245 OConfig* c = oApp->config();
235 246
236 c->setGroup( "Interface" ); 247 c->setGroup( "Interface" );
237 //interfaceName->setCurrentText( c->readEntry( "name" ) ); 248
238 //deviceType->setCurrentText( c->readEntry( "type", "<select>" ) ); 249 QString interface = c->readEntry( "name", "<none>" );
250 if ( interface != "<none>" )
251 {
252#if QT_VERSION < 300
253 interfaceName->insertItem( interface, 0 );
254 interfaceName->setCurrentItem( 0 );
255#else
256 interfaceName->setCurrentText( interface );
257#endif
258
259 QString device = c->readEntry( "type", "<select>" );
260#if QT_VERSION < 300
261 for ( int i = 0; i < deviceType->count(); ++i )
262 {
263 if ( deviceType->text( i ) == device )
264 {
265 deviceType->setCurrentItem( i );
266 break;
267 }
268 }
269#else
270 deviceType->setCurrentText( device );
271#endif
272 }
273 else
274 {
275 performAutodetection();
276 }
277
239 prismHeader->setChecked( c->readBoolEntry( "prism", false ) ); 278 prismHeader->setChecked( c->readBoolEntry( "prism", false ) );
240 hopChannels->setChecked( c->readBoolEntry( "hop", true ) ); 279 hopChannels->setChecked( c->readBoolEntry( "hop", true ) );
241 hopInterval->setValue( c->readNumEntry( "interval", 100 ) ); 280 hopInterval->setValue( c->readNumEntry( "interval", 100 ) );
242 adaptiveHopping->setChecked( c->readBoolEntry( "adaptive", true ) ); 281 adaptiveHopping->setChecked( c->readBoolEntry( "adaptive", true ) );
243 282
244 c->setGroup( "Capture" ); 283 c->setGroup( "Capture" );
@@ -258,13 +297,12 @@ bool WellenreiterConfigWindow::load()
258 gpsdHost->setCurrentText( c->readEntry( "host", "localhost" ) ); 297 gpsdHost->setCurrentText( c->readEntry( "host", "localhost" ) );
259#endif 298#endif
260 gpsdPort->setValue( c->readNumEntry( "port", 2947 ) ); 299 gpsdPort->setValue( c->readNumEntry( "port", 2947 ) );
261 startGPS->setChecked( c->readBoolEntry( "start", false ) ); 300 startGPS->setChecked( c->readBoolEntry( "start", false ) );
262 commandGPS->setText( c->readEntry( "command", "gpsd -p /dev/ttyS3 -s 57600" ) ); 301 commandGPS->setText( c->readEntry( "command", "gpsd -p /dev/ttyS3 -s 57600" ) );
263 302
264 return false; // false = perform autodetection; true = use config settings
265#endif 303#endif
266} 304}
267 305
268 306
269void WellenreiterConfigWindow::save() 307void WellenreiterConfigWindow::save()
270{ 308{