kio Library API Documentation

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., 59 Temple Place - Suite 330,
00016    Boston, MA 02111-1307, 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 
00106   void setEncoding(const char* name);
00107 
00108 protected:
00109   QTextCodec *codec;
00110 
00111   virtual void virtual_hook(int id, void* data);
00112 
00113 private:
00114   // copy constructor
00115   KRemoteEncoding(const KRemoteEncoding&);
00116 
00117 
00118   KRemoteEncodingPrivate *d;
00119 };
00120 
00121 #endif
KDE Logo
This file is part of the documentation for kio Library Version 3.4.1.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Mon Jan 23 19:33:33 2006 by doxygen 1.4.3 written by Dimitri van Heesch, © 1997-2003