author | harlekin <harlekin> | 2002-10-24 13:27:07 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-10-24 13:27:07 (UTC) |
commit | 22b0ba0100376c6406d3ee0ea65b013660ebaea0 (patch) (side-by-side diff) | |
tree | 32943709e115104d036a3b4bdbc030b90075b97f | |
parent | b007fdcf8708d377a25c93de49c4febb19651e1a (diff) | |
download | opie-22b0ba0100376c6406d3ee0ea65b013660ebaea0.zip opie-22b0ba0100376c6406d3ee0ea65b013660ebaea0.tar.gz opie-22b0ba0100376c6406d3ee0ea65b013660ebaea0.tar.bz2 |
set autoconnect by default for local console mode
-rw-r--r-- | noncore/apps/opie-console/BUGS | 14 | ||||
-rw-r--r-- | noncore/apps/opie-console/io_layer.h | 4 | ||||
-rw-r--r-- | noncore/apps/opie-console/profileeditordialog.cpp | 10 |
3 files changed, 12 insertions, 16 deletions
diff --git a/noncore/apps/opie-console/BUGS b/noncore/apps/opie-console/BUGS index b9d8ca3..7fae567 100644 --- a/noncore/apps/opie-console/BUGS +++ b/noncore/apps/opie-console/BUGS @@ -7,6 +7,4 @@ Send/receive: lrzsz behaves strange when trying to use --overwrite or --rename. -- console should autoconnect by default - - keys and buttonbar merge @@ -22,16 +20,4 @@ Send/receive: lrzsz behaves strange when trying to use "cancel recording" then -- kill more compiler warnings. - -- more colorshemes ( "orange is ugly" ) - -- irda and bluetooth out ( can be done with normal serial as long as the -connection is allready up, and extended stuff is a lot of work; maybe later -in again ). - -- new conntection -> configure -> use . does not end up in profile dialog, - -- disable tranfer file for console mode - - scripts need an extension and also an icon diff --git a/noncore/apps/opie-console/io_layer.h b/noncore/apps/opie-console/io_layer.h index 97a1e1c..af61099 100644 --- a/noncore/apps/opie-console/io_layer.h +++ b/noncore/apps/opie-console/io_layer.h @@ -29,6 +29,6 @@ public: enum Feature { AutoConnect = 0, - TransferFile =1, - Close =2 + TransferFile = 1, + Close = 2 }; /** diff --git a/noncore/apps/opie-console/profileeditordialog.cpp b/noncore/apps/opie-console/profileeditordialog.cpp index 9890c3e..127009b 100644 --- a/noncore/apps/opie-console/profileeditordialog.cpp +++ b/noncore/apps/opie-console/profileeditordialog.cpp @@ -198,4 +198,14 @@ void ProfileEditorDialog::slotConActivated( const QString& str ) { m_con = new NoOptions( str, m_svCon->viewport(), "name"); } + + // FIXME ugly hack right. Right solution would be to look into the layer and see if it + // supports auto connect and then set it as prefered + //if ( ( )->layer()->supports()[0] == 1 ) { + if ( m_conCmb ->currentText() == "local Console" ) { + m_autoConnect->setChecked( true ); + } else { + m_autoConnect->setChecked( false ); + } + m_con->load( m_prof ); m_svCon->addChild( m_con ); |