KIO
kremoteencoding.h
Go to the documentation of this file.
00001 /* This file is part of the KDE libraries 00002 Copyright (C) 2003 Thiago Macieira <thiago.macieira@kdemail.net> 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Library General Public 00006 License version 2 as published by the Free Software Foundation. 00007 00008 This library is distributed in the hope that it will be useful, 00009 but WITHOUT ANY WARRANTY; without even the implied warranty of 00010 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00011 Library General Public License for more details. 00012 00013 You should have received a copy of the GNU Library General Public License 00014 along with this library; see the file COPYING.LIB. If not, write to 00015 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00016 Boston, MA 02110-1301, USA. 00017 */ 00018 00019 #ifndef KREMOTEENCODING_H 00020 #define KREMOTEENCODING_H 00021 00022 #include <kio/kio_export.h> 00023 #include <kurl.h> 00024 #include <QtCore/QString> 00025 #include <QtCore/QByteArray> 00026 #include <QtCore/QTextCodec> 00027 00028 class KRemoteEncodingPrivate; 00044 class KIO_EXPORT KRemoteEncoding 00045 { 00046 public: 00053 explicit KRemoteEncoding(const char *name = 0); 00054 00058 virtual ~KRemoteEncoding(); 00059 00065 QString decode(const QByteArray& name) const; 00066 00072 QByteArray encode(const QString& name) const; 00073 00077 QByteArray encode(const KUrl& url) const; 00078 00086 QByteArray directory(const KUrl& url, bool ignore_trailing_slash = true) const; 00087 00091 QByteArray fileName(const KUrl& url) const; 00092 00096 const char *encoding() const; 00097 00101 int encodingMib() const; 00102 00110 void setEncoding(const char* name); 00111 00112 protected: 00113 virtual void virtual_hook(int id, void* data); 00114 00115 private: 00116 KRemoteEncodingPrivate* const d; 00117 00118 Q_DISABLE_COPY(KRemoteEncoding) 00119 }; 00120 00121 #endif
KDE 4.6 API Reference