kio
KRemoteEncoding Class Reference
Allows encoding and decoding properly remote filenames into Unicode. More...
#include <kremoteencoding.h>
Public Member Functions | |
QString | decode (const QCString &name) const |
QCString | directory (const KURL &url, bool ignore_trailing_slash=true) const |
QCString | encode (const KURL &url) const |
QCString | encode (const QString &name) const |
const char * | encoding () const |
int | encodingMib () const |
QCString | fileName (const KURL &url) const |
KRemoteEncoding (const char *name=0L) | |
void | setEncoding (const char *name) |
virtual | ~KRemoteEncoding () |
Protected Member Functions | |
virtual void | virtual_hook (int id, void *data) |
Protected Attributes | |
QTextCodec * | codec |
Detailed Description
Allows encoding and decoding properly remote filenames into Unicode.Certain protocols do not specify an appropriate encoding for decoding their 8-bit data into proper Unicode forms. Therefore, ioslaves should use this class in order to convert those forms into QStrings before creating the respective KIO::UDSEntry. The same is true for decoding URLs to its components.
Each KIO::SlaveBase has one object of this kind, even if it is not necessary. It can be accessed through KIO::SlaveBase::remoteEncoding.
A class for handling remote filenames
- Since:
- 3.3
Definition at line 44 of file kremoteencoding.h.
Constructor & Destructor Documentation
KRemoteEncoding::KRemoteEncoding | ( | const char * | name = 0L |
) | [explicit] |
Constructor.
Constructs this object to use the given encoding name. If name
is a null pointer, the standard encoding will be used.
Definition at line 25 of file kremoteencoding.cpp.
KRemoteEncoding::~KRemoteEncoding | ( | ) | [virtual] |
Member Function Documentation
Converts the given full pathname or filename to Unicode.
This function is supposed to work for dirnames, filenames or a full pathname.
Definition at line 36 of file kremoteencoding.cpp.
QCString KRemoteEncoding::directory | ( | const KURL & | url, | |
bool | ignore_trailing_slash = true | |||
) | const |
Converts the given URL into 8-bit form and separate the dirname from the filename.
This is useful for slave functions like stat or get.
The dirname is returned with the final slash always stripped
Definition at line 65 of file kremoteencoding.cpp.
QCString KRemoteEncoding::encode | ( | const KURL & | url | ) | const |
Converts the given URL into its 8-bit components.
Definition at line 60 of file kremoteencoding.cpp.
Converts the given name from Unicode.
This function is supposed to work for dirnames, filenames or a full pathname.
Definition at line 51 of file kremoteencoding.cpp.
const char* KRemoteEncoding::encoding | ( | ) | const [inline] |
int KRemoteEncoding::encodingMib | ( | ) | const [inline] |
QCString KRemoteEncoding::fileName | ( | const KURL & | url | ) | const |
Converts the given URL into 8-bit form and retrieve the filename.
Definition at line 72 of file kremoteencoding.cpp.
void KRemoteEncoding::setEncoding | ( | const char * | name | ) |
Sets the encoding being used.
This function does not change the global configuration.
Pass a null pointer in name
to revert to the standard encoding.
Definition at line 77 of file kremoteencoding.cpp.
void KRemoteEncoding::virtual_hook | ( | int | id, | |
void * | data | |||
) | [protected, virtual] |
Definition at line 91 of file kremoteencoding.cpp.
Member Data Documentation
QTextCodec* KRemoteEncoding::codec [protected] |
Definition at line 115 of file kremoteencoding.h.
The documentation for this class was generated from the following files: