From 472156a41b1348c714986c772759ad950fffbe75 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 27 Jan 2013 15:11:21 -0600 Subject: Rename kioslaves --- kcontrol/kio/policydlg.cpp | 107 --------------------------------------------- 1 file changed, 107 deletions(-) delete mode 100644 kcontrol/kio/policydlg.cpp (limited to 'kcontrol/kio/policydlg.cpp') diff --git a/kcontrol/kio/policydlg.cpp b/kcontrol/kio/policydlg.cpp deleted file mode 100644 index 44862f51e..000000000 --- a/kcontrol/kio/policydlg.cpp +++ /dev/null @@ -1,107 +0,0 @@ -/** - * Copyright (c) 2000- Dawit Alemayehu - * - * 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 -#include -#include -#include -#include - -#include -#include -#include - -#include "policydlg.h" -#include "policydlg_ui.h" - - -class DomainLineValidator : public TQValidator -{ -public: - DomainLineValidator(TQObject *parent) - :TQValidator(parent, "domainValidator") - { - } - - State validate(TQString &input, int &) const - { - if (input.isEmpty() || (input == ".")) - return Intermediate; - - int length = input.length(); - - for(int i = 0 ; i < length; i++) - { - if (!input[i].isLetterOrNumber() && input[i] != '.' && input[i] != '-') - return Invalid; - } - - return Acceptable; - } -}; - - -PolicyDlg::PolicyDlg (const TQString& caption, TQWidget *parent, - const char *name) - : KDialogBase(parent, name, true, caption, Ok|Cancel, Ok, true) -{ - m_dlgUI = new PolicyDlgUI (this); - setMainWidget(m_dlgUI); - - m_dlgUI->leDomain->setValidator(new DomainLineValidator(TQT_TQOBJECT(m_dlgUI->leDomain))); - m_dlgUI->cbPolicy->setMinimumWidth( m_dlgUI->cbPolicy->fontMetrics().maxWidth() * 25 ); - - enableButtonOK( false ); - connect(m_dlgUI->leDomain, TQT_SIGNAL(textChanged(const TQString&)), - TQT_SLOT(slotTextChanged(const TQString&))); - - setFixedSize (sizeHint()); - m_dlgUI->leDomain->setFocus (); -} - -void PolicyDlg::setEnableHostEdit( bool state, const TQString& host ) -{ - if ( !host.isEmpty() ) - m_dlgUI->leDomain->setText( host ); - m_dlgUI->leDomain->setEnabled( state ); -} - -void PolicyDlg::setPolicy (int policy) -{ - if ( policy > -1 && policy <= static_cast(m_dlgUI->cbPolicy->count()) ) - m_dlgUI->cbPolicy->setCurrentItem(policy-1); - - if ( !m_dlgUI->leDomain->isEnabled() ) - m_dlgUI->cbPolicy->setFocus(); -} - -int PolicyDlg::advice () const -{ - return m_dlgUI->cbPolicy->currentItem() + 1; -} - -TQString PolicyDlg::domain () const -{ - return m_dlgUI->leDomain->text(); -} - -void PolicyDlg::slotTextChanged( const TQString& text ) -{ - enableButtonOK( text.length() > 1 ); -} -#include "policydlg.moc" -- cgit v1.2.1