summaryrefslogtreecommitdiffstats
path: root/kcontrol/kio/uagentproviderdlg.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-01-27 15:11:21 -0600
committerTimothy Pearson <[email protected]>2013-01-27 15:11:21 -0600
commit472156a41b1348c714986c772759ad950fffbe75 (patch)
tree86369dab3bbe3d52c49051665bdfb49b9dfc16e3 /kcontrol/kio/uagentproviderdlg.cpp
parent3e891e81335e5243583dab27faeebf001b8139a6 (diff)
downloadtdebase-472156a41b1348c714986c772759ad950fffbe75.tar.gz
tdebase-472156a41b1348c714986c772759ad950fffbe75.zip
Rename kioslaves
Diffstat (limited to 'kcontrol/kio/uagentproviderdlg.cpp')
-rw-r--r--kcontrol/kio/uagentproviderdlg.cpp149
1 files changed, 0 insertions, 149 deletions
diff --git a/kcontrol/kio/uagentproviderdlg.cpp b/kcontrol/kio/uagentproviderdlg.cpp
deleted file mode 100644
index 9e945948d..000000000
--- a/kcontrol/kio/uagentproviderdlg.cpp
+++ /dev/null
@@ -1,149 +0,0 @@
-/**
- * Copyright (c) 2001 Dawit Alemayehu <[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 Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
-
-#include <tqlabel.h>
-#include <tqlayout.h>
-#include <tqlistbox.h>
-#include <tqwhatsthis.h>
-#include <tqpushbutton.h>
-
-#include <kdebug.h>
-#include <klocale.h>
-#include <kcombobox.h>
-#include <klineedit.h>
-#include <kurllabel.h>
-
-#include "fakeuaprovider.h"
-#include "uagentproviderdlg.h"
-#include "uagentproviderdlg_ui.h"
-
-UALineEdit::UALineEdit( TQWidget *parent, const char *name )
- :KLineEdit( parent, name )
-{
- // For now do not accept any drops since they might contain
- // characters we do not accept.
- // TODO: Re-implement ::dropEvent to allow acceptable formats...
- setAcceptDrops( false );
-}
-
-void UALineEdit::keyPressEvent( TQKeyEvent* e )
-{
- int key = e->key();
- TQString keycode = e->text();
- if ( (key >= Qt::Key_Escape && key <= Qt::Key_Help) || key == Qt::Key_Period ||
- (cursorPosition() > 0 && key == Qt::Key_Minus) ||
- (!keycode.isEmpty() && keycode.unicode()->isLetterOrNumber()) )
- {
- KLineEdit::keyPressEvent(e);
- return;
- }
- e->accept();
-}
-
-UAProviderDlg::UAProviderDlg( const TQString& caption, TQWidget *parent,
- FakeUASProvider* provider, const char *name )
- :KDialog(parent, name, true), m_provider(provider)
-{
- setCaption ( caption );
-
- TQVBoxLayout* mainLayout = new TQVBoxLayout(this, 0, 0);
-
- dlg = new UAProviderDlgUI (this);
- mainLayout->addWidget(dlg);
- //dlg->leIdentity->setEnableSqueezedText( true );
-
- if (!m_provider)
- {
- setEnabled( false );
- return;
- }
-
- init();
-}
-
-UAProviderDlg::~UAProviderDlg()
-{
-}
-
-void UAProviderDlg::init()
-{
- connect( dlg->pbOk, TQT_SIGNAL(clicked()), TQT_SLOT(accept()) );
- connect( dlg->pbCancel, TQT_SIGNAL(clicked()), TQT_SLOT(reject()) );
-
- connect( dlg->leSite, TQT_SIGNAL(textChanged(const TQString&)),
- TQT_SLOT(slotTextChanged( const TQString&)) );
-
- connect( dlg->cbAlias, TQT_SIGNAL(activated(const TQString&)),
- TQT_SLOT(slotActivated(const TQString&)) );
-
- dlg->cbAlias->clear();
- dlg->cbAlias->insertStringList( m_provider->userAgentAliasList() );
- dlg->cbAlias->insertItem( "", 0 );
- dlg->cbAlias->listBox()->sort();
-
- dlg->leSite->setFocus();
-}
-
-void UAProviderDlg::slotActivated( const TQString& text )
-{
- if ( text.isEmpty() )
- dlg->leIdentity->setText( "" );
- else
- dlg->leIdentity->setText( m_provider->agentStr(text) );
-
- dlg->pbOk->setEnabled( (!dlg->leSite->text().isEmpty() && !text.isEmpty()) );
-}
-
-void UAProviderDlg::slotTextChanged( const TQString& text )
-{
- dlg->pbOk->setEnabled( (!text.isEmpty() && !dlg->cbAlias->currentText().isEmpty()) );
-}
-
-void UAProviderDlg::setSiteName( const TQString& text )
-{
- dlg->leSite->setText( text );
-}
-
-void UAProviderDlg::setIdentity( const TQString& text )
-{
- int id = dlg->cbAlias->listBox()->index( dlg->cbAlias->listBox()->findItem(text) );
- dlg->cbAlias->setCurrentItem( id );
- slotActivated( dlg->cbAlias->currentText() );
- if ( !dlg->leSite->isEnabled() )
- dlg->cbAlias->setFocus();
-}
-
-TQString UAProviderDlg::siteName()
-{
- TQString site_name=dlg->leSite->text().lower();
- site_name = site_name.remove( "https://" );
- site_name = site_name.remove( "http://" );
- return site_name;
-}
-
-TQString UAProviderDlg::identity()
-{
- return dlg->cbAlias->currentText();
-}
-
-TQString UAProviderDlg::alias()
-{
- return dlg->leIdentity->text();
-}
-
-#include "uagentproviderdlg.moc"