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

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

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

__NOTOC__

Image:qt-logo.png

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

Image:trolltech-logo.png

Содержание

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

The Q3IconDrag class supports drag and drop operations within a Q3IconView. Далее...

 #include <Q3IconDrag>

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 Q3DragObject.

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

  • Q3IconDrag ( QWidget * dragSource, const char * name = 0 )
  • virtual ~Q3IconDrag ()
  • void append ( const Q3IconDragItem & i, const QRect & pr, const QRect & tr )
  • virtual QByteArray encodedData ( const char * mime ) const
  • 9 public functions inherited from Q3DragObject
  • 29 открытых функций, унаследованных от QObject
  • 3 public functions inherited from QMimeSource

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

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

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

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

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

The Q3IconDrag class supports drag and drop operations within a Q3IconView.

A Q3IconDrag object is used to maintain information about the positions of dragged items and the data associated with them. Q3IconViews are able to use this information to paint the dragged items in the correct positions. Internally, Q3IconDrag stores the data associated with drag items in Q3IconDragItem objects.

If you want to use the extended drag and drop functionality of Q3IconView, create a Q3IconDrag object in a reimplementation of Q3IconView::dragObject(). Then create a Q3IconDragItem for each item which should be dragged, set the data it represents with Q3IconDragItem::setData(), and add each Q3IconDragItem to the drag object using append().

The data in Q3IconDragItems is stored in a QByteArray and is mime-typed (see QMimeSource and the Drag and Drop overview). If you want to use your own mime-types derive a class from Q3IconDrag and reimplement format(), encodedData() and canDecode().

The fileiconview example program demonstrates the use of the Q3IconDrag class including subclassing and reimplementing dragObject(), format(), encodedData() and canDecode().

See also QMimeSource::format().


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

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

Constructs a drag object called name, which is a child of dragSource.

Note that the drag object will be deleted when dragSource is deleted.

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

Деструктор.

[править]
void Q3IconDrag::append ( const Q3IconDragItem & i, const QRect & pr, const QRect & tr )

Append the Q3IconDragItem, i, to the Q3IconDrag object's list of items. You must also supply the geometry of the pixmap, pr, and the textual caption, tr.

See also Q3IconDragItem.

[править]
bool Q3IconDrag::canDecode ( QMimeSource * e ) [static]

Returns true if e can be decoded by the Q3IconDrag, otherwise return false.

[править]
QByteArray Q3IconDrag::encodedData ( const char * mime ) const [virtual]

Returns the encoded data of the drag object if mime is application/x-qiconlist.

Reimplemented from QMimeSource.



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2