kremoteencoding.h
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 <kurl.h> 00023 #include <qstring.h> 00024 #include <qcstring.h> 00025 #include <qtextcodec.h> 00026 00027 class KRemoteEncodingPrivate; 00044 class KIO_EXPORT KRemoteEncoding 00045 { 00046 public: 00053 explicit KRemoteEncoding(const char *name = 0L); 00054 00058 virtual ~KRemoteEncoding(); 00059 00065 QString decode(const QCString& name) const; 00066 00072 QCString encode(const QString& name) const; 00073 00077 QCString encode(const KURL& url) const; 00078 00086 QCString directory(const KURL& url, bool ignore_trailing_slash = true) const; 00087 00091 QCString fileName(const KURL& url) const; 00092 00096 inline const char *encoding() const 00097 { return codec->name(); } 00098 00102 inline int encodingMib() const 00103 { return codec->mibEnum(); } 00104 00112 void setEncoding(const char* name); 00113 00114 protected: 00115 QTextCodec *codec; 00116 00117 virtual void virtual_hook(int id, void* data); 00118 00119 private: 00120 // copy constructor 00121 KRemoteEncoding(const KRemoteEncoding&); 00122 00123 00124 KRemoteEncodingPrivate *d; 00125 }; 00126 00127 #endif