From 5159cd2beb2e87806a5b54e9991b7895285c9d3e Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 27 Jan 2013 01:04:16 -0600 Subject: Rename a number of libraries and executables to avoid conflicts with KDE4 --- kio/kfile/kencodingfiledialog.cpp | 223 -------------------------------------- 1 file changed, 223 deletions(-) delete mode 100644 kio/kfile/kencodingfiledialog.cpp (limited to 'kio/kfile/kencodingfiledialog.cpp') diff --git a/kio/kfile/kencodingfiledialog.cpp b/kio/kfile/kencodingfiledialog.cpp deleted file mode 100644 index 183023cf5..000000000 --- a/kio/kfile/kencodingfiledialog.cpp +++ /dev/null @@ -1,223 +0,0 @@ -// -*- c++ -*- -/* This file is part of the KDE libraries - Copyright (C) 2003 Joseph Wenninger - 2003 Andras Mantia - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public - License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. - - This library 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 - Library General Public License for more details. - - You should have received a copy of the GNU Library General Public License - along with this library; see the file COPYING.LIB. If not, write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. -*/ - -#include "config-kfile.h" - -#include "kencodingfiledialog.h" -#include -#include -#include -#include -#include -#include -#include -#include - -struct KEncodingFileDialogPrivate -{ - KComboBox *encoding; -}; - -KEncodingFileDialog::KEncodingFileDialog(const TQString& startDir, const TQString& encoding , const TQString& filter, - const TQString& caption, KFileDialog::OperationMode type, TQWidget *parent, const char* name, bool modal) - : KFileDialog(startDir,filter,parent,name,modal), d(new KEncodingFileDialogPrivate) -{ - setCaption(caption); - - setOperationMode( type ); - - KToolBar *tb = toolBar(); - tb->insertSeparator(); - int index = tb->insertCombo(TQStringList(), -1 /*id*/, false /*writable*/, 0 /*signal*/, 0 /*receiver*/, 0 /*slot*/ ); - d->encoding = tb->getCombo( tb->idAt( index ) ); - if ( !d->encoding ) - return; - - d->encoding->clear (); - TQString sEncoding = encoding; - if (sEncoding.isEmpty()) - sEncoding = TQString::fromLatin1(TDEGlobal::locale()->encoding()); - - TQStringList encodings (TDEGlobal::charsets()->availableEncodingNames()); - int insert = 0; - for (uint i=0; i < encodings.count(); i++) - { - bool found = false; - TQTextCodec *codecForEnc = TDEGlobal::charsets()->codecForName(encodings[i], found); - - if (found) - { - d->encoding->insertItem (encodings[i]); - if ( (codecForEnc->name() == sEncoding) || (encodings[i] == sEncoding) ) - { - d->encoding->setCurrentItem(insert); - } - - insert++; - } - } - - -} - -KEncodingFileDialog::~KEncodingFileDialog() -{ - delete d; -} - - -TQString KEncodingFileDialog::selectedEncoding() const -{ - if (d->encoding) - return d->encoding->currentText(); - else - return TQString::null; -} - - -KEncodingFileDialog::Result KEncodingFileDialog::getOpenFileNameAndEncoding(const TQString& encoding, - const TQString& startDir, - const TQString& filter, - TQWidget *parent, const TQString& caption) -{ - KEncodingFileDialog dlg(startDir, encoding,filter,caption.isNull() ? i18n("Open") : caption,Opening,parent, - "filedialog", true); - - dlg.setMode( KFile::File | KFile::LocalOnly ); - dlg.ops->clearHistory(); - dlg.exec(); - - Result res; - res.fileNames<clearHistory(); - dlg.exec(); - - Result res; - res.fileNames=dlg.selectedFiles(); - res.encoding=dlg.selectedEncoding(); - return res; -} - -KEncodingFileDialog::Result KEncodingFileDialog::getOpenURLAndEncoding(const TQString& encoding, const TQString& startDir, - const TQString& filter, TQWidget *parent, const TQString& caption) -{ - KEncodingFileDialog dlg(startDir, encoding,filter,caption.isNull() ? i18n("Open") : caption,Opening,parent, - "filedialog", true); - - dlg.setMode( KFile::File ); - dlg.ops->clearHistory(); - dlg.exec(); - - Result res; - res.URLs<clearHistory(); - dlg.exec(); - - Result res; - res.URLs=dlg.selectedURLs(); - res.encoding=dlg.selectedEncoding(); - return res; -} - - -KEncodingFileDialog::Result KEncodingFileDialog::getSaveFileNameAndEncoding(const TQString& encoding, - const TQString& dir, - const TQString& filter, - TQWidget *parent, - const TQString& caption) -{ - bool specialDir = dir.at(0) == ':'; - KEncodingFileDialog dlg(specialDir?dir:TQString::null, encoding,filter,caption.isNull() ? i18n("Save As") : caption, - Saving,parent, "filedialog", true); - - if ( !specialDir ) - dlg.setSelection( dir ); // may also be a filename - dlg.exec(); - - TQString filename = dlg.selectedFile(); - if (!filename.isEmpty()) - KRecentDocument::add(filename); - - Result res; - res.fileNames<