diff options
author | Slávek Banko <[email protected]> | 2013-07-27 16:34:45 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-07-27 16:34:45 +0200 |
commit | d76ff81b7c1beffef0b84e570914c8f2d47834e6 (patch) | |
tree | 284b80ce7c5456fbb041f7979ac2c0baeead8902 /src/running.ui.h | |
download | tork-d76ff81b7c1beffef0b84e570914c8f2d47834e6.tar.gz tork-d76ff81b7c1beffef0b84e570914c8f2d47834e6.zip |
Initial import of tork 0.33
Diffstat (limited to 'src/running.ui.h')
-rw-r--r-- | src/running.ui.h | 228 |
1 files changed, 228 insertions, 0 deletions
diff --git a/src/running.ui.h b/src/running.ui.h new file mode 100644 index 0000000..8111ad9 --- /dev/null +++ b/src/running.ui.h @@ -0,0 +1,228 @@ +/*************************************************************************** + * $Id: running.ui.h,v 1.10 2008/07/31 19:56:26 hoganrobert Exp $ + * Copyright (C) 2006 - 2008 Robert Hogan * + * [email protected] * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ + +//dummy +#include "torkconfig.h" +#include <klocale.h> +#include <qtooltip.h> +#include <qpopupmenu.h> +#include <kdebug.h> + +void Running::init() +{ + + QStringList existingMaps = TorkConfig::sOCKSBindAddressMany(); + QListViewItem *tm; + for ( QStringList::Iterator it = existingMaps.begin(); it != existingMaps.end(); ++it ) + { + if ((*it).isEmpty()) + continue; + QString entry = (*it).section(":",0,0); + QString port = (*it).section(":",1,1); + + tm = new QListViewItem(SOCKSBindAddressMany,entry,port); + } + + QStringList existingSocksPolicies = TorkConfig::sOCKSPolicy(); + + for ( QStringList::Iterator it = existingSocksPolicies.begin(); it != existingSocksPolicies.end(); ++it ) + { + if ((*it).isEmpty()) + continue; + QString policy = (*it).section(" ",0,0); + QString section2 = (*it).section(" ",1,1); + QString entry = section2.section(":",0,0); + QString port = section2.section(":",1,1); + + + tm = new QListViewItem(SOCKSPolicy,policy,entry,port); + } + + +} +void Running::PushAdd_clicked() +{ + new QListViewItem(SOCKSBindAddressMany,Address->text(), Port->text()); +} + +void Running::PushAdd2_clicked() +{ + new QListViewItem(SOCKSPolicy,Policy->currentText(),SocksAddress->text(), SocksPort->text()); +} + + +void Running::SOCKSBindAddressMany_contextMenuRequested( QListViewItem *, const QPoint &point, int ) +{ + + QPopupMenu *menu = new QPopupMenu( SOCKSBindAddressMany ); + + menu->clear(); + menu->insertItem( "Delete Entry", this,SLOT(slotDeleteEntry()) ); + menu->popup( point ); + +} + + +void Running::slotDeleteEntry( ) +{ + + QListViewItemIterator it(SOCKSBindAddressMany, QListViewItemIterator::Selected); + while ( it.current() ) { + if (SOCKSBindAddressMany->isSelected( it.current())) + delete it.current(); + ++it; + } + +} + + +void Running::SOCKSPolicy_contextMenuRequested( QListViewItem *, const QPoint &point, int ) +{ + + QPopupMenu *menu = new QPopupMenu( SOCKSPolicy ); + + menu->clear(); + menu->insertItem( "Delete Entry", this,SLOT(slotDeletePolicyEntry()) ); + menu->popup( point ); + +} + + +void Running::slotDeletePolicyEntry( ) +{ + + QListViewItemIterator it(SOCKSPolicy, QListViewItemIterator::Selected); + while ( it.current() ) { + if (SOCKSPolicy->isSelected( it.current())) + delete it.current(); + ++it; + } + + +} + + +void Running::kcfg_DefaultRunningNormalOptions_toggled( bool state) +{ + NormalOptions->setEnabled(!state); +} + + + +void Running::kcfg_CookieAuthentication_toggled( bool ) +{ + if ( kcfg_CookieAuthentication->isChecked()){ + kcfg_HashedControlPassword->setEnabled(false); + }else{ + kcfg_HashedControlPassword->setEnabled(true); + } +} + + +void Running::kcfg_HashedControlPassword_textChanged( const QString & ) +{ + if (! kcfg_HashedControlPassword->text().isEmpty()){ + kcfg_CookieAuthentication->setEnabled(false); + }else{ + kcfg_CookieAuthentication->setEnabled(true); + } + +} + + +// <connections> +// <connection> +// <sender>SOCKSPolicy</sender> +// <signal>contextMenuRequested(QListViewItem*,const QPoint&,int)</signal> +// <receiver>Running</receiver> +// <slot>SOCKSPolicy_contextMenuRequested(QListViewItem*,const QPoint&,int)</slot> +// </connection> +// <connection> +// <sender>SOCKSBindAddressMany</sender> +// <signal>contextMenuRequested(QListViewItem*,const QPoint&,int)</signal> +// <receiver>Running</receiver> +// <slot>SOCKSBindAddressMany_contextMenuRequested(QListViewItem*,const QPoint&,int)</slot> +// </connection> +// <connection> +// <sender>PushAdd</sender> +// <signal>clicked()</signal> +// <receiver>Running</receiver> +// <slot>PushAdd_clicked()</slot> +// </connection> +// <connection> +// <sender>PushAdd2</sender> +// <signal>clicked()</signal> +// <receiver>Running</receiver> +// <slot>PushAdd2_clicked()</slot> +// </connection> +// <connection> +// <sender>kcfg_DefaultRunningNormalOptions</sender> +// <signal>toggled(bool)</signal> +// <receiver>Running</receiver> +// <slot>kcfg_DefaultRunningNormalOptions_toggled(bool)</slot> +// </connection> +// <connection> +// <sender>kcfg_HashedControlPassword</sender> +// <signal>textChanged(const QString&)</signal> +// <receiver>Running</receiver> +// <slot>kcfg_HashedControlPassword_textChanged(const QString&)</slot> +// </connection> +// <connection> +// <sender>kcfg_CookieAuthentication</sender> +// <signal>toggled(bool)</signal> +// <receiver>Running</receiver> +// <slot>kcfg_CookieAuthentication_toggled(bool)</slot> +// </connection> +// <connection> +// <sender>kcfg_ClientOnly</sender> +// <signal>toggled(bool)</signal> +// <receiver>Running</receiver> +// <slot>kcfg_ClientOnly_toggled(bool)</slot> +// </connection> +// </connections> +// <includes> +// <include location="local" impldecl="in implementation">running.ui.h</include> +// </includes> +// <slots> +// <slot>PushAdd_clicked()</slot> +// <slot>PushAdd2_clicked()</slot> +// <slot>SOCKSBindAddressMany_contextMenuRequested( QListViewItem *, const QPoint & point, int )</slot> +// <slot>slotDeleteEntry()</slot> +// <slot>SOCKSPolicy_contextMenuRequested( QListViewItem *, const QPoint & point, int )</slot> +// <slot>slotDeletePolicyEntry()</slot> +// <slot>kcfg_DefaultRunningNormalOptions_toggled( bool state )</slot> +// <slot>kcfg_HashedControlPassword_textChanged( const QString & )</slot> +// <slot>kcfg_CookieAuthentication_toggled( bool )</slot> +// <slot>kcfg_ClientOnly_toggled( bool state )</slot> +// </slots> +// <functions> +// <function access="private" specifier="non virtual">init()</function> +// </functions> +// <layoutdefaults spacing="6" margin="11"/> +// <includehints> +// <includehint>kurlrequester.h</includehint> +// <includehint>kcombobox.h</includehint> +// <includehint>kpushbutton.h</includehint> +// </includehints> + + + + |