Qt:Документация 4.3.2/q3uridrag

Материал из Wiki.crossplatform.ru

Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

[править] Q3UriDrag Class Reference
[ Qt3Support module]

The Q3UriDrag class provides a drag object for a list of URI references. Далее...

 #include <Q3UriDrag>

This class is part of the Qt 3 support library. It is provided to keep old source code working. Мы настоятельно не рекомендуем использовать этот класс в новом коде. See Porting to Qt 4 for more information.

Inherits Q3StoredDrag.

[править] Открытые функции

[править] Статические открытые члены

  • 1 static public member inherited from Q3DragObject
  • 5 статических открытых членов, унаследованных от QObject

[править] Дополнительные унаследованные члены

  • 1 свойство, унаследованное от QObject
  • 1 открытый слот, унаследованный от QObject
  • 1 сигнал, унаследованный от QObject
  • 1 protected function inherited from Q3DragObject
  • 7 защищенных функций, унаследованных от QObject

[править] Подробное описание

The Q3UriDrag class provides a drag object for a list of URI references.

URIs are a useful way to refer to files that may be distributed across multiple machines. A URI will often refer to a file on a machine local to both the drag source and the drop target, so the URI can be equivalent to passing a file name but is more extensible.

Use URIs in Unicode form so that the user can comfortably edit and view them. For use in HTTP or other protocols, use the correctly escaped ASCII form.

You can convert a list of file names to file URIs using setFileNames(), or into human-readable form with setUnicodeUris().

Static functions are provided to convert between filenames and URIs; e.g. uriToLocalFile() and localFileToUri(). Static functions are also provided to convert URIs to and from human-readable form; e.g. uriToUnicodeUri() and unicodeUriToUri(). You can also decode URIs from a MIME source into a list with decodeLocalFiles() and decodeToUnicodeUris().


[править] Описание функций-членов

[править]
Q3UriDrag::Q3UriDrag ( const Q3StrList & uris, QWidget * dragSource = 0, const char * name = 0 )

Constructs an object to drag the list of uris. The dragSource and name are passed to the Q3StoredDrag constructor.

Note that URIs are always in escaped UTF8 encoding.

[править]
Q3UriDrag::Q3UriDrag ( QWidget * dragSource = 0, const char * name = 0 )

Constructs an object to drag with the given name. You must call setUris() before you start the drag(). Both the dragSource and the name are passed to the Q3StoredDrag constructor.

[править]
Q3UriDrag::~Q3UriDrag ()

Destroys the URI drag object.

[править]
bool Q3UriDrag::canDecode ( const QMimeSource * source ) [static]

Returns true if decode() can decode the MIME source; otherwise returns false.

[править]
bool Q3UriDrag::decode ( const QMimeSource * source, Q3StrList & list ) [static]

Decodes URIs from the MIME source, placing the result in the list. The list is cleared before any items are inserted.

Returns true if the MIME source contained a valid list of URIs; otherwise returns false.

[править]
bool Q3UriDrag::decodeLocalFiles ( const QMimeSource * source, QStringList & list ) [static]

Decodes URIs from the MIME source, converting them to local filenames where possible, and places them in the list (which is first cleared).

Returns true if the MIME source contained a valid list of URIs; otherwise returns false. The list will be empty if no URIs referred to local files.

[править]
bool Q3UriDrag::decodeToUnicodeUris ( const QMimeSource * source, QStringList & list ) [static]

Decodes URIs from the MIME source, converting them to Unicode URIs (only useful for displaying to humans), and places them in the list (which is first cleared).

Returns true if the MIME source contained a valid list of URIs; otherwise returns false.

[править]
QByteArray Q3UriDrag::localFileToUri ( const QString & filename ) [static]

Returns the URI equivalent to the absolute local filename.

See also uriToLocalFile().

[править]
void Q3UriDrag::setFileNames ( const QStringList & filenames )

Sets the URIs to be local file URIs equivalent to the filenames.

See also localFileToUri() and setUris().

[править]
void Q3UriDrag::setFileNames ( const QString & name )

Эта перегруженная функция предоставлена для удобства.

Same as setFileNames( QStringList(name)).

[править]
void Q3UriDrag::setFilenames ( const QString & name )

Same as setFileNames( QStringList(name)).

[править]
void Q3UriDrag::setUnicodeUris ( const QStringList & list )

Sets the URIs in the list to be Unicode URIs (only useful for displaying to humans).

See also localFileToUri() and setUris().

[править]
void Q3UriDrag::setUris ( const QList< QByteArray> & list ) [virtual]

Changes the list of URIs to be dragged.

Note that URIs are always in escaped UTF8 encoding.

[править]
QByteArray Q3UriDrag::unicodeUriToUri ( const QString & string ) [static]

Returns the URI equivalent of the Unicode URI given in the string (only useful for displaying to humans).

See also uriToLocalFile().

[править]
QString Q3UriDrag::uriToLocalFile ( const char * string ) [static]

Returns the name of a local file equivalent to the URI given in the string, or an empty string if it does not refer to a local file.

Note that URIs are always in escaped UTF8 encoding.

See also localFileToUri().

[править]
QString Q3UriDrag::uriToUnicodeUri ( const char * string ) [static]

Returns the Unicode URI (only useful for displaying to humans) equivalent of the URI given in the string.

Note that URIs are always in escaped UTF8 encoding.

See also localFileToUri().



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2