Rename drag-n-drop nt* related files to equivalent tq*

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/168/head
Michele Calgaro 5 months ago
parent 7552c6d730
commit 628b0bb74c
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -79,7 +79,7 @@
<area shape="rect" coords="176,79,274,96" href="qimevent.html"> <area shape="rect" coords="176,79,274,96" href="qimevent.html">
<area shape="rect" coords="176,96,283,114" href="qkeyevent.html"> <area shape="rect" coords="176,96,283,114" href="qkeyevent.html">
<area shape="rect" coords="176,114,283,132" href="qhideevent.html"> <area shape="rect" coords="176,114,283,132" href="qhideevent.html">
<area shape="rect" coords="176,132,285,150" href="qdropevent.html"> <area shape="rect" coords="176,132,285,150" href="tqdropevent.html">
<area shape="rect" coords="178,150,285,168" href="qpaintevent.html"> <area shape="rect" coords="178,150,285,168" href="qpaintevent.html">
<area shape="rect" coords="178,168,284,185" href="qchildevent.html"> <area shape="rect" coords="178,168,284,185" href="qchildevent.html">
<area shape="rect" coords="178,186,284,203" href="qmoveevent.html"> <area shape="rect" coords="178,186,284,203" href="qmoveevent.html">
@ -111,7 +111,7 @@
<area shape="rect" coords="294,115,395,133" href="tqcanvas.html"> <area shape="rect" coords="294,115,395,133" href="tqcanvas.html">
<area shape="rect" coords="292,132,395,150" href="ntqclipboard.html"> <area shape="rect" coords="292,132,395,150" href="ntqclipboard.html">
<area shape="rect" coords="292,150,397,166" href="ntqdns.html"> <area shape="rect" coords="292,150,397,166" href="ntqdns.html">
<area shape="rect" coords="294,166,397,188" href="ntqdragobject.html"> <area shape="rect" coords="294,166,397,188" href="tqdragobject.html">
<area shape="rect" coords="295,188,401,205" href="ntqeventloop.html"> <area shape="rect" coords="295,188,401,205" href="ntqeventloop.html">
<area shape="rect" coords="291,202,399,223" href="ntqprocess.html"> <area shape="rect" coords="291,202,399,223" href="ntqprocess.html">
<area shape="rect" coords="292,220,399,240" href="ntqserversocket.html"> <area shape="rect" coords="292,220,399,240" href="ntqserversocket.html">
@ -277,7 +277,7 @@
<area shape="rect" coords="896,62,990,78" href="tqmenudata.html"> <area shape="rect" coords="896,62,990,78" href="tqmenudata.html">
<area shape="rect" coords="896,78,989,96" href="ntqmetaobject.html"> <area shape="rect" coords="896,78,989,96" href="ntqmetaobject.html">
<area shape="rect" coords="894,96,989,116" href="qmetaproperty.html"> <area shape="rect" coords="894,96,989,116" href="qmetaproperty.html">
<area shape="rect" coords="894,116,995,134" href="qmimesource.html"> <area shape="rect" coords="894,116,995,134" href="tqmimesource.html">
<area shape="rect" coords="896,134,995,150" href="ntqmovie.html"> <area shape="rect" coords="896,134,995,150" href="ntqmovie.html">
<area shape="rect" coords="895,148,985,168" href="tqmutex.html"> <area shape="rect" coords="895,148,985,168" href="tqmutex.html">
<area shape="rect" coords="893,169,985,185" href="ntqpaintdevice.html"> <area shape="rect" coords="893,169,985,185" href="ntqpaintdevice.html">
@ -313,7 +313,7 @@
<area shape="rect" coords="1004,80,1104,99" href="ntqpointarray.html"> <area shape="rect" coords="1004,80,1104,99" href="ntqpointarray.html">
<area shape="rect" coords="1004,100,1086,117" href="ntqbitarray.html"> <area shape="rect" coords="1004,100,1086,117" href="ntqbitarray.html">
<area shape="rect" coords="1007,117,1087,131" href="ntqcstring.html"> <area shape="rect" coords="1007,117,1087,131" href="ntqcstring.html">
<area shape="rect" coords="1007,131,1120,152" href="qmimesourcefactory.html"> <area shape="rect" coords="1007,131,1120,152" href="tqmimesourcefactory.html">
<area shape="rect" coords="994,151,1119,170" href="tqmutexlocker.html"> <area shape="rect" coords="994,151,1119,170" href="tqmutexlocker.html">
<area shape="rect" coords="1005,185,1093,203" href="ntqprinter.html"> <area shape="rect" coords="1005,185,1093,203" href="ntqprinter.html">
<area shape="rect" coords="1005,203,1093,220" href="ntqpicture.html"> <area shape="rect" coords="1005,203,1093,220" href="ntqpicture.html">

@ -58,7 +58,7 @@ TQTextEdit widget source code.
\section1 Dragging \section1 Dragging
To start a drag, for example in a \link TQWidget::mouseMoveEvent() To start a drag, for example in a \link TQWidget::mouseMoveEvent()
mouse motion event\endlink, create an object of the QDragObject mouse motion event\endlink, create an object of the TQDragObject
subclass appropriate for your media, such as TQTextDrag for text and subclass appropriate for your media, such as TQTextDrag for text and
TQImageDrag for images. Then call the drag() method. This is all you TQImageDrag for images. Then call the drag() method. This is all you
need for simple dragging of existing types. need for simple dragging of existing types.
@ -67,14 +67,14 @@ For example, to start dragging some text from a widget:
\code \code
void MyWidget::startDrag() void MyWidget::startDrag()
{ {
QDragObject *d = new TQTextDrag( myHighlightedText(), this ); TQDragObject *d = new TQTextDrag( myHighlightedText(), this );
d->dragCopy(); d->dragCopy();
// do NOT delete d. // do NOT delete d.
} }
\endcode \endcode
Note that the QDragObject is not deleted after the drag. The Note that the TQDragObject is not deleted after the drag. The
QDragObject needs to persist after the drag is apparently finished TQDragObject needs to persist after the drag is apparently finished
since it may still be communicating with another process. Eventually since it may still be communicating with another process. Eventually
Qt will delete the object. If the widget owning the drag object is Qt will delete the object. If the widget owning the drag object is
deleted before then, any pending drop will be canceled and the drag deleted before then, any pending drop will be canceled and the drag
@ -103,7 +103,7 @@ MyWidget::MyWidget(...) :
setAcceptDrops(TRUE); setAcceptDrops(TRUE);
} }
void MyWidget::dragEnterEvent(QDragEnterEvent* event) void MyWidget::dragEnterEvent(TQDragEnterEvent* event)
{ {
event->accept( event->accept(
TQTextDrag::canDecode(event) || TQTextDrag::canDecode(event) ||
@ -111,7 +111,7 @@ void MyWidget::dragEnterEvent(QDragEnterEvent* event)
); );
} }
void MyWidget::dropEvent(QDropEvent* event) void MyWidget::dropEvent(TQDropEvent* event)
{ {
TQImage image; TQImage image;
TQString text; TQString text;
@ -126,14 +126,14 @@ void MyWidget::dropEvent(QDropEvent* event)
\section1 The Clipboard \section1 The Clipboard
The QDragObject, QDragEnterEvent, QDragMoveEvent, and QDropEvent The TQDragObject, TQDragEnterEvent, TQDragMoveEvent, and TQDropEvent
classes are all subclasses of QMimeSource: the class of objects which classes are all subclasses of TQMimeSource: the class of objects which
provide typed information. If you base your data transfers on provide typed information. If you base your data transfers on
QDragObject, you not only get drag-and-drop, but you also get TQDragObject, you not only get drag-and-drop, but you also get
traditional cut-and-paste for free. The QClipboard has two functions: traditional cut-and-paste for free. The QClipboard has two functions:
\code \code
setData(QMimeSource*) setData(TQMimeSource*)
QMimeSource* data()const TQMimeSource* data()const
\endcode \endcode
With these functions you can trivially put your drag-and-drop oriented With these functions you can trivially put your drag-and-drop oriented
information on the clipboard: information on the clipboard:
@ -151,8 +151,8 @@ void MyWidget::paste()
insertText( text ); insertText( text );
} }
\endcode \endcode
You can even use QDragObject subclasses as part of file IO. For You can even use TQDragObject subclasses as part of file IO. For
example, if your application has a subclass of QDragObject that example, if your application has a subclass of TQDragObject that
encodes CAD designs in DXF format, your saving and loading code might encodes CAD designs in DXF format, your saving and loading code might
be: be:
\code \code
@ -178,7 +178,7 @@ void MyWidget::load()
} }
} }
\endcode \endcode
Note how the QDragObject subclass is called "MyCadDrag", not Note how the TQDragObject subclass is called "MyCadDrag", not
"MyDxfDrag": because in the future you might extend it to provide "MyDxfDrag": because in the future you might extend it to provide
DXF, DWG, SVF, WMF, or even QPicture data to other applications. DXF, DWG, SVF, WMF, or even QPicture data to other applications.
@ -186,7 +186,7 @@ DXF, DWG, SVF, WMF, or even QPicture data to other applications.
In the simpler cases, the target of a drag-and-drop receives a copy of In the simpler cases, the target of a drag-and-drop receives a copy of
the data being dragged and the source decides whether to delete the the data being dragged and the source decides whether to delete the
original. This is the "Copy" action in QDropEvent. The target may also original. This is the "Copy" action in TQDropEvent. The target may also
choose to understand other actions, specifically the Move and Link choose to understand other actions, specifically the Move and Link
actions. If the target understands the Move action, \e{the actions. If the target understands the Move action, \e{the
target} is responsible for both the copy and delete operations and target} is responsible for both the copy and delete operations and
@ -215,12 +215,12 @@ which of those it can accept. For example, TQTextDrag provides support
for the "\c{text/plain}" MIME type (ordinary unformatted text), and for the "\c{text/plain}" MIME type (ordinary unformatted text), and
the Unicode formats "\c{text/utf16}" and "\c{text/utf8}"; TQImageDrag the Unicode formats "\c{text/utf16}" and "\c{text/utf8}"; TQImageDrag
provides for "\c{image/*}", where \c{*} is any image format that provides for "\c{image/*}", where \c{*} is any image format that
\l TQImageIO supports; and the QUriDrag subclass provides \l TQImageIO supports; and the TQUriDrag subclass provides
"\c{text/uri-list}", a standard format for transferring a list of "\c{text/uri-list}", a standard format for transferring a list of
filenames (or URLs). filenames (or URLs).
To implement drag-and-drop of some type of information for which there To implement drag-and-drop of some type of information for which there
is no available QDragObject subclass, the first and most important is no available TQDragObject subclass, the first and most important
step is to look for existing formats that are appropriate: the step is to look for existing formats that are appropriate: the
Internet Assigned Numbers Authority (\link http://www.iana.org Internet Assigned Numbers Authority (\link http://www.iana.org
IANA\endlink) provides a \link IANA\endlink) provides a \link
@ -230,31 +230,31 @@ list of MIME media types\endlink at the Information Sciences Institute
maximizes the inter-operability of your application with other maximizes the inter-operability of your application with other
software now and in the future. software now and in the future.
To support an additional media type, subclass either QDragObject or To support an additional media type, subclass either TQDragObject or
QStoredDrag. Subclass QDragObject when you need to provide support for TQStoredDrag. Subclass TQDragObject when you need to provide support for
multiple media types. Subclass the simpler QStoredDrag when one type multiple media types. Subclass the simpler TQStoredDrag when one type
is sufficient. is sufficient.
Subclasses of QDragObject will override the Subclasses of TQDragObject will override the
\link QDragObject::format() \link TQDragObject::format()
const char* format(int i) const const char* format(int i) const
\endlink and \endlink and
\link QDragObject::encodedData() \link TQDragObject::encodedData()
QByteArray encodedData(const char* mimetype) const QByteArray encodedData(const char* mimetype) const
\endlink \endlink
members, and provide a set-method to encode the media data and static members, and provide a set-method to encode the media data and static
members canDecode() and decode() to decode incoming data, similar to members canDecode() and decode() to decode incoming data, similar to
\link TQImageDrag::canDecode() \link TQImageDrag::canDecode()
bool canDecode(QMimeSource*) const bool canDecode(TQMimeSource*) const
\endlink and \endlink and
\link TQImageDrag::decode() \link TQImageDrag::decode()
QByteArray decode(QMimeSource*) const QByteArray decode(TQMimeSource*) const
\endlink \endlink
of TQImageDrag. of TQImageDrag.
Of course, you can provide drag-only or drop-only support for a media Of course, you can provide drag-only or drop-only support for a media
type by omitting some of these methods. type by omitting some of these methods.
Subclasses of QStoredDrag provide a set-method to encode the media Subclasses of TQStoredDrag provide a set-method to encode the media
data and the same static members canDecode() and decode() to decode data and the same static members canDecode() and decode() to decode
incoming data. incoming data.
@ -276,17 +276,17 @@ the drag start point and the drop event might look like this:
\code \code
void MyEditor::startDrag() void MyEditor::startDrag()
{ {
QDragObject *d = new TQTextDrag(myHighlightedText(), this); TQDragObject *d = new TQTextDrag(myHighlightedText(), this);
if ( d->drag() && d->target() != this ) if ( d->drag() && d->target() != this )
cutMyHighlightedText(); cutMyHighlightedText();
} }
void MyEditor::dropEvent(QDropEvent* event) void MyEditor::dropEvent(TQDropEvent* event)
{ {
TQString text; TQString text;
if ( TQTextDrag::decode(event, text) ) { if ( TQTextDrag::decode(event, text) ) {
if ( event->source() == this && event->action() == QDropEvent::Move ) { if ( event->source() == this && event->action() == TQDropEvent::Move ) {
// Careful not to tread on my own feet // Careful not to tread on my own feet
event->acceptAction(); event->acceptAction();
moveMyHighlightedTextTo(event->pos()); moveMyHighlightedTextTo(event->pos());
@ -303,7 +303,7 @@ accept drops of text onto text objects in the view. In these cases,
the \link TQWidget::dragMoveEvent() dragMoveEvent()\endlink is used and the \link TQWidget::dragMoveEvent() dragMoveEvent()\endlink is used and
an \e area is given for which the drag is accepted or ignored: an \e area is given for which the drag is accepted or ignored:
\code \code
void MyWidget::dragMoveEvent(QDragMoveEvent* event) void MyWidget::dragMoveEvent(TQDragMoveEvent* event)
{ {
if ( TQTextDrag::canDecode(event) ) { if ( TQTextDrag::canDecode(event) ) {
MyCadItem* item = findMyItemAt(event->pos()); MyCadItem* item = findMyItemAt(event->pos());
@ -316,7 +316,7 @@ If the computations to find objects are particularly slow, you might
achieve improved performance if you tell the system an area for which achieve improved performance if you tell the system an area for which
you promise the acceptance persists: you promise the acceptance persists:
\code \code
void MyWidget::dragMoveEvent(QDragMoveEvent* event) void MyWidget::dragMoveEvent(TQDragMoveEvent* event)
{ {
if ( TQTextDrag::canDecode(event) ) { if ( TQTextDrag::canDecode(event) ) {
MyCadItem* item = findMyItemAt(event->pos()); MyCadItem* item = findMyItemAt(event->pos());

@ -100,13 +100,13 @@ The available options are:
\header \i31 MIME \header \i31 MIME
\row \i TQT_NO_MIME \row \i TQT_NO_MIME
\i Multipurpose Internet Mail Extensions, an Internet standard for encoding \i Multipurpose Internet Mail Extensions, an Internet standard for encoding
and tagging typed data (eg. text, images, colors) (\l QMimeSource) and tagging typed data (eg. text, images, colors) (\l TQMimeSource)
\i &nbsp; \i &nbsp;
\row \i TQT_NO_RICHTEXT \row \i TQT_NO_RICHTEXT
\i HTML-like text (\l TQStyleSheet, \l QLabel) \i HTML-like text (\l TQStyleSheet, \l QLabel)
\i TQT_NO_MIME \i TQT_NO_MIME
\row \i TQT_NO_DRAGANDDROP \row \i TQT_NO_DRAGANDDROP
\i Drag-and-drop data between applications (\l QDragObject) \i Drag-and-drop data between applications (\l TQDragObject)
\i TQT_NO_MIME \i TQT_NO_MIME
\row \i TQT_NO_CLIPBOARD \row \i TQT_NO_CLIPBOARD
\i Cut-and-paste data between applications (\l QClipboard) \i Cut-and-paste data between applications (\l QClipboard)

@ -86,7 +86,7 @@ body { background: #ffffff; color: black; }
<tr bgcolor=#f0f0f0><td><b><a href="qcloseevent.html">TQCloseEvent</a></b><td>Parameters that describe a close event <tr bgcolor=#f0f0f0><td><b><a href="qcloseevent.html">TQCloseEvent</a></b><td>Parameters that describe a close event
<tr bgcolor=#f0f0f0><td><b><a href="ntqcolor.html">TQColor</a></b><td>Colors based on RGB or HSV values <tr bgcolor=#f0f0f0><td><b><a href="ntqcolor.html">TQColor</a></b><td>Colors based on RGB or HSV values
<tr bgcolor=#f0f0f0><td><b><a href="ntqcolordialog.html">TQColorDialog</a></b><td>Dialog widget for specifying colors <tr bgcolor=#f0f0f0><td><b><a href="ntqcolordialog.html">TQColorDialog</a></b><td>Dialog widget for specifying colors
<tr bgcolor=#f0f0f0><td><b><a href="qcolordrag.html">TQColorDrag</a></b><td>Drag and drop object for transferring colors <tr bgcolor=#f0f0f0><td><b><a href="tqcolordrag.html">TQColorDrag</a></b><td>Drag and drop object for transferring colors
<tr bgcolor=#f0f0f0><td><b><a href="qcolorgroup.html">TQColorGroup</a></b><td>Group of widget colors <tr bgcolor=#f0f0f0><td><b><a href="qcolorgroup.html">TQColorGroup</a></b><td>Group of widget colors
<tr bgcolor=#f0f0f0><td><b><a href="ntqcombobox.html">TQComboBox</a></b><td>Combined button and popup list <tr bgcolor=#f0f0f0><td><b><a href="ntqcombobox.html">TQComboBox</a></b><td>Combined button and popup list
<tr bgcolor=#f0f0f0><td><b><a href="qcombotableitem.html">TQComboTableItem</a></b><td>Means of using comboboxes in TQTables <tr bgcolor=#f0f0f0><td><b><a href="qcombotableitem.html">TQComboTableItem</a></b><td>Means of using comboboxes in TQTables
@ -133,11 +133,11 @@ body { background: #ffffff; color: black; }
<tr bgcolor=#f0f0f0><td><b><a href="tqdomprocessinginstruction.html">TQDomProcessingInstruction</a></b><td>Represents an XML processing instruction <tr bgcolor=#f0f0f0><td><b><a href="tqdomprocessinginstruction.html">TQDomProcessingInstruction</a></b><td>Represents an XML processing instruction
<tr bgcolor=#f0f0f0><td><b><a href="tqdomtext.html">TQDomText</a></b><td>Represents text data in the parsed XML document <tr bgcolor=#f0f0f0><td><b><a href="tqdomtext.html">TQDomText</a></b><td>Represents text data in the parsed XML document
<tr bgcolor=#f0f0f0><td><b><a href="qdoublevalidator.html">TQDoubleValidator</a></b><td>Range checking of floating-point numbers <tr bgcolor=#f0f0f0><td><b><a href="qdoublevalidator.html">TQDoubleValidator</a></b><td>Range checking of floating-point numbers
<tr bgcolor=#f0f0f0><td><b><a href="qdragenterevent.html">TQDragEnterEvent</a></b><td>Event which is sent to the widget when a drag and drop first drags onto the widget <tr bgcolor=#f0f0f0><td><b><a href="tqdragenterevent.html">TQDragEnterEvent</a></b><td>Event which is sent to the widget when a drag and drop first drags onto the widget
<tr bgcolor=#f0f0f0><td><b><a href="qdragleaveevent.html">TQDragLeaveEvent</a></b><td>Event which is sent to the widget when a drag and drop leaves the widget <tr bgcolor=#f0f0f0><td><b><a href="tqdragleaveevent.html">TQDragLeaveEvent</a></b><td>Event which is sent to the widget when a drag and drop leaves the widget
<tr bgcolor=#f0f0f0><td><b><a href="qdragmoveevent.html">TQDragMoveEvent</a></b><td>Event which is sent while a drag and drop is in progress <tr bgcolor=#f0f0f0><td><b><a href="tqdragmoveevent.html">TQDragMoveEvent</a></b><td>Event which is sent while a drag and drop is in progress
<tr bgcolor=#f0f0f0><td><b><a href="ntqdragobject.html">TQDragObject</a></b><td>Encapsulates MIME-based data transfer <tr bgcolor=#f0f0f0><td><b><a href="tqdragobject.html">TQDragObject</a></b><td>Encapsulates MIME-based data transfer
<tr bgcolor=#f0f0f0><td><b><a href="qdropevent.html">TQDropEvent</a></b><td>Event which is sent when a drag and drop is completed <tr bgcolor=#f0f0f0><td><b><a href="tqdropevent.html">TQDropEvent</a></b><td>Event which is sent when a drag and drop is completed
<tr bgcolor=#f0f0f0><td><b><a href="tqeditorfactory.html">TQEditorFactory</a></b><td>Used to create editor widgets for TQVariant data types <tr bgcolor=#f0f0f0><td><b><a href="tqeditorfactory.html">TQEditorFactory</a></b><td>Used to create editor widgets for TQVariant data types
<tr bgcolor=#f0f0f0><td><b><a href="ntqerrormessage.html">TQErrorMessage</a></b><td>Error message display dialog <tr bgcolor=#f0f0f0><td><b><a href="ntqerrormessage.html">TQErrorMessage</a></b><td>Error message display dialog
<tr bgcolor=#f0f0f0><td><b><a href="tqeucjpcodec.html">TQEucJpCodec</a></b><td>Conversion to and from EUC-JP character sets <tr bgcolor=#f0f0f0><td><b><a href="tqeucjpcodec.html">TQEucJpCodec</a></b><td>Conversion to and from EUC-JP character sets
@ -226,7 +226,7 @@ body { background: #ffffff; color: black; }
<tr bgcolor=#f0f0f0><td><b><a href="qlistviewitemiterator.html">TQListViewItemIterator</a></b><td>Iterator for collections of TQListViewItems <tr bgcolor=#f0f0f0><td><b><a href="qlistviewitemiterator.html">TQListViewItemIterator</a></b><td>Iterator for collections of TQListViewItems
<tr bgcolor=#f0f0f0><td><b><a href="ntqlocalfs.html">TQLocalFs</a></b><td>Implementation of a TQNetworkProtocol that works on the local file system <tr bgcolor=#f0f0f0><td><b><a href="ntqlocalfs.html">TQLocalFs</a></b><td>Implementation of a TQNetworkProtocol that works on the local file system
<tr bgcolor=#f0f0f0><td><b><a href="ntqlocale.html">TQLocale</a></b><td>Converts between numbers and their string representations in various languages <tr bgcolor=#f0f0f0><td><b><a href="ntqlocale.html">TQLocale</a></b><td>Converts between numbers and their string representations in various languages
<tr bgcolor=#f0f0f0><td><b><a href="qmacmime.html">TQMacMime</a></b><td>Maps open-standard MIME to Mac flavors <tr bgcolor=#f0f0f0><td><b><a href="tqmacmime.html">TQMacMime</a></b><td>Maps open-standard MIME to Mac flavors
<tr bgcolor=#f0f0f0><td><b><a href="qmacstyle.html">TQMacStyle</a></b><td>Implements an Appearance Manager style <tr bgcolor=#f0f0f0><td><b><a href="qmacstyle.html">TQMacStyle</a></b><td>Implements an Appearance Manager style
<tr bgcolor=#f0f0f0><td><b><a href="tqmainwindow.html">TQMainWindow</a></b><td>Main application window, with a menu bar, dock windows (e.g. for toolbars), and a status bar <tr bgcolor=#f0f0f0><td><b><a href="tqmainwindow.html">TQMainWindow</a></b><td>Main application window, with a menu bar, dock windows (e.g. for toolbars), and a status bar
<tr bgcolor=#f0f0f0><td><b><a href="tqmap.html">TQMap</a></b><td>Value-based template class that provides a dictionary <tr bgcolor=#f0f0f0><td><b><a href="tqmap.html">TQMap</a></b><td>Value-based template class that provides a dictionary
@ -238,8 +238,8 @@ body { background: #ffffff; color: black; }
<tr bgcolor=#f0f0f0><td><b><a href="ntqmessagebox.html">TQMessageBox</a></b><td>Modal dialog with a short message, an icon, and some buttons <tr bgcolor=#f0f0f0><td><b><a href="ntqmessagebox.html">TQMessageBox</a></b><td>Modal dialog with a short message, an icon, and some buttons
<tr bgcolor=#f0f0f0><td><b><a href="ntqmetaobject.html">TQMetaObject</a></b><td>Meta information about TQt objects <tr bgcolor=#f0f0f0><td><b><a href="ntqmetaobject.html">TQMetaObject</a></b><td>Meta information about TQt objects
<tr bgcolor=#f0f0f0><td><b><a href="qmetaproperty.html">TQMetaProperty</a></b><td>Stores meta data about a property <tr bgcolor=#f0f0f0><td><b><a href="qmetaproperty.html">TQMetaProperty</a></b><td>Stores meta data about a property
<tr bgcolor=#f0f0f0><td><b><a href="qmimesource.html">TQMimeSource</a></b><td>Abstraction of objects which provide formatted data of a certain MIME type <tr bgcolor=#f0f0f0><td><b><a href="tqmimesource.html">TQMimeSource</a></b><td>Abstraction of objects which provide formatted data of a certain MIME type
<tr bgcolor=#f0f0f0><td><b><a href="qmimesourcefactory.html">TQMimeSourceFactory</a></b><td>Extensible provider of mime-typed data <tr bgcolor=#f0f0f0><td><b><a href="tqmimesourcefactory.html">TQMimeSourceFactory</a></b><td>Extensible provider of mime-typed data
<tr bgcolor=#f0f0f0><td><b><a href="qmotif.html">TQMotif</a></b><td>The basis of the <a href="motif-extension.html#Motif">Motif</a> Extension <tr bgcolor=#f0f0f0><td><b><a href="qmotif.html">TQMotif</a></b><td>The basis of the <a href="motif-extension.html#Motif">Motif</a> Extension
<tr bgcolor=#f0f0f0><td><b><a href="qmotifdialog.html">TQMotifDialog</a></b><td>The TQDialog API for Motif-based dialogs <tr bgcolor=#f0f0f0><td><b><a href="qmotifdialog.html">TQMotifDialog</a></b><td>The TQDialog API for Motif-based dialogs
<tr bgcolor=#f0f0f0><td><b><a href="ntqmotifplusstyle.html">TQMotifPlusStyle</a></b><td>More sophisticated Motif-ish look and feel <tr bgcolor=#f0f0f0><td><b><a href="ntqmotifplusstyle.html">TQMotifPlusStyle</a></b><td>More sophisticated Motif-ish look and feel
@ -337,7 +337,7 @@ body { background: #ffffff; color: black; }
<tr bgcolor=#f0f0f0><td><b><a href="tqsqlresult.html">TQSqlResult</a></b><td>Abstract interface for accessing data from SQL databases <tr bgcolor=#f0f0f0><td><b><a href="tqsqlresult.html">TQSqlResult</a></b><td>Abstract interface for accessing data from SQL databases
<tr bgcolor=#f0f0f0><td><b><a href="tqsqlselectcursor.html">TQSqlSelectCursor</a></b><td>Browsing of general SQL SELECT statements <tr bgcolor=#f0f0f0><td><b><a href="tqsqlselectcursor.html">TQSqlSelectCursor</a></b><td>Browsing of general SQL SELECT statements
<tr bgcolor=#f0f0f0><td><b><a href="tqstatusbar.html">TQStatusBar</a></b><td>Horizontal bar suitable for presenting status information <tr bgcolor=#f0f0f0><td><b><a href="tqstatusbar.html">TQStatusBar</a></b><td>Horizontal bar suitable for presenting status information
<tr bgcolor=#f0f0f0><td><b><a href="qstoreddrag.html">TQStoredDrag</a></b><td>Simple stored-value drag object for arbitrary MIME data <tr bgcolor=#f0f0f0><td><b><a href="tqstoreddrag.html">TQStoredDrag</a></b><td>Simple stored-value drag object for arbitrary MIME data
<tr bgcolor=#f0f0f0><td><b><a href="tqstrilist.html">TQStrIList</a></b><td>Doubly-linked list of char* with case-insensitive comparison <tr bgcolor=#f0f0f0><td><b><a href="tqstrilist.html">TQStrIList</a></b><td>Doubly-linked list of char* with case-insensitive comparison
<tr bgcolor=#f0f0f0><td><b><a href="tqstrlist.html">TQStrList</a></b><td>Doubly-linked list of char* <tr bgcolor=#f0f0f0><td><b><a href="tqstrlist.html">TQStrList</a></b><td>Doubly-linked list of char*
<tr bgcolor=#f0f0f0><td><b><a href="tqstrlistiterator.html">TQStrListIterator</a></b><td>Iterator for the TQStrList and TQStrIList classes <tr bgcolor=#f0f0f0><td><b><a href="tqstrlistiterator.html">TQStrListIterator</a></b><td>Iterator for the TQStrList and TQStrIList classes
@ -382,7 +382,7 @@ body { background: #ffffff; color: black; }
<tr bgcolor=#f0f0f0><td><b><a href="ntqtranslator.html">TQTranslator</a></b><td><a href="i18n.html#internationalization">Internationalization</a> support for text output <tr bgcolor=#f0f0f0><td><b><a href="ntqtranslator.html">TQTranslator</a></b><td><a href="i18n.html#internationalization">Internationalization</a> support for text output
<tr bgcolor=#f0f0f0><td><b><a href="qtranslatormessage.html">TQTranslatorMessage</a></b><td>Translator message and its properties <tr bgcolor=#f0f0f0><td><b><a href="qtranslatormessage.html">TQTranslatorMessage</a></b><td>Translator message and its properties
<tr bgcolor=#f0f0f0><td><b><a href="tqtsciicodec.html">TQTsciiCodec</a></b><td>Conversion to and from the Tamil TSCII encoding <tr bgcolor=#f0f0f0><td><b><a href="tqtsciicodec.html">TQTsciiCodec</a></b><td>Conversion to and from the Tamil TSCII encoding
<tr bgcolor=#f0f0f0><td><b><a href="quridrag.html">TQUriDrag</a></b><td>Drag object for a list of URI references <tr bgcolor=#f0f0f0><td><b><a href="tquridrag.html">TQUriDrag</a></b><td>Drag object for a list of URI references
<tr bgcolor=#f0f0f0><td><b><a href="ntqurl.html">TQUrl</a></b><td>URL parser and simplifies working with URLs <tr bgcolor=#f0f0f0><td><b><a href="ntqurl.html">TQUrl</a></b><td>URL parser and simplifies working with URLs
<tr bgcolor=#f0f0f0><td><b><a href="ntqurlinfo.html">TQUrlInfo</a></b><td>Stores information about URLs <tr bgcolor=#f0f0f0><td><b><a href="ntqurlinfo.html">TQUrlInfo</a></b><td>Stores information about URLs
<tr bgcolor=#f0f0f0><td><b><a href="ntqurloperator.html">TQUrlOperator</a></b><td>Common operations on URLs <tr bgcolor=#f0f0f0><td><b><a href="ntqurloperator.html">TQUrlOperator</a></b><td>Common operations on URLs
@ -407,7 +407,7 @@ body { background: #ffffff; color: black; }
<tr bgcolor=#f0f0f0><td><b><a href="tqwidgetitem.html">TQWidgetItem</a></b><td>Layout item that represents a widget <tr bgcolor=#f0f0f0><td><b><a href="tqwidgetitem.html">TQWidgetItem</a></b><td>Layout item that represents a widget
<tr bgcolor=#f0f0f0><td><b><a href="tqwidgetplugin.html">TQWidgetPlugin</a></b><td>Abstract base for custom TQWidget plugins <tr bgcolor=#f0f0f0><td><b><a href="tqwidgetplugin.html">TQWidgetPlugin</a></b><td>Abstract base for custom TQWidget plugins
<tr bgcolor=#f0f0f0><td><b><a href="tqwidgetstack.html">TQWidgetStack</a></b><td>Stack of widgets of which only the top widget is user-visible <tr bgcolor=#f0f0f0><td><b><a href="tqwidgetstack.html">TQWidgetStack</a></b><td>Stack of widgets of which only the top widget is user-visible
<tr bgcolor=#f0f0f0><td><b><a href="qwindowsmime.html">TQWindowsMime</a></b><td>Maps open-standard MIME to Window Clipboard formats <tr bgcolor=#f0f0f0><td><b><a href="tqwindowsmime.html">TQWindowsMime</a></b><td>Maps open-standard MIME to Window Clipboard formats
<tr bgcolor=#f0f0f0><td><b><a href="ntqwindowsstyle.html">TQWindowsStyle</a></b><td>Microsoft Windows-like look and feel <tr bgcolor=#f0f0f0><td><b><a href="ntqwindowsstyle.html">TQWindowsStyle</a></b><td>Microsoft Windows-like look and feel
<tr bgcolor=#f0f0f0><td><b><a href="ntqwizard.html">TQWizard</a></b><td>Framework for wizard dialogs <tr bgcolor=#f0f0f0><td><b><a href="ntqwizard.html">TQWizard</a></b><td>Framework for wizard dialogs
<tr bgcolor=#f0f0f0><td><b><a href="tqworkspace.html">TQWorkspace</a></b><td>Workspace window that can contain decorated windows, e.g. for MDI <tr bgcolor=#f0f0f0><td><b><a href="tqworkspace.html">TQWorkspace</a></b><td>Workspace window that can contain decorated windows, e.g. for MDI

@ -69,7 +69,7 @@ body { background: #ffffff; color: black; }
<area shape="rect" coords="176,79,274,96" href="qimevent.html"> <area shape="rect" coords="176,79,274,96" href="qimevent.html">
<area shape="rect" coords="176,96,283,114" href="qkeyevent.html"> <area shape="rect" coords="176,96,283,114" href="qkeyevent.html">
<area shape="rect" coords="176,114,283,132" href="qhideevent.html"> <area shape="rect" coords="176,114,283,132" href="qhideevent.html">
<area shape="rect" coords="176,132,285,150" href="qdropevent.html"> <area shape="rect" coords="176,132,285,150" href="tqdropevent.html">
<area shape="rect" coords="178,150,285,168" href="qpaintevent.html"> <area shape="rect" coords="178,150,285,168" href="qpaintevent.html">
<area shape="rect" coords="178,168,284,185" href="qchildevent.html"> <area shape="rect" coords="178,168,284,185" href="qchildevent.html">
<area shape="rect" coords="178,186,284,203" href="qmoveevent.html"> <area shape="rect" coords="178,186,284,203" href="qmoveevent.html">
@ -101,7 +101,7 @@ body { background: #ffffff; color: black; }
<area shape="rect" coords="294,115,395,133" href="tqcanvas.html"> <area shape="rect" coords="294,115,395,133" href="tqcanvas.html">
<area shape="rect" coords="292,132,395,150" href="ntqclipboard.html"> <area shape="rect" coords="292,132,395,150" href="ntqclipboard.html">
<area shape="rect" coords="292,150,397,166" href="ntqdns.html"> <area shape="rect" coords="292,150,397,166" href="ntqdns.html">
<area shape="rect" coords="294,166,397,188" href="ntqdragobject.html"> <area shape="rect" coords="294,166,397,188" href="tqdragobject.html">
<area shape="rect" coords="295,188,401,205" href="ntqeventloop.html"> <area shape="rect" coords="295,188,401,205" href="ntqeventloop.html">
<area shape="rect" coords="291,202,399,223" href="ntqprocess.html"> <area shape="rect" coords="291,202,399,223" href="ntqprocess.html">
<area shape="rect" coords="292,220,399,240" href="ntqserversocket.html"> <area shape="rect" coords="292,220,399,240" href="ntqserversocket.html">
@ -267,7 +267,7 @@ body { background: #ffffff; color: black; }
<area shape="rect" coords="896,62,990,78" href="tqmenudata.html"> <area shape="rect" coords="896,62,990,78" href="tqmenudata.html">
<area shape="rect" coords="896,78,989,96" href="ntqmetaobject.html"> <area shape="rect" coords="896,78,989,96" href="ntqmetaobject.html">
<area shape="rect" coords="894,96,989,116" href="qmetaproperty.html"> <area shape="rect" coords="894,96,989,116" href="qmetaproperty.html">
<area shape="rect" coords="894,116,995,134" href="qmimesource.html"> <area shape="rect" coords="894,116,995,134" href="tqmimesource.html">
<area shape="rect" coords="896,134,995,150" href="ntqmovie.html"> <area shape="rect" coords="896,134,995,150" href="ntqmovie.html">
<area shape="rect" coords="895,148,985,168" href="tqmutex.html"> <area shape="rect" coords="895,148,985,168" href="tqmutex.html">
<area shape="rect" coords="893,169,985,185" href="ntqpaintdevice.html"> <area shape="rect" coords="893,169,985,185" href="ntqpaintdevice.html">
@ -303,7 +303,7 @@ body { background: #ffffff; color: black; }
<area shape="rect" coords="1004,80,1104,99" href="ntqpointarray.html"> <area shape="rect" coords="1004,80,1104,99" href="ntqpointarray.html">
<area shape="rect" coords="1004,100,1086,117" href="ntqbitarray.html"> <area shape="rect" coords="1004,100,1086,117" href="ntqbitarray.html">
<area shape="rect" coords="1007,117,1087,131" href="ntqcstring.html"> <area shape="rect" coords="1007,117,1087,131" href="ntqcstring.html">
<area shape="rect" coords="1007,131,1120,152" href="qmimesourcefactory.html"> <area shape="rect" coords="1007,131,1120,152" href="tqmimesourcefactory.html">
<area shape="rect" coords="994,151,1119,170" href="tqmutexlocker.html"> <area shape="rect" coords="994,151,1119,170" href="tqmutexlocker.html">
<area shape="rect" coords="1005,185,1093,203" href="ntqprinter.html"> <area shape="rect" coords="1005,185,1093,203" href="ntqprinter.html">
<area shape="rect" coords="1005,203,1093,220" href="ntqpicture.html"> <area shape="rect" coords="1005,203,1093,220" href="ntqpicture.html">

@ -315,7 +315,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="qbitval.html">TQBitVal</a> <td><a href="qbitval.html">TQBitVal</a>
<td align="right"> <td align="right">
<td><a href="qdragenterevent.html">TQDragEnterEvent</a> <td><a href="tqdragenterevent.html">TQDragEnterEvent</a>
<td align="right"> <td align="right">
<td><a href="qlayoutitem.html">TQLayoutItem</a> <td><a href="qlayoutitem.html">TQLayoutItem</a>
<td align="right"> <td align="right">
@ -326,7 +326,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="qboxlayout.html">TQBoxLayout</a> <td><a href="qboxlayout.html">TQBoxLayout</a>
<td align="right"> <td align="right">
<td><a href="qdragleaveevent.html">TQDragLeaveEvent</a> <td><a href="tqdragleaveevent.html">TQDragLeaveEvent</a>
<td align="right"> <td align="right">
<td><a href="qlayoutiterator.html">TQLayoutIterator</a> <td><a href="qlayoutiterator.html">TQLayoutIterator</a>
<td align="right"> <td align="right">
@ -337,7 +337,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="ntqbrush.html">TQBrush</a> <td><a href="ntqbrush.html">TQBrush</a>
<td align="right"> <td align="right">
<td><a href="qdragmoveevent.html">TQDragMoveEvent</a> <td><a href="tqdragmoveevent.html">TQDragMoveEvent</a>
<td align="right"> <td align="right">
<td><a href="ntqlcdnumber.html">TQLCDNumber</a> <td><a href="ntqlcdnumber.html">TQLCDNumber</a>
<td align="right"><b>S</b> <td align="right"><b>S</b>
@ -348,7 +348,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="ntqbuffer.html">TQBuffer</a> <td><a href="ntqbuffer.html">TQBuffer</a>
<td align="right"> <td align="right">
<td><a href="ntqdragobject.html">TQDragObject</a> <td><a href="tqdragobject.html">TQDragObject</a>
<td align="right"> <td align="right">
<td><a href="ntqlibrary.html">TQLibrary</a> <td><a href="ntqlibrary.html">TQLibrary</a>
<td align="right"> <td align="right">
@ -359,7 +359,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="ntqbutton.html">TQButton</a> <td><a href="ntqbutton.html">TQButton</a>
<td align="right"> <td align="right">
<td><a href="qdropevent.html">TQDropEvent</a> <td><a href="tqdropevent.html">TQDropEvent</a>
<td align="right"> <td align="right">
<td><a href="ntqlineedit.html">TQLineEdit</a> <td><a href="ntqlineedit.html">TQLineEdit</a>
<td align="right"> <td align="right">
@ -387,7 +387,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="tqsessionmanager.html">TQSessionManager</a> <td><a href="tqsessionmanager.html">TQSessionManager</a>
<td align="right"><b>U</b> <td align="right"><b>U</b>
<td><a href="quridrag.html">TQUriDrag</a> <td><a href="tquridrag.html">TQUriDrag</a>
<tr> <tr>
<td align="right"><b>C</b> <td align="right"><b>C</b>
<td><a href="ntqcache.html">TQCache</a> <td><a href="ntqcache.html">TQCache</a>
@ -471,7 +471,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="ntqfileinfo.html">TQFileInfo</a> <td><a href="ntqfileinfo.html">TQFileInfo</a>
<td align="right"><b>M</b> <td align="right"><b>M</b>
<td><a href="qmacmime.html">TQMacMime</a> <td><a href="tqmacmime.html">TQMacMime</a>
<td align="right"> <td align="right">
<td><a href="tqsizegrip.html">TQSizeGrip</a> <td><a href="tqsizegrip.html">TQSizeGrip</a>
<td align="right"> <td align="right">
@ -603,7 +603,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"><b>G</b> <td align="right"><b>G</b>
<td><a href="tqgb18030codec.html">TQGb18030Codec</a> <td><a href="tqgb18030codec.html">TQGb18030Codec</a>
<td align="right"> <td align="right">
<td><a href="qmimesource.html">TQMimeSource</a> <td><a href="tqmimesource.html">TQMimeSource</a>
<td align="right"> <td align="right">
<td><a href="tqsql.html">TQSql</a> <td><a href="tqsql.html">TQSql</a>
<td align="right"> <td align="right">
@ -614,7 +614,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="tqgb2312codec.html">TQGb2312Codec</a> <td><a href="tqgb2312codec.html">TQGb2312Codec</a>
<td align="right"> <td align="right">
<td><a href="qmimesourcefactory.html">TQMimeSourceFactory</a> <td><a href="tqmimesourcefactory.html">TQMimeSourceFactory</a>
<td align="right"> <td align="right">
<td><a href="tqsqlcursor.html">TQSqlCursor</a> <td><a href="tqsqlcursor.html">TQSqlCursor</a>
<td align="right"> <td align="right">
@ -651,7 +651,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="tqsqldriverplugin.html">TQSqlDriverPlugin</a> <td><a href="tqsqldriverplugin.html">TQSqlDriverPlugin</a>
<td align="right"> <td align="right">
<td><a href="qwindowsmime.html">TQWindowsMime</a> <td><a href="tqwindowsmime.html">TQWindowsMime</a>
<tr> <tr>
<td align="right"> <td align="right">
<td><a href="qcloseevent.html">TQCloseEvent</a> <td><a href="qcloseevent.html">TQCloseEvent</a>
@ -687,7 +687,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td><a href="ntqwmatrix.html">TQWMatrix</a> <td><a href="ntqwmatrix.html">TQWMatrix</a>
<tr> <tr>
<td align="right"> <td align="right">
<td><a href="qcolordrag.html">TQColorDrag</a> <td><a href="tqcolordrag.html">TQColorDrag</a>
<td align="right"> <td align="right">
<td><a href="qglcontext.html">TQGLContext</a> <td><a href="qglcontext.html">TQGLContext</a>
<td align="right"> <td align="right">
@ -802,7 +802,7 @@ classes, see <a href="mainclasses.html">TQt's Main Classes</a>.
<td align="right"> <td align="right">
<td><a href="qnpstream.html">TQNPStream</a> <td><a href="qnpstream.html">TQNPStream</a>
*<td align="right"> *<td align="right">
<td><a href="qstoreddrag.html">TQStoredDrag</a> <td><a href="tqstoreddrag.html">TQStoredDrag</a>
<td align="right"> <td align="right">
<td><a href="tqxmldefaulthandler.html">TQXmlDefaultHandler</a> <td><a href="tqxmldefaulthandler.html">TQXmlDefaultHandler</a>
<tr> <tr>

@ -53,8 +53,8 @@ any other.
#include &lt;<a href="qbitmap-h.html">ntqbitmap.h</a>&gt; #include &lt;<a href="qbitmap-h.html">ntqbitmap.h</a>&gt;
#include &lt;<a href="qpainter-h.html">ntqpainter.h</a>&gt; #include &lt;<a href="qpainter-h.html">ntqpainter.h</a>&gt;
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt; #include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
#include &lt;<a href="qdropsite-h.html">ntqdropsite.h</a>&gt; #include &lt;<a href="tqdropsite-h.html">tqdropsite.h</a>&gt;
#include &lt;<a href="qdragobject-h.html">ntqdragobject.h</a>&gt; #include &lt;<a href="tqdragobject-h.html">tqdragobject.h</a>&gt;
#include &lt;stdio.h&gt; #include &lt;stdio.h&gt;
@ -234,22 +234,22 @@ public:
~DesktopWidget(); ~DesktopWidget();
void paintEvent( <a href="qpaintevent.html">TQPaintEvent</a> * ); void paintEvent( <a href="qpaintevent.html">TQPaintEvent</a> * );
void dragEnterEvent( <a href="qdragenterevent.html">TQDragEnterEvent</a> *e ) void dragEnterEvent( <a href="tqdragenterevent.html">TQDragEnterEvent</a> *e )
{ {
<a name="x1731"></a> if ( TQImageDrag::<a href="tqimagedrag.html#canDecode">canDecode</a>(e) ) <a name="x1731"></a> if ( TQImageDrag::<a href="tqimagedrag.html#canDecode">canDecode</a>(e) )
<a name="x1727"></a> e-&gt;<a href="qdragmoveevent.html#accept">accept</a>(); <a name="x1727"></a> e-&gt;<a href="tqdragmoveevent.html#accept">accept</a>();
} }
void dragLeaveEvent( <a href="qdragleaveevent.html">TQDragLeaveEvent</a> * ) void dragLeaveEvent( <a href="tqdragleaveevent.html">TQDragLeaveEvent</a> * )
{ {
} }
void dragMoveEvent( <a href="qdragmoveevent.html">TQDragMoveEvent</a> *e ) void dragMoveEvent( <a href="tqdragmoveevent.html">TQDragMoveEvent</a> *e )
{ {
e-&gt;<a href="qdragmoveevent.html#accept">accept</a>(); e-&gt;<a href="tqdragmoveevent.html#accept">accept</a>();
} }
void dropEvent( <a href="qdropevent.html">TQDropEvent</a> * e ) void dropEvent( <a href="tqdropevent.html">TQDropEvent</a> * e )
{ {
<a href="ntqpixmap.html">TQPixmap</a> pmp; <a href="ntqpixmap.html">TQPixmap</a> pmp;
<a name="x1732"></a> if ( TQImageDrag::<a href="tqimagedrag.html#decode">decode</a>( e, pmp ) ) { <a name="x1732"></a> if ( TQImageDrag::<a href="tqimagedrag.html#decode">decode</a>( e, pmp ) ) {

@ -130,10 +130,10 @@ protected slots:
void openFolder(); void openFolder();
protected: protected:
void contentsDragEnterEvent( <a href="qdragenterevent.html">TQDragEnterEvent</a> *e ); void contentsDragEnterEvent( <a href="tqdragenterevent.html">TQDragEnterEvent</a> *e );
void contentsDragMoveEvent( <a href="qdragmoveevent.html">TQDragMoveEvent</a> *e ); void contentsDragMoveEvent( <a href="tqdragmoveevent.html">TQDragMoveEvent</a> *e );
void contentsDragLeaveEvent( <a href="qdragleaveevent.html">TQDragLeaveEvent</a> *e ); void contentsDragLeaveEvent( <a href="tqdragleaveevent.html">TQDragLeaveEvent</a> *e );
void contentsDropEvent( <a href="qdropevent.html">TQDropEvent</a> *e ); void contentsDropEvent( <a href="tqdropevent.html">TQDropEvent</a> *e );
void contentsMouseMoveEvent( <a href="qmouseevent.html">TQMouseEvent</a> *e ); void contentsMouseMoveEvent( <a href="qmouseevent.html">TQMouseEvent</a> *e );
void contentsMousePressEvent( <a href="qmouseevent.html">TQMouseEvent</a> *e ); void contentsMousePressEvent( <a href="qmouseevent.html">TQMouseEvent</a> *e );
void contentsMouseReleaseEvent( <a href="qmouseevent.html">TQMouseEvent</a> *e ); void contentsMouseReleaseEvent( <a href="qmouseevent.html">TQMouseEvent</a> *e );
@ -176,8 +176,8 @@ can be used in any other trees.
#include &lt;<a href="qevent-h.html">ntqevent.h</a>&gt; #include &lt;<a href="qevent-h.html">ntqevent.h</a>&gt;
#include &lt;<a href="qpoint-h.html">ntqpoint.h</a>&gt; #include &lt;<a href="qpoint-h.html">ntqpoint.h</a>&gt;
#include &lt;<a href="qmessagebox-h.html">ntqmessagebox.h</a>&gt; #include &lt;<a href="qmessagebox-h.html">ntqmessagebox.h</a>&gt;
#include &lt;<a href="qdragobject-h.html">ntqdragobject.h</a>&gt; #include &lt;<a href="tqdragobject-h.html">tqdragobject.h</a>&gt;
#include &lt;<a href="qmime-h.html">ntqmime.h</a>&gt; #include &lt;<a href="tqmime-h.html">tqmime.h</a>&gt;
#include &lt;<a href="tqstrlist-h.html">tqstrlist.h</a>&gt; #include &lt;<a href="tqstrlist-h.html">tqstrlist.h</a>&gt;
#include &lt;<a href="tqstringlist-h.html">tqstringlist.h</a>&gt; #include &lt;<a href="tqstringlist-h.html">tqstringlist.h</a>&gt;
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt; #include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
@ -477,16 +477,16 @@ void <a name="f480"></a>DirectoryView::openFolder()
static const int autoopenTime = 750; static const int autoopenTime = 750;
<a name="x1679"></a>void DirectoryView::<a href="ntqscrollview.html#contentsDragEnterEvent">contentsDragEnterEvent</a>( <a href="qdragenterevent.html">TQDragEnterEvent</a> *e ) <a name="x1679"></a>void DirectoryView::<a href="ntqscrollview.html#contentsDragEnterEvent">contentsDragEnterEvent</a>( <a href="tqdragenterevent.html">TQDragEnterEvent</a> *e )
{ {
if ( !TQUriDrag::canDecode(e) ) { if ( !TQUriDrag::canDecode(e) ) {
<a name="x1669"></a> e-&gt;<a href="qdragmoveevent.html#ignore">ignore</a>(); <a name="x1669"></a> e-&gt;<a href="tqdragmoveevent.html#ignore">ignore</a>();
return; return;
} }
oldCurrent = <a href="ntqlistview.html#currentItem">currentItem</a>(); oldCurrent = <a href="ntqlistview.html#currentItem">currentItem</a>();
<a name="x1673"></a> <a href="qlistviewitem.html">TQListViewItem</a> *i = <a href="ntqlistview.html#itemAt">itemAt</a>( <a href="ntqscrollview.html#contentsToViewport">contentsToViewport</a>(e-&gt;<a href="qdropevent.html#pos">pos</a>()) ); <a name="x1673"></a> <a href="qlistviewitem.html">TQListViewItem</a> *i = <a href="ntqlistview.html#itemAt">itemAt</a>( <a href="ntqscrollview.html#contentsToViewport">contentsToViewport</a>(e-&gt;<a href="tqdropevent.html#pos">pos</a>()) );
if ( i ) { if ( i ) {
dropItem = i; dropItem = i;
<a name="x1704"></a> autoopen_timer-&gt;<a href="tqtimer.html#start">start</a>( autoopenTime ); <a name="x1704"></a> autoopen_timer-&gt;<a href="tqtimer.html#start">start</a>( autoopenTime );
@ -494,10 +494,10 @@ static const int autoopenTime = 750;
} }
<a name="x1681"></a>void DirectoryView::<a href="ntqscrollview.html#contentsDragMoveEvent">contentsDragMoveEvent</a>( <a href="qdragmoveevent.html">TQDragMoveEvent</a> *e ) <a name="x1681"></a>void DirectoryView::<a href="ntqscrollview.html#contentsDragMoveEvent">contentsDragMoveEvent</a>( <a href="tqdragmoveevent.html">TQDragMoveEvent</a> *e )
{ {
if ( !TQUriDrag::canDecode(e) ) { if ( !TQUriDrag::canDecode(e) ) {
e-&gt;<a href="qdragmoveevent.html#ignore">ignore</a>(); e-&gt;<a href="tqdragmoveevent.html#ignore">ignore</a>();
return; return;
} }
@ -505,32 +505,32 @@ static const int autoopenTime = 750;
<a href="qlistviewitem.html">TQListViewItem</a> *i = <a href="ntqlistview.html#itemAt">itemAt</a>( vp ); <a href="qlistviewitem.html">TQListViewItem</a> *i = <a href="ntqlistview.html#itemAt">itemAt</a>( vp );
if ( i ) { if ( i ) {
<a href="ntqlistview.html#setSelected">setSelected</a>( i, TRUE ); <a href="ntqlistview.html#setSelected">setSelected</a>( i, TRUE );
<a name="x1668"></a> e-&gt;<a href="qdragmoveevent.html#accept">accept</a>(); <a name="x1668"></a> e-&gt;<a href="tqdragmoveevent.html#accept">accept</a>();
if ( i != dropItem ) { if ( i != dropItem ) {
autoopen_timer-&gt;<a href="tqtimer.html#stop">stop</a>(); autoopen_timer-&gt;<a href="tqtimer.html#stop">stop</a>();
dropItem = i; dropItem = i;
autoopen_timer-&gt;<a href="tqtimer.html#start">start</a>( autoopenTime ); autoopen_timer-&gt;<a href="tqtimer.html#start">start</a>( autoopenTime );
} }
<a name="x1672"></a> switch ( e-&gt;<a href="qdropevent.html#action">action</a>() ) { <a name="x1672"></a> switch ( e-&gt;<a href="tqdropevent.html#action">action</a>() ) {
case TQDropEvent::Copy: case TQDropEvent::Copy:
break; break;
case TQDropEvent::Move: case TQDropEvent::Move:
<a name="x1671"></a> e-&gt;<a href="qdropevent.html#acceptAction">acceptAction</a>(); <a name="x1671"></a> e-&gt;<a href="tqdropevent.html#acceptAction">acceptAction</a>();
break; break;
case TQDropEvent::Link: case TQDropEvent::Link:
e-&gt;<a href="qdropevent.html#acceptAction">acceptAction</a>(); e-&gt;<a href="tqdropevent.html#acceptAction">acceptAction</a>();
break; break;
default: default:
; ;
} }
} else { } else {
e-&gt;<a href="qdragmoveevent.html#ignore">ignore</a>(); e-&gt;<a href="tqdragmoveevent.html#ignore">ignore</a>();
autoopen_timer-&gt;<a href="tqtimer.html#stop">stop</a>(); autoopen_timer-&gt;<a href="tqtimer.html#stop">stop</a>();
dropItem = 0; dropItem = 0;
} }
} }
<a name="x1680"></a>void DirectoryView::<a href="ntqscrollview.html#contentsDragLeaveEvent">contentsDragLeaveEvent</a>( <a href="qdragleaveevent.html">TQDragLeaveEvent</a> * ) <a name="x1680"></a>void DirectoryView::<a href="ntqscrollview.html#contentsDragLeaveEvent">contentsDragLeaveEvent</a>( <a href="tqdragleaveevent.html">TQDragLeaveEvent</a> * )
{ {
autoopen_timer-&gt;<a href="tqtimer.html#stop">stop</a>(); autoopen_timer-&gt;<a href="tqtimer.html#stop">stop</a>();
dropItem = 0; dropItem = 0;
@ -539,35 +539,35 @@ static const int autoopenTime = 750;
<a href="ntqlistview.html#setSelected">setSelected</a>( oldCurrent, TRUE ); <a href="ntqlistview.html#setSelected">setSelected</a>( oldCurrent, TRUE );
} }
<a name="x1682"></a>void DirectoryView::<a href="ntqscrollview.html#contentsDropEvent">contentsDropEvent</a>( <a href="qdropevent.html">TQDropEvent</a> *e ) <a name="x1682"></a>void DirectoryView::<a href="ntqscrollview.html#contentsDropEvent">contentsDropEvent</a>( <a href="tqdropevent.html">TQDropEvent</a> *e )
{ {
autoopen_timer-&gt;<a href="tqtimer.html#stop">stop</a>(); autoopen_timer-&gt;<a href="tqtimer.html#stop">stop</a>();
if ( !TQUriDrag::canDecode(e) ) { if ( !TQUriDrag::canDecode(e) ) {
e-&gt;<a href="qdragmoveevent.html#ignore">ignore</a>(); e-&gt;<a href="tqdragmoveevent.html#ignore">ignore</a>();
return; return;
} }
<a href="qlistviewitem.html">TQListViewItem</a> *item = <a href="ntqlistview.html#itemAt">itemAt</a>( <a href="ntqscrollview.html#contentsToViewport">contentsToViewport</a>(e-&gt;<a href="qdropevent.html#pos">pos</a>()) ); <a href="qlistviewitem.html">TQListViewItem</a> *item = <a href="ntqlistview.html#itemAt">itemAt</a>( <a href="ntqscrollview.html#contentsToViewport">contentsToViewport</a>(e-&gt;<a href="tqdropevent.html#pos">pos</a>()) );
if ( item ) { if ( item ) {
<a href="tqstrlist.html">TQStrList</a> lst; <a href="tqstrlist.html">TQStrList</a> lst;
<a name="x1707"></a> TQUriDrag::<a href="quridrag.html#decode">decode</a>( e, lst ); <a name="x1707"></a> TQUriDrag::<a href="tquridrag.html#decode">decode</a>( e, lst );
<a href="tqstring.html">TQString</a> str; <a href="tqstring.html">TQString</a> str;
switch ( e-&gt;<a href="qdropevent.html#action">action</a>() ) { switch ( e-&gt;<a href="tqdropevent.html#action">action</a>() ) {
case TQDropEvent::Copy: case TQDropEvent::Copy:
str = "Copy"; str = "Copy";
break; break;
case TQDropEvent::Move: case TQDropEvent::Move:
str = "Move"; str = "Move";
e-&gt;<a href="qdropevent.html#acceptAction">acceptAction</a>(); e-&gt;<a href="tqdropevent.html#acceptAction">acceptAction</a>();
break; break;
case TQDropEvent::Link: case TQDropEvent::Link:
str = "Link"; str = "Link";
e-&gt;<a href="qdropevent.html#acceptAction">acceptAction</a>(); e-&gt;<a href="tqdropevent.html#acceptAction">acceptAction</a>();
break; break;
default: default:
str = "Unknown"; str = "Unknown";
@ -575,10 +575,10 @@ static const int autoopenTime = 750;
str += "\n\n"; str += "\n\n";
e-&gt;<a href="qdragmoveevent.html#accept">accept</a>(); e-&gt;<a href="tqdragmoveevent.html#accept">accept</a>();
<a name="x1699"></a> for ( uint i = 0; i &lt; lst.<a href="tqptrlist.html#count">count</a>(); ++i ) { <a name="x1699"></a> for ( uint i = 0; i &lt; lst.<a href="tqptrlist.html#count">count</a>(); ++i ) {
<a name="x1709"></a><a name="x1697"></a><a name="x1664"></a> <a href="tqstring.html">TQString</a> filename = TQDir::<a href="ntqdir.html#convertSeparators">convertSeparators</a>(TQUriDrag::<a href="quridrag.html#uriToLocalFile">uriToLocalFile</a>(lst.<a href="tqptrlist.html#at">at</a>(i))); <a name="x1709"></a><a name="x1697"></a><a name="x1664"></a> <a href="tqstring.html">TQString</a> filename = TQDir::<a href="ntqdir.html#convertSeparators">convertSeparators</a>(TQUriDrag::<a href="tquridrag.html#uriToLocalFile">uriToLocalFile</a>(lst.<a href="tqptrlist.html#at">at</a>(i)));
str += filename + "\n"; str += filename + "\n";
} }
str += TQString( "\nTo\n\n %1" ) str += TQString( "\nTo\n\n %1" )
@ -586,7 +586,7 @@ static const int autoopenTime = 750;
<a name="x1695"></a> TQMessageBox::<a href="ntqmessagebox.html#information">information</a>( this, "Drop target", str, "Not implemented" ); <a name="x1695"></a> TQMessageBox::<a href="ntqmessagebox.html#information">information</a>( this, "Drop target", str, "Not implemented" );
} else } else
e-&gt;<a href="qdragmoveevent.html#ignore">ignore</a>(); e-&gt;<a href="tqdragmoveevent.html#ignore">ignore</a>();
} }
@ -613,14 +613,14 @@ TQString <a name="f481"></a>DirectoryView::fullPath(TQListViewItem* item)
<a name="x1684"></a>void DirectoryView::<a href="ntqlistview.html#contentsMousePressEvent">contentsMousePressEvent</a>( <a href="qmouseevent.html">TQMouseEvent</a>* e ) <a name="x1684"></a>void DirectoryView::<a href="ntqlistview.html#contentsMousePressEvent">contentsMousePressEvent</a>( <a href="qmouseevent.html">TQMouseEvent</a>* e )
{ {
TQListView::<a href="ntqlistview.html#contentsMousePressEvent">contentsMousePressEvent</a>(e); TQListView::<a href="ntqlistview.html#contentsMousePressEvent">contentsMousePressEvent</a>(e);
<a href="ntqpoint.html">TQPoint</a> p( contentsToViewport( e-&gt;<a href="qdropevent.html#pos">pos</a>() ) ); <a href="ntqpoint.html">TQPoint</a> p( contentsToViewport( e-&gt;<a href="tqdropevent.html#pos">pos</a>() ) );
<a href="qlistviewitem.html">TQListViewItem</a> *i = itemAt( p ); <a href="qlistviewitem.html">TQListViewItem</a> *i = itemAt( p );
if ( i ) { if ( i ) {
// if the user clicked into the root decoration of the item, don't try to start a drag! // if the user clicked into the root decoration of the item, don't try to start a drag!
<a name="x1696"></a> if ( p.<a href="ntqpoint.html#x">x</a>() &gt; header()-&gt;cellPos( header()-&gt;mapToActual( 0 ) ) + <a name="x1696"></a> if ( p.<a href="ntqpoint.html#x">x</a>() &gt; header()-&gt;cellPos( header()-&gt;mapToActual( 0 ) ) +
<a name="x1686"></a> treeStepSize() * ( i-&gt;<a href="qlistviewitem.html#depth">depth</a>() + ( rootIsDecorated() ? 1 : 0) ) + itemMargin() || <a name="x1686"></a> treeStepSize() * ( i-&gt;<a href="qlistviewitem.html#depth">depth</a>() + ( rootIsDecorated() ? 1 : 0) ) + itemMargin() ||
p.<a href="ntqpoint.html#x">x</a>() &lt; header()-&gt;cellPos( header()-&gt;mapToActual( 0 ) ) ) { p.<a href="ntqpoint.html#x">x</a>() &lt; header()-&gt;cellPos( header()-&gt;mapToActual( 0 ) ) ) {
presspos = e-&gt;<a href="qdropevent.html#pos">pos</a>(); presspos = e-&gt;<a href="tqdropevent.html#pos">pos</a>();
mousePressed = TRUE; mousePressed = TRUE;
} }
} }
@ -628,15 +628,15 @@ TQString <a name="f481"></a>DirectoryView::fullPath(TQListViewItem* item)
<a name="x1683"></a>void DirectoryView::<a href="ntqlistview.html#contentsMouseMoveEvent">contentsMouseMoveEvent</a>( <a href="qmouseevent.html">TQMouseEvent</a>* e ) <a name="x1683"></a>void DirectoryView::<a href="ntqlistview.html#contentsMouseMoveEvent">contentsMouseMoveEvent</a>( <a href="qmouseevent.html">TQMouseEvent</a>* e )
{ {
if ( mousePressed &amp;&amp; ( presspos - e-&gt;<a href="qdropevent.html#pos">pos</a>() ).manhattanLength() &gt; TQApplication::<a href="ntqapplication.html#startDragDistance">startDragDistance</a>() ) { if ( mousePressed &amp;&amp; ( presspos - e-&gt;<a href="tqdropevent.html#pos">pos</a>() ).manhattanLength() &gt; TQApplication::<a href="ntqapplication.html#startDragDistance">startDragDistance</a>() ) {
mousePressed = FALSE; mousePressed = FALSE;
<a href="qlistviewitem.html">TQListViewItem</a> *item = itemAt( contentsToViewport(presspos) ); <a href="qlistviewitem.html">TQListViewItem</a> *item = itemAt( contentsToViewport(presspos) );
if ( item ) { if ( item ) {
<a href="tqstring.html">TQString</a> source = fullPath(item); <a href="tqstring.html">TQString</a> source = fullPath(item);
<a name="x1674"></a> if ( TQFile::<a href="ntqfile.html#exists">exists</a>(source) ) { <a name="x1674"></a> if ( TQFile::<a href="ntqfile.html#exists">exists</a>(source) ) {
<a href="quridrag.html">TQUriDrag</a>* ud = new <a href="quridrag.html">TQUriDrag</a>(viewport()); <a href="tquridrag.html">TQUriDrag</a>* ud = new <a href="tquridrag.html">TQUriDrag</a>(viewport());
<a name="x1708"></a> ud-&gt;<a href="quridrag.html#setFileNames">setFileNames</a>( source ); <a name="x1708"></a> ud-&gt;<a href="tquridrag.html#setFileNames">setFileNames</a>( source );
<a name="x1670"></a> if ( ud-&gt;<a href="ntqdragobject.html#drag">drag</a>() ) <a name="x1670"></a> if ( ud-&gt;<a href="tqdragobject.html#drag">drag</a>() )
TQMessageBox::<a href="ntqmessagebox.html#information">information</a>( this, "Drag source", TQMessageBox::<a href="ntqmessagebox.html#information">information</a>( this, "Drag source",
TQString("Delete ") + TQDir::convertSeparators(source), "Not implemented" ); TQString("Delete ") + TQDir::convertSeparators(source), "Not implemented" );
} }

@ -62,7 +62,7 @@ sophistication): <tt>qt/examples/iconview/simple_dd</tt>, <tt>qt/examples/dragdr
<a href="tqtextedit.html">TQTextEdit</a> widget source code. <a href="tqtextedit.html">TQTextEdit</a> widget source code.
<p> <h2> Dragging <p> <h2> Dragging
</h2> </h2>
<a name="1"></a><p> To start a drag, for example in a <a href="tqwidget.html#mouseMoveEvent">mouse motion event</a>, create an object of the <a href="ntqdragobject.html">TQDragObject</a> <a name="1"></a><p> To start a drag, for example in a <a href="tqwidget.html#mouseMoveEvent">mouse motion event</a>, create an object of the <a href="tqdragobject.html">TQDragObject</a>
subclass appropriate for your media, such as <a href="tqtextdrag.html">TQTextDrag</a> for text and subclass appropriate for your media, such as <a href="tqtextdrag.html">TQTextDrag</a> for text and
<a href="tqimagedrag.html">TQImageDrag</a> for images. Then call the drag() method. This is all you <a href="tqimagedrag.html">TQImageDrag</a> for images. Then call the drag() method. This is all you
need for simple dragging of existing types. need for simple dragging of existing types.
@ -70,8 +70,8 @@ need for simple dragging of existing types.
<pre> <pre>
void MyWidget::startDrag() void MyWidget::startDrag()
{ {
<a href="ntqdragobject.html">TQDragObject</a> *d = new <a href="tqtextdrag.html">TQTextDrag</a>( myHighlightedText(), this ); <a href="tqdragobject.html">TQDragObject</a> *d = new <a href="tqtextdrag.html">TQTextDrag</a>( myHighlightedText(), this );
d-&gt;<a href="ntqdragobject.html#dragCopy">dragCopy</a>(); d-&gt;<a href="tqdragobject.html#dragCopy">dragCopy</a>();
// do NOT delete d. // do NOT delete d.
} }
</pre> </pre>
@ -127,14 +127,14 @@ void MyWidget::dropEvent(TQDropEvent* event)
<p> <h2> The Clipboard <p> <h2> The Clipboard
</h2> </h2>
<a name="3"></a><p> The <a href="ntqdragobject.html">TQDragObject</a>, <a href="qdragenterevent.html">TQDragEnterEvent</a>, <a href="qdragmoveevent.html">TQDragMoveEvent</a>, and <a href="qdropevent.html">TQDropEvent</a> <a name="3"></a><p> The <a href="tqdragobject.html">TQDragObject</a>, <a href="tqdragenterevent.html">TQDragEnterEvent</a>, <a href="tqdragmoveevent.html">TQDragMoveEvent</a>, and <a href="tqdropevent.html">TQDropEvent</a>
classes are all subclasses of TQMimeSource: the class of objects which classes are all subclasses of TQMimeSource: the class of objects which
provide typed information. If you base your data transfers on provide typed information. If you base your data transfers on
TQDragObject, you not only get drag-and-drop, but you also get TQDragObject, you not only get drag-and-drop, but you also get
traditional cut-and-paste for free. The <a href="ntqclipboard.html">TQClipboard</a> has two functions: traditional cut-and-paste for free. The <a href="ntqclipboard.html">TQClipboard</a> has two functions:
<pre> <pre>
setData(TQMimeSource*) setData(TQMimeSource*)
<a href="qmimesource.html">TQMimeSource</a>* data()const <a href="tqmimesource.html">TQMimeSource</a>* data()const
</pre> </pre>
With these functions you can trivially put your drag-and-drop oriented With these functions you can trivially put your drag-and-drop oriented
@ -154,7 +154,7 @@ void MyWidget::paste()
} }
</pre> </pre>
You can even use <a href="ntqdragobject.html">TQDragObject</a> subclasses as part of file IO. For You can even use <a href="tqdragobject.html">TQDragObject</a> subclasses as part of file IO. For
example, if your application has a subclass of TQDragObject that example, if your application has a subclass of TQDragObject that
encodes CAD designs in DXF format, your saving and loading code might encodes CAD designs in DXF format, your saving and loading code might
be: be:
@ -182,14 +182,14 @@ void MyWidget::load()
} }
</pre> </pre>
Note how the <a href="ntqdragobject.html">TQDragObject</a> subclass is called "MyCadDrag", not Note how the <a href="tqdragobject.html">TQDragObject</a> subclass is called "MyCadDrag", not
"MyDxfDrag": because in the future you might extend it to provide "MyDxfDrag": because in the future you might extend it to provide
DXF, DWG, SVF, WMF, or even <a href="ntqpicture.html">TQPicture</a> data to other applications. DXF, DWG, SVF, WMF, or even <a href="ntqpicture.html">TQPicture</a> data to other applications.
<p> <h2> Drag and Drop Actions <p> <h2> Drag and Drop Actions
</h2> </h2>
<a name="4"></a><p> In the simpler cases, the target of a drag-and-drop receives a copy of <a name="4"></a><p> In the simpler cases, the target of a drag-and-drop receives a copy of
the data being dragged and the source decides whether to delete the the data being dragged and the source decides whether to delete the
original. This is the "Copy" action in <a href="qdropevent.html">TQDropEvent</a>. The target may also original. This is the "Copy" action in <a href="tqdropevent.html">TQDropEvent</a>. The target may also
choose to understand other actions, specifically the Move and Link choose to understand other actions, specifically the Move and Link
actions. If the target understands the Move action, <em>the target</em> is responsible for both the copy and delete operations and actions. If the target understands the Move action, <em>the target</em> is responsible for both the copy and delete operations and
the source will not attempt to delete the data itself. If the target the source will not attempt to delete the data itself. If the target
@ -214,11 +214,11 @@ which of those it can accept. For example, <a href="tqtextdrag.html">TQTextDrag<
for the "<tt>text/plain</tt>" MIME type (ordinary unformatted text), and for the "<tt>text/plain</tt>" MIME type (ordinary unformatted text), and
the Unicode formats "<tt>text/utf16</tt>" and "<tt>text/utf8</tt>"; <a href="tqimagedrag.html">TQImageDrag</a> the Unicode formats "<tt>text/utf16</tt>" and "<tt>text/utf8</tt>"; <a href="tqimagedrag.html">TQImageDrag</a>
provides for "<tt>image/*</tt>", where <tt>*</tt> is any image format that provides for "<tt>image/*</tt>", where <tt>*</tt> is any image format that
<a href="tqimageio.html">TQImageIO</a> supports; and the <a href="quridrag.html">TQUriDrag</a> subclass provides <a href="tqimageio.html">TQImageIO</a> supports; and the <a href="tquridrag.html">TQUriDrag</a> subclass provides
"<tt>text/uri-list</tt>", a standard format for transferring a list of "<tt>text/uri-list</tt>", a standard format for transferring a list of
filenames (or URLs). filenames (or URLs).
<p> To implement drag-and-drop of some type of information for which there <p> To implement drag-and-drop of some type of information for which there
is no available <a href="ntqdragobject.html">TQDragObject</a> subclass, the first and most important is no available <a href="tqdragobject.html">TQDragObject</a> subclass, the first and most important
step is to look for existing formats that are appropriate: the step is to look for existing formats that are appropriate: the
Internet Assigned Numbers Authority (<a href="http://www.iana.org">IANA</a>) provides a <a href="http://www.isi.edu/in-notes/iana/assignments/media-types/">hierarchical Internet Assigned Numbers Authority (<a href="http://www.iana.org">IANA</a>) provides a <a href="http://www.isi.edu/in-notes/iana/assignments/media-types/">hierarchical
list of MIME media types</a> at the Information Sciences Institute list of MIME media types</a> at the Information Sciences Institute
@ -226,12 +226,12 @@ list of MIME media types</a> at the Information Sciences Institute
maximizes the inter-operability of your application with other maximizes the inter-operability of your application with other
software now and in the future. software now and in the future.
<p> To support an additional media type, subclass either TQDragObject or <p> To support an additional media type, subclass either TQDragObject or
<a href="qstoreddrag.html">TQStoredDrag</a>. Subclass TQDragObject when you need to provide support for <a href="tqstoreddrag.html">TQStoredDrag</a>. Subclass TQDragObject when you need to provide support for
multiple media types. Subclass the simpler TQStoredDrag when one type multiple media types. Subclass the simpler TQStoredDrag when one type
is sufficient. is sufficient.
<p> Subclasses of TQDragObject will override the <p> Subclasses of TQDragObject will override the
<a href="qmimesource.html#format">const char* format(int i) const</a> and <a href="tqmimesource.html#format">const char* format(int i) const</a> and
<a href="qmimesource.html#encodedData">TQByteArray encodedData(const char* mimetype) const</a> <a href="tqmimesource.html#encodedData">TQByteArray encodedData(const char* mimetype) const</a>
members, and provide a set-method to encode the media data and static members, and provide a set-method to encode the media data and static
members canDecode() and decode() to decode incoming data, similar to members canDecode() and decode() to decode incoming data, similar to
<a href="tqimagedrag.html#canDecode">bool canDecode(TQMimeSource*) const</a> and <a href="tqimagedrag.html#canDecode">bool canDecode(TQMimeSource*) const</a> and
@ -259,8 +259,8 @@ the drag start point and the drop event might look like this:
<p> <pre> <p> <pre>
void MyEditor::startDrag() void MyEditor::startDrag()
{ {
<a href="ntqdragobject.html">TQDragObject</a> *d = new <a href="tqtextdrag.html">TQTextDrag</a>(myHighlightedText(), this); <a href="tqdragobject.html">TQDragObject</a> *d = new <a href="tqtextdrag.html">TQTextDrag</a>(myHighlightedText(), this);
if ( d-&gt;<a href="ntqdragobject.html#drag">drag</a>() &amp;&amp; d-&gt;<a href="ntqdragobject.html#target">target</a>() != this ) if ( d-&gt;<a href="tqdragobject.html#drag">drag</a>() &amp;&amp; d-&gt;<a href="tqdragobject.html#target">target</a>() != this )
cutMyHighlightedText(); cutMyHighlightedText();
} }

@ -37,21 +37,21 @@ encoding and decoding. See also <a href="dnd.html">Drag and Drop with
TQt.</a> TQt.</a>
<p> <p>
<p><table width="100%"> <p><table width="100%">
<tr bgcolor=#f0f0f0><td><b><a href="qcolordrag.html">TQColorDrag</a></b><td>Drag and drop object for transferring colors <tr bgcolor=#f0f0f0><td><b><a href="tqcolordrag.html">TQColorDrag</a></b><td>Drag and drop object for transferring colors
<tr bgcolor=#f0f0f0><td><b><a href="qdragenterevent.html">TQDragEnterEvent</a></b><td>Event which is sent to the widget when a drag and drop first drags onto the widget <tr bgcolor=#f0f0f0><td><b><a href="tqdragenterevent.html">TQDragEnterEvent</a></b><td>Event which is sent to the widget when a drag and drop first drags onto the widget
<tr bgcolor=#f0f0f0><td><b><a href="qdragleaveevent.html">TQDragLeaveEvent</a></b><td>Event which is sent to the widget when a drag and drop leaves the widget <tr bgcolor=#f0f0f0><td><b><a href="tqdragleaveevent.html">TQDragLeaveEvent</a></b><td>Event which is sent to the widget when a drag and drop leaves the widget
<tr bgcolor=#f0f0f0><td><b><a href="qdragmoveevent.html">TQDragMoveEvent</a></b><td>Event which is sent while a drag and drop is in progress <tr bgcolor=#f0f0f0><td><b><a href="tqdragmoveevent.html">TQDragMoveEvent</a></b><td>Event which is sent while a drag and drop is in progress
<tr bgcolor=#f0f0f0><td><b><a href="ntqdragobject.html">TQDragObject</a></b><td>Encapsulates MIME-based data transfer <tr bgcolor=#f0f0f0><td><b><a href="tqdragobject.html">TQDragObject</a></b><td>Encapsulates MIME-based data transfer
<tr bgcolor=#f0f0f0><td><b><a href="qdropevent.html">TQDropEvent</a></b><td>Event which is sent when a drag and drop is completed <tr bgcolor=#f0f0f0><td><b><a href="tqdropevent.html">TQDropEvent</a></b><td>Event which is sent when a drag and drop is completed
<tr bgcolor=#f0f0f0><td><b><a href="tqicondrag.html">TQIconDrag</a></b><td>Supports drag and drop operations within a TQIconView <tr bgcolor=#f0f0f0><td><b><a href="tqicondrag.html">TQIconDrag</a></b><td>Supports drag and drop operations within a TQIconView
<tr bgcolor=#f0f0f0><td><b><a href="tqicondragitem.html">TQIconDragItem</a></b><td>Encapsulates a drag item <tr bgcolor=#f0f0f0><td><b><a href="tqicondragitem.html">TQIconDragItem</a></b><td>Encapsulates a drag item
<tr bgcolor=#f0f0f0><td><b><a href="tqimagedrag.html">TQImageDrag</a></b><td>Drag and drop object for transferring images <tr bgcolor=#f0f0f0><td><b><a href="tqimagedrag.html">TQImageDrag</a></b><td>Drag and drop object for transferring images
<tr bgcolor=#f0f0f0><td><b><a href="qmacmime.html">TQMacMime</a></b><td>Maps open-standard MIME to Mac flavors <tr bgcolor=#f0f0f0><td><b><a href="tqmacmime.html">TQMacMime</a></b><td>Maps open-standard MIME to Mac flavors
<tr bgcolor=#f0f0f0><td><b><a href="qmimesource.html">TQMimeSource</a></b><td>Abstraction of objects which provide formatted data of a certain MIME type <tr bgcolor=#f0f0f0><td><b><a href="tqmimesource.html">TQMimeSource</a></b><td>Abstraction of objects which provide formatted data of a certain MIME type
<tr bgcolor=#f0f0f0><td><b><a href="qstoreddrag.html">TQStoredDrag</a></b><td>Simple stored-value drag object for arbitrary MIME data <tr bgcolor=#f0f0f0><td><b><a href="tqstoreddrag.html">TQStoredDrag</a></b><td>Simple stored-value drag object for arbitrary MIME data
<tr bgcolor=#f0f0f0><td><b><a href="tqtextdrag.html">TQTextDrag</a></b><td>Drag and drop object for transferring plain and Unicode text <tr bgcolor=#f0f0f0><td><b><a href="tqtextdrag.html">TQTextDrag</a></b><td>Drag and drop object for transferring plain and Unicode text
<tr bgcolor=#f0f0f0><td><b><a href="quridrag.html">TQUriDrag</a></b><td>Drag object for a list of URI references <tr bgcolor=#f0f0f0><td><b><a href="tquridrag.html">TQUriDrag</a></b><td>Drag object for a list of URI references
<tr bgcolor=#f0f0f0><td><b><a href="qwindowsmime.html">TQWindowsMime</a></b><td>Maps open-standard MIME to Window Clipboard formats <tr bgcolor=#f0f0f0><td><b><a href="tqwindowsmime.html">TQWindowsMime</a></b><td>Maps open-standard MIME to Window Clipboard formats
</table> </table>
<!-- eof --> <!-- eof -->
<p><address><hr><div align=center> <p><address><hr><div align=center>

@ -40,7 +40,7 @@ event handling, access to system settings, <a href="i18n.html#internationalizati
<tr bgcolor=#f0f0f0><td><b><a href="ntqdesktopwidget.html">TQDesktopWidget</a></b><td>Access to screen information on multi-head systems <tr bgcolor=#f0f0f0><td><b><a href="ntqdesktopwidget.html">TQDesktopWidget</a></b><td>Access to screen information on multi-head systems
<tr bgcolor=#f0f0f0><td><b><a href="ntqevent.html">TQEvent</a></b><td>The base class of all event classes. Event objects contain event parameters <tr bgcolor=#f0f0f0><td><b><a href="ntqevent.html">TQEvent</a></b><td>The base class of all event classes. Event objects contain event parameters
<tr bgcolor=#f0f0f0><td><b><a href="ntqfontdatabase.html">TQFontDatabase</a></b><td>Information about the fonts available in the underlying window system <tr bgcolor=#f0f0f0><td><b><a href="ntqfontdatabase.html">TQFontDatabase</a></b><td>Information about the fonts available in the underlying window system
<tr bgcolor=#f0f0f0><td><b><a href="qmimesourcefactory.html">TQMimeSourceFactory</a></b><td>Extensible provider of mime-typed data <tr bgcolor=#f0f0f0><td><b><a href="tqmimesourcefactory.html">TQMimeSourceFactory</a></b><td>Extensible provider of mime-typed data
<tr bgcolor=#f0f0f0><td><b><a href="tqmutex.html">TQMutex</a></b><td>Access serialization between threads <tr bgcolor=#f0f0f0><td><b><a href="tqmutex.html">TQMutex</a></b><td>Access serialization between threads
<tr bgcolor=#f0f0f0><td><b><a href="tqmutexlocker.html">TQMutexLocker</a></b><td>Simplifies locking and unlocking TQMutexes <tr bgcolor=#f0f0f0><td><b><a href="tqmutexlocker.html">TQMutexLocker</a></b><td>Simplifies locking and unlocking TQMutexes
<tr bgcolor=#f0f0f0><td><b><a href="ntqpixmapcache.html">TQPixmapCache</a></b><td>Application-global cache for pixmaps <tr bgcolor=#f0f0f0><td><b><a href="ntqpixmapcache.html">TQPixmapCache</a></b><td>Application-global cache for pixmaps

@ -41,10 +41,10 @@ and <a href="signalsandslots.html">Signals and Slots</a>.
<tr bgcolor=#f0f0f0><td><b><a href="qcloseevent.html">TQCloseEvent</a></b><td>Parameters that describe a close event <tr bgcolor=#f0f0f0><td><b><a href="qcloseevent.html">TQCloseEvent</a></b><td>Parameters that describe a close event
<tr bgcolor=#f0f0f0><td><b><a href="qcontextmenuevent.html">TQContextMenuEvent</a></b><td>Parameters that describe a context menu event <tr bgcolor=#f0f0f0><td><b><a href="qcontextmenuevent.html">TQContextMenuEvent</a></b><td>Parameters that describe a context menu event
<tr bgcolor=#f0f0f0><td><b><a href="qcustomevent.html">TQCustomEvent</a></b><td>Support for custom events <tr bgcolor=#f0f0f0><td><b><a href="qcustomevent.html">TQCustomEvent</a></b><td>Support for custom events
<tr bgcolor=#f0f0f0><td><b><a href="qdragenterevent.html">TQDragEnterEvent</a></b><td>Event which is sent to the widget when a drag and drop first drags onto the widget <tr bgcolor=#f0f0f0><td><b><a href="tqdragenterevent.html">TQDragEnterEvent</a></b><td>Event which is sent to the widget when a drag and drop first drags onto the widget
<tr bgcolor=#f0f0f0><td><b><a href="qdragleaveevent.html">TQDragLeaveEvent</a></b><td>Event which is sent to the widget when a drag and drop leaves the widget <tr bgcolor=#f0f0f0><td><b><a href="tqdragleaveevent.html">TQDragLeaveEvent</a></b><td>Event which is sent to the widget when a drag and drop leaves the widget
<tr bgcolor=#f0f0f0><td><b><a href="qdragmoveevent.html">TQDragMoveEvent</a></b><td>Event which is sent while a drag and drop is in progress <tr bgcolor=#f0f0f0><td><b><a href="tqdragmoveevent.html">TQDragMoveEvent</a></b><td>Event which is sent while a drag and drop is in progress
<tr bgcolor=#f0f0f0><td><b><a href="qdropevent.html">TQDropEvent</a></b><td>Event which is sent when a drag and drop is completed <tr bgcolor=#f0f0f0><td><b><a href="tqdropevent.html">TQDropEvent</a></b><td>Event which is sent when a drag and drop is completed
<tr bgcolor=#f0f0f0><td><b><a href="ntqevent.html">TQEvent</a></b><td>The base class of all event classes. Event objects contain event parameters <tr bgcolor=#f0f0f0><td><b><a href="ntqevent.html">TQEvent</a></b><td>The base class of all event classes. Event objects contain event parameters
<tr bgcolor=#f0f0f0><td><b><a href="ntqeventloop.html">TQEventLoop</a></b><td>Manages the event queue <tr bgcolor=#f0f0f0><td><b><a href="ntqeventloop.html">TQEventLoop</a></b><td>Manages the event queue
<tr bgcolor=#f0f0f0><td><b><a href="qfocusevent.html">TQFocusEvent</a></b><td>Event parameters for widget focus events <tr bgcolor=#f0f0f0><td><b><a href="qfocusevent.html">TQFocusEvent</a></b><td>Event parameters for widget focus events

@ -80,7 +80,7 @@ public:
const char* format( int i ) const; const char* format( int i ) const;
<a href="qbytearray.html">TQByteArray</a> encodedData( const char* mime ) const; <a href="qbytearray.html">TQByteArray</a> encodedData( const char* mime ) const;
static bool canDecode( <a href="qmimesource.html">TQMimeSource</a>* e ); static bool canDecode( <a href="tqmimesource.html">TQMimeSource</a>* e );
void append( const <a href="tqicondragitem.html">TQIconDragItem</a> &amp;item, const <a href="ntqrect.html">TQRect</a> &amp;pr, const <a href="ntqrect.html">TQRect</a> &amp;tr, const <a href="tqstring.html">TQString</a> &amp;url ); void append( const <a href="tqicondragitem.html">TQIconDragItem</a> &amp;item, const <a href="ntqrect.html">TQRect</a> &amp;pr, const <a href="ntqrect.html">TQRect</a> &amp;tr, const <a href="tqstring.html">TQString</a> &amp;url );
private: private:
@ -127,7 +127,7 @@ signals:
protected slots: protected slots:
void itemDoubleClicked( <a href="tqiconviewitem.html">TQIconViewItem</a> *i ); void itemDoubleClicked( <a href="tqiconviewitem.html">TQIconViewItem</a> *i );
void slotDropped( <a href="qdropevent.html">TQDropEvent</a> *e, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt; &amp; ); void slotDropped( <a href="tqdropevent.html">TQDropEvent</a> *e, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt; &amp; );
void viewLarge(); void viewLarge();
void viewSmall(); void viewSmall();
@ -186,7 +186,7 @@ public:
{ return itemType; } { return itemType; }
<a href="tqstring.html">TQString</a> filename() const { return itemFileName; } <a href="tqstring.html">TQString</a> filename() const { return itemFileName; }
virtual bool acceptDrop( const <a href="qmimesource.html">TQMimeSource</a> *e ) const; virtual bool acceptDrop( const <a href="tqmimesource.html">TQMimeSource</a> *e ) const;
virtual void setText( const <a href="tqstring.html">TQString</a> &amp;text ); virtual void setText( const <a href="tqstring.html">TQString</a> &amp;text );
virtual TQPixmap *pixmap() const; virtual TQPixmap *pixmap() const;
@ -198,7 +198,7 @@ public:
void paintItem( <a href="ntqpainter.html">TQPainter</a> *p, const <a href="qcolorgroup.html">TQColorGroup</a> &amp;cg ); void paintItem( <a href="ntqpainter.html">TQPainter</a> *p, const <a href="qcolorgroup.html">TQColorGroup</a> &amp;cg );
protected: protected:
virtual void dropped( <a href="qdropevent.html">TQDropEvent</a> *e, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt; &amp; ); virtual void dropped( <a href="tqdropevent.html">TQDropEvent</a> *e, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt; &amp; );
<a href="tqstring.html">TQString</a> itemFileName; <a href="tqstring.html">TQString</a> itemFileName;
<a href="ntqfileinfo.html">TQFileInfo</a> *itemFileInfo; <a href="ntqfileinfo.html">TQFileInfo</a> *itemFileInfo;
@ -229,9 +229,9 @@ protected:
#include &lt;<a href="qpainter-h.html">ntqpainter.h</a>&gt; #include &lt;<a href="qpainter-h.html">ntqpainter.h</a>&gt;
#include &lt;<a href="tqstringlist-h.html">tqstringlist.h</a>&gt; #include &lt;<a href="tqstringlist-h.html">tqstringlist.h</a>&gt;
#include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt; #include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt;
#include &lt;<a href="qmime-h.html">ntqmime.h</a>&gt; #include &lt;<a href="tqmime-h.html">tqmime.h</a>&gt;
#include &lt;<a href="tqstrlist-h.html">tqstrlist.h</a>&gt; #include &lt;<a href="tqstrlist-h.html">tqstrlist.h</a>&gt;
#include &lt;<a href="qdragobject-h.html">ntqdragobject.h</a>&gt; #include &lt;<a href="tqdragobject-h.html">tqdragobject.h</a>&gt;
#include &lt;<a href="qmessagebox-h.html">ntqmessagebox.h</a>&gt; #include &lt;<a href="qmessagebox-h.html">ntqmessagebox.h</a>&gt;
#include &lt;<a href="qevent-h.html">ntqevent.h</a>&gt; #include &lt;<a href="qevent-h.html">ntqevent.h</a>&gt;
#include &lt;<a href="tqpopupmenu-h.html">tqpopupmenu.h</a>&gt; #include &lt;<a href="tqpopupmenu-h.html">tqpopupmenu.h</a>&gt;
@ -474,7 +474,7 @@ static void cleanup()
{ {
} }
<a name="x832"></a>const char* TQtFileIconDrag::<a href="qmimesource.html#format">format</a>( int i ) const <a name="x832"></a>const char* TQtFileIconDrag::<a href="tqmimesource.html#format">format</a>( int i ) const
{ {
if ( i == 0 ) if ( i == 0 )
return "application/x-qiconlist"; return "application/x-qiconlist";
@ -497,10 +497,10 @@ static void cleanup()
return a; return a;
} }
<a name="x830"></a>bool TQtFileIconDrag::<a href="tqicondrag.html#canDecode">canDecode</a>( <a href="qmimesource.html">TQMimeSource</a>* e ) <a name="x830"></a>bool TQtFileIconDrag::<a href="tqicondrag.html#canDecode">canDecode</a>( <a href="tqmimesource.html">TQMimeSource</a>* e )
{ {
<a name="x819"></a> return e-&gt;<a href="qdropevent.html#provides">provides</a>( "application/x-qiconlist" ) || <a name="x819"></a> return e-&gt;<a href="tqdropevent.html#provides">provides</a>( "application/x-qiconlist" ) ||
e-&gt;<a href="qdropevent.html#provides">provides</a>( "text/uri-list" ); e-&gt;<a href="tqdropevent.html#provides">provides</a>( "text/uri-list" );
} }
<a name="x829"></a>void TQtFileIconDrag::<a href="tqicondrag.html#append">append</a>( const <a href="tqicondragitem.html">TQIconDragItem</a> &amp;item, const <a href="ntqrect.html">TQRect</a> &amp;pr, <a name="x829"></a>void TQtFileIconDrag::<a href="tqicondrag.html#append">append</a>( const <a href="tqicondragitem.html">TQIconDragItem</a> &amp;item, const <a href="ntqrect.html">TQRect</a> &amp;pr,
@ -514,7 +514,7 @@ static void cleanup()
<a name="x810"></a> ourUrl = dir.<a href="ntqdir.html#absPath">absPath</a>(); <a name="x810"></a> ourUrl = dir.<a href="ntqdir.html#absPath">absPath</a>();
} }
#endif #endif
urls &lt;&lt; TQUriDrag::<a href="quridrag.html#localFileToUri">localFileToUri</a>(ourUrl); urls &lt;&lt; TQUriDrag::<a href="tquridrag.html#localFileToUri">localFileToUri</a>(ourUrl);
} }
/***************************************************************************** /*****************************************************************************
@ -622,29 +622,29 @@ TQtFileIconViewItem::~TQtFileIconViewItem()
} }
} }
<a name="x836"></a>bool TQtFileIconViewItem::<a href="tqiconviewitem.html#acceptDrop">acceptDrop</a>( const <a href="qmimesource.html">TQMimeSource</a> *e ) const <a name="x836"></a>bool TQtFileIconViewItem::<a href="tqiconviewitem.html#acceptDrop">acceptDrop</a>( const <a href="tqmimesource.html">TQMimeSource</a> *e ) const
{ {
if ( type() == Dir &amp;&amp; e-&gt;<a href="qdropevent.html#provides">provides</a>( "text/uri-list" ) &amp;&amp; if ( type() == Dir &amp;&amp; e-&gt;<a href="tqdropevent.html#provides">provides</a>( "text/uri-list" ) &amp;&amp;
dropEnabled() ) dropEnabled() )
return TRUE; return TRUE;
return FALSE; return FALSE;
} }
<a name="x839"></a>void TQtFileIconViewItem::<a href="tqiconviewitem.html#dropped">dropped</a>( <a href="qdropevent.html">TQDropEvent</a> *e, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt; &amp; ) <a name="x839"></a>void TQtFileIconViewItem::<a href="tqiconviewitem.html#dropped">dropped</a>( <a href="tqdropevent.html">TQDropEvent</a> *e, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt; &amp; )
{ {
timer.stop(); timer.stop();
if ( !TQUriDrag::canDecode( e ) ) { if ( !TQUriDrag::canDecode( e ) ) {
<a name="x818"></a> e-&gt;<a href="qdropevent.html#ignore">ignore</a>(); <a name="x818"></a> e-&gt;<a href="tqdropevent.html#ignore">ignore</a>();
return; return;
} }
<a href="tqstringlist.html">TQStringList</a> lst; <a href="tqstringlist.html">TQStringList</a> lst;
<a name="x873"></a> TQUriDrag::<a href="quridrag.html#decodeLocalFiles">decodeLocalFiles</a>( e, lst ); <a name="x873"></a> TQUriDrag::<a href="tquridrag.html#decodeLocalFiles">decodeLocalFiles</a>( e, lst );
<a href="tqstring.html">TQString</a> str; <a href="tqstring.html">TQString</a> str;
<a name="x817"></a> if ( e-&gt;<a href="qdropevent.html#action">action</a>() == TQDropEvent::Copy ) <a name="x817"></a> if ( e-&gt;<a href="tqdropevent.html#action">action</a>() == TQDropEvent::Copy )
str = "Copy\n\n"; str = "Copy\n\n";
else else
str = "Move\n\n"; str = "Move\n\n";
@ -654,10 +654,10 @@ TQtFileIconViewItem::~TQtFileIconViewItem()
"To\n\n" "To\n\n"
" %1" ).arg( filename() ); " %1" ).arg( filename() );
<a name="x859"></a> TQMessageBox::<a href="ntqmessagebox.html#information">information</a>( iconView(), e-&gt;<a href="qdropevent.html#action">action</a>() == TQDropEvent::Copy ? "Copy" : "Move" , str, "Not Implemented" ); <a name="x859"></a> TQMessageBox::<a href="ntqmessagebox.html#information">information</a>( iconView(), e-&gt;<a href="tqdropevent.html#action">action</a>() == TQDropEvent::Copy ? "Copy" : "Move" , str, "Not Implemented" );
if ( e-&gt;<a href="qdropevent.html#action">action</a>() == TQDropEvent::Move ) if ( e-&gt;<a href="tqdropevent.html#action">action</a>() == TQDropEvent::Move )
TQMessageBox::<a href="ntqmessagebox.html#information">information</a>( iconView(), "Remove" , str, "Not Implemented" ); TQMessageBox::<a href="ntqmessagebox.html#information">information</a>( iconView(), "Remove" , str, "Not Implemented" );
<a name="x816"></a> e-&gt;<a href="qdropevent.html#acceptAction">acceptAction</a>(); <a name="x816"></a> e-&gt;<a href="tqdropevent.html#acceptAction">acceptAction</a>();
} }
<a name="x837"></a>void TQtFileIconViewItem::<a href="tqiconviewitem.html#dragEntered">dragEntered</a>() <a name="x837"></a>void TQtFileIconViewItem::<a href="tqiconviewitem.html#dragEntered">dragEntered</a>()
@ -720,8 +720,8 @@ TQtFileIconViewItem::~TQtFileIconViewItem()
this, TQ_SLOT( itemDoubleClicked( <a href="tqiconviewitem.html">TQIconViewItem</a> * ) ) ); this, TQ_SLOT( itemDoubleClicked( <a href="tqiconviewitem.html">TQIconViewItem</a> * ) ) );
<a href="tqobject.html#connect">connect</a>( this, TQ_SIGNAL( <a href="tqiconview.html#returnPressed">returnPressed</a>( <a href="tqiconviewitem.html">TQIconViewItem</a> * ) ), <a href="tqobject.html#connect">connect</a>( this, TQ_SIGNAL( <a href="tqiconview.html#returnPressed">returnPressed</a>( <a href="tqiconviewitem.html">TQIconViewItem</a> * ) ),
this, TQ_SLOT( itemDoubleClicked( <a href="tqiconviewitem.html">TQIconViewItem</a> * ) ) ); this, TQ_SLOT( itemDoubleClicked( <a href="tqiconviewitem.html">TQIconViewItem</a> * ) ) );
<a href="tqobject.html#connect">connect</a>( this, TQ_SIGNAL( <a href="tqiconview.html#dropped">dropped</a>( <a href="qdropevent.html">TQDropEvent</a> *, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt; &amp; ) ), <a href="tqobject.html#connect">connect</a>( this, TQ_SIGNAL( <a href="tqiconview.html#dropped">dropped</a>( <a href="tqdropevent.html">TQDropEvent</a> *, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt; &amp; ) ),
this, TQ_SLOT( slotDropped( <a href="qdropevent.html">TQDropEvent</a> *, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt; &amp; ) ) ); this, TQ_SLOT( slotDropped( <a href="tqdropevent.html">TQDropEvent</a> *, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt; &amp; ) ) );
<a href="tqobject.html#connect">connect</a>( this, TQ_SIGNAL( <a href="tqiconview.html#contextMenuRequested">contextMenuRequested</a>( <a href="tqiconviewitem.html">TQIconViewItem</a> *, const <a href="ntqpoint.html">TQPoint</a> &amp; ) ), <a href="tqobject.html#connect">connect</a>( this, TQ_SIGNAL( <a href="tqiconview.html#contextMenuRequested">contextMenuRequested</a>( <a href="tqiconviewitem.html">TQIconViewItem</a> *, const <a href="ntqpoint.html">TQPoint</a> &amp; ) ),
this, TQ_SLOT( slotRightPressed( <a href="tqiconviewitem.html">TQIconViewItem</a> * ) ) ); this, TQ_SLOT( slotRightPressed( <a href="tqiconviewitem.html">TQIconViewItem</a> * ) ) );
@ -879,7 +879,7 @@ void <a name="f308"></a>TQtFileIconView::itemDoubleClicked( <a href="tqiconviewi
<a name="x809"></a> <a href="ntqpoint.html">TQPoint</a> orig = <a href="ntqscrollview.html#viewportToContents">viewportToContents</a>( <a href="ntqscrollview.html#viewport">viewport</a>()-&gt;mapFromGlobal( TQCursor::<a href="ntqcursor.html#pos">pos</a>() ) ); <a name="x809"></a> <a href="ntqpoint.html">TQPoint</a> orig = <a href="ntqscrollview.html#viewportToContents">viewportToContents</a>( <a href="ntqscrollview.html#viewport">viewport</a>()-&gt;mapFromGlobal( TQCursor::<a href="ntqcursor.html#pos">pos</a>() ) );
TQtFileIconDrag *drag = new TQtFileIconDrag( <a href="ntqscrollview.html#viewport">viewport</a>() ); TQtFileIconDrag *drag = new TQtFileIconDrag( <a href="ntqscrollview.html#viewport">viewport</a>() );
<a name="x815"></a> drag-&gt;<a href="ntqdragobject.html#setPixmap">setPixmap</a>( *currentItem()-&gt;pixmap(), <a name="x815"></a> drag-&gt;<a href="tqdragobject.html#setPixmap">setPixmap</a>( *currentItem()-&gt;pixmap(),
TQPoint( <a href="tqiconview.html#currentItem">currentItem</a>()-&gt;pixmapRect().width() / 2, currentItem()-&gt;pixmapRect().height() / 2 ) ); TQPoint( <a href="tqiconview.html#currentItem">currentItem</a>()-&gt;pixmapRect().width() / 2, currentItem()-&gt;pixmapRect().height() / 2 ) );
for ( TQtFileIconViewItem *item = (TQtFileIconViewItem*)<a href="tqiconview.html#firstItem">firstItem</a>(); item; for ( TQtFileIconViewItem *item = (TQtFileIconViewItem*)<a href="tqiconview.html#firstItem">firstItem</a>(); item;
<a name="x841"></a> item = (TQtFileIconViewItem*)item-&gt;<a href="tqiconviewitem.html#nextItem">nextItem</a>() ) { <a name="x841"></a> item = (TQtFileIconViewItem*)item-&gt;<a href="tqiconviewitem.html#nextItem">nextItem</a>() ) {
@ -909,20 +909,20 @@ void <a name="f308"></a>TQtFileIconView::itemDoubleClicked( <a href="tqiconviewi
TQIconView::<a href="tqwidget.html#keyPressEvent">keyPressEvent</a>( e ); TQIconView::<a href="tqwidget.html#keyPressEvent">keyPressEvent</a>( e );
} }
void <a name="f309"></a>TQtFileIconView::slotDropped( <a href="qdropevent.html">TQDropEvent</a> *e, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt; &amp; ) void <a name="f309"></a>TQtFileIconView::slotDropped( <a href="tqdropevent.html">TQDropEvent</a> *e, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt; &amp; )
{ {
if ( openItem ) if ( openItem )
openItem-&gt;timer.stop(); openItem-&gt;timer.stop();
if ( !TQUriDrag::canDecode( e ) ) { if ( !TQUriDrag::canDecode( e ) ) {
e-&gt;<a href="qdropevent.html#ignore">ignore</a>(); e-&gt;<a href="tqdropevent.html#ignore">ignore</a>();
return; return;
} }
<a href="tqstringlist.html">TQStringList</a> lst; <a href="tqstringlist.html">TQStringList</a> lst;
TQUriDrag::<a href="quridrag.html#decodeLocalFiles">decodeLocalFiles</a>( e, lst ); TQUriDrag::<a href="tquridrag.html#decodeLocalFiles">decodeLocalFiles</a>( e, lst );
<a href="tqstring.html">TQString</a> str; <a href="tqstring.html">TQString</a> str;
if ( e-&gt;<a href="qdropevent.html#action">action</a>() == TQDropEvent::Copy ) if ( e-&gt;<a href="tqdropevent.html#action">action</a>() == TQDropEvent::Copy )
str = "Copy\n\n"; str = "Copy\n\n";
else else
str = "Move\n\n"; str = "Move\n\n";
@ -932,10 +932,10 @@ void <a name="f309"></a>TQtFileIconView::slotDropped( <a href="qdropevent.html">
"To\n\n" "To\n\n"
" %1" ).arg( viewDir.absPath() ); " %1" ).arg( viewDir.absPath() );
TQMessageBox::<a href="ntqmessagebox.html#information">information</a>( this, e-&gt;<a href="qdropevent.html#action">action</a>() == TQDropEvent::Copy ? "Copy" : "Move" , str, "Not Implemented" ); TQMessageBox::<a href="ntqmessagebox.html#information">information</a>( this, e-&gt;<a href="tqdropevent.html#action">action</a>() == TQDropEvent::Copy ? "Copy" : "Move" , str, "Not Implemented" );
if ( e-&gt;<a href="qdropevent.html#action">action</a>() == TQDropEvent::Move ) if ( e-&gt;<a href="tqdropevent.html#action">action</a>() == TQDropEvent::Move )
<a name="x872"></a> TQMessageBox::<a href="ntqmessagebox.html#information">information</a>( this, "Remove" , TQDir::convertSeparators(lst.<a href="tqstringlist.html#join">join</a>("\n")), "Not Implemented" ); <a name="x872"></a> TQMessageBox::<a href="ntqmessagebox.html#information">information</a>( this, "Remove" , TQDir::convertSeparators(lst.<a href="tqstringlist.html#join">join</a>("\n")), "Not Implemented" );
e-&gt;<a href="qdropevent.html#acceptAction">acceptAction</a>(); e-&gt;<a href="tqdropevent.html#acceptAction">acceptAction</a>();
openItem = 0; openItem = 0;
} }

@ -54,13 +54,13 @@ abort:
<a href="ntqdir.html#absFilePath">TQDir</a> <a href="ntqfileinfo.html#absFilePath">TQFileInfo</a><li>absPath: <a href="ntqdir.html#absFilePath">TQDir</a> <a href="ntqfileinfo.html#absFilePath">TQFileInfo</a><li>absPath:
<a href="ntqdir.html#absPath">TQDir</a><li>accel: <a href="ntqdir.html#absPath">TQDir</a><li>accel:
<a href="tqaction.html#accel">TQAction</a> <a href="ntqbutton.html#accel">TQButton</a> <a href="ntqbutton.html#accel">TQCheckBox</a> <a href="tqmenudata.html#accel">TQMenuData</a> <a href="tqmenudata.html#accel">TQPopupMenu</a> <a href="ntqbutton.html#accel">TQPushButton</a> <a href="ntqbutton.html#accel">TQRadioButton</a><li>accept: <a href="tqaction.html#accel">TQAction</a> <a href="ntqbutton.html#accel">TQButton</a> <a href="ntqbutton.html#accel">TQCheckBox</a> <a href="tqmenudata.html#accel">TQMenuData</a> <a href="tqmenudata.html#accel">TQPopupMenu</a> <a href="ntqbutton.html#accel">TQPushButton</a> <a href="ntqbutton.html#accel">TQRadioButton</a><li>accept:
<a href="qcloseevent.html#accept">TQCloseEvent</a> <a href="qcontextmenuevent.html#accept">TQContextMenuEvent</a> <a href="ntqdialog.html#accept">TQDialog</a> <a href="qdragmoveevent.html#accept">TQDragMoveEvent</a> <a href="qdropevent.html#accept">TQDropEvent</a> <a href="qimevent.html#accept">TQIMEvent</a> <a href="tqicondragevent.html#accept">TQIconDragEvent</a> <a href="qkeyevent.html#accept">TQKeyEvent</a> <a href="qmouseevent.html#accept">TQMouseEvent</a> <a href="ntqsocketdevice.html#accept">TQSocketDevice</a> <a href="qtabletevent.html#accept">TQTabletEvent</a> <a href="qwheelevent.html#accept">TQWheelEvent</a><li>acceptAction: <a href="qcloseevent.html#accept">TQCloseEvent</a> <a href="qcontextmenuevent.html#accept">TQContextMenuEvent</a> <a href="ntqdialog.html#accept">TQDialog</a> <a href="tqdragmoveevent.html#accept">TQDragMoveEvent</a> <a href="tqdropevent.html#accept">TQDropEvent</a> <a href="qimevent.html#accept">TQIMEvent</a> <a href="tqicondragevent.html#accept">TQIconDragEvent</a> <a href="qkeyevent.html#accept">TQKeyEvent</a> <a href="qmouseevent.html#accept">TQMouseEvent</a> <a href="ntqsocketdevice.html#accept">TQSocketDevice</a> <a href="qtabletevent.html#accept">TQTabletEvent</a> <a href="qwheelevent.html#accept">TQWheelEvent</a><li>acceptAction:
<a href="qdropevent.html#acceptAction">TQDropEvent</a><li>acceptCallback: <a href="tqdropevent.html#acceptAction">TQDropEvent</a><li>acceptCallback:
<a href="qmotifdialog.html#acceptCallback">TQMotifDialog</a><li>acceptDrop: <a href="qmotifdialog.html#acceptCallback">TQMotifDialog</a><li>acceptDrop:
<a href="tqiconviewitem.html#acceptDrop">TQIconViewItem</a> <a href="qlistviewitem.html#acceptDrop">TQListViewItem</a><li>acceptDrops: <a href="tqiconviewitem.html#acceptDrop">TQIconViewItem</a> <a href="qlistviewitem.html#acceptDrop">TQListViewItem</a><li>acceptDrops:
<a href="tqwidget.html#acceptDrops">TQWidget</a><li>accum: <a href="tqwidget.html#acceptDrops">TQWidget</a><li>accum:
<a href="qglformat.html#accum">TQGLFormat</a><li>action: <a href="qglformat.html#accum">TQGLFormat</a><li>action:
<a href="qdropevent.html#action">TQDropEvent</a><li>activate: <a href="tqdropevent.html#action">TQDropEvent</a><li>activate:
<a href="tqaction.html#activate">TQAction</a> <a href="qchecklistitem.html#activate">TQCheckListItem</a> <a href="ntqlayout.html#activate">TQLayout</a> <a href="qlistviewitem.html#activate">TQListViewItem</a> <a href="ntqsignal.html#activate">TQSignal</a><li>activateItemAt: <a href="tqaction.html#activate">TQAction</a> <a href="qchecklistitem.html#activate">TQCheckListItem</a> <a href="ntqlayout.html#activate">TQLayout</a> <a href="qlistviewitem.html#activate">TQListViewItem</a> <a href="ntqsignal.html#activate">TQSignal</a><li>activateItemAt:
<a href="tqmenudata.html#activateItemAt">TQMenuData</a><li>activateNextCell: <a href="tqmenudata.html#activateItemAt">TQMenuData</a><li>activateNextCell:
<a href="ntqtable.html#activateNextCell">TQTable</a><li>activateNextWindow: <a href="ntqtable.html#activateNextCell">TQTable</a><li>activateNextWindow:
@ -86,8 +86,8 @@ abort:
<a href="tqsqldatabase.html#addDatabase">TQSqlDatabase</a><li>addDays: <a href="tqsqldatabase.html#addDatabase">TQSqlDatabase</a><li>addDays:
<a href="tqdate.html#addDays">TQDate</a> <a href="tqdatetime.html#addDays">TQDateTime</a><li>addDockWindow: <a href="tqdate.html#addDays">TQDate</a> <a href="tqdatetime.html#addDays">TQDateTime</a><li>addDockWindow:
<a href="tqmainwindow.html#addDockWindow">TQMainWindow</a><li>addFactory: <a href="tqmainwindow.html#addDockWindow">TQMainWindow</a><li>addFactory:
<a href="qmimesourcefactory.html#addFactory">TQMimeSourceFactory</a><li>addFilePath: <a href="tqmimesourcefactory.html#addFactory">TQMimeSourceFactory</a><li>addFilePath:
<a href="qmimesourcefactory.html#addFilePath">TQMimeSourceFactory</a><li>addFilter: <a href="tqmimesourcefactory.html#addFilePath">TQMimeSourceFactory</a><li>addFilter:
<a href="ntqfiledialog.html#addFilter">TQFileDialog</a><li>addItem: <a href="ntqfiledialog.html#addFilter">TQFileDialog</a><li>addItem:
<a href="qboxlayout.html#addItem">TQBoxLayout</a> <a href="qgridlayout.html#addItem">TQGridLayout</a> <a href="ntqlayout.html#addItem">TQLayout</a> <a href="tqtoolbox.html#addItem">TQToolBox</a><li>addLabel: <a href="qboxlayout.html#addItem">TQBoxLayout</a> <a href="qgridlayout.html#addItem">TQGridLayout</a> <a href="ntqlayout.html#addItem">TQLayout</a> <a href="tqtoolbox.html#addItem">TQToolBox</a><li>addLabel:
<a href="ntqheader.html#addLabel">TQHeader</a><li>addLayout: <a href="ntqheader.html#addLabel">TQHeader</a><li>addLayout:
@ -133,7 +133,7 @@ abort:
<a href="tqsqlquery.html#afterSeek">TQSqlQuery</a><li>alignment: <a href="tqsqlquery.html#afterSeek">TQSqlQuery</a><li>alignment:
<a href="ntqgroupbox.html#alignment">TQGroupBox</a> <a href="ntqlabel.html#alignment">TQLabel</a> <a href="qlayoutitem.html#alignment">TQLayoutItem</a> <a href="ntqlineedit.html#alignment">TQLineEdit</a> <a href="ntqmultilineedit.html#alignment">TQMultiLineEdit</a> <a href="tqstylesheetitem.html#alignment">TQStyleSheetItem</a> <a href="qtableitem.html#alignment">TQTableItem</a> <a href="tqtextedit.html#alignment">TQTextEdit</a><li>alignmentRect: <a href="ntqgroupbox.html#alignment">TQGroupBox</a> <a href="ntqlabel.html#alignment">TQLabel</a> <a href="qlayoutitem.html#alignment">TQLayoutItem</a> <a href="ntqlineedit.html#alignment">TQLineEdit</a> <a href="ntqmultilineedit.html#alignment">TQMultiLineEdit</a> <a href="tqstylesheetitem.html#alignment">TQStyleSheetItem</a> <a href="qtableitem.html#alignment">TQTableItem</a> <a href="tqtextedit.html#alignment">TQTextEdit</a><li>alignmentRect:
<a href="ntqlayout.html#alignmentRect">TQLayout</a><li>all: <a href="ntqlayout.html#alignmentRect">TQLayout</a><li>all:
<a href="qmacmime.html#all">TQMacMime</a> <a href="qwindowsmime.html#all">TQWindowsMime</a><li>allColumnsShowFocus: <a href="tqmacmime.html#all">TQMacMime</a> <a href="tqwindowsmime.html#all">TQWindowsMime</a><li>allColumnsShowFocus:
<a href="ntqlistview.html#allColumnsShowFocus">TQListView</a><li>allGray: <a href="ntqlistview.html#allColumnsShowFocus">TQListView</a><li>allGray:
<a href="tqimage.html#allGray">TQImage</a><li>allItems: <a href="tqimage.html#allGray">TQImage</a><li>allItems:
<a href="tqcanvas.html#allItems">TQCanvas</a><li>allWidgets: <a href="tqcanvas.html#allItems">TQCanvas</a><li>allWidgets:
@ -151,7 +151,7 @@ abort:
<a href="tqcanvasellipse.html#angleStart">TQCanvasEllipse</a><li>animateClick: <a href="tqcanvasellipse.html#angleStart">TQCanvasEllipse</a><li>animateClick:
<a href="ntqbutton.html#animateClick">TQButton</a><li>animated: <a href="ntqbutton.html#animateClick">TQButton</a><li>animated:
<a href="tqcanvasitem.html#animated">TQCanvasItem</a><li>answerRect: <a href="tqcanvasitem.html#animated">TQCanvasItem</a><li>answerRect:
<a href="qdragmoveevent.html#answerRect">TQDragMoveEvent</a><li>append: <a href="tqdragmoveevent.html#answerRect">TQDragMoveEvent</a><li>append:
<a href="ntqcstring.html#append">TQCString</a> <a href="tqicondrag.html#append">TQIconDrag</a> <a href="tqptrlist.html#append">TQPtrList</a> <a href="tqsqlcursor.html#append">TQSqlCursor</a> <a href="tqsqlindex.html#append">TQSqlIndex</a> <a href="tqsqlrecord.html#append">TQSqlRecord</a> <a href="tqstring.html#append">TQString</a> <a href="tqtextedit.html#append">TQTextEdit</a> <a href="tqvaluelist.html#append">TQValueList</a> <a href="tqvaluevector.html#append">TQValueVector</a> <a href="tqxmlattributes.html#append">TQXmlAttributes</a><li>appendChild: <a href="ntqcstring.html#append">TQCString</a> <a href="tqicondrag.html#append">TQIconDrag</a> <a href="tqptrlist.html#append">TQPtrList</a> <a href="tqsqlcursor.html#append">TQSqlCursor</a> <a href="tqsqlindex.html#append">TQSqlIndex</a> <a href="tqsqlrecord.html#append">TQSqlRecord</a> <a href="tqstring.html#append">TQString</a> <a href="tqtextedit.html#append">TQTextEdit</a> <a href="tqvaluelist.html#append">TQValueList</a> <a href="tqvaluevector.html#append">TQValueVector</a> <a href="tqxmlattributes.html#append">TQXmlAttributes</a><li>appendChild:
<a href="tqdomnode.html#appendChild">TQDomNode</a><li>appendData: <a href="tqdomnode.html#appendChild">TQDomNode</a><li>appendData:
<a href="tqdomcharacterdata.html#appendData">TQDomCharacterData</a><li>applicationContext: <a href="tqdomcharacterdata.html#appendData">TQDomCharacterData</a><li>applicationContext:
@ -312,8 +312,8 @@ c:
<a href="tqiconviewitem.html#calcRect">TQIconViewItem</a><li>calculateField: <a href="tqiconviewitem.html#calcRect">TQIconViewItem</a><li>calculateField:
<a href="tqsqlcursor.html#calculateField">TQSqlCursor</a><li>canCast: <a href="tqsqlcursor.html#calculateField">TQSqlCursor</a><li>canCast:
<a href="ntqvariant.html#canCast">TQVariant</a><li>canConvert: <a href="ntqvariant.html#canCast">TQVariant</a><li>canConvert:
<a href="qmacmime.html#canConvert">TQMacMime</a> <a href="qwindowsmime.html#canConvert">TQWindowsMime</a><li>canDecode: <a href="tqmacmime.html#canConvert">TQMacMime</a> <a href="tqwindowsmime.html#canConvert">TQWindowsMime</a><li>canDecode:
<a href="qcolordrag.html#canDecode">TQColorDrag</a> <a href="tqicondrag.html#canDecode">TQIconDrag</a> <a href="tqimagedrag.html#canDecode">TQImageDrag</a> <a href="tqtextdrag.html#canDecode">TQTextDrag</a> <a href="quridrag.html#canDecode">TQUriDrag</a><li>canDelete: <a href="tqcolordrag.html#canDecode">TQColorDrag</a> <a href="tqicondrag.html#canDecode">TQIconDrag</a> <a href="tqimagedrag.html#canDecode">TQImageDrag</a> <a href="tqtextdrag.html#canDecode">TQTextDrag</a> <a href="tquridrag.html#canDecode">TQUriDrag</a><li>canDelete:
<a href="tqsqlcursor.html#canDelete">TQSqlCursor</a><li>canEncode: <a href="tqsqlcursor.html#canDelete">TQSqlCursor</a><li>canEncode:
<a href="tqtextcodec.html#canEncode">TQTextCodec</a><li>canInsert: <a href="tqtextcodec.html#canEncode">TQTextCodec</a><li>canInsert:
<a href="tqsqlcursor.html#canInsert">TQSqlCursor</a><li>canReadLine: <a href="tqsqlcursor.html#canInsert">TQSqlCursor</a><li>canReadLine:
@ -349,9 +349,9 @@ c:
<a href="ntqrect.html#center">TQRect</a> <a href="ntqscrollview.html#center">TQScrollView</a><li>centerIndicator: <a href="ntqrect.html#center">TQRect</a> <a href="ntqscrollview.html#center">TQScrollView</a><li>centerIndicator:
<a href="ntqprogressbar.html#centerIndicator">TQProgressBar</a><li>centralWidget: <a href="ntqprogressbar.html#centerIndicator">TQProgressBar</a><li>centralWidget:
<a href="tqmainwindow.html#centralWidget">TQMainWindow</a><li>cf: <a href="tqmainwindow.html#centralWidget">TQMainWindow</a><li>cf:
<a href="qwindowsmime.html#cf">TQWindowsMime</a><li>cfFor: <a href="tqwindowsmime.html#cf">TQWindowsMime</a><li>cfFor:
<a href="qwindowsmime.html#cfFor">TQWindowsMime</a><li>cfToMime: <a href="tqwindowsmime.html#cfFor">TQWindowsMime</a><li>cfToMime:
<a href="qwindowsmime.html#cfToMime">TQWindowsMime</a><li>changeInterval: <a href="tqwindowsmime.html#cfToMime">TQWindowsMime</a><li>changeInterval:
<a href="tqtimer.html#changeInterval">TQTimer</a><li>changeItem: <a href="tqtimer.html#changeInterval">TQTimer</a><li>changeItem:
<a href="ntqcombobox.html#changeItem">TQComboBox</a> <a href="ntqlistbox.html#changeItem">TQListBox</a> <a href="tqmenudata.html#changeItem">TQMenuData</a> <a href="tqmenudata.html#changeItem">TQPopupMenu</a><li>changeSize: <a href="ntqcombobox.html#changeItem">TQComboBox</a> <a href="ntqlistbox.html#changeItem">TQListBox</a> <a href="tqmenudata.html#changeItem">TQMenuData</a> <a href="tqmenudata.html#changeItem">TQPopupMenu</a><li>changeSize:
<a href="qspaceritem.html#changeSize">TQSpacerItem</a><li>changeTab: <a href="qspaceritem.html#changeSize">TQSpacerItem</a><li>changeTab:
@ -525,23 +525,23 @@ c:
<a href="tqimage.html#convertDepth">TQImage</a><li>convertDepthWithPalette: <a href="tqimage.html#convertDepth">TQImage</a><li>convertDepthWithPalette:
<a href="tqimage.html#convertDepthWithPalette">TQImage</a><li>convertFromImage: <a href="tqimage.html#convertDepthWithPalette">TQImage</a><li>convertFromImage:
<a href="ntqpixmap.html#convertFromImage">TQPixmap</a><li>convertFromMime: <a href="ntqpixmap.html#convertFromImage">TQPixmap</a><li>convertFromMime:
<a href="qmacmime.html#convertFromMime">TQMacMime</a> <a href="qwindowsmime.html#convertFromMime">TQWindowsMime</a><li>convertFromPlainText: <a href="tqmacmime.html#convertFromMime">TQMacMime</a> <a href="tqwindowsmime.html#convertFromMime">TQWindowsMime</a><li>convertFromPlainText:
<a href="tqstylesheet.html#convertFromPlainText">TQStyleSheet</a><li>convertSeparators: <a href="tqstylesheet.html#convertFromPlainText">TQStyleSheet</a><li>convertSeparators:
<a href="ntqdir.html#convertSeparators">TQDir</a><li>convertToAbs: <a href="ntqdir.html#convertSeparators">TQDir</a><li>convertToAbs:
<a href="ntqdir.html#convertToAbs">TQDir</a> <a href="ntqfileinfo.html#convertToAbs">TQFileInfo</a><li>convertToGLFormat: <a href="ntqdir.html#convertToAbs">TQDir</a> <a href="ntqfileinfo.html#convertToAbs">TQFileInfo</a><li>convertToGLFormat:
<a href="qglwidget.html#convertToGLFormat">TQGLWidget</a><li>convertToImage: <a href="qglwidget.html#convertToGLFormat">TQGLWidget</a><li>convertToImage:
<a href="ntqpixmap.html#convertToImage">TQPixmap</a><li>convertToMime: <a href="ntqpixmap.html#convertToImage">TQPixmap</a><li>convertToMime:
<a href="qmacmime.html#convertToMime">TQMacMime</a> <a href="qwindowsmime.html#convertToMime">TQWindowsMime</a><li>convertor: <a href="tqmacmime.html#convertToMime">TQMacMime</a> <a href="tqwindowsmime.html#convertToMime">TQWindowsMime</a><li>convertor:
<a href="qmacmime.html#convertor">TQMacMime</a> <a href="qwindowsmime.html#convertor">TQWindowsMime</a><li>convertorName: <a href="tqmacmime.html#convertor">TQMacMime</a> <a href="tqwindowsmime.html#convertor">TQWindowsMime</a><li>convertorName:
<a href="qmacmime.html#convertorName">TQMacMime</a> <a href="qwindowsmime.html#convertorName">TQWindowsMime</a><li>coords: <a href="tqmacmime.html#convertorName">TQMacMime</a> <a href="tqwindowsmime.html#convertorName">TQWindowsMime</a><li>coords:
<a href="ntqrect.html#coords">TQRect</a><li>copy: <a href="ntqrect.html#coords">TQRect</a><li>copy:
<a href="ntqbitarray.html#copy">TQBitArray</a> <a href="ntqcstring.html#copy">TQCString</a> <a href="tqimage.html#copy">TQImage</a> <a href="ntqlineedit.html#copy">TQLineEdit</a> <a href="ntqmemarray.html#copy">TQMemArray</a> <a href="ntqpalette.html#copy">TQPalette</a> <a href="ntqpicture.html#copy">TQPicture</a> <a href="ntqpointarray.html#copy">TQPointArray</a> <a href="tqtextedit.html#copy">TQTextEdit</a> <a href="ntqurloperator.html#copy">TQUrlOperator</a><li>copyAvailable: <a href="ntqbitarray.html#copy">TQBitArray</a> <a href="ntqcstring.html#copy">TQCString</a> <a href="tqimage.html#copy">TQImage</a> <a href="ntqlineedit.html#copy">TQLineEdit</a> <a href="ntqmemarray.html#copy">TQMemArray</a> <a href="ntqpalette.html#copy">TQPalette</a> <a href="ntqpicture.html#copy">TQPicture</a> <a href="ntqpointarray.html#copy">TQPointArray</a> <a href="tqtextedit.html#copy">TQTextEdit</a> <a href="ntqurloperator.html#copy">TQUrlOperator</a><li>copyAvailable:
<a href="tqtextedit.html#copyAvailable">TQTextEdit</a><li>copyBlt: <a href="tqtextedit.html#copyAvailable">TQTextEdit</a><li>copyBlt:
<a href="ntqpixmap.html#copyBlt">TQPixmap</a><li>cornerWidget: <a href="ntqpixmap.html#copyBlt">TQPixmap</a><li>cornerWidget:
<a href="ntqscrollview.html#cornerWidget">TQScrollView</a> <a href="ntqtabwidget.html#cornerWidget">TQTabWidget</a><li>count: <a href="ntqscrollview.html#cornerWidget">TQScrollView</a> <a href="ntqtabwidget.html#cornerWidget">TQTabWidget</a><li>count:
<a href="ntqaccel.html#count">TQAccel</a> <a href="ntqasciicache.html#count">TQAsciiCache</a> <a href="qasciicacheiterator.html#count">TQAsciiCacheIterator</a> <a href="ntqasciidict.html#count">TQAsciiDict</a> <a href="qasciidictiterator.html#count">TQAsciiDictIterator</a> <a href="ntqbuttongroup.html#count">TQButtonGroup</a> <a href="ntqcache.html#count">TQCache</a> <a href="qcacheiterator.html#count">TQCacheIterator</a> <a href="tqcanvaspixmaparray.html#count">TQCanvasPixmapArray</a> <a href="ntqcombobox.html#count">TQComboBox</a> <a href="qcombotableitem.html#count">TQComboTableItem</a> <a href="ntqdict.html#count">TQDict</a> <a href="qdictiterator.html#count">TQDictIterator</a> <a href="ntqdir.html#count">TQDir</a> <a href="ntqdockarea.html#count">TQDockArea</a> <a href="tqdomnamednodemap.html#count">TQDomNamedNodeMap</a> <a href="tqdomnodelist.html#count">TQDomNodeList</a> <a href="ntqfocusdata.html#count">TQFocusData</a> <a href="ntqheader.html#count">TQHeader</a> <a href="tqiconview.html#count">TQIconView</a> <a href="ntqintcache.html#count">TQIntCache</a> <a href="qintcacheiterator.html#count">TQIntCacheIterator</a> <a href="ntqintdict.html#count">TQIntDict</a> <a href="qintdictiterator.html#count">TQIntDictIterator</a> <a href="qkeyevent.html#count">TQKeyEvent</a> <a href="ntqkeysequence.html#count">TQKeySequence</a> <a href="ntqlistbox.html#count">TQListBox</a> <a href="tqmap.html#count">TQMap</a> <a href="ntqmemarray.html#count">TQMemArray</a> <a href="tqmenudata.html#count">TQMenuData</a> <a href="tqptrcollection.html#count">TQPtrCollection</a> <a href="tqptrdict.html#count">TQPtrDict</a> <a href="tqptrdictiterator.html#count">TQPtrDictIterator</a> <a href="tqptrlist.html#count">TQPtrList</a> <a href="tqptrlistiterator.html#count">TQPtrListIterator</a> <a href="tqptrqueue.html#count">TQPtrQueue</a> <a href="tqptrstack.html#count">TQPtrStack</a> <a href="tqptrvector.html#count">TQPtrVector</a> <a href="tqsqlform.html#count">TQSqlForm</a> <a href="tqsqlrecord.html#count">TQSqlRecord</a> <a href="ntqtabbar.html#count">TQTabBar</a> <a href="ntqtabwidget.html#count">TQTabWidget</a> <a href="tqtoolbox.html#count">TQToolBox</a> <a href="tqvaluelist.html#count">TQValueList</a> <a href="tqvaluevector.html#count">TQValueVector</a> <a href="tqxmlattributes.html#count">TQXmlAttributes</a><li>countCf: <a href="ntqaccel.html#count">TQAccel</a> <a href="ntqasciicache.html#count">TQAsciiCache</a> <a href="qasciicacheiterator.html#count">TQAsciiCacheIterator</a> <a href="ntqasciidict.html#count">TQAsciiDict</a> <a href="qasciidictiterator.html#count">TQAsciiDictIterator</a> <a href="ntqbuttongroup.html#count">TQButtonGroup</a> <a href="ntqcache.html#count">TQCache</a> <a href="qcacheiterator.html#count">TQCacheIterator</a> <a href="tqcanvaspixmaparray.html#count">TQCanvasPixmapArray</a> <a href="ntqcombobox.html#count">TQComboBox</a> <a href="qcombotableitem.html#count">TQComboTableItem</a> <a href="ntqdict.html#count">TQDict</a> <a href="qdictiterator.html#count">TQDictIterator</a> <a href="ntqdir.html#count">TQDir</a> <a href="ntqdockarea.html#count">TQDockArea</a> <a href="tqdomnamednodemap.html#count">TQDomNamedNodeMap</a> <a href="tqdomnodelist.html#count">TQDomNodeList</a> <a href="ntqfocusdata.html#count">TQFocusData</a> <a href="ntqheader.html#count">TQHeader</a> <a href="tqiconview.html#count">TQIconView</a> <a href="ntqintcache.html#count">TQIntCache</a> <a href="qintcacheiterator.html#count">TQIntCacheIterator</a> <a href="ntqintdict.html#count">TQIntDict</a> <a href="qintdictiterator.html#count">TQIntDictIterator</a> <a href="qkeyevent.html#count">TQKeyEvent</a> <a href="ntqkeysequence.html#count">TQKeySequence</a> <a href="ntqlistbox.html#count">TQListBox</a> <a href="tqmap.html#count">TQMap</a> <a href="ntqmemarray.html#count">TQMemArray</a> <a href="tqmenudata.html#count">TQMenuData</a> <a href="tqptrcollection.html#count">TQPtrCollection</a> <a href="tqptrdict.html#count">TQPtrDict</a> <a href="tqptrdictiterator.html#count">TQPtrDictIterator</a> <a href="tqptrlist.html#count">TQPtrList</a> <a href="tqptrlistiterator.html#count">TQPtrListIterator</a> <a href="tqptrqueue.html#count">TQPtrQueue</a> <a href="tqptrstack.html#count">TQPtrStack</a> <a href="tqptrvector.html#count">TQPtrVector</a> <a href="tqsqlform.html#count">TQSqlForm</a> <a href="tqsqlrecord.html#count">TQSqlRecord</a> <a href="ntqtabbar.html#count">TQTabBar</a> <a href="ntqtabwidget.html#count">TQTabWidget</a> <a href="tqtoolbox.html#count">TQToolBox</a> <a href="tqvaluelist.html#count">TQValueList</a> <a href="tqvaluevector.html#count">TQValueVector</a> <a href="tqxmlattributes.html#count">TQXmlAttributes</a><li>countCf:
<a href="qwindowsmime.html#countCf">TQWindowsMime</a><li>countFlavors: <a href="tqwindowsmime.html#countCf">TQWindowsMime</a><li>countFlavors:
<a href="qmacmime.html#countFlavors">TQMacMime</a><li>country: <a href="tqmacmime.html#countFlavors">TQMacMime</a><li>country:
<a href="ntqlocale.html#country">TQLocale</a><li>countryToString: <a href="ntqlocale.html#country">TQLocale</a><li>countryToString:
<a href="ntqlocale.html#countryToString">TQLocale</a><li>create: <a href="ntqlocale.html#countryToString">TQLocale</a><li>create:
<a href="qglcontext.html#create">TQGLContext</a> <a href="tqimage.html#create">TQImage</a> <a href="qnplugin.html#create">TQNPlugin</a> <a href="tqsqldriverplugin.html#create">TQSqlDriverPlugin</a> <a href="tqstylefactory.html#create">TQStyleFactory</a> <a href="tqstyleplugin.html#create">TQStylePlugin</a> <a href="tqwidget.html#create">TQWidget</a> <a href="tqwidgetfactory.html#create">TQWidgetFactory</a> <a href="tqwidgetplugin.html#create">TQWidgetPlugin</a><li>createAlphaMask: <a href="qglcontext.html#create">TQGLContext</a> <a href="tqimage.html#create">TQImage</a> <a href="qnplugin.html#create">TQNPlugin</a> <a href="tqsqldriverplugin.html#create">TQSqlDriverPlugin</a> <a href="tqstylefactory.html#create">TQStyleFactory</a> <a href="tqstyleplugin.html#create">TQStylePlugin</a> <a href="tqwidget.html#create">TQWidget</a> <a href="tqwidgetfactory.html#create">TQWidgetFactory</a> <a href="tqwidgetplugin.html#create">TQWidgetPlugin</a><li>createAlphaMask:
@ -634,7 +634,7 @@ c:
<a href="ntqlineedit.html#cut">TQLineEdit</a> <a href="tqtextedit.html#cut">TQTextEdit</a><li><a name="d"></a> <a href="ntqlineedit.html#cut">TQLineEdit</a> <a href="tqtextedit.html#cut">TQTextEdit</a><li><a name="d"></a>
dark: dark:
<a href="ntqcolor.html#dark">TQColor</a> <a href="qcolorgroup.html#dark">TQColorGroup</a><li>data: <a href="ntqcolor.html#dark">TQColor</a> <a href="qcolorgroup.html#dark">TQColorGroup</a><li>data:
<a href="ntqclipboard.html#data">TQClipboard</a> <a href="qcustomevent.html#data">TQCustomEvent</a> <a href="tqdomcharacterdata.html#data">TQDomCharacterData</a> <a href="tqdomprocessinginstruction.html#data">TQDomProcessingInstruction</a> <a href="tqicondragitem.html#data">TQIconDragItem</a> <a href="tqmapconstiterator.html#data">TQMapConstIterator</a> <a href="tqmapiterator.html#data">TQMapIterator</a> <a href="ntqmemarray.html#data">TQMemArray</a> <a href="qmimesourcefactory.html#data">TQMimeSourceFactory</a> <a href="ntqnetworkprotocol.html#data">TQNetworkProtocol</a> <a href="ntqpicture.html#data">TQPicture</a> <a href="tqptrvector.html#data">TQPtrVector</a> <a href="tqsqlresult.html#data">TQSqlResult</a> <a href="ntqurloperator.html#data">TQUrlOperator</a> <a href="tqxmlinputsource.html#data">TQXmlInputSource</a><li>dataChanged: <a href="ntqclipboard.html#data">TQClipboard</a> <a href="qcustomevent.html#data">TQCustomEvent</a> <a href="tqdomcharacterdata.html#data">TQDomCharacterData</a> <a href="tqdomprocessinginstruction.html#data">TQDomProcessingInstruction</a> <a href="tqicondragitem.html#data">TQIconDragItem</a> <a href="tqmapconstiterator.html#data">TQMapConstIterator</a> <a href="tqmapiterator.html#data">TQMapIterator</a> <a href="ntqmemarray.html#data">TQMemArray</a> <a href="tqmimesourcefactory.html#data">TQMimeSourceFactory</a> <a href="ntqnetworkprotocol.html#data">TQNetworkProtocol</a> <a href="ntqpicture.html#data">TQPicture</a> <a href="tqptrvector.html#data">TQPtrVector</a> <a href="tqsqlresult.html#data">TQSqlResult</a> <a href="ntqurloperator.html#data">TQUrlOperator</a> <a href="tqxmlinputsource.html#data">TQXmlInputSource</a><li>dataChanged:
<a href="ntqclipboard.html#dataChanged">TQClipboard</a><li>dataReadProgress: <a href="ntqclipboard.html#dataChanged">TQClipboard</a><li>dataReadProgress:
<a href="ntqhttp.html#dataReadProgress">TQHttp</a><li>dataSendProgress: <a href="ntqhttp.html#dataReadProgress">TQHttp</a><li>dataSendProgress:
<a href="ntqhttp.html#dataSendProgress">TQHttp</a><li>dataTransferProgress: <a href="ntqhttp.html#dataSendProgress">TQHttp</a><li>dataTransferProgress:
@ -655,16 +655,16 @@ dark:
<a href="ntqfont.html#deciPointSize">TQFont</a><li>decimals: <a href="ntqfont.html#deciPointSize">TQFont</a><li>decimals:
<a href="qdoublevalidator.html#decimals">TQDoubleValidator</a><li>declHandler: <a href="qdoublevalidator.html#decimals">TQDoubleValidator</a><li>declHandler:
<a href="tqxmlreader.html#declHandler">TQXmlReader</a><li>decode: <a href="tqxmlreader.html#declHandler">TQXmlReader</a><li>decode:
<a href="qcolordrag.html#decode">TQColorDrag</a> <a href="tqimagedecoder.html#decode">TQImageDecoder</a> <a href="tqimagedrag.html#decode">TQImageDrag</a> <a href="tqimageformat.html#decode">TQImageFormat</a> <a href="tqtextdrag.html#decode">TQTextDrag</a> <a href="quridrag.html#decode">TQUriDrag</a> <a href="ntqurl.html#decode">TQUrl</a><li>decodeLocalFiles: <a href="tqcolordrag.html#decode">TQColorDrag</a> <a href="tqimagedecoder.html#decode">TQImageDecoder</a> <a href="tqimagedrag.html#decode">TQImageDrag</a> <a href="tqimageformat.html#decode">TQImageFormat</a> <a href="tqtextdrag.html#decode">TQTextDrag</a> <a href="tquridrag.html#decode">TQUriDrag</a> <a href="ntqurl.html#decode">TQUrl</a><li>decodeLocalFiles:
<a href="quridrag.html#decodeLocalFiles">TQUriDrag</a><li>decodeName: <a href="tquridrag.html#decodeLocalFiles">TQUriDrag</a><li>decodeName:
<a href="ntqfile.html#decodeName">TQFile</a><li>decodeToUnicodeUris: <a href="ntqfile.html#decodeName">TQFile</a><li>decodeToUnicodeUris:
<a href="quridrag.html#decodeToUnicodeUris">TQUriDrag</a><li>decoderFor: <a href="tquridrag.html#decodeToUnicodeUris">TQUriDrag</a><li>decoderFor:
<a href="tqimageformattype.html#decoderFor">TQImageFormatType</a><li>decomposition: <a href="tqimageformattype.html#decoderFor">TQImageFormatType</a><li>decomposition:
<a href="qchar.html#decomposition">TQChar</a><li>decompositionTag: <a href="qchar.html#decomposition">TQChar</a><li>decompositionTag:
<a href="qchar.html#decompositionTag">TQChar</a><li>defaultButtonPressed: <a href="qchar.html#decompositionTag">TQChar</a><li>defaultButtonPressed:
<a href="ntqtabdialog.html#defaultButtonPressed">TQTabDialog</a><li>defaultDepth: <a href="ntqtabdialog.html#defaultButtonPressed">TQTabDialog</a><li>defaultDepth:
<a href="ntqpixmap.html#defaultDepth">TQPixmap</a><li>defaultFactory: <a href="ntqpixmap.html#defaultDepth">TQPixmap</a><li>defaultFactory:
<a href="tqeditorfactory.html#defaultFactory">TQEditorFactory</a> <a href="tqiconfactory.html#defaultFactory">TQIconFactory</a> <a href="qmimesourcefactory.html#defaultFactory">TQMimeSourceFactory</a> <a href="tqsqleditorfactory.html#defaultFactory">TQSqlEditorFactory</a><li>defaultFamily: <a href="tqeditorfactory.html#defaultFactory">TQEditorFactory</a> <a href="tqiconfactory.html#defaultFactory">TQIconFactory</a> <a href="tqmimesourcefactory.html#defaultFactory">TQMimeSourceFactory</a> <a href="tqsqleditorfactory.html#defaultFactory">TQSqlEditorFactory</a><li>defaultFamily:
<a href="ntqfont.html#defaultFamily">TQFont</a><li>defaultFormat: <a href="ntqfont.html#defaultFamily">TQFont</a><li>defaultFormat:
<a href="qglformat.html#defaultFormat">TQGLFormat</a><li>defaultMap: <a href="qglformat.html#defaultFormat">TQGLFormat</a><li>defaultMap:
<a href="tqsqlpropertymap.html#defaultMap">TQSqlPropertyMap</a><li>defaultOptimization: <a href="tqsqlpropertymap.html#defaultMap">TQSqlPropertyMap</a><li>defaultOptimization:
@ -749,16 +749,16 @@ dark:
<a href="ntqapplication.html#doubleClickInterval">TQApplication</a><li>doubleClicked: <a href="ntqapplication.html#doubleClickInterval">TQApplication</a><li>doubleClicked:
<a href="tqiconview.html#doubleClicked">TQIconView</a> <a href="ntqlistbox.html#doubleClicked">TQListBox</a> <a href="ntqlistview.html#doubleClicked">TQListView</a> <a href="ntqtable.html#doubleClicked">TQTable</a> <a href="tqtextedit.html#doubleClicked">TQTextEdit</a><li>downRect: <a href="tqiconview.html#doubleClicked">TQIconView</a> <a href="ntqlistbox.html#doubleClicked">TQListBox</a> <a href="ntqlistview.html#doubleClicked">TQListView</a> <a href="ntqtable.html#doubleClicked">TQTable</a> <a href="tqtextedit.html#doubleClicked">TQTextEdit</a><li>downRect:
<a href="ntqspinbox.html#downRect">TQSpinBox</a><li>drag: <a href="ntqspinbox.html#downRect">TQSpinBox</a><li>drag:
<a href="ntqdragobject.html#drag">TQDragObject</a><li>dragAutoScroll: <a href="tqdragobject.html#drag">TQDragObject</a><li>dragAutoScroll:
<a href="ntqscrollview.html#dragAutoScroll">TQScrollView</a><li>dragCopy: <a href="ntqscrollview.html#dragAutoScroll">TQScrollView</a><li>dragCopy:
<a href="ntqdragobject.html#dragCopy">TQDragObject</a><li>dragEnabled: <a href="tqdragobject.html#dragCopy">TQDragObject</a><li>dragEnabled:
<a href="tqiconviewitem.html#dragEnabled">TQIconViewItem</a> <a href="ntqlineedit.html#dragEnabled">TQLineEdit</a> <a href="qlistviewitem.html#dragEnabled">TQListViewItem</a> <a href="ntqtable.html#dragEnabled">TQTable</a><li>dragEnterEvent: <a href="tqiconviewitem.html#dragEnabled">TQIconViewItem</a> <a href="ntqlineedit.html#dragEnabled">TQLineEdit</a> <a href="qlistviewitem.html#dragEnabled">TQListViewItem</a> <a href="ntqtable.html#dragEnabled">TQTable</a><li>dragEnterEvent:
<a href="tqwidget.html#dragEnterEvent">TQWidget</a><li>dragEntered: <a href="tqwidget.html#dragEnterEvent">TQWidget</a><li>dragEntered:
<a href="tqiconviewitem.html#dragEntered">TQIconViewItem</a> <a href="qlistviewitem.html#dragEntered">TQListViewItem</a><li>dragLeaveEvent: <a href="tqiconviewitem.html#dragEntered">TQIconViewItem</a> <a href="qlistviewitem.html#dragEntered">TQListViewItem</a><li>dragLeaveEvent:
<a href="tqwidget.html#dragLeaveEvent">TQWidget</a><li>dragLeft: <a href="tqwidget.html#dragLeaveEvent">TQWidget</a><li>dragLeft:
<a href="tqiconviewitem.html#dragLeft">TQIconViewItem</a> <a href="qlistviewitem.html#dragLeft">TQListViewItem</a><li>dragLink: <a href="tqiconviewitem.html#dragLeft">TQIconViewItem</a> <a href="qlistviewitem.html#dragLeft">TQListViewItem</a><li>dragLink:
<a href="ntqdragobject.html#dragLink">TQDragObject</a><li>dragMove: <a href="tqdragobject.html#dragLink">TQDragObject</a><li>dragMove:
<a href="ntqdragobject.html#dragMove">TQDragObject</a><li>dragMoveEvent: <a href="tqdragobject.html#dragMove">TQDragObject</a><li>dragMoveEvent:
<a href="tqwidget.html#dragMoveEvent">TQWidget</a><li>dragObject: <a href="tqwidget.html#dragMoveEvent">TQWidget</a><li>dragObject:
<a href="tqiconview.html#dragObject">TQIconView</a> <a href="ntqlistview.html#dragObject">TQListView</a> <a href="ntqtable.html#dragObject">TQTable</a><li>draggingSlider: <a href="tqiconview.html#dragObject">TQIconView</a> <a href="ntqlistview.html#dragObject">TQListView</a> <a href="ntqtable.html#dragObject">TQTable</a><li>draggingSlider:
<a href="ntqscrollbar.html#draggingSlider">TQScrollBar</a><li>draw: <a href="ntqscrollbar.html#draggingSlider">TQScrollBar</a><li>draw:
@ -835,7 +835,7 @@ echoMode:
<a href="tqwidget.html#enabledChange">TQWidget</a><li>encode: <a href="tqwidget.html#enabledChange">TQWidget</a><li>encode:
<a href="ntqurl.html#encode">TQUrl</a><li>encodeName: <a href="ntqurl.html#encode">TQUrl</a><li>encodeName:
<a href="ntqfile.html#encodeName">TQFile</a><li>encodedData: <a href="ntqfile.html#encodeName">TQFile</a><li>encodedData:
<a href="qdropevent.html#encodedData">TQDropEvent</a> <a href="tqicondrag.html#encodedData">TQIconDrag</a> <a href="qmimesource.html#encodedData">TQMimeSource</a> <a href="qstoreddrag.html#encodedData">TQStoredDrag</a><li>encodedPathAndQuery: <a href="tqdropevent.html#encodedData">TQDropEvent</a> <a href="tqicondrag.html#encodedData">TQIconDrag</a> <a href="tqmimesource.html#encodedData">TQMimeSource</a> <a href="tqstoreddrag.html#encodedData">TQStoredDrag</a><li>encodedPathAndQuery:
<a href="ntqurl.html#encodedPathAndQuery">TQUrl</a><li>end: <a href="ntqurl.html#encodedPathAndQuery">TQUrl</a><li>end:
<a href="tqimageconsumer.html#end">TQImageConsumer</a> <a href="ntqlineedit.html#end">TQLineEdit</a> <a href="tqmap.html#end">TQMap</a> <a href="ntqmemarray.html#end">TQMemArray</a> <a href="ntqmultilineedit.html#end">TQMultiLineEdit</a> <a href="qnpstream.html#end">TQNPStream</a> <a href="ntqpainter.html#end">TQPainter</a> <a href="tqvaluelist.html#end">TQValueList</a> <a href="tqvaluevector.html#end">TQValueVector</a><li>endCDATA: <a href="tqimageconsumer.html#end">TQImageConsumer</a> <a href="ntqlineedit.html#end">TQLineEdit</a> <a href="tqmap.html#end">TQMap</a> <a href="ntqmemarray.html#end">TQMemArray</a> <a href="ntqmultilineedit.html#end">TQMultiLineEdit</a> <a href="qnpstream.html#end">TQNPStream</a> <a href="ntqpainter.html#end">TQPainter</a> <a href="tqvaluelist.html#end">TQValueList</a> <a href="tqvaluevector.html#end">TQValueVector</a><li>endCDATA:
<a href="tqxmllexicalhandler.html#endCDATA">TQXmlLexicalHandler</a><li>endDTD: <a href="tqxmllexicalhandler.html#endCDATA">TQXmlLexicalHandler</a><li>endDTD:
@ -915,7 +915,7 @@ falseText:
<a href="tqsqlform.html#fieldToWidget">TQSqlForm</a><li>fileHighlighted: <a href="tqsqlform.html#fieldToWidget">TQSqlForm</a><li>fileHighlighted:
<a href="ntqfiledialog.html#fileHighlighted">TQFileDialog</a><li>fileName: <a href="ntqfiledialog.html#fileHighlighted">TQFileDialog</a><li>fileName:
<a href="ntqfileinfo.html#fileName">TQFileInfo</a> <a href="tqimageio.html#fileName">TQImageIO</a> <a href="ntqsound.html#fileName">TQSound</a> <a href="ntqurl.html#fileName">TQUrl</a><li>filePath: <a href="ntqfileinfo.html#fileName">TQFileInfo</a> <a href="tqimageio.html#fileName">TQImageIO</a> <a href="ntqsound.html#fileName">TQSound</a> <a href="ntqurl.html#fileName">TQUrl</a><li>filePath:
<a href="ntqdir.html#filePath">TQDir</a> <a href="ntqfileinfo.html#filePath">TQFileInfo</a> <a href="qmimesourcefactory.html#filePath">TQMimeSourceFactory</a><li>fileSelected: <a href="ntqdir.html#filePath">TQDir</a> <a href="ntqfileinfo.html#filePath">TQFileInfo</a> <a href="tqmimesourcefactory.html#filePath">TQMimeSourceFactory</a><li>fileSelected:
<a href="ntqfiledialog.html#fileSelected">TQFileDialog</a><li>filesSelected: <a href="ntqfiledialog.html#fileSelected">TQFileDialog</a><li>filesSelected:
<a href="ntqfiledialog.html#filesSelected">TQFileDialog</a><li>fill: <a href="ntqfiledialog.html#filesSelected">TQFileDialog</a><li>fill:
<a href="ntqbitarray.html#fill">TQBitArray</a> <a href="ntqcstring.html#fill">TQCString</a> <a href="tqimage.html#fill">TQImage</a> <a href="ntqmemarray.html#fill">TQMemArray</a> <a href="ntqpixmap.html#fill">TQPixmap</a> <a href="tqptrvector.html#fill">TQPtrVector</a> <a href="tqstring.html#fill">TQString</a> <a href="tqtextstream.html#fill">TQTextStream</a><li>fillRect: <a href="ntqbitarray.html#fill">TQBitArray</a> <a href="ntqcstring.html#fill">TQCString</a> <a href="tqimage.html#fill">TQImage</a> <a href="ntqmemarray.html#fill">TQMemArray</a> <a href="ntqpixmap.html#fill">TQPixmap</a> <a href="tqptrvector.html#fill">TQPtrVector</a> <a href="tqstring.html#fill">TQString</a> <a href="tqtextstream.html#fill">TQTextStream</a><li>fillRect:
@ -948,9 +948,9 @@ falseText:
<a href="ntqfont.html#fixedPitch">TQFont</a> <a href="ntqfontinfo.html#fixedPitch">TQFontInfo</a><li>fixup: <a href="ntqfont.html#fixedPitch">TQFont</a> <a href="ntqfontinfo.html#fixedPitch">TQFontInfo</a><li>fixup:
<a href="ntqvalidator.html#fixup">TQValidator</a><li>flags: <a href="ntqvalidator.html#fixup">TQValidator</a><li>flags:
<a href="ntqiodevice.html#flags">TQIODevice</a> <a href="tqtextstream.html#flags">TQTextStream</a><li>flavor: <a href="ntqiodevice.html#flags">TQIODevice</a> <a href="tqtextstream.html#flags">TQTextStream</a><li>flavor:
<a href="qmacmime.html#flavor">TQMacMime</a><li>flavorFor: <a href="tqmacmime.html#flavor">TQMacMime</a><li>flavorFor:
<a href="qmacmime.html#flavorFor">TQMacMime</a><li>flavorToMime: <a href="tqmacmime.html#flavorFor">TQMacMime</a><li>flavorToMime:
<a href="qmacmime.html#flavorToMime">TQMacMime</a><li>flush: <a href="tqmacmime.html#flavorToMime">TQMacMime</a><li>flush:
<a href="ntqapplication.html#flush">TQApplication</a> <a href="ntqfile.html#flush">TQFile</a> <a href="ntqiodevice.html#flush">TQIODevice</a> <a href="ntqpainter.html#flush">TQPainter</a> <a href="ntqsocket.html#flush">TQSocket</a><li>flushX: <a href="ntqapplication.html#flush">TQApplication</a> <a href="ntqfile.html#flush">TQFile</a> <a href="ntqiodevice.html#flush">TQIODevice</a> <a href="ntqpainter.html#flush">TQPainter</a> <a href="ntqsocket.html#flush">TQSocket</a><li>flushX:
<a href="ntqapplication.html#flushX">TQApplication</a><li>focusData: <a href="ntqapplication.html#flushX">TQApplication</a><li>focusData:
<a href="tqwidget.html#focusData">TQWidget</a><li>focusInEvent: <a href="tqwidget.html#focusData">TQWidget</a><li>focusInEvent:
@ -976,7 +976,7 @@ falseText:
<a href="qcolorgroup.html#foreground">TQColorGroup</a><li>foregroundColor: <a href="qcolorgroup.html#foreground">TQColorGroup</a><li>foregroundColor:
<a href="tqwidget.html#foregroundColor">TQWidget</a><li>form: <a href="tqwidget.html#foregroundColor">TQWidget</a><li>form:
<a href="tqdatabrowser.html#form">TQDataBrowser</a> <a href="tqdataview.html#form">TQDataView</a><li>format: <a href="tqdatabrowser.html#form">TQDataBrowser</a> <a href="tqdataview.html#form">TQDataView</a><li>format:
<a href="qdropevent.html#format">TQDropEvent</a> <a href="qglcontext.html#format">TQGLContext</a> <a href="qglwidget.html#format">TQGLWidget</a> <a href="tqimagedecoder.html#format">TQImageDecoder</a> <a href="tqimageio.html#format">TQImageIO</a> <a href="qmimesource.html#format">TQMimeSource</a><li>formatName: <a href="tqdropevent.html#format">TQDropEvent</a> <a href="qglcontext.html#format">TQGLContext</a> <a href="qglwidget.html#format">TQGLWidget</a> <a href="tqimagedecoder.html#format">TQImageDecoder</a> <a href="tqimageio.html#format">TQImageIO</a> <a href="tqmimesource.html#format">TQMimeSource</a><li>formatName:
<a href="tqimagedecoder.html#formatName">TQImageDecoder</a> <a href="tqimageformattype.html#formatName">TQImageFormatType</a><li>formatValue: <a href="tqimagedecoder.html#formatName">TQImageDecoder</a> <a href="tqimageformattype.html#formatName">TQImageFormatType</a><li>formatValue:
<a href="tqsqldriver.html#formatValue">TQSqlDriver</a><li>forward: <a href="tqsqldriver.html#formatValue">TQSqlDriver</a><li>forward:
<a href="tqtextbrowser.html#forward">TQTextBrowser</a><li>forwardAvailable: <a href="tqtextbrowser.html#forward">TQTextBrowser</a><li>forwardAvailable:
@ -1176,7 +1176,7 @@ icon:
<a href="tqmenudata.html#idAt">TQMenuData</a> <a href="tqpopupmenu.html#idAt">TQPopupMenu</a><li>identifier: <a href="tqmenudata.html#idAt">TQMenuData</a> <a href="tqpopupmenu.html#idAt">TQPopupMenu</a><li>identifier:
<a href="qtab.html#identifier">TQTab</a><li>ignorableWhitespace: <a href="qtab.html#identifier">TQTab</a><li>ignorableWhitespace:
<a href="tqxmlcontenthandler.html#ignorableWhitespace">TQXmlContentHandler</a><li>ignore: <a href="tqxmlcontenthandler.html#ignorableWhitespace">TQXmlContentHandler</a><li>ignore:
<a href="qcloseevent.html#ignore">TQCloseEvent</a> <a href="qcontextmenuevent.html#ignore">TQContextMenuEvent</a> <a href="qdragmoveevent.html#ignore">TQDragMoveEvent</a> <a href="qdropevent.html#ignore">TQDropEvent</a> <a href="qimevent.html#ignore">TQIMEvent</a> <a href="tqicondragevent.html#ignore">TQIconDragEvent</a> <a href="qkeyevent.html#ignore">TQKeyEvent</a> <a href="qmouseevent.html#ignore">TQMouseEvent</a> <a href="qtabletevent.html#ignore">TQTabletEvent</a> <a href="qwheelevent.html#ignore">TQWheelEvent</a><li>imComposeEvent: <a href="qcloseevent.html#ignore">TQCloseEvent</a> <a href="qcontextmenuevent.html#ignore">TQContextMenuEvent</a> <a href="tqdragmoveevent.html#ignore">TQDragMoveEvent</a> <a href="tqdropevent.html#ignore">TQDropEvent</a> <a href="qimevent.html#ignore">TQIMEvent</a> <a href="tqicondragevent.html#ignore">TQIconDragEvent</a> <a href="qkeyevent.html#ignore">TQKeyEvent</a> <a href="qmouseevent.html#ignore">TQMouseEvent</a> <a href="qtabletevent.html#ignore">TQTabletEvent</a> <a href="qwheelevent.html#ignore">TQWheelEvent</a><li>imComposeEvent:
<a href="tqwidget.html#imComposeEvent">TQWidget</a><li>imEndEvent: <a href="tqwidget.html#imComposeEvent">TQWidget</a><li>imEndEvent:
<a href="tqwidget.html#imEndEvent">TQWidget</a><li>imStartEvent: <a href="tqwidget.html#imEndEvent">TQWidget</a><li>imStartEvent:
<a href="tqwidget.html#imStartEvent">TQWidget</a><li>image: <a href="tqwidget.html#imStartEvent">TQWidget</a><li>image:
@ -1200,7 +1200,7 @@ icon:
<a href="ntqmessagebox.html#information">TQMessageBox</a><li>inherits: <a href="ntqmessagebox.html#information">TQMessageBox</a><li>inherits:
<a href="ntqmetaobject.html#inherits">TQMetaObject</a> <a href="tqobject.html#inherits">TQObject</a><li>init: <a href="ntqmetaobject.html#inherits">TQMetaObject</a> <a href="tqobject.html#inherits">TQObject</a><li>init:
<a href="qtableselection.html#init">TQTableSelection</a><li>initialize: <a href="qtableselection.html#init">TQTableSelection</a><li>initialize:
<a href="ntqcolor.html#initialize">TQColor</a> <a href="ntqcursor.html#initialize">TQCursor</a> <a href="qwindowsmime.html#initialize">TQWindowsMime</a><li>initializeGL: <a href="ntqcolor.html#initialize">TQColor</a> <a href="ntqcursor.html#initialize">TQCursor</a> <a href="tqwindowsmime.html#initialize">TQWindowsMime</a><li>initializeGL:
<a href="qglwidget.html#initializeGL">TQGLWidget</a><li>initializeOverlayGL: <a href="qglwidget.html#initializeGL">TQGLWidget</a><li>initializeOverlayGL:
<a href="qglwidget.html#initializeOverlayGL">TQGLWidget</a><li>initialized: <a href="qglwidget.html#initializeOverlayGL">TQGLWidget</a><li>initialized:
<a href="qglcontext.html#initialized">TQGLContext</a><li>inputFormatList: <a href="qglcontext.html#initialized">TQGLContext</a><li>inputFormatList:
@ -1261,8 +1261,8 @@ icon:
<a href="tqiconview.html#invertSelection">TQIconView</a> <a href="ntqlistbox.html#invertSelection">TQListBox</a> <a href="ntqlistview.html#invertSelection">TQListView</a><li>ioDevice: <a href="tqiconview.html#invertSelection">TQIconView</a> <a href="ntqlistbox.html#invertSelection">TQListBox</a> <a href="ntqlistview.html#invertSelection">TQListView</a><li>ioDevice:
<a href="tqimageio.html#ioDevice">TQImageIO</a><li>isA: <a href="tqimageio.html#ioDevice">TQImageIO</a><li>isA:
<a href="tqobject.html#isA">TQObject</a><li>isAccepted: <a href="tqobject.html#isA">TQObject</a><li>isAccepted:
<a href="qcloseevent.html#isAccepted">TQCloseEvent</a> <a href="qcontextmenuevent.html#isAccepted">TQContextMenuEvent</a> <a href="qdropevent.html#isAccepted">TQDropEvent</a> <a href="qimevent.html#isAccepted">TQIMEvent</a> <a href="tqicondragevent.html#isAccepted">TQIconDragEvent</a> <a href="qkeyevent.html#isAccepted">TQKeyEvent</a> <a href="qmouseevent.html#isAccepted">TQMouseEvent</a> <a href="qtabletevent.html#isAccepted">TQTabletEvent</a> <a href="qwheelevent.html#isAccepted">TQWheelEvent</a><li>isActionAccepted: <a href="qcloseevent.html#isAccepted">TQCloseEvent</a> <a href="qcontextmenuevent.html#isAccepted">TQContextMenuEvent</a> <a href="tqdropevent.html#isAccepted">TQDropEvent</a> <a href="qimevent.html#isAccepted">TQIMEvent</a> <a href="tqicondragevent.html#isAccepted">TQIconDragEvent</a> <a href="qkeyevent.html#isAccepted">TQKeyEvent</a> <a href="qmouseevent.html#isAccepted">TQMouseEvent</a> <a href="qtabletevent.html#isAccepted">TQTabletEvent</a> <a href="qwheelevent.html#isAccepted">TQWheelEvent</a><li>isActionAccepted:
<a href="qdropevent.html#isActionAccepted">TQDropEvent</a><li>isActive: <a href="tqdropevent.html#isActionAccepted">TQDropEvent</a><li>isActive:
<a href="ntqaccessible.html#isActive">TQAccessible</a> <a href="tqcanvasitem.html#isActive">TQCanvasItem</a> <a href="ntqpainter.html#isActive">TQPainter</a> <a href="tqsqlquery.html#isActive">TQSqlQuery</a> <a href="tqsqlresult.html#isActive">TQSqlResult</a> <a href="qtableselection.html#isActive">TQTableSelection</a> <a href="tqtimer.html#isActive">TQTimer</a><li>isActiveWindow: <a href="ntqaccessible.html#isActive">TQAccessible</a> <a href="tqcanvasitem.html#isActive">TQCanvasItem</a> <a href="ntqpainter.html#isActive">TQPainter</a> <a href="tqsqlquery.html#isActive">TQSqlQuery</a> <a href="tqsqlresult.html#isActive">TQSqlResult</a> <a href="qtableselection.html#isActive">TQTableSelection</a> <a href="tqtimer.html#isActive">TQTimer</a><li>isActiveWindow:
<a href="tqwidget.html#isActiveWindow">TQWidget</a> <a href="qxtwidget.html#isActiveWindow">TQXtWidget</a><li>isAnchor: <a href="tqwidget.html#isActiveWindow">TQWidget</a> <a href="qxtwidget.html#isActiveWindow">TQXtWidget</a><li>isAnchor:
<a href="tqstylesheetitem.html#isAnchor">TQStyleSheetItem</a><li>isAsynchronous: <a href="tqstylesheetitem.html#isAnchor">TQStyleSheetItem</a><li>isAsynchronous:
@ -1544,7 +1544,7 @@ label:
<a href="tqwidgetfactory.html#loadImages">TQWidgetFactory</a><li>local8Bit: <a href="tqwidgetfactory.html#loadImages">TQWidgetFactory</a><li>local8Bit:
<a href="tqstring.html#local8Bit">TQString</a><li>localData: <a href="tqstring.html#local8Bit">TQString</a><li>localData:
<a href="tqthreadstorage.html#localData">TQThreadStorage</a><li>localFileToUri: <a href="tqthreadstorage.html#localData">TQThreadStorage</a><li>localFileToUri:
<a href="quridrag.html#localFileToUri">TQUriDrag</a><li>localName: <a href="tquridrag.html#localFileToUri">TQUriDrag</a><li>localName:
<a href="tqdomnode.html#localName">TQDomNode</a> <a href="tqxmlattributes.html#localName">TQXmlAttributes</a><li>locale: <a href="tqdomnode.html#localName">TQDomNode</a> <a href="tqxmlattributes.html#localName">TQXmlAttributes</a><li>locale:
<a href="tqtextcodec.html#locale">TQTextCodec</a><li>localeAwareCompare: <a href="tqtextcodec.html#locale">TQTextCodec</a><li>localeAwareCompare:
<a href="tqstring.html#localeAwareCompare">TQString</a><li>lock: <a href="tqstring.html#localeAwareCompare">TQString</a><li>lock:
@ -1573,7 +1573,7 @@ m11:
<a href="ntqapplication.html#mainWidget">TQApplication</a> <a href="ntqlayout.html#mainWidget">TQLayout</a><li>mainWindow: <a href="ntqapplication.html#mainWidget">TQApplication</a> <a href="ntqlayout.html#mainWidget">TQLayout</a><li>mainWindow:
<a href="tqtoolbar.html#mainWindow">TQToolBar</a><li>majorVersion: <a href="tqtoolbar.html#mainWindow">TQToolBar</a><li>majorVersion:
<a href="qhttpheader.html#majorVersion">TQHttpHeader</a> <a href="qhttprequestheader.html#majorVersion">TQHttpRequestHeader</a> <a href="qhttpresponseheader.html#majorVersion">TQHttpResponseHeader</a><li>makeAbsolute: <a href="qhttpheader.html#majorVersion">TQHttpHeader</a> <a href="qhttprequestheader.html#majorVersion">TQHttpRequestHeader</a> <a href="qhttpresponseheader.html#majorVersion">TQHttpResponseHeader</a><li>makeAbsolute:
<a href="qmimesourcefactory.html#makeAbsolute">TQMimeSourceFactory</a><li>makeArc: <a href="tqmimesourcefactory.html#makeAbsolute">TQMimeSourceFactory</a><li>makeArc:
<a href="ntqpointarray.html#makeArc">TQPointArray</a><li>makeCurrent: <a href="ntqpointarray.html#makeArc">TQPointArray</a><li>makeCurrent:
<a href="qglcontext.html#makeCurrent">TQGLContext</a> <a href="qglwidget.html#makeCurrent">TQGLWidget</a><li>makeDecoder: <a href="qglcontext.html#makeCurrent">TQGLContext</a> <a href="qglwidget.html#makeCurrent">TQGLWidget</a><li>makeDecoder:
<a href="tqtextcodec.html#makeDecoder">TQTextCodec</a><li>makeEllipse: <a href="tqtextcodec.html#makeDecoder">TQTextCodec</a><li>makeEllipse:
@ -1646,7 +1646,7 @@ m11:
<a href="ntqframe.html#midLineWidth">TQFrame</a> <a href="tqstyleoption.html#midLineWidth">TQStyleOption</a><li>midlight: <a href="ntqframe.html#midLineWidth">TQFrame</a> <a href="tqstyleoption.html#midLineWidth">TQStyleOption</a><li>midlight:
<a href="qcolorgroup.html#midlight">TQColorGroup</a><li>mightBeRichText: <a href="qcolorgroup.html#midlight">TQColorGroup</a><li>mightBeRichText:
<a href="tqstylesheet.html#mightBeRichText">TQStyleSheet</a><li>mimeFor: <a href="tqstylesheet.html#mightBeRichText">TQStyleSheet</a><li>mimeFor:
<a href="qmacmime.html#mimeFor">TQMacMime</a> <a href="qwindowsmime.html#mimeFor">TQWindowsMime</a><li>mimeName: <a href="tqmacmime.html#mimeFor">TQMacMime</a> <a href="tqwindowsmime.html#mimeFor">TQWindowsMime</a><li>mimeName:
<a href="tqeucjpcodec.html#mimeName">TQEucJpCodec</a> <a href="tqeuckrcodec.html#mimeName">TQEucKrCodec</a> <a href="tqhebrewcodec.html#mimeName">TQHebrewCodec</a> <a href="tqjiscodec.html#mimeName">TQJisCodec</a> <a href="tqsjiscodec.html#mimeName">TQSjisCodec</a> <a href="tqtextcodec.html#mimeName">TQTextCodec</a><li>mimeSourceFactory: <a href="tqeucjpcodec.html#mimeName">TQEucJpCodec</a> <a href="tqeuckrcodec.html#mimeName">TQEucKrCodec</a> <a href="tqhebrewcodec.html#mimeName">TQHebrewCodec</a> <a href="tqjiscodec.html#mimeName">TQJisCodec</a> <a href="tqsjiscodec.html#mimeName">TQSjisCodec</a> <a href="tqtextcodec.html#mimeName">TQTextCodec</a><li>mimeSourceFactory:
<a href="tqtextedit.html#mimeSourceFactory">TQTextEdit</a><li>minLeftBearing: <a href="tqtextedit.html#mimeSourceFactory">TQTextEdit</a><li>minLeftBearing:
<a href="ntqfontmetrics.html#minLeftBearing">TQFontMetrics</a><li>minPage: <a href="ntqfontmetrics.html#minLeftBearing">TQFontMetrics</a><li>minPage:
@ -1916,8 +1916,8 @@ packImage:
<a href="tqimage.html#pixelIndex">TQImage</a><li>pixelMetric: <a href="tqimage.html#pixelIndex">TQImage</a><li>pixelMetric:
<a href="tqstyle.html#pixelMetric">TQStyle</a><li>pixelSize: <a href="tqstyle.html#pixelMetric">TQStyle</a><li>pixelSize:
<a href="ntqfont.html#pixelSize">TQFont</a> <a href="ntqfontinfo.html#pixelSize">TQFontInfo</a><li>pixmap: <a href="ntqfont.html#pixelSize">TQFont</a> <a href="ntqfontinfo.html#pixelSize">TQFontInfo</a><li>pixmap:
<a href="ntqbrush.html#pixmap">TQBrush</a> <a href="ntqbutton.html#pixmap">TQButton</a> <a href="ntqbutton.html#pixmap">TQCheckBox</a> <a href="ntqclipboard.html#pixmap">TQClipboard</a> <a href="ntqcombobox.html#pixmap">TQComboBox</a> <a href="ntqdragobject.html#pixmap">TQDragObject</a> <a href="qfileiconprovider.html#pixmap">TQFileIconProvider</a> <a href="tqiconset.html#pixmap">TQIconSet</a> <a href="tqiconviewitem.html#pixmap">TQIconViewItem</a> <a href="ntqlabel.html#pixmap">TQLabel</a> <a href="ntqlistbox.html#pixmap">TQListBox</a> <a href="qlistboxitem.html#pixmap">TQListBoxItem</a> <a href="qlistboxpixmap.html#pixmap">TQListBoxPixmap</a> <a href="qlistviewitem.html#pixmap">TQListViewItem</a> <a href="tqmenudata.html#pixmap">TQMenuData</a> <a href="tqmenudata.html#pixmap">TQPopupMenu</a> <a href="ntqbutton.html#pixmap">TQPushButton</a> <a href="ntqbutton.html#pixmap">TQRadioButton</a> <a href="ntqsplashscreen.html#pixmap">TQSplashScreen</a> <a href="ntqtable.html#pixmap">TQTable</a> <a href="qtableitem.html#pixmap">TQTableItem</a><li>pixmapHotSpot: <a href="ntqbrush.html#pixmap">TQBrush</a> <a href="ntqbutton.html#pixmap">TQButton</a> <a href="ntqbutton.html#pixmap">TQCheckBox</a> <a href="ntqclipboard.html#pixmap">TQClipboard</a> <a href="ntqcombobox.html#pixmap">TQComboBox</a> <a href="tqdragobject.html#pixmap">TQDragObject</a> <a href="qfileiconprovider.html#pixmap">TQFileIconProvider</a> <a href="tqiconset.html#pixmap">TQIconSet</a> <a href="tqiconviewitem.html#pixmap">TQIconViewItem</a> <a href="ntqlabel.html#pixmap">TQLabel</a> <a href="ntqlistbox.html#pixmap">TQListBox</a> <a href="qlistboxitem.html#pixmap">TQListBoxItem</a> <a href="qlistboxpixmap.html#pixmap">TQListBoxPixmap</a> <a href="qlistviewitem.html#pixmap">TQListViewItem</a> <a href="tqmenudata.html#pixmap">TQMenuData</a> <a href="tqmenudata.html#pixmap">TQPopupMenu</a> <a href="ntqbutton.html#pixmap">TQPushButton</a> <a href="ntqbutton.html#pixmap">TQRadioButton</a> <a href="ntqsplashscreen.html#pixmap">TQSplashScreen</a> <a href="ntqtable.html#pixmap">TQTable</a> <a href="qtableitem.html#pixmap">TQTableItem</a><li>pixmapHotSpot:
<a href="ntqdragobject.html#pixmapHotSpot">TQDragObject</a><li>pixmapRect: <a href="tqdragobject.html#pixmapHotSpot">TQDragObject</a><li>pixmapRect:
<a href="tqiconviewitem.html#pixmapRect">TQIconViewItem</a><li>pixmapSizeChanged: <a href="tqiconviewitem.html#pixmapRect">TQIconViewItem</a><li>pixmapSizeChanged:
<a href="tqmainwindow.html#pixmapSizeChanged">TQMainWindow</a><li>place: <a href="tqmainwindow.html#pixmapSizeChanged">TQMainWindow</a><li>place:
<a href="ntqdockwindow.html#place">TQDockWindow</a><li>placeChanged: <a href="ntqdockwindow.html#place">TQDockWindow</a><li>placeChanged:
@ -1939,7 +1939,7 @@ packImage:
<a href="ntqcombobox.html#popup">TQComboBox</a> <a href="tqpopupmenu.html#popup">TQPopupMenu</a> <a href="ntqpushbutton.html#popup">TQPushButton</a> <a href="tqtoolbutton.html#popup">TQToolButton</a><li>popupDelay: <a href="ntqcombobox.html#popup">TQComboBox</a> <a href="tqpopupmenu.html#popup">TQPopupMenu</a> <a href="ntqpushbutton.html#popup">TQPushButton</a> <a href="tqtoolbutton.html#popup">TQToolButton</a><li>popupDelay:
<a href="tqtoolbutton.html#popupDelay">TQToolButton</a><li>port: <a href="tqtoolbutton.html#popupDelay">TQToolButton</a><li>port:
<a href="ntqserversocket.html#port">TQServerSocket</a> <a href="ntqsocket.html#port">TQSocket</a> <a href="ntqsocketdevice.html#port">TQSocketDevice</a> <a href="tqsqldatabase.html#port">TQSqlDatabase</a> <a href="ntqurl.html#port">TQUrl</a><li>pos: <a href="ntqserversocket.html#port">TQServerSocket</a> <a href="ntqsocket.html#port">TQSocket</a> <a href="ntqsocketdevice.html#port">TQSocketDevice</a> <a href="tqsqldatabase.html#port">TQSqlDatabase</a> <a href="ntqurl.html#port">TQUrl</a><li>pos:
<a href="qcontextmenuevent.html#pos">TQContextMenuEvent</a> <a href="ntqcursor.html#pos">TQCursor</a> <a href="qdropevent.html#pos">TQDropEvent</a> <a href="tqiconviewitem.html#pos">TQIconViewItem</a> <a href="qmouseevent.html#pos">TQMouseEvent</a> <a href="qmoveevent.html#pos">TQMoveEvent</a> <a href="ntqregexp.html#pos">TQRegExp</a> <a href="qtabletevent.html#pos">TQTabletEvent</a> <a href="qwheelevent.html#pos">TQWheelEvent</a> <a href="tqwidget.html#pos">TQWidget</a><li>position: <a href="qcontextmenuevent.html#pos">TQContextMenuEvent</a> <a href="ntqcursor.html#pos">TQCursor</a> <a href="tqdropevent.html#pos">TQDropEvent</a> <a href="tqiconviewitem.html#pos">TQIconViewItem</a> <a href="qmouseevent.html#pos">TQMouseEvent</a> <a href="qmoveevent.html#pos">TQMoveEvent</a> <a href="ntqregexp.html#pos">TQRegExp</a> <a href="qtabletevent.html#pos">TQTabletEvent</a> <a href="qwheelevent.html#pos">TQWheelEvent</a> <a href="tqwidget.html#pos">TQWidget</a><li>position:
<a href="tqsqlrecord.html#position">TQSqlRecord</a><li>positionFromValue: <a href="tqsqlrecord.html#position">TQSqlRecord</a><li>positionFromValue:
<a href="ntqrangecontrol.html#positionFromValue">TQRangeControl</a><li>post: <a href="ntqrangecontrol.html#positionFromValue">TQRangeControl</a><li>post:
<a href="ntqhttp.html#post">TQHttp</a><li>postEvent: <a href="ntqhttp.html#post">TQHttp</a><li>postEvent:
@ -1983,7 +1983,7 @@ packImage:
<a href="ntqmetaobject.html#propertyNames">TQMetaObject</a><li>protocol: <a href="ntqmetaobject.html#propertyNames">TQMetaObject</a><li>protocol:
<a href="ntqsocketdevice.html#protocol">TQSocketDevice</a> <a href="ntqurl.html#protocol">TQUrl</a><li>protocolDetail: <a href="ntqsocketdevice.html#protocol">TQSocketDevice</a> <a href="ntqurl.html#protocol">TQUrl</a><li>protocolDetail:
<a href="qnetworkoperation.html#protocolDetail">TQNetworkOperation</a><li>provides: <a href="qnetworkoperation.html#protocolDetail">TQNetworkOperation</a><li>provides:
<a href="qdropevent.html#provides">TQDropEvent</a> <a href="qmimesource.html#provides">TQMimeSource</a><li>publicId: <a href="tqdropevent.html#provides">TQDropEvent</a> <a href="tqmimesource.html#provides">TQMimeSource</a><li>publicId:
<a href="tqdomdocumenttype.html#publicId">TQDomDocumentType</a> <a href="tqdomentity.html#publicId">TQDomEntity</a> <a href="tqdomnotation.html#publicId">TQDomNotation</a> <a href="tqxmlparseexception.html#publicId">TQXmlParseException</a><li>push: <a href="tqdomdocumenttype.html#publicId">TQDomDocumentType</a> <a href="tqdomentity.html#publicId">TQDomEntity</a> <a href="tqdomnotation.html#publicId">TQDomNotation</a> <a href="tqxmlparseexception.html#publicId">TQXmlParseException</a><li>push:
<a href="tqptrstack.html#push">TQPtrStack</a> <a href="tqvaluestack.html#push">TQValueStack</a><li>pushContext: <a href="tqptrstack.html#push">TQPtrStack</a> <a href="tqvaluestack.html#push">TQValueStack</a><li>pushContext:
<a href="tqxmlnamespacesupport.html#pushContext">TQXmlNamespaceSupport</a><li>pushData: <a href="tqxmlnamespacesupport.html#pushContext">TQXmlNamespaceSupport</a><li>pushData:
@ -2127,7 +2127,7 @@ rBottom:
<a href="ntqdockarea.html#removeDockWindow">TQDockArea</a> <a href="tqmainwindow.html#removeDockWindow">TQMainWindow</a><li>removeEntry: <a href="ntqdockarea.html#removeDockWindow">TQDockArea</a> <a href="tqmainwindow.html#removeDockWindow">TQMainWindow</a><li>removeEntry:
<a href="ntqsettings.html#removeEntry">TQSettings</a><li>removeEventFilter: <a href="ntqsettings.html#removeEntry">TQSettings</a><li>removeEventFilter:
<a href="tqobject.html#removeEventFilter">TQObject</a><li>removeFactory: <a href="tqobject.html#removeEventFilter">TQObject</a><li>removeFactory:
<a href="qmimesourcefactory.html#removeFactory">TQMimeSourceFactory</a><li>removeFirst: <a href="tqmimesourcefactory.html#removeFactory">TQMimeSourceFactory</a><li>removeFirst:
<a href="tqptrlist.html#removeFirst">TQPtrList</a><li>removeFrom: <a href="tqptrlist.html#removeFirst">TQPtrList</a><li>removeFrom:
<a href="tqaction.html#removeFrom">TQAction</a><li>removeItem: <a href="tqaction.html#removeFrom">TQAction</a><li>removeItem:
<a href="ntqaccel.html#removeItem">TQAccel</a> <a href="ntqcombobox.html#removeItem">TQComboBox</a> <a href="ntqlayout.html#removeItem">TQLayout</a> <a href="ntqlistbox.html#removeItem">TQListBox</a> <a href="tqmenudata.html#removeItem">TQMenuBar</a> <a href="tqmenudata.html#removeItem">TQMenuData</a> <a href="tqmenudata.html#removeItem">TQPopupMenu</a> <a href="tqtoolbox.html#removeItem">TQToolBox</a><li>removeItemAt: <a href="ntqaccel.html#removeItem">TQAccel</a> <a href="ntqcombobox.html#removeItem">TQComboBox</a> <a href="ntqlayout.html#removeItem">TQLayout</a> <a href="ntqlistbox.html#removeItem">TQListBox</a> <a href="tqmenudata.html#removeItem">TQMenuBar</a> <a href="tqmenudata.html#removeItem">TQMenuData</a> <a href="tqmenudata.html#removeItem">TQPopupMenu</a> <a href="tqtoolbox.html#removeItem">TQToolBox</a><li>removeItemAt:
@ -2312,7 +2312,7 @@ sRect:
<a href="qdatasource.html#sendTo">TQDataSource</a> <a href="qiodevicesource.html#sendTo">TQIODeviceSource</a><li>sender: <a href="qdatasource.html#sendTo">TQDataSource</a> <a href="qiodevicesource.html#sendTo">TQIODeviceSource</a><li>sender:
<a href="tqobject.html#sender">TQObject</a><li>separator: <a href="tqobject.html#sender">TQObject</a><li>separator:
<a href="tqdateedit.html#separator">TQDateEdit</a> <a href="ntqdir.html#separator">TQDir</a> <a href="tqtimeedit.html#separator">TQTimeEdit</a><li>serialNumber: <a href="tqdateedit.html#separator">TQDateEdit</a> <a href="ntqdir.html#separator">TQDir</a> <a href="tqtimeedit.html#separator">TQTimeEdit</a><li>serialNumber:
<a href="qmimesource.html#serialNumber">TQMimeSource</a> <a href="ntqpalette.html#serialNumber">TQPalette</a> <a href="ntqpixmap.html#serialNumber">TQPixmap</a><li>servers: <a href="tqmimesource.html#serialNumber">TQMimeSource</a> <a href="ntqpalette.html#serialNumber">TQPalette</a> <a href="ntqpixmap.html#serialNumber">TQPixmap</a><li>servers:
<a href="ntqdns.html#servers">TQDns</a><li>sessionId: <a href="ntqdns.html#servers">TQDns</a><li>sessionId:
<a href="ntqapplication.html#sessionId">TQApplication</a> <a href="tqsessionmanager.html#sessionId">TQSessionManager</a><li>sessionKey: <a href="ntqapplication.html#sessionId">TQApplication</a> <a href="tqsessionmanager.html#sessionId">TQSessionManager</a><li>sessionKey:
<a href="ntqapplication.html#sessionKey">TQApplication</a> <a href="tqsessionmanager.html#sessionKey">TQSessionManager</a><li>setAccel: <a href="ntqapplication.html#sessionKey">TQApplication</a> <a href="tqsessionmanager.html#sessionKey">TQSessionManager</a><li>setAccel:
@ -2320,7 +2320,7 @@ sRect:
<a href="ntqdockarea.html#setAcceptDockWindow">TQDockArea</a><li>setAcceptDrops: <a href="ntqdockarea.html#setAcceptDockWindow">TQDockArea</a><li>setAcceptDrops:
<a href="tqwidget.html#setAcceptDrops">TQWidget</a><li>setAccum: <a href="tqwidget.html#setAcceptDrops">TQWidget</a><li>setAccum:
<a href="qglformat.html#setAccum">TQGLFormat</a><li>setAction: <a href="qglformat.html#setAccum">TQGLFormat</a><li>setAction:
<a href="qdropevent.html#setAction">TQDropEvent</a><li>setActive: <a href="tqdropevent.html#setAction">TQDropEvent</a><li>setActive:
<a href="tqcanvasitem.html#setActive">TQCanvasItem</a> <a href="ntqpalette.html#setActive">TQPalette</a> <a href="tqsqlresult.html#setActive">TQSqlResult</a><li>setActiveItem: <a href="tqcanvasitem.html#setActive">TQCanvasItem</a> <a href="ntqpalette.html#setActive">TQPalette</a> <a href="tqsqlresult.html#setActive">TQSqlResult</a><li>setActiveItem:
<a href="tqpopupmenu.html#setActiveItem">TQPopupMenu</a><li>setActiveWindow: <a href="tqpopupmenu.html#setActiveItem">TQPopupMenu</a><li>setActiveWindow:
<a href="tqwidget.html#setActiveWindow">TQWidget</a> <a href="qxtwidget.html#setActiveWindow">TQXtWidget</a><li>setAddress: <a href="tqwidget.html#setActiveWindow">TQWidget</a> <a href="qxtwidget.html#setActiveWindow">TQXtWidget</a><li>setAddress:
@ -2419,7 +2419,7 @@ sRect:
<a href="qgridlayout.html#setColSpacing">TQGridLayout</a><li>setColStretch: <a href="qgridlayout.html#setColSpacing">TQGridLayout</a><li>setColStretch:
<a href="qgridlayout.html#setColStretch">TQGridLayout</a><li>setCollapsible: <a href="qgridlayout.html#setColStretch">TQGridLayout</a><li>setCollapsible:
<a href="ntqsplitter.html#setCollapsible">TQSplitter</a><li>setColor: <a href="ntqsplitter.html#setCollapsible">TQSplitter</a><li>setColor:
<a href="ntqbrush.html#setColor">TQBrush</a> <a href="tqcanvastext.html#setColor">TQCanvasText</a> <a href="qcolordrag.html#setColor">TQColorDrag</a> <a href="qcolorgroup.html#setColor">TQColorGroup</a> <a href="tqimage.html#setColor">TQImage</a> <a href="ntqpalette.html#setColor">TQPalette</a> <a href="ntqpen.html#setColor">TQPen</a> <a href="tqstylesheetitem.html#setColor">TQStyleSheetItem</a> <a href="tqtextedit.html#setColor">TQTextEdit</a><li>setColorMode: <a href="ntqbrush.html#setColor">TQBrush</a> <a href="tqcanvastext.html#setColor">TQCanvasText</a> <a href="tqcolordrag.html#setColor">TQColorDrag</a> <a href="qcolorgroup.html#setColor">TQColorGroup</a> <a href="tqimage.html#setColor">TQImage</a> <a href="ntqpalette.html#setColor">TQPalette</a> <a href="ntqpen.html#setColor">TQPen</a> <a href="tqstylesheetitem.html#setColor">TQStyleSheetItem</a> <a href="tqtextedit.html#setColor">TQTextEdit</a><li>setColorMode:
<a href="ntqprinter.html#setColorMode">TQPrinter</a><li>setColorSpec: <a href="ntqprinter.html#setColorMode">TQPrinter</a><li>setColorSpec:
<a href="ntqapplication.html#setColorSpec">TQApplication</a><li>setColormap: <a href="ntqapplication.html#setColorSpec">TQApplication</a><li>setColormap:
<a href="qglwidget.html#setColormap">TQGLWidget</a><li>setColumn: <a href="qglwidget.html#setColormap">TQGLWidget</a><li>setColumn:
@ -2470,7 +2470,7 @@ sRect:
<a href="ntqcolordialog.html#setCustomColor">TQColorDialog</a><li>setCustomHighlighting: <a href="ntqcolordialog.html#setCustomColor">TQColorDialog</a><li>setCustomHighlighting:
<a href="qlistboxitem.html#setCustomHighlighting">TQListBoxItem</a><li>setDTDHandler: <a href="qlistboxitem.html#setCustomHighlighting">TQListBoxItem</a><li>setDTDHandler:
<a href="tqxmlreader.html#setDTDHandler">TQXmlReader</a><li>setData: <a href="tqxmlreader.html#setDTDHandler">TQXmlReader</a><li>setData:
<a href="ntqclipboard.html#setData">TQClipboard</a> <a href="qcustomevent.html#setData">TQCustomEvent</a> <a href="tqdomcharacterdata.html#setData">TQDomCharacterData</a> <a href="tqdomprocessinginstruction.html#setData">TQDomProcessingInstruction</a> <a href="tqicondragitem.html#setData">TQIconDragItem</a> <a href="qmimesourcefactory.html#setData">TQMimeSourceFactory</a> <a href="ntqpicture.html#setData">TQPicture</a> <a href="tqxmlinputsource.html#setData">TQXmlInputSource</a><li>setDatabaseName: <a href="ntqclipboard.html#setData">TQClipboard</a> <a href="qcustomevent.html#setData">TQCustomEvent</a> <a href="tqdomcharacterdata.html#setData">TQDomCharacterData</a> <a href="tqdomprocessinginstruction.html#setData">TQDomProcessingInstruction</a> <a href="tqicondragitem.html#setData">TQIconDragItem</a> <a href="tqmimesourcefactory.html#setData">TQMimeSourceFactory</a> <a href="ntqpicture.html#setData">TQPicture</a> <a href="tqxmlinputsource.html#setData">TQXmlInputSource</a><li>setDatabaseName:
<a href="tqsqldatabase.html#setDatabaseName">TQSqlDatabase</a><li>setDatabaseText: <a href="tqsqldatabase.html#setDatabaseName">TQSqlDatabase</a><li>setDatabaseText:
<a href="tqsqlerror.html#setDatabaseText">TQSqlError</a><li>setDate: <a href="tqsqlerror.html#setDatabaseText">TQSqlError</a><li>setDate:
<a href="tqdateedit.html#setDate">TQDateEdit</a> <a href="tqdatetime.html#setDate">TQDateTime</a><li>setDateFormat: <a href="tqdateedit.html#setDate">TQDateEdit</a> <a href="tqdatetime.html#setDate">TQDateTime</a><li>setDateFormat:
@ -2483,7 +2483,7 @@ sRect:
<a href="ntqfile.html#setDecodingFunction">TQFile</a><li>setDefault: <a href="ntqfile.html#setDecodingFunction">TQFile</a><li>setDefault:
<a href="ntqlocale.html#setDefault">TQLocale</a> <a href="ntqpushbutton.html#setDefault">TQPushButton</a><li>setDefaultButton: <a href="ntqlocale.html#setDefault">TQLocale</a> <a href="ntqpushbutton.html#setDefault">TQPushButton</a><li>setDefaultButton:
<a href="ntqtabdialog.html#setDefaultButton">TQTabDialog</a><li>setDefaultFactory: <a href="ntqtabdialog.html#setDefaultButton">TQTabDialog</a><li>setDefaultFactory:
<a href="qmimesourcefactory.html#setDefaultFactory">TQMimeSourceFactory</a><li>setDefaultFont: <a href="tqmimesourcefactory.html#setDefaultFactory">TQMimeSourceFactory</a><li>setDefaultFont:
<a href="ntqsimplerichtext.html#setDefaultFont">TQSimpleRichText</a><li>setDefaultFormat: <a href="ntqsimplerichtext.html#setDefaultFont">TQSimpleRichText</a><li>setDefaultFormat:
<a href="qglformat.html#setDefaultFormat">TQGLFormat</a><li>setDefaultOptimization: <a href="qglformat.html#setDefaultFormat">TQGLFormat</a><li>setDefaultOptimization:
<a href="ntqpixmap.html#setDefaultOptimization">TQPixmap</a><li>setDefaultOverlayFormat: <a href="ntqpixmap.html#setDefaultOptimization">TQPixmap</a><li>setDefaultOverlayFormat:
@ -2527,7 +2527,7 @@ sRect:
<a href="ntqmultilineedit.html#setEdited">TQMultiLineEdit</a><li>setEffectEnabled: <a href="ntqmultilineedit.html#setEdited">TQMultiLineEdit</a><li>setEffectEnabled:
<a href="ntqapplication.html#setEffectEnabled">TQApplication</a><li>setEnabled: <a href="ntqapplication.html#setEffectEnabled">TQApplication</a><li>setEnabled:
<a href="ntqaccel.html#setEnabled">TQAccel</a> <a href="tqaction.html#setEnabled">TQAction</a> <a href="tqcanvasitem.html#setEnabled">TQCanvasItem</a> <a href="ntqlayout.html#setEnabled">TQLayout</a> <a href="qlistviewitem.html#setEnabled">TQListViewItem</a> <a href="ntqsocketnotifier.html#setEnabled">TQSocketNotifier</a> <a href="qtab.html#setEnabled">TQTab</a> <a href="qtableitem.html#setEnabled">TQTableItem</a> <a href="tqtooltipgroup.html#setEnabled">TQToolTipGroup</a> <a href="tqwidget.html#setEnabled">TQWidget</a><li>setEncodedData: <a href="ntqaccel.html#setEnabled">TQAccel</a> <a href="tqaction.html#setEnabled">TQAction</a> <a href="tqcanvasitem.html#setEnabled">TQCanvasItem</a> <a href="ntqlayout.html#setEnabled">TQLayout</a> <a href="qlistviewitem.html#setEnabled">TQListViewItem</a> <a href="ntqsocketnotifier.html#setEnabled">TQSocketNotifier</a> <a href="qtab.html#setEnabled">TQTab</a> <a href="qtableitem.html#setEnabled">TQTableItem</a> <a href="tqtooltipgroup.html#setEnabled">TQToolTipGroup</a> <a href="tqwidget.html#setEnabled">TQWidget</a><li>setEncodedData:
<a href="qstoreddrag.html#setEncodedData">TQStoredDrag</a><li>setEncodedPathAndQuery: <a href="tqstoreddrag.html#setEncodedData">TQStoredDrag</a><li>setEncodedPathAndQuery:
<a href="ntqurl.html#setEncodedPathAndQuery">TQUrl</a><li>setEncoding: <a href="ntqurl.html#setEncodedPathAndQuery">TQUrl</a><li>setEncoding:
<a href="tqtextstream.html#setEncoding">TQTextStream</a><li>setEncodingFunction: <a href="tqtextstream.html#setEncoding">TQTextStream</a><li>setEncodingFunction:
<a href="ntqfile.html#setEncodingFunction">TQFile</a><li>setEntityResolver: <a href="ntqfile.html#setEncodingFunction">TQFile</a><li>setEntityResolver:
@ -2544,14 +2544,14 @@ sRect:
<a href="ntqcstring.html#setExpand">TQCString</a><li>setExpandable: <a href="ntqcstring.html#setExpand">TQCString</a><li>setExpandable:
<a href="qlistviewitem.html#setExpandable">TQListViewItem</a><li>setExtension: <a href="qlistviewitem.html#setExpandable">TQListViewItem</a><li>setExtension:
<a href="ntqdialog.html#setExtension">TQDialog</a><li>setExtensionType: <a href="ntqdialog.html#setExtension">TQDialog</a><li>setExtensionType:
<a href="qmimesourcefactory.html#setExtensionType">TQMimeSourceFactory</a><li>setFalseText: <a href="tqmimesourcefactory.html#setExtensionType">TQMimeSourceFactory</a><li>setFalseText:
<a href="tqdatatable.html#setFalseText">TQDataTable</a><li>setFamily: <a href="tqdatatable.html#setFalseText">TQDataTable</a><li>setFamily:
<a href="ntqfont.html#setFamily">TQFont</a> <a href="tqtextedit.html#setFamily">TQTextEdit</a><li>setFeature: <a href="ntqfont.html#setFamily">TQFont</a> <a href="tqtextedit.html#setFamily">TQTextEdit</a><li>setFeature:
<a href="tqxmlreader.html#setFeature">TQXmlReader</a> <a href="tqxmlsimplereader.html#setFeature">TQXmlSimpleReader</a><li>setFile: <a href="tqxmlreader.html#setFeature">TQXmlReader</a> <a href="tqxmlsimplereader.html#setFeature">TQXmlSimpleReader</a><li>setFile:
<a href="ntqfileinfo.html#setFile">TQFileInfo</a> <a href="ntqurlinfo.html#setFile">TQUrlInfo</a><li>setFileName: <a href="ntqfileinfo.html#setFile">TQFileInfo</a> <a href="ntqurlinfo.html#setFile">TQUrlInfo</a><li>setFileName:
<a href="tqimageio.html#setFileName">TQImageIO</a> <a href="ntqurl.html#setFileName">TQUrl</a><li>setFileNames: <a href="tqimageio.html#setFileName">TQImageIO</a> <a href="ntqurl.html#setFileName">TQUrl</a><li>setFileNames:
<a href="quridrag.html#setFileNames">TQUriDrag</a><li>setFilePath: <a href="tquridrag.html#setFileNames">TQUriDrag</a><li>setFilePath:
<a href="qmimesourcefactory.html#setFilePath">TQMimeSourceFactory</a><li>setFilter: <a href="tqmimesourcefactory.html#setFilePath">TQMimeSourceFactory</a><li>setFilter:
<a href="tqdatabrowser.html#setFilter">TQDataBrowser</a> <a href="tqdatatable.html#setFilter">TQDataTable</a> <a href="ntqdir.html#setFilter">TQDir</a> <a href="ntqfiledialog.html#setFilter">TQFileDialog</a> <a href="tqsqlcursor.html#setFilter">TQSqlCursor</a><li>setFilters: <a href="tqdatabrowser.html#setFilter">TQDataBrowser</a> <a href="tqdatatable.html#setFilter">TQDataTable</a> <a href="ntqdir.html#setFilter">TQDir</a> <a href="ntqfiledialog.html#setFilter">TQFileDialog</a> <a href="tqsqlcursor.html#setFilter">TQSqlCursor</a><li>setFilters:
<a href="ntqfiledialog.html#setFilters">TQFileDialog</a><li>setFinishEnabled: <a href="ntqfiledialog.html#setFilters">TQFileDialog</a><li>setFinishEnabled:
<a href="ntqwizard.html#setFinishEnabled">TQWizard</a><li>setFixedExtentHeight: <a href="ntqwizard.html#setFinishEnabled">TQWizard</a><li>setFixedExtentHeight:
@ -2622,7 +2622,7 @@ sRect:
<a href="tqwidget.html#setIconText">TQWidget</a><li>setId: <a href="tqwidget.html#setIconText">TQWidget</a><li>setId:
<a href="tqmenudata.html#setId">TQMenuData</a><li>setIdentifier: <a href="tqmenudata.html#setId">TQMenuData</a><li>setIdentifier:
<a href="qtab.html#setIdentifier">TQTab</a><li>setImage: <a href="qtab.html#setIdentifier">TQTab</a><li>setImage:
<a href="tqcanvaspixmaparray.html#setImage">TQCanvasPixmapArray</a> <a href="ntqclipboard.html#setImage">TQClipboard</a> <a href="tqimagedrag.html#setImage">TQImageDrag</a> <a href="tqimageio.html#setImage">TQImageIO</a> <a href="qmimesourcefactory.html#setImage">TQMimeSourceFactory</a><li>setInactive: <a href="tqcanvaspixmaparray.html#setImage">TQCanvasPixmapArray</a> <a href="ntqclipboard.html#setImage">TQClipboard</a> <a href="tqimagedrag.html#setImage">TQImageDrag</a> <a href="tqimageio.html#setImage">TQImageIO</a> <a href="tqmimesourcefactory.html#setImage">TQMimeSourceFactory</a><li>setInactive:
<a href="ntqpalette.html#setInactive">TQPalette</a><li>setIndent: <a href="ntqpalette.html#setInactive">TQPalette</a><li>setIndent:
<a href="ntqlabel.html#setIndent">TQLabel</a><li>setIndicator: <a href="ntqlabel.html#setIndent">TQLabel</a><li>setIndicator:
<a href="ntqprogressbar.html#setIndicator">TQProgressBar</a><li>setIndicatorFollowsStyle: <a href="ntqprogressbar.html#setIndicator">TQProgressBar</a><li>setIndicatorFollowsStyle:
@ -2774,10 +2774,10 @@ sRect:
<a href="tqimage.html#setPixel">TQImage</a><li>setPixelAlignment: <a href="tqimage.html#setPixel">TQImage</a><li>setPixelAlignment:
<a href="qpngimagepacker.html#setPixelAlignment">TQPNGImagePacker</a><li>setPixelSize: <a href="qpngimagepacker.html#setPixelAlignment">TQPNGImagePacker</a><li>setPixelSize:
<a href="ntqfont.html#setPixelSize">TQFont</a><li>setPixmap: <a href="ntqfont.html#setPixelSize">TQFont</a><li>setPixmap:
<a href="ntqbrush.html#setPixmap">TQBrush</a> <a href="ntqbutton.html#setPixmap">TQButton</a> <a href="ntqbutton.html#setPixmap">TQCheckBox</a> <a href="ntqclipboard.html#setPixmap">TQClipboard</a> <a href="ntqdragobject.html#setPixmap">TQDragObject</a> <a href="tqiconset.html#setPixmap">TQIconSet</a> <a href="tqiconviewitem.html#setPixmap">TQIconViewItem</a> <a href="ntqlabel.html#setPixmap">TQLabel</a> <a href="qlistviewitem.html#setPixmap">TQListViewItem</a> <a href="qmimesourcefactory.html#setPixmap">TQMimeSourceFactory</a> <a href="ntqbutton.html#setPixmap">TQPushButton</a> <a href="ntqbutton.html#setPixmap">TQRadioButton</a> <a href="ntqsplashscreen.html#setPixmap">TQSplashScreen</a> <a href="ntqtable.html#setPixmap">TQTable</a> <a href="qtableitem.html#setPixmap">TQTableItem</a><li>setPixmapRect: <a href="ntqbrush.html#setPixmap">TQBrush</a> <a href="ntqbutton.html#setPixmap">TQButton</a> <a href="ntqbutton.html#setPixmap">TQCheckBox</a> <a href="ntqclipboard.html#setPixmap">TQClipboard</a> <a href="tqdragobject.html#setPixmap">TQDragObject</a> <a href="tqiconset.html#setPixmap">TQIconSet</a> <a href="tqiconviewitem.html#setPixmap">TQIconViewItem</a> <a href="ntqlabel.html#setPixmap">TQLabel</a> <a href="qlistviewitem.html#setPixmap">TQListViewItem</a> <a href="tqmimesourcefactory.html#setPixmap">TQMimeSourceFactory</a> <a href="ntqbutton.html#setPixmap">TQPushButton</a> <a href="ntqbutton.html#setPixmap">TQRadioButton</a> <a href="ntqsplashscreen.html#setPixmap">TQSplashScreen</a> <a href="ntqtable.html#setPixmap">TQTable</a> <a href="qtableitem.html#setPixmap">TQTableItem</a><li>setPixmapRect:
<a href="tqiconviewitem.html#setPixmapRect">TQIconViewItem</a><li>setPlane: <a href="tqiconviewitem.html#setPixmapRect">TQIconViewItem</a><li>setPlane:
<a href="qglformat.html#setPlane">TQGLFormat</a><li>setPoint: <a href="qglformat.html#setPlane">TQGLFormat</a><li>setPoint:
<a href="qdropevent.html#setPoint">TQDropEvent</a> <a href="ntqpointarray.html#setPoint">TQPointArray</a><li>setPointSize: <a href="tqdropevent.html#setPoint">TQDropEvent</a> <a href="ntqpointarray.html#setPoint">TQPointArray</a><li>setPointSize:
<a href="ntqfont.html#setPointSize">TQFont</a> <a href="tqtextedit.html#setPointSize">TQTextEdit</a><li>setPointSizeFloat: <a href="ntqfont.html#setPointSize">TQFont</a> <a href="tqtextedit.html#setPointSize">TQTextEdit</a><li>setPointSizeFloat:
<a href="ntqfont.html#setPointSizeFloat">TQFont</a><li>setPoints: <a href="ntqfont.html#setPointSizeFloat">TQFont</a><li>setPoints:
<a href="tqcanvasline.html#setPoints">TQCanvasLine</a> <a href="tqcanvaspolygon.html#setPoints">TQCanvasPolygon</a><li>setPopup: <a href="tqcanvasline.html#setPoints">TQCanvasLine</a> <a href="tqcanvaspolygon.html#setPoints">TQCanvasPolygon</a><li>setPopup:
@ -2922,7 +2922,7 @@ sRect:
<a href="ntqpainter.html#setTabStops">TQPainter</a><li>setTabToolTip: <a href="ntqpainter.html#setTabStops">TQPainter</a><li>setTabToolTip:
<a href="ntqtabwidget.html#setTabToolTip">TQTabWidget</a><li>setTagName: <a href="ntqtabwidget.html#setTabToolTip">TQTabWidget</a><li>setTagName:
<a href="tqdomelement.html#setTagName">TQDomElement</a><li>setText: <a href="tqdomelement.html#setTagName">TQDomElement</a><li>setText:
<a href="qaccessibleinterface.html#setText">TQAccessibleInterface</a> <a href="tqaction.html#setText">TQAction</a> <a href="ntqbutton.html#setText">TQButton</a> <a href="tqcanvastext.html#setText">TQCanvasText</a> <a href="ntqbutton.html#setText">TQCheckBox</a> <a href="ntqclipboard.html#setText">TQClipboard</a> <a href="tqiconviewitem.html#setText">TQIconViewItem</a> <a href="tqimage.html#setText">TQImage</a> <a href="ntqlabel.html#setText">TQLabel</a> <a href="ntqlineedit.html#setText">TQLineEdit</a> <a href="qlistboxitem.html#setText">TQListBoxItem</a> <a href="qlistviewitem.html#setText">TQListViewItem</a> <a href="ntqmessagebox.html#setText">TQMessageBox</a> <a href="qmimesourcefactory.html#setText">TQMimeSourceFactory</a> <a href="ntqbutton.html#setText">TQPushButton</a> <a href="ntqbutton.html#setText">TQRadioButton</a> <a href="qtab.html#setText">TQTab</a> <a href="ntqtable.html#setText">TQTable</a> <a href="qtableitem.html#setText">TQTableItem</a> <a href="tqtextdrag.html#setText">TQTextDrag</a> <a href="tqtextedit.html#setText">TQTextEdit</a><li>setTextFlags: <a href="qaccessibleinterface.html#setText">TQAccessibleInterface</a> <a href="tqaction.html#setText">TQAction</a> <a href="ntqbutton.html#setText">TQButton</a> <a href="tqcanvastext.html#setText">TQCanvasText</a> <a href="ntqbutton.html#setText">TQCheckBox</a> <a href="ntqclipboard.html#setText">TQClipboard</a> <a href="tqiconviewitem.html#setText">TQIconViewItem</a> <a href="tqimage.html#setText">TQImage</a> <a href="ntqlabel.html#setText">TQLabel</a> <a href="ntqlineedit.html#setText">TQLineEdit</a> <a href="qlistboxitem.html#setText">TQListBoxItem</a> <a href="qlistviewitem.html#setText">TQListViewItem</a> <a href="ntqmessagebox.html#setText">TQMessageBox</a> <a href="tqmimesourcefactory.html#setText">TQMimeSourceFactory</a> <a href="ntqbutton.html#setText">TQPushButton</a> <a href="ntqbutton.html#setText">TQRadioButton</a> <a href="qtab.html#setText">TQTab</a> <a href="ntqtable.html#setText">TQTable</a> <a href="qtableitem.html#setText">TQTableItem</a> <a href="tqtextdrag.html#setText">TQTextDrag</a> <a href="tqtextedit.html#setText">TQTextEdit</a><li>setTextFlags:
<a href="tqcanvastext.html#setTextFlags">TQCanvasText</a><li>setTextFormat: <a href="tqcanvastext.html#setTextFlags">TQCanvasText</a><li>setTextFormat:
<a href="ntqlabel.html#setTextFormat">TQLabel</a> <a href="ntqmessagebox.html#setTextFormat">TQMessageBox</a> <a href="tqtextedit.html#setTextFormat">TQTextEdit</a><li>setTextLabel: <a href="ntqlabel.html#setTextFormat">TQLabel</a> <a href="ntqmessagebox.html#setTextFormat">TQMessageBox</a> <a href="tqtextedit.html#setTextFormat">TQTextEdit</a><li>setTextLabel:
<a href="tqtoolbutton.html#setTextLabel">TQToolButton</a><li>setTextPosition: <a href="tqtoolbutton.html#setTextLabel">TQToolButton</a><li>setTextPosition:
@ -2961,11 +2961,11 @@ sRect:
<a href="tqtextedit.html#setUndoRedoEnabled">TQTextEdit</a><li>setUnicode: <a href="tqtextedit.html#setUndoRedoEnabled">TQTextEdit</a><li>setUnicode:
<a href="tqstring.html#setUnicode">TQString</a><li>setUnicodeCodes: <a href="tqstring.html#setUnicode">TQString</a><li>setUnicodeCodes:
<a href="tqstring.html#setUnicodeCodes">TQString</a><li>setUnicodeUris: <a href="tqstring.html#setUnicodeCodes">TQString</a><li>setUnicodeUris:
<a href="quridrag.html#setUnicodeUris">TQUriDrag</a><li>setUpLayout: <a href="tquridrag.html#setUnicodeUris">TQUriDrag</a><li>setUpLayout:
<a href="tqmainwindow.html#setUpLayout">TQMainWindow</a><li>setUpdatePeriod: <a href="tqmainwindow.html#setUpLayout">TQMainWindow</a><li>setUpdatePeriod:
<a href="tqcanvas.html#setUpdatePeriod">TQCanvas</a><li>setUpdatesEnabled: <a href="tqcanvas.html#setUpdatePeriod">TQCanvas</a><li>setUpdatesEnabled:
<a href="tqwidget.html#setUpdatesEnabled">TQWidget</a><li>setUris: <a href="tqwidget.html#setUpdatesEnabled">TQWidget</a><li>setUris:
<a href="quridrag.html#setUris">TQUriDrag</a><li>setUrl: <a href="tquridrag.html#setUris">TQUriDrag</a><li>setUrl:
<a href="ntqfiledialog.html#setUrl">TQFileDialog</a> <a href="ntqnetworkprotocol.html#setUrl">TQNetworkProtocol</a><li>setUseHighlightColors: <a href="ntqfiledialog.html#setUrl">TQFileDialog</a> <a href="ntqnetworkprotocol.html#setUrl">TQNetworkProtocol</a><li>setUseHighlightColors:
<a href="ntqmotifstyle.html#setUseHighlightColors">TQMotifStyle</a><li>setUser: <a href="ntqmotifstyle.html#setUseHighlightColors">TQMotifStyle</a><li>setUser:
<a href="ntqurl.html#setUser">TQUrl</a><li>setUserName: <a href="ntqurl.html#setUser">TQUrl</a><li>setUserName:
@ -3085,7 +3085,7 @@ sRect:
<a href="ntqheader.html#sortIndicatorSection">TQHeader</a><li>sortOrder: <a href="ntqheader.html#sortIndicatorSection">TQHeader</a><li>sortOrder:
<a href="ntqlistview.html#sortOrder">TQListView</a><li>sorting: <a href="ntqlistview.html#sortOrder">TQListView</a><li>sorting:
<a href="ntqdir.html#sorting">TQDir</a> <a href="tqiconview.html#sorting">TQIconView</a> <a href="ntqtable.html#sorting">TQTable</a><li>source: <a href="ntqdir.html#sorting">TQDir</a> <a href="tqiconview.html#sorting">TQIconView</a> <a href="ntqtable.html#sorting">TQTable</a><li>source:
<a href="ntqdragobject.html#source">TQDragObject</a> <a href="qdropevent.html#source">TQDropEvent</a> <a href="tqtextbrowser.html#source">TQTextBrowser</a><li>sourceChanged: <a href="tqdragobject.html#source">TQDragObject</a> <a href="tqdropevent.html#source">TQDropEvent</a> <a href="tqtextbrowser.html#source">TQTextBrowser</a><li>sourceChanged:
<a href="tqtextbrowser.html#sourceChanged">TQTextBrowser</a><li>sourceText: <a href="tqtextbrowser.html#sourceChanged">TQTextBrowser</a><li>sourceText:
<a href="qtranslatormessage.html#sourceText">TQTranslatorMessage</a><li>spacePressed: <a href="qtranslatormessage.html#sourceText">TQTranslatorMessage</a><li>spacePressed:
<a href="ntqlistview.html#spacePressed">TQListView</a><li>spacerItem: <a href="ntqlistview.html#spacePressed">TQListView</a><li>spacerItem:
@ -3204,10 +3204,10 @@ tab:
<a href="tqdomelement.html#tagName">TQDomElement</a><li>take: <a href="tqdomelement.html#tagName">TQDomElement</a><li>take:
<a href="ntqasciicache.html#take">TQAsciiCache</a> <a href="ntqasciidict.html#take">TQAsciiDict</a> <a href="ntqcache.html#take">TQCache</a> <a href="ntqdict.html#take">TQDict</a> <a href="ntqintcache.html#take">TQIntCache</a> <a href="ntqintdict.html#take">TQIntDict</a> <a href="tqptrdict.html#take">TQPtrDict</a> <a href="tqptrlist.html#take">TQPtrList</a> <a href="tqptrvector.html#take">TQPtrVector</a><li>takeCurrent: <a href="ntqasciicache.html#take">TQAsciiCache</a> <a href="ntqasciidict.html#take">TQAsciiDict</a> <a href="ntqcache.html#take">TQCache</a> <a href="ntqdict.html#take">TQDict</a> <a href="ntqintcache.html#take">TQIntCache</a> <a href="ntqintdict.html#take">TQIntDict</a> <a href="tqptrdict.html#take">TQPtrDict</a> <a href="tqptrlist.html#take">TQPtrList</a> <a href="tqptrvector.html#take">TQPtrVector</a><li>takeCurrent:
<a href="qglayoutiterator.html#takeCurrent">TQGLayoutIterator</a> <a href="qlayoutiterator.html#takeCurrent">TQLayoutIterator</a><li>takeDefaultFactory: <a href="qglayoutiterator.html#takeCurrent">TQGLayoutIterator</a> <a href="qlayoutiterator.html#takeCurrent">TQLayoutIterator</a><li>takeDefaultFactory:
<a href="qmimesourcefactory.html#takeDefaultFactory">TQMimeSourceFactory</a><li>takeItem: <a href="tqmimesourcefactory.html#takeDefaultFactory">TQMimeSourceFactory</a><li>takeItem:
<a href="tqiconview.html#takeItem">TQIconView</a> <a href="ntqlistbox.html#takeItem">TQListBox</a> <a href="ntqlistview.html#takeItem">TQListView</a> <a href="qlistviewitem.html#takeItem">TQListViewItem</a> <a href="ntqtable.html#takeItem">TQTable</a><li>takeNode: <a href="tqiconview.html#takeItem">TQIconView</a> <a href="ntqlistbox.html#takeItem">TQListBox</a> <a href="ntqlistview.html#takeItem">TQListView</a> <a href="qlistviewitem.html#takeItem">TQListViewItem</a> <a href="ntqtable.html#takeItem">TQTable</a><li>takeNode:
<a href="tqptrlist.html#takeNode">TQPtrList</a><li>target: <a href="tqptrlist.html#takeNode">TQPtrList</a><li>target:
<a href="tqdomprocessinginstruction.html#target">TQDomProcessingInstruction</a> <a href="ntqdragobject.html#target">TQDragObject</a><li>terminate: <a href="tqdomprocessinginstruction.html#target">TQDomProcessingInstruction</a> <a href="tqdragobject.html#target">TQDragObject</a><li>terminate:
<a href="tqthread.html#terminate">TQThread</a><li>testBit: <a href="tqthread.html#terminate">TQThread</a><li>testBit:
<a href="ntqbitarray.html#testBit">TQBitArray</a><li>testOption: <a href="ntqbitarray.html#testBit">TQBitArray</a><li>testOption:
<a href="qglformat.html#testOption">TQGLFormat</a><li>testWFlags: <a href="qglformat.html#testOption">TQGLFormat</a><li>testWFlags:
@ -3359,7 +3359,7 @@ ucs2:
<a href="ntqdockwindow.html#undock">TQDockWindow</a><li>ungetch: <a href="ntqdockwindow.html#undock">TQDockWindow</a><li>ungetch:
<a href="ntqfile.html#ungetch">TQFile</a> <a href="ntqiodevice.html#ungetch">TQIODevice</a> <a href="ntqsocket.html#ungetch">TQSocket</a><li>unicode: <a href="ntqfile.html#ungetch">TQFile</a> <a href="ntqiodevice.html#ungetch">TQIODevice</a> <a href="ntqsocket.html#ungetch">TQSocket</a><li>unicode:
<a href="qchar.html#unicode">TQChar</a> <a href="tqstring.html#unicode">TQString</a><li>unicodeUriToUri: <a href="qchar.html#unicode">TQChar</a> <a href="tqstring.html#unicode">TQString</a><li>unicodeUriToUri:
<a href="quridrag.html#unicodeUriToUri">TQUriDrag</a><li>uniqueId: <a href="tquridrag.html#unicodeUriToUri">TQUriDrag</a><li>uniqueId:
<a href="qtabletevent.html#uniqueId">TQTabletEvent</a><li>unite: <a href="qtabletevent.html#uniqueId">TQTabletEvent</a><li>unite:
<a href="ntqrect.html#unite">TQRect</a> <a href="ntqregion.html#unite">TQRegion</a><li>unload: <a href="ntqrect.html#unite">TQRect</a> <a href="ntqregion.html#unite">TQRegion</a><li>unload:
<a href="ntqlibrary.html#unload">TQLibrary</a><li>unlock: <a href="ntqlibrary.html#unload">TQLibrary</a><li>unlock:
@ -3393,8 +3393,8 @@ ucs2:
<a href="ntqscrollview.html#updateScrollBars">TQScrollView</a><li>upper: <a href="ntqscrollview.html#updateScrollBars">TQScrollView</a><li>upper:
<a href="ntqcstring.html#upper">TQCString</a> <a href="qchar.html#upper">TQChar</a> <a href="tqstring.html#upper">TQString</a><li>uri: <a href="ntqcstring.html#upper">TQCString</a> <a href="qchar.html#upper">TQChar</a> <a href="tqstring.html#upper">TQString</a><li>uri:
<a href="tqxmlattributes.html#uri">TQXmlAttributes</a> <a href="tqxmlnamespacesupport.html#uri">TQXmlNamespaceSupport</a><li>uriToLocalFile: <a href="tqxmlattributes.html#uri">TQXmlAttributes</a> <a href="tqxmlnamespacesupport.html#uri">TQXmlNamespaceSupport</a><li>uriToLocalFile:
<a href="quridrag.html#uriToLocalFile">TQUriDrag</a><li>uriToUnicodeUri: <a href="tquridrag.html#uriToLocalFile">TQUriDrag</a><li>uriToUnicodeUri:
<a href="quridrag.html#uriToUnicodeUri">TQUriDrag</a><li>url: <a href="tquridrag.html#uriToUnicodeUri">TQUriDrag</a><li>url:
<a href="ntqfiledialog.html#url">TQFileDialog</a> <a href="qnpstream.html#url">TQNPStream</a> <a href="ntqnetworkprotocol.html#url">TQNetworkProtocol</a><li>useHighlightColors: <a href="ntqfiledialog.html#url">TQFileDialog</a> <a href="qnpstream.html#url">TQNPStream</a> <a href="ntqnetworkprotocol.html#url">TQNetworkProtocol</a><li>useHighlightColors:
<a href="ntqmotifstyle.html#useHighlightColors">TQMotifStyle</a><li>user: <a href="ntqmotifstyle.html#useHighlightColors">TQMotifStyle</a><li>user:
<a href="ntqurl.html#user">TQUrl</a><li>userAgent: <a href="ntqurl.html#user">TQUrl</a><li>userAgent:

@ -47,11 +47,11 @@ tqdomnotation.h tqdom.h
tqdomentity.h tqdom.h tqdomentity.h tqdom.h
tqdomentityreference.h tqdom.h tqdomentityreference.h tqdom.h
tqdomprocessinginstruction.h tqdom.h tqdomprocessinginstruction.h tqdom.h
qstoreddrag.h ntqdragobject.h tqstoreddrag.h tqdragobject.h
tqtextdrag.h ntqdragobject.h tqtextdrag.h tqdragobject.h
tqimagedrag.h ntqdragobject.h tqimagedrag.h tqdragobject.h
quridrag.h ntqdragobject.h tquridrag.h tqdragobject.h
qcolordrag.h ntqdragobject.h tqcolordrag.h tqdragobject.h
tqtimerevent.h ntqevent.h tqtimerevent.h ntqevent.h
qmouseevent.h ntqevent.h qmouseevent.h ntqevent.h
qwheelevent.h ntqevent.h qwheelevent.h ntqevent.h
@ -67,10 +67,10 @@ qshowevent.h ntqevent.h
qhideevent.h ntqevent.h qhideevent.h ntqevent.h
qcontextmenuevent.h ntqevent.h qcontextmenuevent.h ntqevent.h
qimevent.h ntqevent.h qimevent.h ntqevent.h
qdropevent.h ntqevent.h tqdropevent.h ntqevent.h
qdragmoveevent.h ntqevent.h tqdragmoveevent.h ntqevent.h
qdragenterevent.h ntqevent.h tqdragenterevent.h ntqevent.h
qdragleaveevent.h ntqevent.h tqdragleaveevent.h ntqevent.h
qchildevent.h ntqevent.h qchildevent.h ntqevent.h
qcustomevent.h ntqevent.h qcustomevent.h ntqevent.h
qfileiconprovider.h ntqfiledialog.h qfileiconprovider.h ntqfiledialog.h
@ -110,10 +110,10 @@ tqmapiterator.h tqmap.h
tqmapconstiterator.h tqmap.h tqmapconstiterator.h tqmap.h
qcustommenuitem.h tqmenudata.h qcustommenuitem.h tqmenudata.h
qmetaproperty.h ntqmetaobject.h qmetaproperty.h ntqmetaobject.h
qmimesource.h ntqmime.h tqmimesource.h tqmime.h
qmimesourcefactory.h ntqmime.h tqmimesourcefactory.h tqmime.h
qwindowsmime.h ntqmime.h tqwindowsmime.h tqmime.h
qmacmime.h ntqmime.h tqmacmime.h tqmime.h
tqmutexlocker.h tqmutex.h tqmutexlocker.h tqmutex.h
qnetworkoperation.h ntqnetworkprotocol.h qnetworkoperation.h ntqnetworkprotocol.h
qnpstream.h ntqnp.h qnpstream.h ntqnp.h

@ -78,9 +78,9 @@ body { background: #ffffff; color: black; }
<li><a href="qdockarea-h.html">ntqdockarea.h</a> <li><a href="qdockarea-h.html">ntqdockarea.h</a>
<li><a href="qdockwindow-h.html">ntqdockwindow.h</a> <li><a href="qdockwindow-h.html">ntqdockwindow.h</a>
<li><a href="tqdom-h.html">tqdom.h</a> <li><a href="tqdom-h.html">tqdom.h</a>
<li><a href="qdragobject-h.html">ntqdragobject.h</a> <li><a href="tqdragobject-h.html">tqdragobject.h</a>
<li><a href="qdrawutil-h.html">ntqdrawutil.h</a> <li><a href="qdrawutil-h.html">ntqdrawutil.h</a>
<li><a href="qdropsite-h.html">ntqdropsite.h</a> <li><a href="tqdropsite-h.html">tqdropsite.h</a>
<li><a href="tqeditorfactory-h.html">tqeditorfactory.h</a> <li><a href="tqeditorfactory-h.html">tqeditorfactory.h</a>
<li><a href="qerrormessage-h.html">ntqerrormessage.h</a> <li><a href="qerrormessage-h.html">ntqerrormessage.h</a>
<li><a href="tqeucjpcodec-h.html">tqeucjpcodec.h</a> <li><a href="tqeucjpcodec-h.html">tqeucjpcodec.h</a>
@ -139,7 +139,7 @@ body { background: #ffffff; color: black; }
<li><a href="tqmenudata-h.html">tqmenudata.h</a> <li><a href="tqmenudata-h.html">tqmenudata.h</a>
<li><a href="qmessagebox-h.html">ntqmessagebox.h</a> <li><a href="qmessagebox-h.html">ntqmessagebox.h</a>
<li><a href="qmetaobject-h.html">ntqmetaobject.h</a> <li><a href="qmetaobject-h.html">ntqmetaobject.h</a>
<li><a href="qmime-h.html">ntqmime.h</a> <li><a href="tqmime-h.html">tqmime.h</a>
<li><a href="qmotif-h.html">qmotif.h</a> <li><a href="qmotif-h.html">qmotif.h</a>
<li><a href="qmotifdialog-h.html">qmotifdialog.h</a> <li><a href="qmotifdialog-h.html">qmotifdialog.h</a>
<li><a href="qmotifplusstyle-h.html">ntqmotifplusstyle.h</a> <li><a href="qmotifplusstyle-h.html">ntqmotifplusstyle.h</a>

@ -88,7 +88,7 @@ classes in the TQt API.
<li><a href="tqdomprocessinginstruction.html">TQDomProcessingInstruction</a> <li><a href="tqdomprocessinginstruction.html">TQDomProcessingInstruction</a>
</ul> </ul>
<li><a href="tqdomnodelist.html">TQDomNodeList</a> <li><a href="tqdomnodelist.html">TQDomNodeList</a>
<li><a href="ntqdropsite.html">TQDropSite</a> <li><a href="tqdropsite.html">TQDropSite</a>
<li><a href="ntqfileinfo.html">TQFileInfo</a> <li><a href="ntqfileinfo.html">TQFileInfo</a>
<li><a href="qfilepreview.html">TQFilePreview</a> <li><a href="qfilepreview.html">TQFilePreview</a>
<li><a href="ntqfocusdata.html">TQFocusData</a> <li><a href="ntqfocusdata.html">TQFocusData</a>
@ -142,7 +142,7 @@ classes in the TQt API.
</ul> </ul>
<li><a href="qlistviewitemiterator.html">TQListViewItemIterator</a> <li><a href="qlistviewitemiterator.html">TQListViewItemIterator</a>
<li><a href="ntqlocale.html">TQLocale</a> <li><a href="ntqlocale.html">TQLocale</a>
<li><a href="qmacmime.html">TQMacMime</a> <li><a href="tqmacmime.html">TQMacMime</a>
<li><a href="tqmap.html">TQMap</a> <li><a href="tqmap.html">TQMap</a>
<li><a href="tqmapconstiterator.html">TQMapConstIterator</a> <li><a href="tqmapconstiterator.html">TQMapConstIterator</a>
<li><a href="tqmapiterator.html">TQMapIterator</a> <li><a href="tqmapiterator.html">TQMapIterator</a>
@ -158,8 +158,8 @@ classes in the TQt API.
<li><a href="tqmenudata.html">TQMenuData</a> <li><a href="tqmenudata.html">TQMenuData</a>
<li><a href="ntqmetaobject.html">TQMetaObject</a> <li><a href="ntqmetaobject.html">TQMetaObject</a>
<li><a href="qmetaproperty.html">TQMetaProperty</a> <li><a href="qmetaproperty.html">TQMetaProperty</a>
<li><a href="qmimesource.html">TQMimeSource</a> <li><a href="tqmimesource.html">TQMimeSource</a>
<li><a href="qmimesourcefactory.html">TQMimeSourceFactory</a> <li><a href="tqmimesourcefactory.html">TQMimeSourceFactory</a>
<li><a href="ntqmovie.html">TQMovie</a> <li><a href="ntqmovie.html">TQMovie</a>
<li><a href="tqmutex.html">TQMutex</a> <li><a href="tqmutex.html">TQMutex</a>
<li><a href="tqmutexlocker.html">TQMutexLocker</a> <li><a href="tqmutexlocker.html">TQMutexLocker</a>
@ -264,12 +264,12 @@ classes in the TQt API.
<li><a href="qcloseevent.html">TQCloseEvent</a> <li><a href="qcloseevent.html">TQCloseEvent</a>
<li><a href="qcontextmenuevent.html">TQContextMenuEvent</a> <li><a href="qcontextmenuevent.html">TQContextMenuEvent</a>
<li><a href="qcustomevent.html">TQCustomEvent</a> <li><a href="qcustomevent.html">TQCustomEvent</a>
<li><a href="qdragleaveevent.html">TQDragLeaveEvent</a> <li><a href="tqdragleaveevent.html">TQDragLeaveEvent</a>
<li><a href="qdropevent.html">TQDropEvent</a> <li><a href="tqdropevent.html">TQDropEvent</a>
<ul> <ul>
<li><a href="qdragmoveevent.html">TQDragMoveEvent</a> <li><a href="tqdragmoveevent.html">TQDragMoveEvent</a>
<ul> <ul>
<li><a href="qdragenterevent.html">TQDragEnterEvent</a> <li><a href="tqdragenterevent.html">TQDragEnterEvent</a>
</ul> </ul>
</ul> </ul>
<li><a href="qfocusevent.html">TQFocusEvent</a> <li><a href="qfocusevent.html">TQFocusEvent</a>
@ -308,14 +308,14 @@ classes in the TQt API.
<li><a href="ntqclipboard.html">TQClipboard</a> <li><a href="ntqclipboard.html">TQClipboard</a>
<li><a href="qdatapump.html">TQDataPump</a> <li><a href="qdatapump.html">TQDataPump</a>
<li><a href="ntqdns.html">TQDns</a> <li><a href="ntqdns.html">TQDns</a>
<li><a href="ntqdragobject.html">TQDragObject</a> <li><a href="tqdragobject.html">TQDragObject</a>
<ul> <ul>
<li><a href="tqicondrag.html">TQIconDrag</a> <li><a href="tqicondrag.html">TQIconDrag</a>
<li><a href="tqimagedrag.html">TQImageDrag</a> <li><a href="tqimagedrag.html">TQImageDrag</a>
<li><a href="qstoreddrag.html">TQStoredDrag</a> <li><a href="tqstoreddrag.html">TQStoredDrag</a>
<ul> <ul>
<li><a href="qcolordrag.html">TQColorDrag</a> <li><a href="tqcolordrag.html">TQColorDrag</a>
<li><a href="quridrag.html">TQUriDrag</a> <li><a href="tquridrag.html">TQUriDrag</a>
</ul> </ul>
<li><a href="tqtextdrag.html">TQTextDrag</a> <li><a href="tqtextdrag.html">TQTextDrag</a>
</ul> </ul>
@ -542,7 +542,7 @@ classes in the TQt API.
<li><a href="tqwaitcondition.html">TQWaitCondition</a> <li><a href="tqwaitcondition.html">TQWaitCondition</a>
<li><a href="tqwidgetfactory.html">TQWidgetFactory</a> <li><a href="tqwidgetfactory.html">TQWidgetFactory</a>
<li><a href="tqwidgetplugin.html">TQWidgetPlugin</a> <li><a href="tqwidgetplugin.html">TQWidgetPlugin</a>
<li><a href="qwindowsmime.html">TQWindowsMime</a> <li><a href="tqwindowsmime.html">TQWindowsMime</a>
<li><a href="ntqwmatrix.html">TQWMatrix</a> <li><a href="ntqwmatrix.html">TQWMatrix</a>
<li><a href="tqxmlattributes.html">TQXmlAttributes</a> <li><a href="tqxmlattributes.html">TQXmlAttributes</a>
<li><a href="tqxmlcontenthandler.html">TQXmlContentHandler</a> <li><a href="tqxmlcontenthandler.html">TQXmlContentHandler</a>

@ -49,11 +49,11 @@ view modes, rubberband selection, etc.
#include &lt;<a href="tqiconview-h.html">tqiconview.h</a>&gt; #include &lt;<a href="tqiconview-h.html">tqiconview.h</a>&gt;
#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt; #include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
#include &lt;<a href="qdragobject-h.html">ntqdragobject.h</a>&gt; #include &lt;<a href="tqdragobject-h.html">tqdragobject.h</a>&gt;
#include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt; #include &lt;<a href="qpixmap-h.html">ntqpixmap.h</a>&gt;
#include &lt;<a href="tqiconset-h.html">tqiconset.h</a>&gt; #include &lt;<a href="tqiconset-h.html">tqiconset.h</a>&gt;
#include &lt;<a href="qmime-h.html">ntqmime.h</a>&gt; #include &lt;<a href="tqmime-h.html">tqmime.h</a>&gt;
#include &lt;stdio.h&gt; #include &lt;stdio.h&gt;
class ListenDND : public <a href="tqobject.html">TQObject</a> class ListenDND : public <a href="tqobject.html">TQObject</a>
@ -66,15 +66,15 @@ public:
{} {}
public slots: public slots:
void dropped( <a href="qdropevent.html">TQDropEvent</a> *mime ) { void dropped( <a href="tqdropevent.html">TQDropEvent</a> *mime ) {
<a href="ntqapplication.html#qDebug">tqDebug</a>( "Dropped Mimesource %p into the view %p", mime, view ); <a href="ntqapplication.html#qDebug">tqDebug</a>( "Dropped Mimesource %p into the view %p", mime, view );
<a href="ntqapplication.html#qDebug">tqDebug</a>( " Formats:" ); <a href="ntqapplication.html#qDebug">tqDebug</a>( " Formats:" );
int i = 0; int i = 0;
<a name="x1454"></a> const char *str = mime-&gt;<a href="qdropevent.html#format">format</a>( i ); <a name="x1454"></a> const char *str = mime-&gt;<a href="tqdropevent.html#format">format</a>( i );
<a href="ntqapplication.html#qDebug">tqDebug</a>( " %s", str ); <a href="ntqapplication.html#qDebug">tqDebug</a>( " %s", str );
while ( str ) { while ( str ) {
<a href="ntqapplication.html#qDebug">tqDebug</a>( " %s", str ); <a href="ntqapplication.html#qDebug">tqDebug</a>( " %s", str );
str = mime-&gt;<a href="qdropevent.html#format">format</a>( ++i ); str = mime-&gt;<a href="tqdropevent.html#format">format</a>( ++i );
} }
}; };
void moved() { void moved() {
@ -101,8 +101,8 @@ int main( int argc, char **argv )
tqiconview.<a href="tqwidget.html#setCaption">setCaption</a>( "TQt Example - Iconview" ); tqiconview.<a href="tqwidget.html#setCaption">setCaption</a>( "TQt Example - Iconview" );
ListenDND listen_dnd( &amp;tqiconview ); ListenDND listen_dnd( &amp;tqiconview );
<a name="x1460"></a><a name="x1455"></a> TQObject::<a href="tqobject.html#connect">connect</a>( &amp;tqiconview, TQ_SIGNAL( <a href="tqiconview.html#dropped">dropped</a>( <a href="qdropevent.html">TQDropEvent</a> *, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt; &amp; ) ), <a name="x1460"></a><a name="x1455"></a> TQObject::<a href="tqobject.html#connect">connect</a>( &amp;tqiconview, TQ_SIGNAL( <a href="tqiconview.html#dropped">dropped</a>( <a href="tqdropevent.html">TQDropEvent</a> *, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt; &amp; ) ),
&amp;listen_dnd, TQ_SLOT( dropped( <a href="qdropevent.html">TQDropEvent</a> * ) ) ); &amp;listen_dnd, TQ_SLOT( dropped( <a href="tqdropevent.html">TQDropEvent</a> * ) ) );
<a name="x1456"></a> TQObject::<a href="tqobject.html#connect">connect</a>( &amp;tqiconview, TQ_SIGNAL( <a href="tqiconview.html#moved">moved</a>() ), &amp;listen_dnd, TQ_SLOT( moved() ) ); <a name="x1456"></a> TQObject::<a href="tqobject.html#connect">connect</a>( &amp;tqiconview, TQ_SIGNAL( <a href="tqiconview.html#moved">moved</a>() ), &amp;listen_dnd, TQ_SLOT( moved() ) );
a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &amp;tqiconview ); a.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( &amp;tqiconview );

@ -118,14 +118,14 @@ const char* green_icon[]={
} }
<a name="x2829"></a>void DDListBox::<a href="tqwidget.html#dragEnterEvent">dragEnterEvent</a>( <a href="qdragenterevent.html">TQDragEnterEvent</a> *evt ) <a name="x2829"></a>void DDListBox::<a href="tqwidget.html#dragEnterEvent">dragEnterEvent</a>( <a href="tqdragenterevent.html">TQDragEnterEvent</a> *evt )
{ {
<a name="x2827"></a> if ( TQTextDrag::<a href="tqtextdrag.html#canDecode">canDecode</a>( evt ) ) <a name="x2827"></a> if ( TQTextDrag::<a href="tqtextdrag.html#canDecode">canDecode</a>( evt ) )
<a name="x2819"></a> evt-&gt;<a href="qdragmoveevent.html#accept">accept</a>(); <a name="x2819"></a> evt-&gt;<a href="tqdragmoveevent.html#accept">accept</a>();
} }
<a name="x2830"></a>void DDListBox::<a href="tqwidget.html#dropEvent">dropEvent</a>( <a href="qdropevent.html">TQDropEvent</a> *evt ) <a name="x2830"></a>void DDListBox::<a href="tqwidget.html#dropEvent">dropEvent</a>( <a href="tqdropevent.html">TQDropEvent</a> *evt )
{ {
<a href="tqstring.html">TQString</a> text; <a href="tqstring.html">TQString</a> text;
@ -144,8 +144,8 @@ const char* green_icon[]={
<a name="x2831"></a>void DDListBox::<a href="tqwidget.html#mouseMoveEvent">mouseMoveEvent</a>( <a href="qmouseevent.html">TQMouseEvent</a> * ) <a name="x2831"></a>void DDListBox::<a href="tqwidget.html#mouseMoveEvent">mouseMoveEvent</a>( <a href="qmouseevent.html">TQMouseEvent</a> * )
{ {
if ( dragging ) { if ( dragging ) {
<a href="ntqdragobject.html">TQDragObject</a> *d = new <a href="tqtextdrag.html">TQTextDrag</a>( currentText(), this ); <a href="tqdragobject.html">TQDragObject</a> *d = new <a href="tqtextdrag.html">TQTextDrag</a>( currentText(), this );
<a name="x2818"></a> d-&gt;<a href="ntqdragobject.html#dragCopy">dragCopy</a>(); // do NOT delete d. <a name="x2818"></a> d-&gt;<a href="tqdragobject.html#dragCopy">dragCopy</a>(); // do NOT delete d.
dragging = FALSE; dragging = FALSE;
} }
} }
@ -154,15 +154,15 @@ const char* green_icon[]={
// IconViewIcon -- high level drag and drop // IconViewIcon -- high level drag and drop
<a name="x2822"></a>bool DDIconViewItem::<a href="tqiconviewitem.html#acceptDrop">acceptDrop</a>( const <a href="qmimesource.html">TQMimeSource</a> *mime ) const <a name="x2822"></a>bool DDIconViewItem::<a href="tqiconviewitem.html#acceptDrop">acceptDrop</a>( const <a href="tqmimesource.html">TQMimeSource</a> *mime ) const
{ {
<a name="x2825"></a> if ( mime-&gt;<a href="qmimesource.html#provides">provides</a>( "text/plain" ) ) <a name="x2825"></a> if ( mime-&gt;<a href="tqmimesource.html#provides">provides</a>( "text/plain" ) )
return TRUE; return TRUE;
return FALSE; return FALSE;
} }
<a name="x2823"></a>void DDIconViewItem::<a href="tqiconviewitem.html#dropped">dropped</a>( <a href="qdropevent.html">TQDropEvent</a> *evt, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&amp; ) <a name="x2823"></a>void DDIconViewItem::<a href="tqiconviewitem.html#dropped">dropped</a>( <a href="tqdropevent.html">TQDropEvent</a> *evt, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&amp; )
{ {
<a href="tqstring.html">TQString</a> label; <a href="tqstring.html">TQString</a> label;
@ -178,7 +178,7 @@ const char* green_icon[]={
return new <a href="tqtextdrag.html">TQTextDrag</a>( <a href="tqiconview.html#currentItem">currentItem</a>()-&gt;text(), this ); return new <a href="tqtextdrag.html">TQTextDrag</a>( <a href="tqiconview.html#currentItem">currentItem</a>()-&gt;text(), this );
} }
void <a name="f1"></a>DDIconView::slotNewItem( <a href="qdropevent.html">TQDropEvent</a> *evt, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&amp; ) void <a name="f1"></a>DDIconView::slotNewItem( <a href="tqdropevent.html">TQDropEvent</a> *evt, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&amp; )
{ {
<a href="tqstring.html">TQString</a> label; <a href="tqstring.html">TQString</a> label;

@ -59,8 +59,8 @@ class DDListBox : public <a href="ntqlistbox.html">TQListBox</a>
public: public:
DDListBox( <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, WFlags f = 0 ); DDListBox( <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, WFlags f = 0 );
// Low-level drag and drop // Low-level drag and drop
void dragEnterEvent( <a href="qdragenterevent.html">TQDragEnterEvent</a> *evt ); void dragEnterEvent( <a href="tqdragenterevent.html">TQDragEnterEvent</a> *evt );
void dropEvent( <a href="qdropevent.html">TQDropEvent</a> *evt ); void dropEvent( <a href="tqdropevent.html">TQDropEvent</a> *evt );
void mousePressEvent( <a href="qmouseevent.html">TQMouseEvent</a> *evt ); void mousePressEvent( <a href="qmouseevent.html">TQMouseEvent</a> *evt );
void mouseMoveEvent( <a href="qmouseevent.html">TQMouseEvent</a> * ); void mouseMoveEvent( <a href="qmouseevent.html">TQMouseEvent</a> * );
private: private:
@ -76,8 +76,8 @@ public:
DDIconViewItem( <a href="tqiconview.html">TQIconView</a> *parent, const <a href="tqstring.html">TQString</a> &amp;text ) : DDIconViewItem( <a href="tqiconview.html">TQIconView</a> *parent, const <a href="tqstring.html">TQString</a> &amp;text ) :
<a href="tqiconviewitem.html">TQIconViewItem</a>( parent, text ) {} <a href="tqiconviewitem.html">TQIconViewItem</a>( parent, text ) {}
// High-level drag and drop // High-level drag and drop
bool acceptDrop( const <a href="qmimesource.html">TQMimeSource</a> *mime ) const; bool acceptDrop( const <a href="tqmimesource.html">TQMimeSource</a> *mime ) const;
void dropped( <a href="qdropevent.html">TQDropEvent</a> *evt, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&amp; ); void dropped( <a href="tqdropevent.html">TQDropEvent</a> *evt, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&amp; );
}; };
@ -88,9 +88,9 @@ public:
DDIconView( <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, WFlags f = 0 ) : DDIconView( <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, WFlags f = 0 ) :
<a href="tqiconview.html">TQIconView</a>( parent, name, f ) {} <a href="tqiconview.html">TQIconView</a>( parent, name, f ) {}
// High-level drag and drop // High-level drag and drop
<a href="ntqdragobject.html">TQDragObject</a> *dragObject(); <a href="tqdragobject.html">TQDragObject</a> *dragObject();
public slots: public slots:
void slotNewItem( <a href="qdropevent.html">TQDropEvent</a> *evt, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&amp; list ); void slotNewItem( <a href="tqdropevent.html">TQDropEvent</a> *evt, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&amp; list );
}; };
</pre><!-- eof --> </pre><!-- eof -->

@ -924,10 +924,10 @@
"QColorDialog::setSelectedAlpha" ntqcolordialog.html#setSelectedAlpha "QColorDialog::setSelectedAlpha" ntqcolordialog.html#setSelectedAlpha
"QColorDialog::setStandardColor" ntqcolordialog.html#setStandardColor "QColorDialog::setStandardColor" ntqcolordialog.html#setStandardColor
"QColorDialog::~QColorDialog" ntqcolordialog.html#~QColorDialog "QColorDialog::~QColorDialog" ntqcolordialog.html#~QColorDialog
"QColorDrag" qcolordrag.html "TQColorDrag" tqcolordrag.html
"QColorDrag::canDecode" qcolordrag.html#canDecode "TQColorDrag::canDecode" tqcolordrag.html#canDecode
"QColorDrag::decode" qcolordrag.html#decode "TQColorDrag::decode" tqcolordrag.html#decode
"QColorDrag::setColor" qcolordrag.html#setColor "TQColorDrag::setColor" tqcolordrag.html#setColor
"QColorGroup" qcolorgroup.html "QColorGroup" qcolorgroup.html
"QColorGroup::ColorRole" qcolorgroup.html#ColorRole "QColorGroup::ColorRole" qcolorgroup.html#ColorRole
"QColorGroup::background" qcolorgroup.html#background "QColorGroup::background" qcolorgroup.html#background
@ -1834,40 +1834,40 @@
"QDoubleValidator::top" qdoublevalidator.html#top-prop "QDoubleValidator::top" qdoublevalidator.html#top-prop
"QDoubleValidator::validate" qdoublevalidator.html#validate "QDoubleValidator::validate" qdoublevalidator.html#validate
"QDoubleValidator::~QDoubleValidator" qdoublevalidator.html#~QDoubleValidator "QDoubleValidator::~QDoubleValidator" qdoublevalidator.html#~QDoubleValidator
"QDragEnterEvent" qdragenterevent.html "TQDragEnterEvent" tqdragenterevent.html
"QDragLeaveEvent" qdragleaveevent.html "TQDragLeaveEvent" tqdragleaveevent.html
"QDragMoveEvent" qdragmoveevent.html "TQDragMoveEvent" tqdragmoveevent.html
"QDragMoveEvent::accept" qdragmoveevent.html#accept "TQDragMoveEvent::accept" tqdragmoveevent.html#accept
"QDragMoveEvent::answerRect" qdragmoveevent.html#answerRect "TQDragMoveEvent::answerRect" tqdragmoveevent.html#answerRect
"QDragMoveEvent::ignore" qdragmoveevent.html#ignore "TQDragMoveEvent::ignore" tqdragmoveevent.html#ignore
"QDragObject" ntqdragobject.html "TQDragObject" tqdragobject.html
"QDragObject::DragMode" ntqdragobject.html#DragMode "TQDragObject::DragMode" tqdragobject.html#DragMode
"QDragObject::drag" ntqdragobject.html#drag "TQDragObject::drag" tqdragobject.html#drag
"QDragObject::dragCopy" ntqdragobject.html#dragCopy "TQDragObject::dragCopy" tqdragobject.html#dragCopy
"QDragObject::dragLink" ntqdragobject.html#dragLink "TQDragObject::dragLink" tqdragobject.html#dragLink
"QDragObject::dragMove" ntqdragobject.html#dragMove "TQDragObject::dragMove" tqdragobject.html#dragMove
"QDragObject::pixmap" ntqdragobject.html#pixmap "TQDragObject::pixmap" tqdragobject.html#pixmap
"QDragObject::pixmapHotSpot" ntqdragobject.html#pixmapHotSpot "TQDragObject::pixmapHotSpot" tqdragobject.html#pixmapHotSpot
"QDragObject::setPixmap" ntqdragobject.html#setPixmap "TQDragObject::setPixmap" tqdragobject.html#setPixmap
"QDragObject::source" ntqdragobject.html#source "TQDragObject::source" tqdragobject.html#source
"QDragObject::target" ntqdragobject.html#target "TQDragObject::target" tqdragobject.html#target
"QDragObject::~QDragObject" ntqdragobject.html#~QDragObject "TQDragObject::~TQDragObject" tqdragobject.html#~TQDragObject
"QDropEvent" qdropevent.html "TQDropEvent" tqdropevent.html
"QDropEvent::Action" qdropevent.html#Action "TQDropEvent::Action" tqdropevent.html#Action
"QDropEvent::accept" qdropevent.html#accept "TQDropEvent::accept" tqdropevent.html#accept
"QDropEvent::acceptAction" qdropevent.html#acceptAction "TQDropEvent::acceptAction" tqdropevent.html#acceptAction
"QDropEvent::action" qdropevent.html#action "TQDropEvent::action" tqdropevent.html#action
"QDropEvent::encodedData" qdropevent.html#encodedData "TQDropEvent::encodedData" tqdropevent.html#encodedData
"QDropEvent::format" qdropevent.html#format "TQDropEvent::format" tqdropevent.html#format
"QDropEvent::ignore" qdropevent.html#ignore "TQDropEvent::ignore" tqdropevent.html#ignore
"QDropEvent::isAccepted" qdropevent.html#isAccepted "TQDropEvent::isAccepted" tqdropevent.html#isAccepted
"QDropEvent::isActionAccepted" qdropevent.html#isActionAccepted "TQDropEvent::isActionAccepted" tqdropevent.html#isActionAccepted
"QDropEvent::pos" qdropevent.html#pos "TQDropEvent::pos" tqdropevent.html#pos
"QDropEvent::provides" qdropevent.html#provides "TQDropEvent::provides" tqdropevent.html#provides
"QDropEvent::setAction" qdropevent.html#setAction "TQDropEvent::setAction" tqdropevent.html#setAction
"QDropEvent::setPoint" qdropevent.html#setPoint "TQDropEvent::setPoint" tqdropevent.html#setPoint
"QDropEvent::source" qdropevent.html#source "TQDropEvent::source" tqdropevent.html#source
"QDropSite::~QDropSite" ntqdropsite.html#~QDropSite "TQDropSite::~TQDropSite" tqdropsite.html#~TQDropSite
"TQEditorFactory" tqeditorfactory.html "TQEditorFactory" tqeditorfactory.html
"TQEditorFactory::createEditor" tqeditorfactory.html#createEditor "TQEditorFactory::createEditor" tqeditorfactory.html#createEditor
"TQEditorFactory::defaultFactory" tqeditorfactory.html#defaultFactory "TQEditorFactory::defaultFactory" tqeditorfactory.html#defaultFactory
@ -3746,19 +3746,19 @@
"QLocale::toULong" ntqlocale.html#toULong "QLocale::toULong" ntqlocale.html#toULong
"QLocale::toULongLong" ntqlocale.html#toULongLong "QLocale::toULongLong" ntqlocale.html#toULongLong
"QLocale::toUShort" ntqlocale.html#toUShort "QLocale::toUShort" ntqlocale.html#toUShort
"QMacMime" qmacmime.html "TQMacMime" tqmacmime.html
"QMacMime::all" qmacmime.html#all "TQMacMime::all" tqmacmime.html#all
"QMacMime::canConvert" qmacmime.html#canConvert "TQMacMime::canConvert" tqmacmime.html#canConvert
"QMacMime::convertFromMime" qmacmime.html#convertFromMime "TQMacMime::convertFromMime" tqmacmime.html#convertFromMime
"QMacMime::convertToMime" qmacmime.html#convertToMime "TQMacMime::convertToMime" tqmacmime.html#convertToMime
"QMacMime::convertor" qmacmime.html#convertor "TQMacMime::convertor" tqmacmime.html#convertor
"QMacMime::convertorName" qmacmime.html#convertorName "TQMacMime::convertorName" tqmacmime.html#convertorName
"QMacMime::countFlavors" qmacmime.html#countFlavors "TQMacMime::countFlavors" tqmacmime.html#countFlavors
"QMacMime::flavor" qmacmime.html#flavor "TQMacMime::flavor" tqmacmime.html#flavor
"QMacMime::flavorFor" qmacmime.html#flavorFor "TQMacMime::flavorFor" tqmacmime.html#flavorFor
"QMacMime::flavorToMime" qmacmime.html#flavorToMime "TQMacMime::flavorToMime" tqmacmime.html#flavorToMime
"QMacMime::mimeFor" qmacmime.html#mimeFor "TQMacMime::mimeFor" tqmacmime.html#mimeFor
"QMacMime::~QMacMime" qmacmime.html#~QMacMime "TQMacMime::~TQMacMime" tqmacmime.html#~TQMacMime
"QMacStyle" qmacstyle.html "QMacStyle" qmacstyle.html
"QMacStyle::FocusRectPolicy" qmacstyle.html#FocusRectPolicy "QMacStyle::FocusRectPolicy" qmacstyle.html#FocusRectPolicy
"QMacStyle::WidgetSizePolicy" qmacstyle.html#WidgetSizePolicy "QMacStyle::WidgetSizePolicy" qmacstyle.html#WidgetSizePolicy
@ -4018,29 +4018,29 @@
"QMetaProperty::valueToKey" qmetaproperty.html#valueToKey "QMetaProperty::valueToKey" qmetaproperty.html#valueToKey
"QMetaProperty::valueToKeys" qmetaproperty.html#valueToKeys "QMetaProperty::valueToKeys" qmetaproperty.html#valueToKeys
"QMetaProperty::writable" qmetaproperty.html#writable "QMetaProperty::writable" qmetaproperty.html#writable
"QMimeSource" qmimesource.html "TQMimeSource" tqmimesource.html
"QMimeSource::encodedData" qmimesource.html#encodedData "TQMimeSource::encodedData" tqmimesource.html#encodedData
"QMimeSource::format" qmimesource.html#format "TQMimeSource::format" tqmimesource.html#format
"QMimeSource::provides" qmimesource.html#provides "TQMimeSource::provides" tqmimesource.html#provides
"QMimeSource::serialNumber" qmimesource.html#serialNumber "TQMimeSource::serialNumber" tqmimesource.html#serialNumber
"QMimeSource::~QMimeSource" qmimesource.html#~QMimeSource "TQMimeSource::~TQMimeSource" tqmimesource.html#~TQMimeSource
"QMimeSourceFactory" qmimesourcefactory.html "TQMimeSourceFactory" tqmimesourcefactory.html
"QMimeSourceFactory::addFactory" qmimesourcefactory.html#addFactory "TQMimeSourceFactory::addFactory" tqmimesourcefactory.html#addFactory
"QMimeSourceFactory::addFilePath" qmimesourcefactory.html#addFilePath "TQMimeSourceFactory::addFilePath" tqmimesourcefactory.html#addFilePath
"QMimeSourceFactory::data" qmimesourcefactory.html#data "TQMimeSourceFactory::data" tqmimesourcefactory.html#data
"QMimeSourceFactory::defaultFactory" qmimesourcefactory.html#defaultFactory "TQMimeSourceFactory::defaultFactory" tqmimesourcefactory.html#defaultFactory
"QMimeSourceFactory::filePath" qmimesourcefactory.html#filePath "TQMimeSourceFactory::filePath" tqmimesourcefactory.html#filePath
"QMimeSourceFactory::makeAbsolute" qmimesourcefactory.html#makeAbsolute "TQMimeSourceFactory::makeAbsolute" tqmimesourcefactory.html#makeAbsolute
"QMimeSourceFactory::removeFactory" qmimesourcefactory.html#removeFactory "TQMimeSourceFactory::removeFactory" tqmimesourcefactory.html#removeFactory
"QMimeSourceFactory::setData" qmimesourcefactory.html#setData "TQMimeSourceFactory::setData" tqmimesourcefactory.html#setData
"QMimeSourceFactory::setDefaultFactory" qmimesourcefactory.html#setDefaultFactory "TQMimeSourceFactory::setDefaultFactory" tqmimesourcefactory.html#setDefaultFactory
"QMimeSourceFactory::setExtensionType" qmimesourcefactory.html#setExtensionType "TQMimeSourceFactory::setExtensionType" tqmimesourcefactory.html#setExtensionType
"QMimeSourceFactory::setFilePath" qmimesourcefactory.html#setFilePath "TQMimeSourceFactory::setFilePath" tqmimesourcefactory.html#setFilePath
"QMimeSourceFactory::setImage" qmimesourcefactory.html#setImage "TQMimeSourceFactory::setImage" tqmimesourcefactory.html#setImage
"QMimeSourceFactory::setPixmap" qmimesourcefactory.html#setPixmap "TQMimeSourceFactory::setPixmap" tqmimesourcefactory.html#setPixmap
"QMimeSourceFactory::setText" qmimesourcefactory.html#setText "TQMimeSourceFactory::setText" tqmimesourcefactory.html#setText
"QMimeSourceFactory::takeDefaultFactory" qmimesourcefactory.html#takeDefaultFactory "TQMimeSourceFactory::takeDefaultFactory" tqmimesourcefactory.html#takeDefaultFactory
"QMimeSourceFactory::~QMimeSourceFactory" qmimesourcefactory.html#~QMimeSourceFactory "TQMimeSourceFactory::~TQMimeSourceFactory" tqmimesourcefactory.html#~TQMimeSourceFactory
"QMotif" qmotif.html "QMotif" qmotif.html
"QMotif::applicationContext" qmotif.html#applicationContext "QMotif::applicationContext" qmotif.html#applicationContext
"QMotif::x11Display" qmotif.html#x11Display "QMotif::x11Display" qmotif.html#x11Display
@ -5874,10 +5874,10 @@
"TQStatusBar::setSizeGripEnabled" tqstatusbar.html#setSizeGripEnabled "TQStatusBar::setSizeGripEnabled" tqstatusbar.html#setSizeGripEnabled
"TQStatusBar::sizeGripEnabled" tqstatusbar.html#sizeGripEnabled-prop "TQStatusBar::sizeGripEnabled" tqstatusbar.html#sizeGripEnabled-prop
"TQStatusBar::~TQStatusBar" tqstatusbar.html#~TQStatusBar "TQStatusBar::~TQStatusBar" tqstatusbar.html#~TQStatusBar
"QStoredDrag" qstoreddrag.html "TQStoredDrag" tqstoreddrag.html
"QStoredDrag::encodedData" qstoreddrag.html#encodedData "TQStoredDrag::encodedData" tqstoreddrag.html#encodedData
"QStoredDrag::setEncodedData" qstoreddrag.html#setEncodedData "TQStoredDrag::setEncodedData" tqstoreddrag.html#setEncodedData
"QStoredDrag::~QStoredDrag" qstoreddrag.html#~QStoredDrag "TQStoredDrag::~TQStoredDrag" tqstoreddrag.html#~TQStoredDrag
"TQStrIList" tqstrilist.html "TQStrIList" tqstrilist.html
"TQStrIList::~TQStrIList" tqstrilist.html#~TQStrIList "TQStrIList::~TQStrIList" tqstrilist.html#~TQStrIList
"TQStrList" tqstrlist.html "TQStrList" tqstrlist.html
@ -6886,19 +6886,19 @@
"QTranslatorMessage::translation" qtranslatormessage.html#translation "QTranslatorMessage::translation" qtranslatormessage.html#translation
"QTranslatorMessage::write" qtranslatormessage.html#write "QTranslatorMessage::write" qtranslatormessage.html#write
"TQTsciiCodec" tqtsciicodec.html "TQTsciiCodec" tqtsciicodec.html
"QUriDrag" quridrag.html "TQUriDrag" tquridrag.html
"QUriDrag::canDecode" quridrag.html#canDecode "TQUriDrag::canDecode" tquridrag.html#canDecode
"QUriDrag::decode" quridrag.html#decode "TQUriDrag::decode" tquridrag.html#decode
"QUriDrag::decodeLocalFiles" quridrag.html#decodeLocalFiles "TQUriDrag::decodeLocalFiles" tquridrag.html#decodeLocalFiles
"QUriDrag::decodeToUnicodeUris" quridrag.html#decodeToUnicodeUris "TQUriDrag::decodeToUnicodeUris" tquridrag.html#decodeToUnicodeUris
"QUriDrag::localFileToUri" quridrag.html#localFileToUri "TQUriDrag::localFileToUri" tquridrag.html#localFileToUri
"QUriDrag::setFileNames" quridrag.html#setFileNames "TQUriDrag::setFileNames" tquridrag.html#setFileNames
"QUriDrag::setUnicodeUris" quridrag.html#setUnicodeUris "TQUriDrag::setUnicodeUris" tquridrag.html#setUnicodeUris
"QUriDrag::setUris" quridrag.html#setUris "TQUriDrag::setUris" tquridrag.html#setUris
"QUriDrag::unicodeUriToUri" quridrag.html#unicodeUriToUri "TQUriDrag::unicodeUriToUri" tquridrag.html#unicodeUriToUri
"QUriDrag::uriToLocalFile" quridrag.html#uriToLocalFile "TQUriDrag::uriToLocalFile" tquridrag.html#uriToLocalFile
"QUriDrag::uriToUnicodeUri" quridrag.html#uriToUnicodeUri "TQUriDrag::uriToUnicodeUri" tquridrag.html#uriToUnicodeUri
"QUriDrag::~QUriDrag" quridrag.html#~QUriDrag "TQUriDrag::~TQUriDrag" tquridrag.html#~TQUriDrag
"QUrl" ntqurl.html "QUrl" ntqurl.html
"QUrl::addPath" ntqurl.html#addPath "QUrl::addPath" ntqurl.html#addPath
"QUrl::cdUp" ntqurl.html#cdUp "QUrl::cdUp" ntqurl.html#cdUp
@ -7599,20 +7599,20 @@
"TQWidgetStack::visibleWidget" tqwidgetstack.html#visibleWidget "TQWidgetStack::visibleWidget" tqwidgetstack.html#visibleWidget
"TQWidgetStack::widget" tqwidgetstack.html#widget "TQWidgetStack::widget" tqwidgetstack.html#widget
"TQWidgetStack::~TQWidgetStack" tqwidgetstack.html#~TQWidgetStack "TQWidgetStack::~TQWidgetStack" tqwidgetstack.html#~TQWidgetStack
"QWindowsMime" qwindowsmime.html "TQWindowsMime" tqwindowsmime.html
"QWindowsMime::all" qwindowsmime.html#all "TQWindowsMime::all" tqwindowsmime.html#all
"QWindowsMime::canConvert" qwindowsmime.html#canConvert "TQWindowsMime::canConvert" tqwindowsmime.html#canConvert
"QWindowsMime::cf" qwindowsmime.html#cf "TQWindowsMime::cf" tqwindowsmime.html#cf
"QWindowsMime::cfFor" qwindowsmime.html#cfFor "TQWindowsMime::cfFor" tqwindowsmime.html#cfFor
"QWindowsMime::cfToMime" qwindowsmime.html#cfToMime "TQWindowsMime::cfToMime" tqwindowsmime.html#cfToMime
"QWindowsMime::convertFromMime" qwindowsmime.html#convertFromMime "TQWindowsMime::convertFromMime" tqwindowsmime.html#convertFromMime
"QWindowsMime::convertToMime" qwindowsmime.html#convertToMime "TQWindowsMime::convertToMime" tqwindowsmime.html#convertToMime
"QWindowsMime::convertor" qwindowsmime.html#convertor "TQWindowsMime::convertor" tqwindowsmime.html#convertor
"QWindowsMime::convertorName" qwindowsmime.html#convertorName "TQWindowsMime::convertorName" tqwindowsmime.html#convertorName
"QWindowsMime::countCf" qwindowsmime.html#countCf "TQWindowsMime::countCf" tqwindowsmime.html#countCf
"QWindowsMime::initialize" qwindowsmime.html#initialize "TQWindowsMime::initialize" tqwindowsmime.html#initialize
"QWindowsMime::mimeFor" qwindowsmime.html#mimeFor "TQWindowsMime::mimeFor" tqwindowsmime.html#mimeFor
"QWindowsMime::~QWindowsMime" qwindowsmime.html#~QWindowsMime "TQWindowsMime::~TQWindowsMime" tqwindowsmime.html#~TQWindowsMime
"QWindowsStyle" ntqwindowsstyle.html "QWindowsStyle" ntqwindowsstyle.html
"QWizard" ntqwizard.html "QWizard" ntqwizard.html
"QWizard::addPage" ntqwizard.html#addPage "QWizard::addPage" ntqwizard.html#addPage

@ -52,9 +52,9 @@ devices, processes, files etc. as well as manipulating files and directories.
<tr bgcolor=#f0f0f0><td><b><a href="tqimageio.html">TQImageIO</a></b><td>Parameters for loading and saving images <tr bgcolor=#f0f0f0><td><b><a href="tqimageio.html">TQImageIO</a></b><td>Parameters for loading and saving images
<tr bgcolor=#f0f0f0><td><b><a href="ntqiodevice.html">TQIODevice</a></b><td>The base class of I/O devices <tr bgcolor=#f0f0f0><td><b><a href="ntqiodevice.html">TQIODevice</a></b><td>The base class of I/O devices
<tr bgcolor=#f0f0f0><td><b><a href="ntqlocalfs.html">TQLocalFs</a></b><td>Implementation of a TQNetworkProtocol that works on the local file system <tr bgcolor=#f0f0f0><td><b><a href="ntqlocalfs.html">TQLocalFs</a></b><td>Implementation of a TQNetworkProtocol that works on the local file system
<tr bgcolor=#f0f0f0><td><b><a href="qmacmime.html">TQMacMime</a></b><td>Maps open-standard MIME to Mac flavors <tr bgcolor=#f0f0f0><td><b><a href="tqmacmime.html">TQMacMime</a></b><td>Maps open-standard MIME to Mac flavors
<tr bgcolor=#f0f0f0><td><b><a href="qmimesource.html">TQMimeSource</a></b><td>Abstraction of objects which provide formatted data of a certain MIME type <tr bgcolor=#f0f0f0><td><b><a href="tqmimesource.html">TQMimeSource</a></b><td>Abstraction of objects which provide formatted data of a certain MIME type
<tr bgcolor=#f0f0f0><td><b><a href="qmimesourcefactory.html">TQMimeSourceFactory</a></b><td>Extensible provider of mime-typed data <tr bgcolor=#f0f0f0><td><b><a href="tqmimesourcefactory.html">TQMimeSourceFactory</a></b><td>Extensible provider of mime-typed data
<tr bgcolor=#f0f0f0><td><b><a href="qnetworkoperation.html">TQNetworkOperation</a></b><td>Common operations for network protocols <tr bgcolor=#f0f0f0><td><b><a href="qnetworkoperation.html">TQNetworkOperation</a></b><td>Common operations for network protocols
<tr bgcolor=#f0f0f0><td><b><a href="ntqnetworkprotocol.html">TQNetworkProtocol</a></b><td>Common API for network protocols <tr bgcolor=#f0f0f0><td><b><a href="ntqnetworkprotocol.html">TQNetworkProtocol</a></b><td>Common API for network protocols
<tr bgcolor=#f0f0f0><td><b><a href="ntqprocess.html">TQProcess</a></b><td>Used to start external programs and to communicate with them <tr bgcolor=#f0f0f0><td><b><a href="ntqprocess.html">TQProcess</a></b><td>Used to start external programs and to communicate with them
@ -71,7 +71,7 @@ devices, processes, files etc. as well as manipulating files and directories.
<tr bgcolor=#f0f0f0><td><b><a href="ntqurl.html">TQUrl</a></b><td>URL parser and simplifies working with URLs <tr bgcolor=#f0f0f0><td><b><a href="ntqurl.html">TQUrl</a></b><td>URL parser and simplifies working with URLs
<tr bgcolor=#f0f0f0><td><b><a href="ntqurlinfo.html">TQUrlInfo</a></b><td>Stores information about URLs <tr bgcolor=#f0f0f0><td><b><a href="ntqurlinfo.html">TQUrlInfo</a></b><td>Stores information about URLs
<tr bgcolor=#f0f0f0><td><b><a href="ntqurloperator.html">TQUrlOperator</a></b><td>Common operations on URLs <tr bgcolor=#f0f0f0><td><b><a href="ntqurloperator.html">TQUrlOperator</a></b><td>Common operations on URLs
<tr bgcolor=#f0f0f0><td><b><a href="qwindowsmime.html">TQWindowsMime</a></b><td>Maps open-standard MIME to Window Clipboard formats <tr bgcolor=#f0f0f0><td><b><a href="tqwindowsmime.html">TQWindowsMime</a></b><td>Maps open-standard MIME to Window Clipboard formats
</table> </table>
<!-- eof --> <!-- eof -->
<p><address><hr><div align=center> <p><address><hr><div align=center>

@ -47,9 +47,9 @@ body { background: #ffffff; color: black; }
<tr bgcolor=#f0f0f0><td><b><a href="ntqfocusdata.html">TQFocusData</a></b><td>Maintains the list of widgets in the focus chain <tr bgcolor=#f0f0f0><td><b><a href="ntqfocusdata.html">TQFocusData</a></b><td>Maintains the list of widgets in the focus chain
<tr bgcolor=#f0f0f0><td><b><a href="qintvalidator.html">TQIntValidator</a></b><td>Validator which ensures that a string contains a valid integer within a specified range <tr bgcolor=#f0f0f0><td><b><a href="qintvalidator.html">TQIntValidator</a></b><td>Validator which ensures that a string contains a valid integer within a specified range
<tr bgcolor=#f0f0f0><td><b><a href="ntqkeysequence.html">TQKeySequence</a></b><td>Encapsulates a key sequence as used by accelerators <tr bgcolor=#f0f0f0><td><b><a href="ntqkeysequence.html">TQKeySequence</a></b><td>Encapsulates a key sequence as used by accelerators
<tr bgcolor=#f0f0f0><td><b><a href="qmacmime.html">TQMacMime</a></b><td>Maps open-standard MIME to Mac flavors <tr bgcolor=#f0f0f0><td><b><a href="tqmacmime.html">TQMacMime</a></b><td>Maps open-standard MIME to Mac flavors
<tr bgcolor=#f0f0f0><td><b><a href="tqmenudata.html">TQMenuData</a></b><td>Base class for TQMenuBar and TQPopupMenu <tr bgcolor=#f0f0f0><td><b><a href="tqmenudata.html">TQMenuData</a></b><td>Base class for TQMenuBar and TQPopupMenu
<tr bgcolor=#f0f0f0><td><b><a href="qmimesource.html">TQMimeSource</a></b><td>Abstraction of objects which provide formatted data of a certain MIME type <tr bgcolor=#f0f0f0><td><b><a href="tqmimesource.html">TQMimeSource</a></b><td>Abstraction of objects which provide formatted data of a certain MIME type
<tr bgcolor=#f0f0f0><td><b><a href="ntqprocess.html">TQProcess</a></b><td>Used to start external programs and to communicate with them <tr bgcolor=#f0f0f0><td><b><a href="ntqprocess.html">TQProcess</a></b><td>Used to start external programs and to communicate with them
<tr bgcolor=#f0f0f0><td><b><a href="ntqrangecontrol.html">TQRangeControl</a></b><td>Integer value within a range <tr bgcolor=#f0f0f0><td><b><a href="ntqrangecontrol.html">TQRangeControl</a></b><td>Integer value within a range
<tr bgcolor=#f0f0f0><td><b><a href="ntqregexp.html">TQRegExp</a></b><td>Pattern matching using regular expressions <tr bgcolor=#f0f0f0><td><b><a href="ntqregexp.html">TQRegExp</a></b><td>Pattern matching using regular expressions
@ -63,7 +63,7 @@ body { background: #ffffff; color: black; }
<tr bgcolor=#f0f0f0><td><b><a href="ntqurloperator.html">TQUrlOperator</a></b><td>Common operations on URLs <tr bgcolor=#f0f0f0><td><b><a href="ntqurloperator.html">TQUrlOperator</a></b><td>Common operations on URLs
<tr bgcolor=#f0f0f0><td><b><a href="ntqvalidator.html">TQValidator</a></b><td>Validation of input text <tr bgcolor=#f0f0f0><td><b><a href="ntqvalidator.html">TQValidator</a></b><td>Validation of input text
<tr bgcolor=#f0f0f0><td><b><a href="ntqvariant.html">TQVariant</a></b><td>Acts like a union for the most common TQt data types <tr bgcolor=#f0f0f0><td><b><a href="ntqvariant.html">TQVariant</a></b><td>Acts like a union for the most common TQt data types
<tr bgcolor=#f0f0f0><td><b><a href="qwindowsmime.html">TQWindowsMime</a></b><td>Maps open-standard MIME to Window Clipboard formats <tr bgcolor=#f0f0f0><td><b><a href="tqwindowsmime.html">TQWindowsMime</a></b><td>Maps open-standard MIME to Window Clipboard formats
</table> </table>
<!-- eof --> <!-- eof -->
<p><address><hr><div align=center> <p><address><hr><div align=center>

@ -79,7 +79,7 @@ The TQClipboard class provides access to the window system clipboard.
<p> The clipboard offers a simple mechanism to copy and paste data <p> The clipboard offers a simple mechanism to copy and paste data
between applications. between applications.
<p> TQClipboard supports the same data types that <a href="ntqdragobject.html">TQDragObject</a> does, and <p> TQClipboard supports the same data types that <a href="tqdragobject.html">TQDragObject</a> does, and
uses similar mechanisms. For advanced clipboard usage uses similar mechanisms. For advanced clipboard usage
read <a href="dnd.html">the drag-and-drop documentation</a>. read <a href="dnd.html">the drag-and-drop documentation</a>.
<p> There is a single TQClipboard object in an application, and you can <p> There is a single TQClipboard object in an application, and you can
@ -102,7 +102,7 @@ access it using <a href="ntqapplication.html#clipboard">TQApplication::clipboard
types: <a href="#setText">setText</a>() allows the exchange of Unicode text and types: <a href="#setText">setText</a>() allows the exchange of Unicode text and
<a href="#setPixmap">setPixmap</a>() and <a href="#setImage">setImage</a>() allows the exchange of TQPixmaps <a href="#setPixmap">setPixmap</a>() and <a href="#setImage">setImage</a>() allows the exchange of TQPixmaps
and TQImages between applications. The <a href="#setData">setData</a>() function is the and TQImages between applications. The <a href="#setData">setData</a>() function is the
ultimate in flexibility: it allows you to add any <a href="qmimesource.html">TQMimeSource</a> into the ultimate in flexibility: it allows you to add any <a href="tqmimesource.html">TQMimeSource</a> into the
clipboard. There are corresponding getters for each of these, e.g. clipboard. There are corresponding getters for each of these, e.g.
<a href="#text">text</a>(), <a href="#image">image</a>() and <a href="#pixmap">pixmap</a>(). <a href="#text">text</a>(), <a href="#image">image</a>() and <a href="#pixmap">pixmap</a>().
<p> You can clear the clipboard by calling <a href="#clear">clear</a>(). <p> You can clear the clipboard by calling <a href="#clear">clear</a>().
@ -177,9 +177,9 @@ determined by the return value of <a href="#selectionModeEnabled">selectionModeE
If selectionModeEnabled() returns TRUE, the mode argument is If selectionModeEnabled() returns TRUE, the mode argument is
TQClipboard::Selection, otherwise the mode argument is TQClipboard::Clipboard. TQClipboard::Selection, otherwise the mode argument is TQClipboard::Clipboard.
<h3 class=fn><a href="qmimesource.html">TQMimeSource</a>&nbsp;* <a name="data"></a>TQClipboard::data ( <a href="ntqclipboard.html#Mode-enum">Mode</a>&nbsp;mode ) const <h3 class=fn><a href="tqmimesource.html">TQMimeSource</a>&nbsp;* <a name="data"></a>TQClipboard::data ( <a href="ntqclipboard.html#Mode-enum">Mode</a>&nbsp;mode ) const
</h3> </h3>
Returns a reference to a <a href="qmimesource.html">TQMimeSource</a> representation of the current Returns a reference to a <a href="tqmimesource.html">TQMimeSource</a> representation of the current
clipboard data. clipboard data.
<p> The <em>mode</em> argument is used to control which part of the system <p> The <em>mode</em> argument is used to control which part of the system
clipboard is used. If <em>mode</em> is TQClipboard::Clipboard, the clipboard is used. If <em>mode</em> is TQClipboard::Clipboard, the
@ -188,7 +188,7 @@ TQClipboard::Selection, the data is retrieved from the global
mouse selection. mouse selection.
<p> <p>See also <a href="#setData">setData</a>(). <p> <p>See also <a href="#setData">setData</a>().
<h3 class=fn><a href="qmimesource.html">TQMimeSource</a>&nbsp;* <a name="data-2"></a>TQClipboard::data () const <h3 class=fn><a href="tqmimesource.html">TQMimeSource</a>&nbsp;* <a name="data-2"></a>TQClipboard::data () const
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> This function uses the <a href="#data">TQClipboard::data</a>() function which takes <p> This function uses the <a href="#data">TQClipboard::data</a>() function which takes
@ -273,7 +273,7 @@ which take a TQClipboard::Mode argument.
<p> Returns the selection mode. <p> Returns the selection mode.
<p> <p>See also <a href="#setSelectionMode">setSelectionMode</a>() and <a href="#supportsSelection">supportsSelection</a>(). <p> <p>See also <a href="#setSelectionMode">setSelectionMode</a>() and <a href="#supportsSelection">supportsSelection</a>().
<h3 class=fn>void <a name="setData"></a>TQClipboard::setData ( <a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;src, <a href="ntqclipboard.html#Mode-enum">Mode</a>&nbsp;mode ) <h3 class=fn>void <a name="setData"></a>TQClipboard::setData ( <a href="tqmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;src, <a href="ntqclipboard.html#Mode-enum">Mode</a>&nbsp;mode )
</h3> </h3>
Sets the clipboard data to <em>src</em>. Ownership of the data is Sets the clipboard data to <em>src</em>. Ownership of the data is
transferred to the clipboard. If you want to remove the data transferred to the clipboard. If you want to remove the data
@ -283,17 +283,17 @@ clipboard is used. If <em>mode</em> is TQClipboard::Clipboard, the
data is retrieved from the global clipboard. If <em>mode</em> is data is retrieved from the global clipboard. If <em>mode</em> is
TQClipboard::Selection, the data is retrieved from the global TQClipboard::Selection, the data is retrieved from the global
mouse selection. mouse selection.
<p> The <a href="ntqdragobject.html">TQDragObject</a> subclasses are reasonable objects to put into the <p> The <a href="tqdragobject.html">TQDragObject</a> subclasses are reasonable objects to put into the
clipboard (but do not try to call <a href="ntqdragobject.html#drag">TQDragObject::drag</a>() on the same clipboard (but do not try to call <a href="tqdragobject.html#drag">TQDragObject::drag</a>() on the same
object). Any TQDragObject placed in the clipboard should have a object). Any TQDragObject placed in the clipboard should have a
parent of 0. Do not put <a href="qdragmoveevent.html">TQDragMoveEvent</a> or <a href="qdropevent.html">TQDropEvent</a> subclasses in parent of 0. Do not put <a href="tqdragmoveevent.html">TQDragMoveEvent</a> or <a href="tqdropevent.html">TQDropEvent</a> subclasses in
the clipboard, as they do not belong to the event handler which the clipboard, as they do not belong to the event handler which
receives them. receives them.
<p> The <a href="#setText">setText</a>(), <a href="#setImage">setImage</a>() and <a href="#setPixmap">setPixmap</a>() functions are simpler <p> The <a href="#setText">setText</a>(), <a href="#setImage">setImage</a>() and <a href="#setPixmap">setPixmap</a>() functions are simpler
wrappers for setting text, image and pixmap data respectively. wrappers for setting text, image and pixmap data respectively.
<p> <p>See also <a href="#data">data</a>(). <p> <p>See also <a href="#data">data</a>().
<h3 class=fn>void <a name="setData-2"></a>TQClipboard::setData ( <a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;src ) <h3 class=fn>void <a name="setData-2"></a>TQClipboard::setData ( <a href="tqmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;src )
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> This function uses the <a href="#setData">TQClipboard::setData</a>() function which takes <p> This function uses the <a href="#setData">TQClipboard::setData</a>() function which takes

@ -36,7 +36,7 @@ event classes. Event objects contain event parameters.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qevent-h.html">ntqevent.h</a>&gt;</tt> <p><tt>#include &lt;<a href="qevent-h.html">ntqevent.h</a>&gt;</tt>
<p>Inherits <a href="ntqt.html">TQt</a>. <p>Inherits <a href="ntqt.html">TQt</a>.
<p>Inherited by <a href="tqtimerevent.html">TQTimerEvent</a>, <a href="qmouseevent.html">TQMouseEvent</a>, <a href="qwheelevent.html">TQWheelEvent</a>, <a href="qtabletevent.html">TQTabletEvent</a>, <a href="qkeyevent.html">TQKeyEvent</a>, <a href="qfocusevent.html">TQFocusEvent</a>, <a href="qpaintevent.html">TQPaintEvent</a>, <a href="qmoveevent.html">TQMoveEvent</a>, <a href="qresizeevent.html">TQResizeEvent</a>, <a href="qcloseevent.html">TQCloseEvent</a>, <a href="tqicondragevent.html">TQIconDragEvent</a>, <a href="qshowevent.html">TQShowEvent</a>, <a href="qhideevent.html">TQHideEvent</a>, <a href="qcontextmenuevent.html">TQContextMenuEvent</a>, <a href="qimevent.html">TQIMEvent</a>, <a href="qdropevent.html">TQDropEvent</a>, <a href="qdragleaveevent.html">TQDragLeaveEvent</a>, <a href="qchildevent.html">TQChildEvent</a>, and <a href="qcustomevent.html">TQCustomEvent</a>. <p>Inherited by <a href="tqtimerevent.html">TQTimerEvent</a>, <a href="qmouseevent.html">TQMouseEvent</a>, <a href="qwheelevent.html">TQWheelEvent</a>, <a href="qtabletevent.html">TQTabletEvent</a>, <a href="qkeyevent.html">TQKeyEvent</a>, <a href="qfocusevent.html">TQFocusEvent</a>, <a href="qpaintevent.html">TQPaintEvent</a>, <a href="qmoveevent.html">TQMoveEvent</a>, <a href="qresizeevent.html">TQResizeEvent</a>, <a href="qcloseevent.html">TQCloseEvent</a>, <a href="tqicondragevent.html">TQIconDragEvent</a>, <a href="qshowevent.html">TQShowEvent</a>, <a href="qhideevent.html">TQHideEvent</a>, <a href="qcontextmenuevent.html">TQContextMenuEvent</a>, <a href="qimevent.html">TQIMEvent</a>, <a href="tqdropevent.html">TQDropEvent</a>, <a href="tqdragleaveevent.html">TQDragLeaveEvent</a>, <a href="qchildevent.html">TQChildEvent</a>, and <a href="qcustomevent.html">TQCustomEvent</a>.
<p><a href="qevent-members.html">List of all member functions.</a> <p><a href="qevent-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
@ -125,10 +125,10 @@ cleaned up.
<li><tt>TQEvent::ApplicationPaletteChange</tt> - Default application palette changed. <li><tt>TQEvent::ApplicationPaletteChange</tt> - Default application palette changed.
<li><tt>TQEvent::Clipboard</tt> - Clipboard contents have changed. <li><tt>TQEvent::Clipboard</tt> - Clipboard contents have changed.
<li><tt>TQEvent::SockAct</tt> - Socket activated, used to implement <a href="ntqsocketnotifier.html">TQSocketNotifier</a>. <li><tt>TQEvent::SockAct</tt> - Socket activated, used to implement <a href="ntqsocketnotifier.html">TQSocketNotifier</a>.
<li><tt>TQEvent::DragEnter</tt> - A drag-and-drop enters widget, <a href="qdragenterevent.html">TQDragEnterEvent</a>. <li><tt>TQEvent::DragEnter</tt> - A drag-and-drop enters widget, <a href="tqdragenterevent.html">TQDragEnterEvent</a>.
<li><tt>TQEvent::DragMove</tt> - A drag-and-drop is in progress, <a href="qdragmoveevent.html">TQDragMoveEvent</a>. <li><tt>TQEvent::DragMove</tt> - A drag-and-drop is in progress, <a href="tqdragmoveevent.html">TQDragMoveEvent</a>.
<li><tt>TQEvent::DragLeave</tt> - A drag-and-drop leaves widget, <a href="qdragleaveevent.html">TQDragLeaveEvent</a>. <li><tt>TQEvent::DragLeave</tt> - A drag-and-drop leaves widget, <a href="tqdragleaveevent.html">TQDragLeaveEvent</a>.
<li><tt>TQEvent::Drop</tt> - A drag-and-drop is completed, <a href="qdropevent.html">TQDropEvent</a>. <li><tt>TQEvent::Drop</tt> - A drag-and-drop is completed, <a href="tqdropevent.html">TQDropEvent</a>.
<li><tt>TQEvent::DragResponse</tt> - Internal event used by TQt on some platforms. <li><tt>TQEvent::DragResponse</tt> - Internal event used by TQt on some platforms.
<li><tt>TQEvent::ChildInserted</tt> - Object gets a child, <a href="qchildevent.html">TQChildEvent</a>. <li><tt>TQEvent::ChildInserted</tt> - Object gets a child, <a href="qchildevent.html">TQChildEvent</a>.
<li><tt>TQEvent::ChildRemoved</tt> - Object loses a child, <a href="qchildevent.html">TQChildEvent</a>. <li><tt>TQEvent::ChildRemoved</tt> - Object loses a child, <a href="qchildevent.html">TQChildEvent</a>.

@ -588,14 +588,14 @@ emitted on the second button press, not the second button release.
<em>item</em> is the list view item on which the user did the <em>item</em> is the list view item on which the user did the
double-click. double-click.
<h3 class=fn><a href="ntqdragobject.html">TQDragObject</a>&nbsp;* <a name="dragObject"></a>TQListView::dragObject ()<tt> [virtual protected]</tt> <h3 class=fn><a href="tqdragobject.html">TQDragObject</a>&nbsp;* <a name="dragObject"></a>TQListView::dragObject ()<tt> [virtual protected]</tt>
</h3> </h3>
If the user presses the mouse on an item and starts moving the If the user presses the mouse on an item and starts moving the
mouse, and the item allow dragging (see mouse, and the item allow dragging (see
<a href="qlistviewitem.html#setDragEnabled">TQListViewItem::setDragEnabled</a>()), this function is called to get a <a href="qlistviewitem.html#setDragEnabled">TQListViewItem::setDragEnabled</a>()), this function is called to get a
drag object and a drag is started unless <a href="#dragObject">dragObject</a>() returns 0. drag object and a drag is started unless <a href="#dragObject">dragObject</a>() returns 0.
<p> By default this function returns 0. You should reimplement it and <p> By default this function returns 0. You should reimplement it and
create a <a href="ntqdragobject.html">TQDragObject</a> depending on the selected items. create a <a href="tqdragobject.html">TQDragObject</a> depending on the selected items.
<h3 class=fn>void <a name="drawContentsOffset"></a>TQListView::drawContentsOffset ( <a href="ntqpainter.html">TQPainter</a>&nbsp;*&nbsp;p, int&nbsp;ox, int&nbsp;oy, int&nbsp;cx, int&nbsp;cy, int&nbsp;cw, int&nbsp;ch )<tt> [virtual protected]</tt> <h3 class=fn>void <a name="drawContentsOffset"></a>TQListView::drawContentsOffset ( <a href="ntqpainter.html">TQPainter</a>&nbsp;*&nbsp;p, int&nbsp;ox, int&nbsp;oy, int&nbsp;cx, int&nbsp;cy, int&nbsp;cw, int&nbsp;ch )<tt> [virtual protected]</tt>
</h3> </h3>
@ -606,7 +606,7 @@ pixels high bounding rectangle starting at position <em>cx</em>, <em>cy</em>
with offset <em>ox</em>, <em>oy</em>. Uses the painter <em>p</em>. with offset <em>ox</em>, <em>oy</em>. Uses the painter <em>p</em>.
<p>Reimplemented from <a href="ntqscrollview.html#drawContentsOffset">TQScrollView</a>. <p>Reimplemented from <a href="ntqscrollview.html#drawContentsOffset">TQScrollView</a>.
<h3 class=fn>void <a name="dropped"></a>TQListView::dropped ( <a href="qdropevent.html">TQDropEvent</a>&nbsp;*&nbsp;e )<tt> [signal]</tt> <h3 class=fn>void <a name="dropped"></a>TQListView::dropped ( <a href="tqdropevent.html">TQDropEvent</a>&nbsp;*&nbsp;e )<tt> [signal]</tt>
</h3> </h3>
<p> This signal is emitted, when a drop event occurred on the <p> This signal is emitted, when a drop event occurred on the

@ -444,7 +444,7 @@ color of the widget.
</h3> Convenience function. Gets the data associated with the absolute </h3> Convenience function. Gets the data associated with the absolute
name <em>abs_name</em> from the default mime source factory and decodes it name <em>abs_name</em> from the default mime source factory and decodes it
to a pixmap. to a pixmap.
<p> <p>See also <a href="qmimesourcefactory.html">TQMimeSourceFactory</a>, <a href="tqimage.html#fromMimeSource">TQImage::fromMimeSource</a>(), and <a href="tqimagedrag.html#decode">TQImageDrag::decode</a>(). <p> <p>See also <a href="tqmimesourcefactory.html">TQMimeSourceFactory</a>, <a href="tqimage.html#fromMimeSource">TQImage::fromMimeSource</a>(), and <a href="tqimagedrag.html#decode">TQImageDrag::decode</a>().
<p>Example: <a href="tqactiongroup.html#x2113">textedit/textedit.cpp</a>. <p>Example: <a href="tqactiongroup.html#x2113">textedit/textedit.cpp</a>.
<h3 class=fn><a href="ntqpixmap.html">TQPixmap</a> <a name="grabWidget"></a>TQPixmap::grabWidget ( <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget, int&nbsp;x = 0, int&nbsp;y = 0, int&nbsp;w = -1, int&nbsp;h = -1 )<tt> [static]</tt> <h3 class=fn><a href="ntqpixmap.html">TQPixmap</a> <a name="grabWidget"></a>TQPixmap::grabWidget ( <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;widget, int&nbsp;x = 0, int&nbsp;y = 0, int&nbsp;w = -1, int&nbsp;h = -1 )<tt> [static]</tt>

@ -422,28 +422,28 @@ This event handler is called whenever the TQScrollView receives a
be a point on the contents. be a point on the contents.
<p>Example: <a href="tutorial2-06.html#x2584">chart/canvasview.cpp</a>. <p>Example: <a href="tutorial2-06.html#x2584">chart/canvasview.cpp</a>.
<h3 class=fn>void <a name="contentsDragEnterEvent"></a>TQScrollView::contentsDragEnterEvent ( <a href="qdragenterevent.html">TQDragEnterEvent</a>&nbsp;* )<tt> [virtual protected]</tt> <h3 class=fn>void <a name="contentsDragEnterEvent"></a>TQScrollView::contentsDragEnterEvent ( <a href="tqdragenterevent.html">TQDragEnterEvent</a>&nbsp;* )<tt> [virtual protected]</tt>
</h3> </h3>
This event handler is called whenever the TQScrollView receives a This event handler is called whenever the TQScrollView receives a
<a href="tqwidget.html#dragEnterEvent">dragEnterEvent</a>(): the drag position is translated to be a point <a href="tqwidget.html#dragEnterEvent">dragEnterEvent</a>(): the drag position is translated to be a point
on the contents. on the contents.
<p>Reimplemented in <a href="ntqtable.html#contentsDragEnterEvent">TQTable</a>. <p>Reimplemented in <a href="ntqtable.html#contentsDragEnterEvent">TQTable</a>.
<h3 class=fn>void <a name="contentsDragLeaveEvent"></a>TQScrollView::contentsDragLeaveEvent ( <a href="qdragleaveevent.html">TQDragLeaveEvent</a>&nbsp;* )<tt> [virtual protected]</tt> <h3 class=fn>void <a name="contentsDragLeaveEvent"></a>TQScrollView::contentsDragLeaveEvent ( <a href="tqdragleaveevent.html">TQDragLeaveEvent</a>&nbsp;* )<tt> [virtual protected]</tt>
</h3> </h3>
This event handler is called whenever the TQScrollView receives a This event handler is called whenever the TQScrollView receives a
<a href="tqwidget.html#dragLeaveEvent">dragLeaveEvent</a>(): the drag position is translated to be a point <a href="tqwidget.html#dragLeaveEvent">dragLeaveEvent</a>(): the drag position is translated to be a point
on the contents. on the contents.
<p>Reimplemented in <a href="ntqtable.html#contentsDragLeaveEvent">TQTable</a>. <p>Reimplemented in <a href="ntqtable.html#contentsDragLeaveEvent">TQTable</a>.
<h3 class=fn>void <a name="contentsDragMoveEvent"></a>TQScrollView::contentsDragMoveEvent ( <a href="qdragmoveevent.html">TQDragMoveEvent</a>&nbsp;* )<tt> [virtual protected]</tt> <h3 class=fn>void <a name="contentsDragMoveEvent"></a>TQScrollView::contentsDragMoveEvent ( <a href="tqdragmoveevent.html">TQDragMoveEvent</a>&nbsp;* )<tt> [virtual protected]</tt>
</h3> </h3>
This event handler is called whenever the TQScrollView receives a This event handler is called whenever the TQScrollView receives a
<a href="tqwidget.html#dragMoveEvent">dragMoveEvent</a>(): the drag position is translated to be a point on <a href="tqwidget.html#dragMoveEvent">dragMoveEvent</a>(): the drag position is translated to be a point on
the contents. the contents.
<p>Reimplemented in <a href="ntqtable.html#contentsDragMoveEvent">TQTable</a>. <p>Reimplemented in <a href="ntqtable.html#contentsDragMoveEvent">TQTable</a>.
<h3 class=fn>void <a name="contentsDropEvent"></a>TQScrollView::contentsDropEvent ( <a href="qdropevent.html">TQDropEvent</a>&nbsp;* )<tt> [virtual protected]</tt> <h3 class=fn>void <a name="contentsDropEvent"></a>TQScrollView::contentsDropEvent ( <a href="tqdropevent.html">TQDropEvent</a>&nbsp;* )<tt> [virtual protected]</tt>
</h3> </h3>
This event handler is called whenever the TQScrollView receives a This event handler is called whenever the TQScrollView receives a
<a href="tqwidget.html#dropEvent">dropEvent</a>(): the drop position is translated to be a point on the <a href="tqwidget.html#dropEvent">dropEvent</a>(): the drop position is translated to be a point on the

@ -97,14 +97,14 @@ the widget's font, for example:
<p> <em>context</em> is the optional context of the rich text object. This <p> <em>context</em> is the optional context of the rich text object. This
becomes important if <em>text</em> contains relative references, for becomes important if <em>text</em> contains relative references, for
example within image tags. TQSimpleRichText always uses the default example within image tags. TQSimpleRichText always uses the default
mime source factory (see <a href="qmimesourcefactory.html#defaultFactory">TQMimeSourceFactory::defaultFactory</a>()) mime source factory (see <a href="tqmimesourcefactory.html#defaultFactory">TQMimeSourceFactory::defaultFactory</a>())
to resolve those references. The context will then be used to to resolve those references. The context will then be used to
calculate the absolute path. See calculate the absolute path. See
<a href="qmimesourcefactory.html#makeAbsolute">TQMimeSourceFactory::makeAbsolute</a>() for details. <a href="tqmimesourcefactory.html#makeAbsolute">TQMimeSourceFactory::makeAbsolute</a>() for details.
<p> The <em>sheet</em> is an optional style sheet. If it is 0, the default <p> The <em>sheet</em> is an optional style sheet. If it is 0, the default
style sheet will be used (see <a href="tqstylesheet.html#defaultSheet">TQStyleSheet::defaultSheet</a>()). style sheet will be used (see <a href="tqstylesheet.html#defaultSheet">TQStyleSheet::defaultSheet</a>()).
<h3 class=fn><a name="TQSimpleRichText-2"></a>TQSimpleRichText::TQSimpleRichText ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;text, const&nbsp;<a href="ntqfont.html">TQFont</a>&nbsp;&amp;&nbsp;fnt, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;context, const&nbsp;<a href="tqstylesheet.html">TQStyleSheet</a>&nbsp;*&nbsp;sheet, const&nbsp;<a href="qmimesourcefactory.html">TQMimeSourceFactory</a>&nbsp;*&nbsp;factory, int&nbsp;pageBreak = -1, const&nbsp;<a href="ntqcolor.html">TQColor</a>&nbsp;&amp;&nbsp;linkColor = TQt::blue, bool&nbsp;linkUnderline = TRUE ) <h3 class=fn><a name="TQSimpleRichText-2"></a>TQSimpleRichText::TQSimpleRichText ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;text, const&nbsp;<a href="ntqfont.html">TQFont</a>&nbsp;&amp;&nbsp;fnt, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;context, const&nbsp;<a href="tqstylesheet.html">TQStyleSheet</a>&nbsp;*&nbsp;sheet, const&nbsp;<a href="tqmimesourcefactory.html">TQMimeSourceFactory</a>&nbsp;*&nbsp;factory, int&nbsp;pageBreak = -1, const&nbsp;<a href="ntqcolor.html">TQColor</a>&nbsp;&amp;&nbsp;linkColor = TQt::blue, bool&nbsp;linkUnderline = TRUE )
</h3> </h3>
Constructs a TQSimpleRichText from the rich text string <em>text</em> and Constructs a TQSimpleRichText from the rich text string <em>text</em> and
the font <em>fnt</em>. the font <em>fnt</em>.
@ -115,10 +115,10 @@ as <a href="qcolorgroup.html">TQColorGroup</a>'s <a href="qcolorgroup.html#link"
<p> <em>context</em> is the optional context of the rich text object. This <p> <em>context</em> is the optional context of the rich text object. This
becomes important if <em>text</em> contains relative references, for becomes important if <em>text</em> contains relative references, for
example within image tags. TQSimpleRichText always uses the default example within image tags. TQSimpleRichText always uses the default
mime source factory (see <a href="qmimesourcefactory.html#defaultFactory">TQMimeSourceFactory::defaultFactory</a>()) mime source factory (see <a href="tqmimesourcefactory.html#defaultFactory">TQMimeSourceFactory::defaultFactory</a>())
to resolve those references. The context will then be used to to resolve those references. The context will then be used to
calculate the absolute path. See calculate the absolute path. See
<a href="qmimesourcefactory.html#makeAbsolute">TQMimeSourceFactory::makeAbsolute</a>() for details. <a href="tqmimesourcefactory.html#makeAbsolute">TQMimeSourceFactory::makeAbsolute</a>() for details.
<p> The <em>sheet</em> is an optional style sheet. If it is 0, the default <p> The <em>sheet</em> is an optional style sheet. If it is 0, the default
style sheet will be used (see <a href="tqstylesheet.html#defaultSheet">TQStyleSheet::defaultSheet</a>()). style sheet will be used (see <a href="tqstylesheet.html#defaultSheet">TQStyleSheet::defaultSheet</a>()).
<p> This constructor is useful for creating a TQSimpleRichText object <p> This constructor is useful for creating a TQSimpleRichText object

@ -595,29 +595,29 @@ This function should be called whenever the column width of <em>col</em>
has been changed. It updates the geometry of any affected columns has been changed. It updates the geometry of any affected columns
and repaints the table to reflect the changes it has made. and repaints the table to reflect the changes it has made.
<h3 class=fn>void <a name="contentsDragEnterEvent"></a>TQTable::contentsDragEnterEvent ( <a href="qdragenterevent.html">TQDragEnterEvent</a>&nbsp;*&nbsp;e )<tt> [virtual protected]</tt> <h3 class=fn>void <a name="contentsDragEnterEvent"></a>TQTable::contentsDragEnterEvent ( <a href="tqdragenterevent.html">TQDragEnterEvent</a>&nbsp;*&nbsp;e )<tt> [virtual protected]</tt>
</h3> </h3>
This event handler is called whenever a TQTable object receives a This event handler is called whenever a TQTable object receives a
<a href="qdragenterevent.html">TQDragEnterEvent</a> <em>e</em>, i.e. when the user pressed the mouse <a href="tqdragenterevent.html">TQDragEnterEvent</a> <em>e</em>, i.e. when the user pressed the mouse
button to drag something. button to drag something.
<p> The focus is moved to the cell where the <a href="qdragenterevent.html">TQDragEnterEvent</a> occurred. <p> The focus is moved to the cell where the <a href="tqdragenterevent.html">TQDragEnterEvent</a> occurred.
<p>Reimplemented from <a href="ntqscrollview.html#contentsDragEnterEvent">TQScrollView</a>. <p>Reimplemented from <a href="ntqscrollview.html#contentsDragEnterEvent">TQScrollView</a>.
<h3 class=fn>void <a name="contentsDragLeaveEvent"></a>TQTable::contentsDragLeaveEvent ( <a href="qdragleaveevent.html">TQDragLeaveEvent</a>&nbsp;*&nbsp;e )<tt> [virtual protected]</tt> <h3 class=fn>void <a name="contentsDragLeaveEvent"></a>TQTable::contentsDragLeaveEvent ( <a href="tqdragleaveevent.html">TQDragLeaveEvent</a>&nbsp;*&nbsp;e )<tt> [virtual protected]</tt>
</h3> </h3>
This event handler is called when a drag activity leaves <em>this</em> This event handler is called when a drag activity leaves <em>this</em>
TQTable object with event <em>e</em>. TQTable object with event <em>e</em>.
<p>Reimplemented from <a href="ntqscrollview.html#contentsDragLeaveEvent">TQScrollView</a>. <p>Reimplemented from <a href="ntqscrollview.html#contentsDragLeaveEvent">TQScrollView</a>.
<h3 class=fn>void <a name="contentsDragMoveEvent"></a>TQTable::contentsDragMoveEvent ( <a href="qdragmoveevent.html">TQDragMoveEvent</a>&nbsp;*&nbsp;e )<tt> [virtual protected]</tt> <h3 class=fn>void <a name="contentsDragMoveEvent"></a>TQTable::contentsDragMoveEvent ( <a href="tqdragmoveevent.html">TQDragMoveEvent</a>&nbsp;*&nbsp;e )<tt> [virtual protected]</tt>
</h3> </h3>
This event handler is called whenever a TQTable object receives a This event handler is called whenever a TQTable object receives a
<a href="qdragmoveevent.html">TQDragMoveEvent</a> <em>e</em>, i.e. when the user actually drags the <a href="tqdragmoveevent.html">TQDragMoveEvent</a> <em>e</em>, i.e. when the user actually drags the
mouse. mouse.
<p> The focus is moved to the cell where the <a href="qdragmoveevent.html">TQDragMoveEvent</a> occurred. <p> The focus is moved to the cell where the <a href="tqdragmoveevent.html">TQDragMoveEvent</a> occurred.
<p>Reimplemented from <a href="ntqscrollview.html#contentsDragMoveEvent">TQScrollView</a>. <p>Reimplemented from <a href="ntqscrollview.html#contentsDragMoveEvent">TQScrollView</a>.
<h3 class=fn>void <a name="contentsDropEvent"></a>TQTable::contentsDropEvent ( <a href="qdropevent.html">TQDropEvent</a>&nbsp;*&nbsp;e )<tt> [virtual protected]</tt> <h3 class=fn>void <a name="contentsDropEvent"></a>TQTable::contentsDropEvent ( <a href="tqdropevent.html">TQDropEvent</a>&nbsp;*&nbsp;e )<tt> [virtual protected]</tt>
</h3> </h3>
This event handler is called when the user ends a drag and drop by This event handler is called when the user ends a drag and drop by
dropping something onto <em>this</em> TQTable and thus triggers the drop dropping something onto <em>this</em> TQTable and thus triggers the drop
@ -716,14 +716,14 @@ double-clicked. The cell where the event took place is at <em>row</em>,
If this function returns TRUE, the table supports dragging. If this function returns TRUE, the table supports dragging.
<p> <p>See also <a href="#setDragEnabled">setDragEnabled</a>(). <p> <p>See also <a href="#setDragEnabled">setDragEnabled</a>().
<h3 class=fn><a href="ntqdragobject.html">TQDragObject</a>&nbsp;* <a name="dragObject"></a>TQTable::dragObject ()<tt> [virtual protected]</tt> <h3 class=fn><a href="tqdragobject.html">TQDragObject</a>&nbsp;* <a name="dragObject"></a>TQTable::dragObject ()<tt> [virtual protected]</tt>
</h3> </h3>
If the user presses the mouse on a selected cell, starts moving If the user presses the mouse on a selected cell, starts moving
(i.e. dragging), and <a href="#dragEnabled">dragEnabled</a>() is TRUE, this function is (i.e. dragging), and <a href="#dragEnabled">dragEnabled</a>() is TRUE, this function is
called to obtain a drag object. A drag using this object begins called to obtain a drag object. A drag using this object begins
immediately unless <a href="#dragObject">dragObject</a>() returns 0. immediately unless <a href="#dragObject">dragObject</a>() returns 0.
<p> By default this function returns 0. You might reimplement it and <p> By default this function returns 0. You might reimplement it and
create a <a href="ntqdragobject.html">TQDragObject</a> depending on the selected items. create a <a href="tqdragobject.html">TQDragObject</a> depending on the selected items.
<p> <p>See also <a href="#dropped">dropped</a>(). <p> <p>See also <a href="#dropped">dropped</a>().
<h3 class=fn>void <a name="drawContents"></a>TQTable::drawContents ( <a href="ntqpainter.html">TQPainter</a>&nbsp;*&nbsp;p, int&nbsp;cx, int&nbsp;cy, int&nbsp;cw, int&nbsp;ch )<tt> [virtual protected]</tt> <h3 class=fn>void <a name="drawContents"></a>TQTable::drawContents ( <a href="ntqpainter.html">TQPainter</a>&nbsp;*&nbsp;p, int&nbsp;cx, int&nbsp;cy, int&nbsp;cw, int&nbsp;ch )<tt> [virtual protected]</tt>
@ -735,7 +735,7 @@ wide and <em>ch</em> pixels high clipping rectangle at position <em>cx</em>,
<p> Additionally, <a href="#drawContents">drawContents</a>() highlights the current cell. <p> Additionally, <a href="#drawContents">drawContents</a>() highlights the current cell.
<p>Reimplemented from <a href="ntqscrollview.html#drawContents">TQScrollView</a>. <p>Reimplemented from <a href="ntqscrollview.html#drawContents">TQScrollView</a>.
<h3 class=fn>void <a name="dropped"></a>TQTable::dropped ( <a href="qdropevent.html">TQDropEvent</a>&nbsp;*&nbsp;e )<tt> [signal]</tt> <h3 class=fn>void <a name="dropped"></a>TQTable::dropped ( <a href="tqdropevent.html">TQDropEvent</a>&nbsp;*&nbsp;e )<tt> [signal]</tt>
</h3> </h3>
<p> This signal is emitted when a drop event occurred on the table. <p> This signal is emitted when a drop event occurred on the table.

@ -89,7 +89,7 @@ stylesheet. This makes it possible to embed images. See
"Click this button to open a &lt;em&gt;new file&lt;/em&gt;. &lt;br&gt;" "Click this button to open a &lt;em&gt;new file&lt;/em&gt;. &lt;br&gt;"
"You can also select the &lt;b&gt;Open&lt;/b&gt; command " "You can also select the &lt;b&gt;Open&lt;/b&gt; command "
"from the &lt;b&gt;File&lt;/b&gt; menu.&lt;/p&gt;"; "from the &lt;b&gt;File&lt;/b&gt; menu.&lt;/p&gt;";
<a name="x2104"></a> TQMimeSourceFactory::<a href="qmimesourcefactory.html#defaultFactory">defaultFactory</a>()-&gt;setPixmap( "document-open", <a name="x2104"></a> TQMimeSourceFactory::<a href="tqmimesourcefactory.html#defaultFactory">defaultFactory</a>()-&gt;setPixmap( "document-open",
<a name="x2102"></a> fileOpenAction-&gt;<a href="tqaction.html#iconSet">iconSet</a>().pixmap() ); <a name="x2102"></a> fileOpenAction-&gt;<a href="tqaction.html#iconSet">iconSet</a>().pixmap() );
<a name="x2103"></a> fileOpenAction-&gt;<a href="tqaction.html#setWhatsThis">setWhatsThis</a>( fileOpenText ); <a name="x2103"></a> fileOpenAction-&gt;<a href="tqaction.html#setWhatsThis">setWhatsThis</a>( fileOpenText );
</pre> </pre>

@ -382,7 +382,7 @@ new code.
<li> <a href="ntqtranslator.html#find">TQTranslator::find</a>( const char *context, const char *sourceText, const char *comment = 0 ) const <li> <a href="ntqtranslator.html#find">TQTranslator::find</a>( const char *context, const char *sourceText, const char *comment = 0 ) const
<li> <a href="ntqtranslator.html#insert">TQTranslator::insert</a>( const char *context, const char *sourceText, const <a href="tqstring.html">TQString</a> &amp; translation ) <li> <a href="ntqtranslator.html#insert">TQTranslator::insert</a>( const char *context, const char *sourceText, const <a href="tqstring.html">TQString</a> &amp; translation )
<li> <a href="ntqtranslator.html#remove">TQTranslator::remove</a>( const char *context, const char *sourceText ) <li> <a href="ntqtranslator.html#remove">TQTranslator::remove</a>( const char *context, const char *sourceText )
<li> <a href="quridrag.html#setFilenames">TQUriDrag::setFilenames</a>( const <a href="tqstringlist.html">TQStringList</a> &amp; fnames ) <li> <a href="tquridrag.html#setFilenames">TQUriDrag::setFilenames</a>( const <a href="tqstringlist.html">TQStringList</a> &amp; fnames )
<li> <a href="tqwidget.html#backgroundColor">TQWidget::backgroundColor</a>() const <li> <a href="tqwidget.html#backgroundColor">TQWidget::backgroundColor</a>() const
<li> <a href="tqwidget.html#backgroundPixmap">TQWidget::backgroundPixmap</a>() const <li> <a href="tqwidget.html#backgroundPixmap">TQWidget::backgroundPixmap</a>() const
<li> <a href="tqwidget.html#iconify">TQWidget::iconify</a>() <li> <a href="tqwidget.html#iconify">TQWidget::iconify</a>()

@ -3085,7 +3085,7 @@ works only if the viewport accepts drops. Specifying FALSE
disables this autoscroll feature. disables this autoscroll feature.
&lt;p&gt; &lt;b&gt;Warning:&lt;/b&gt; Enabling this property might not be enough to &lt;p&gt; &lt;b&gt;Warning:&lt;/b&gt; Enabling this property might not be enough to
effectively turn on autoscrolling. If you put a custom widget in effectively turn on autoscrolling. If you put a custom widget in
the QScrollView, you might need to call QDragEvent::ignore() on the QScrollView, you might need to call TQDragEvent::ignore() on
the event in the &lt;a href="tqwidget.html#dragEnterEvent"&gt;dragEnterEvent&lt;/a&gt;() and &lt;a href="tqwidget.html#dragMoveEvent"&gt;dragMoveEvent&lt;/a&gt;() the event in the &lt;a href="tqwidget.html#dragEnterEvent"&gt;dragEnterEvent&lt;/a&gt;() and &lt;a href="tqwidget.html#dragMoveEvent"&gt;dragMoveEvent&lt;/a&gt;()
reimplementations. reimplementations.
@ -3823,7 +3823,7 @@ source factory, you must ensure that the factory knows about the
encoding of specified files; otherwise no data will be available. encoding of specified files; otherwise no data will be available.
The default factory handles a couple of common file extensions The default factory handles a couple of common file extensions
such as &lt;tt&gt;*.html&lt;/tt&gt; and &lt;tt&gt;*.txt&lt;/tt&gt; with reasonable defaults. See such as &lt;tt&gt;*.html&lt;/tt&gt; and &lt;tt&gt;*.txt&lt;/tt&gt; with reasonable defaults. See
&lt;a href="qmimesourcefactory.html#data"&gt;QMimeSourceFactory::data&lt;/a&gt;() for details. &lt;a href="tqmimesourcefactory.html#data"&gt;TQMimeSourceFactory::data&lt;/a&gt;() for details.
&lt;p&gt;Set this property's value with &lt;a href="tqtextbrowser.html#setSource"&gt;setSource&lt;/a&gt;() and get this property's value with &lt;a href="tqtextbrowser.html#source"&gt;source&lt;/a&gt;(). &lt;p&gt;Set this property's value with &lt;a href="tqtextbrowser.html#setSource"&gt;setSource&lt;/a&gt;() and get this property's value with &lt;a href="tqtextbrowser.html#source"&gt;source&lt;/a&gt;().
</doc> </doc>

@ -81,7 +81,7 @@ body { background: #ffffff; color: black; }
#include "ntqwindowdefs.h" #include "ntqwindowdefs.h"
#include "ntqregion.h" #include "ntqregion.h"
#include "ntqnamespace.h" #include "ntqnamespace.h"
#include "ntqmime.h" #include "tqmime.h"
#include "tqpair.h" #include "tqpair.h"
#endif // QT_H #endif // QT_H

@ -268,9 +268,9 @@ unless the list view's sorting is disabled using
Destroys the item, deleting all its children and freeing up all Destroys the item, deleting all its children and freeing up all
allocated resources. allocated resources.
<h3 class=fn>bool <a name="acceptDrop"></a>TQListViewItem::acceptDrop ( const&nbsp;<a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;mime ) const<tt> [virtual]</tt> <h3 class=fn>bool <a name="acceptDrop"></a>TQListViewItem::acceptDrop ( const&nbsp;<a href="tqmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;mime ) const<tt> [virtual]</tt>
</h3> </h3>
Returns TRUE if the item can accept drops of type <a href="qmimesource.html">TQMimeSource</a> <em>mime</em>; otherwise returns FALSE. Returns TRUE if the item can accept drops of type <a href="tqmimesource.html">TQMimeSource</a> <em>mime</em>; otherwise returns FALSE.
<p> The default implementation does nothing and returns FALSE. A <p> The default implementation does nothing and returns FALSE. A
subclass must reimplement this to accept drops. subclass must reimplement this to accept drops.
@ -355,7 +355,7 @@ reimplement this function.
Returns TRUE if this item accepts drops; otherwise returns FALSE. Returns TRUE if this item accepts drops; otherwise returns FALSE.
<p> <p>See also <a href="#setDropEnabled">setDropEnabled</a>() and <a href="#acceptDrop">acceptDrop</a>(). <p> <p>See also <a href="#setDropEnabled">setDropEnabled</a>() and <a href="#acceptDrop">acceptDrop</a>().
<h3 class=fn>void <a name="dropped"></a>TQListViewItem::dropped ( <a href="qdropevent.html">TQDropEvent</a>&nbsp;*&nbsp;e )<tt> [virtual protected]</tt> <h3 class=fn>void <a name="dropped"></a>TQListViewItem::dropped ( <a href="tqdropevent.html">TQDropEvent</a>&nbsp;*&nbsp;e )<tt> [virtual protected]</tt>
</h3> </h3>
This function is called when something was dropped on the item. <em>e</em> This function is called when something was dropped on the item. <em>e</em>
contains all the information about the drop. contains all the information about the drop.

@ -1011,13 +1011,13 @@
<section ref="qcolordialog-members.html" title="List of All Member Functions"/> <section ref="qcolordialog-members.html" title="List of All Member Functions"/>
<section ref="qcolordialog-h.html" title="Header File"/> <section ref="qcolordialog-h.html" title="Header File"/>
</section> </section>
<section ref="qcolordrag.html" title="QColorDrag Class Reference"> <section ref="tqcolordrag.html" title="TQColorDrag Class Reference">
<keyword ref="qcolordrag.html">QColorDrag</keyword> <keyword ref="tqcolordrag.html">TQColorDrag</keyword>
<keyword ref="qcolordrag.html#canDecode">canDecode</keyword> <keyword ref="tqcolordrag.html#canDecode">canDecode</keyword>
<keyword ref="qcolordrag.html#decode">decode</keyword> <keyword ref="tqcolordrag.html#decode">decode</keyword>
<keyword ref="qcolordrag.html#setColor">setColor</keyword> <keyword ref="tqcolordrag.html#setColor">setColor</keyword>
<section ref="qcolordrag-members.html" title="List of All Member Functions"/> <section ref="tqcolordrag-members.html" title="List of All Member Functions"/>
<section ref="qdragobject-h.html" title="Header File"/> <section ref="tqdragobject-h.html" title="Header File"/>
</section> </section>
<section ref="qcolorgroup.html" title="QColorGroup Class Reference"> <section ref="qcolorgroup.html" title="QColorGroup Class Reference">
<keyword ref="qcolorgroup.html">QColorGroup</keyword> <keyword ref="qcolorgroup.html">QColorGroup</keyword>
@ -2181,63 +2181,63 @@
<section ref="qdoublevalidator-members.html" title="List of All Member Functions"/> <section ref="qdoublevalidator-members.html" title="List of All Member Functions"/>
<section ref="qvalidator-h.html" title="Header File"/> <section ref="qvalidator-h.html" title="Header File"/>
</section> </section>
<section ref="qdragenterevent.html" title="QDragEnterEvent Class Reference"> <section ref="tqdragenterevent.html" title="TQDragEnterEvent Class Reference">
<keyword ref="qdragenterevent.html">QDragEnterEvent</keyword> <keyword ref="tqdragenterevent.html">TQDragEnterEvent</keyword>
<section ref="qdragenterevent-members.html" title="List of All Member Functions"/> <section ref="tqdragenterevent-members.html" title="List of All Member Functions"/>
<section ref="qevent-h.html" title="Header File"/> <section ref="qevent-h.html" title="Header File"/>
</section> </section>
<section ref="qdragleaveevent.html" title="QDragLeaveEvent Class Reference"> <section ref="tqdragleaveevent.html" title="TQDragLeaveEvent Class Reference">
<keyword ref="qdragleaveevent.html">QDragLeaveEvent</keyword> <keyword ref="tqdragleaveevent.html">TQDragLeaveEvent</keyword>
<section ref="qdragleaveevent-members.html" title="List of All Member Functions"/> <section ref="tqdragleaveevent-members.html" title="List of All Member Functions"/>
<section ref="qevent-h.html" title="Header File"/> <section ref="qevent-h.html" title="Header File"/>
</section> </section>
<section ref="qdragmoveevent.html" title="QDragMoveEvent Class Reference"> <section ref="tqdragmoveevent.html" title="TQDragMoveEvent Class Reference">
<keyword ref="qdragmoveevent.html">QDragMoveEvent</keyword> <keyword ref="tqdragmoveevent.html">TQDragMoveEvent</keyword>
<keyword ref="qdragmoveevent.html#accept">accept</keyword> <keyword ref="tqdragmoveevent.html#accept">accept</keyword>
<keyword ref="qdragmoveevent.html#answerRect">answerRect</keyword> <keyword ref="tqdragmoveevent.html#answerRect">answerRect</keyword>
<keyword ref="qdragmoveevent.html#ignore">ignore</keyword> <keyword ref="tqdragmoveevent.html#ignore">ignore</keyword>
<section ref="qdragmoveevent-members.html" title="List of All Member Functions"/> <section ref="tqdragmoveevent-members.html" title="List of All Member Functions"/>
<section ref="qevent-h.html" title="Header File"/> <section ref="qevent-h.html" title="Header File"/>
</section> </section>
<section ref="ntqdragobject.html" title="QDragObject Class Reference"> <section ref="tqdragobject.html" title="TQDragObject Class Reference">
<keyword ref="ntqdragobject.html">QDragObject</keyword> <keyword ref="tqdragobject.html">TQDragObject</keyword>
<keyword ref="ntqdragobject.html#DragMode">DragMode</keyword> <keyword ref="tqdragobject.html#DragMode">DragMode</keyword>
<keyword ref="ntqdragobject.html#drag">drag</keyword> <keyword ref="tqdragobject.html#drag">drag</keyword>
<keyword ref="ntqdragobject.html#dragCopy">dragCopy</keyword> <keyword ref="tqdragobject.html#dragCopy">dragCopy</keyword>
<keyword ref="ntqdragobject.html#dragLink">dragLink</keyword> <keyword ref="tqdragobject.html#dragLink">dragLink</keyword>
<keyword ref="ntqdragobject.html#dragMove">dragMove</keyword> <keyword ref="tqdragobject.html#dragMove">dragMove</keyword>
<keyword ref="ntqdragobject.html#pixmap">pixmap</keyword> <keyword ref="tqdragobject.html#pixmap">pixmap</keyword>
<keyword ref="ntqdragobject.html#pixmapHotSpot">pixmapHotSpot</keyword> <keyword ref="tqdragobject.html#pixmapHotSpot">pixmapHotSpot</keyword>
<keyword ref="ntqdragobject.html#setPixmap">setPixmap</keyword> <keyword ref="tqdragobject.html#setPixmap">setPixmap</keyword>
<keyword ref="ntqdragobject.html#source">source</keyword> <keyword ref="tqdragobject.html#source">source</keyword>
<keyword ref="ntqdragobject.html#target">target</keyword> <keyword ref="tqdragobject.html#target">target</keyword>
<keyword ref="ntqdragobject.html#~QDragObject">~QDragObject</keyword> <keyword ref="tqdragobject.html#~TQDragObject">~TQDragObject</keyword>
<section ref="qdragobject-members.html" title="List of All Member Functions"/> <section ref="tqdragobject-members.html" title="List of All Member Functions"/>
<section ref="qdragobject-h.html" title="Header File"/> <section ref="tqdragobject-h.html" title="Header File"/>
</section> </section>
<section ref="qdropevent.html" title="QDropEvent Class Reference"> <section ref="tqdropevent.html" title="TQDropEvent Class Reference">
<keyword ref="qdropevent.html">QDropEvent</keyword> <keyword ref="tqdropevent.html">TQDropEvent</keyword>
<keyword ref="qdropevent.html#Action">Action</keyword> <keyword ref="tqdropevent.html#Action">Action</keyword>
<keyword ref="qdropevent.html#accept">accept</keyword> <keyword ref="tqdropevent.html#accept">accept</keyword>
<keyword ref="qdropevent.html#acceptAction">acceptAction</keyword> <keyword ref="tqdropevent.html#acceptAction">acceptAction</keyword>
<keyword ref="qdropevent.html#action">action</keyword> <keyword ref="tqdropevent.html#action">action</keyword>
<keyword ref="qdropevent.html#encodedData">encodedData</keyword> <keyword ref="tqdropevent.html#encodedData">encodedData</keyword>
<keyword ref="qdropevent.html#format">format</keyword> <keyword ref="tqdropevent.html#format">format</keyword>
<keyword ref="qdropevent.html#ignore">ignore</keyword> <keyword ref="tqdropevent.html#ignore">ignore</keyword>
<keyword ref="qdropevent.html#isAccepted">isAccepted</keyword> <keyword ref="tqdropevent.html#isAccepted">isAccepted</keyword>
<keyword ref="qdropevent.html#isActionAccepted">isActionAccepted</keyword> <keyword ref="tqdropevent.html#isActionAccepted">isActionAccepted</keyword>
<keyword ref="qdropevent.html#pos">pos</keyword> <keyword ref="tqdropevent.html#pos">pos</keyword>
<keyword ref="qdropevent.html#provides">provides</keyword> <keyword ref="tqdropevent.html#provides">provides</keyword>
<keyword ref="qdropevent.html#setAction">setAction</keyword> <keyword ref="tqdropevent.html#setAction">setAction</keyword>
<keyword ref="qdropevent.html#setPoint">setPoint</keyword> <keyword ref="tqdropevent.html#setPoint">setPoint</keyword>
<keyword ref="qdropevent.html#source">source</keyword> <keyword ref="tqdropevent.html#source">source</keyword>
<section ref="qdropevent-members.html" title="List of All Member Functions"/> <section ref="tqdropevent-members.html" title="List of All Member Functions"/>
<section ref="qevent-h.html" title="Header File"/> <section ref="qevent-h.html" title="Header File"/>
</section> </section>
<section ref="ntqdropsite.html" title="QDropSite Class Reference"> <section ref="tqdropsite.html" title="TQDropSite Class Reference">
<keyword ref="ntqdropsite.html#~QDropSite">~QDropSite</keyword> <keyword ref="tqdropsite.html#~TQDropSite">~TQDropSite</keyword>
<section ref="qdropsite-members.html" title="List of All Member Functions"/> <section ref="tqdropsite-members.html" title="List of All Member Functions"/>
<section ref="qdropsite-h.html" title="Header File"/> <section ref="tqdropsite-h.html" title="Header File"/>
</section> </section>
<section ref="tqeditorfactory.html" title="TQEditorFactory Class Reference"> <section ref="tqeditorfactory.html" title="TQEditorFactory Class Reference">
<keyword ref="tqeditorfactory.html">TQEditorFactory</keyword> <keyword ref="tqeditorfactory.html">TQEditorFactory</keyword>
@ -3477,7 +3477,7 @@
<keyword ref="tqimagedrag.html#setImage">setImage</keyword> <keyword ref="tqimagedrag.html#setImage">setImage</keyword>
<keyword ref="tqimagedrag.html#~TQImageDrag">~TQImageDrag</keyword> <keyword ref="tqimagedrag.html#~TQImageDrag">~TQImageDrag</keyword>
<section ref="tqimagedrag-members.html" title="List of All Member Functions"/> <section ref="tqimagedrag-members.html" title="List of All Member Functions"/>
<section ref="qdragobject-h.html" title="Header File"/> <section ref="tqdragobject-h.html" title="Header File"/>
</section> </section>
<section ref="tqimageformat.html" title="TQImageFormat Class Reference"> <section ref="tqimageformat.html" title="TQImageFormat Class Reference">
<keyword ref="tqimageformat.html">TQImageFormat</keyword> <keyword ref="tqimageformat.html">TQImageFormat</keyword>
@ -4344,22 +4344,22 @@
<section ref="qlocalfs-members.html" title="List of All Member Functions"/> <section ref="qlocalfs-members.html" title="List of All Member Functions"/>
<section ref="qlocalfs-h.html" title="Header File"/> <section ref="qlocalfs-h.html" title="Header File"/>
</section> </section>
<section ref="qmacmime.html" title="QMacMime Class Reference"> <section ref="tqmacmime.html" title="TQMacMime Class Reference">
<keyword ref="qmacmime.html">QMacMime</keyword> <keyword ref="tqmacmime.html">TQMacMime</keyword>
<keyword ref="qmacmime.html#all">all</keyword> <keyword ref="tqmacmime.html#all">all</keyword>
<keyword ref="qmacmime.html#canConvert">canConvert</keyword> <keyword ref="tqmacmime.html#canConvert">canConvert</keyword>
<keyword ref="qmacmime.html#convertFromMime">convertFromMime</keyword> <keyword ref="tqmacmime.html#convertFromMime">convertFromMime</keyword>
<keyword ref="qmacmime.html#convertToMime">convertToMime</keyword> <keyword ref="tqmacmime.html#convertToMime">convertToMime</keyword>
<keyword ref="qmacmime.html#convertor">convertor</keyword> <keyword ref="tqmacmime.html#convertor">convertor</keyword>
<keyword ref="qmacmime.html#convertorName">convertorName</keyword> <keyword ref="tqmacmime.html#convertorName">convertorName</keyword>
<keyword ref="qmacmime.html#countFlavors">countFlavors</keyword> <keyword ref="tqmacmime.html#countFlavors">countFlavors</keyword>
<keyword ref="qmacmime.html#flavor">flavor</keyword> <keyword ref="tqmacmime.html#flavor">flavor</keyword>
<keyword ref="qmacmime.html#flavorFor">flavorFor</keyword> <keyword ref="tqmacmime.html#flavorFor">flavorFor</keyword>
<keyword ref="qmacmime.html#flavorToMime">flavorToMime</keyword> <keyword ref="tqmacmime.html#flavorToMime">flavorToMime</keyword>
<keyword ref="qmacmime.html#mimeFor">mimeFor</keyword> <keyword ref="tqmacmime.html#mimeFor">mimeFor</keyword>
<keyword ref="qmacmime.html#~QMacMime">~QMacMime</keyword> <keyword ref="tqmacmime.html#~TQMacMime">~TQMacMime</keyword>
<section ref="qmacmime-members.html" title="List of All Member Functions"/> <section ref="tqmacmime-members.html" title="List of All Member Functions"/>
<section ref="qmime-h.html" title="Header File"/> <section ref="tqmime-h.html" title="Header File"/>
</section> </section>
<section ref="qmacstyle.html" title="QMacStyle Class Reference"> <section ref="qmacstyle.html" title="QMacStyle Class Reference">
<keyword ref="qmacstyle.html">QMacStyle</keyword> <keyword ref="qmacstyle.html">QMacStyle</keyword>
@ -4670,36 +4670,36 @@
<section ref="qmetaproperty-members.html" title="List of All Member Functions"/> <section ref="qmetaproperty-members.html" title="List of All Member Functions"/>
<section ref="qmetaobject-h.html" title="Header File"/> <section ref="qmetaobject-h.html" title="Header File"/>
</section> </section>
<section ref="qmimesource.html" title="QMimeSource Class Reference"> <section ref="tqmimesource.html" title="TQMimeSource Class Reference">
<keyword ref="qmimesource.html">QMimeSource</keyword> <keyword ref="tqmimesource.html">TQMimeSource</keyword>
<keyword ref="qmimesource.html#encodedData">encodedData</keyword> <keyword ref="tqmimesource.html#encodedData">encodedData</keyword>
<keyword ref="qmimesource.html#format">format</keyword> <keyword ref="tqmimesource.html#format">format</keyword>
<keyword ref="qmimesource.html#provides">provides</keyword> <keyword ref="tqmimesource.html#provides">provides</keyword>
<keyword ref="qmimesource.html#serialNumber">serialNumber</keyword> <keyword ref="tqmimesource.html#serialNumber">serialNumber</keyword>
<keyword ref="qmimesource.html#~QMimeSource">~QMimeSource</keyword> <keyword ref="tqmimesource.html#~TQMimeSource">~TQMimeSource</keyword>
<section ref="qmimesource-members.html" title="List of All Member Functions"/> <section ref="tqmimesource-members.html" title="List of All Member Functions"/>
<section ref="qmime-h.html" title="Header File"/> <section ref="tqmime-h.html" title="Header File"/>
</section> </section>
<section ref="qmimesourcefactory.html" title="QMimeSourceFactory Class Reference"> <section ref="tqmimesourcefactory.html" title="TQMimeSourceFactory Class Reference">
<keyword ref="qmimesourcefactory.html">QMimeSourceFactory</keyword> <keyword ref="tqmimesourcefactory.html">TQMimeSourceFactory</keyword>
<keyword ref="qmimesourcefactory.html#addFactory">addFactory</keyword> <keyword ref="tqmimesourcefactory.html#addFactory">addFactory</keyword>
<keyword ref="qmimesourcefactory.html#addFilePath">addFilePath</keyword> <keyword ref="tqmimesourcefactory.html#addFilePath">addFilePath</keyword>
<keyword ref="qmimesourcefactory.html#data">data</keyword> <keyword ref="tqmimesourcefactory.html#data">data</keyword>
<keyword ref="qmimesourcefactory.html#defaultFactory">defaultFactory</keyword> <keyword ref="tqmimesourcefactory.html#defaultFactory">defaultFactory</keyword>
<keyword ref="qmimesourcefactory.html#filePath">filePath</keyword> <keyword ref="tqmimesourcefactory.html#filePath">filePath</keyword>
<keyword ref="qmimesourcefactory.html#makeAbsolute">makeAbsolute</keyword> <keyword ref="tqmimesourcefactory.html#makeAbsolute">makeAbsolute</keyword>
<keyword ref="qmimesourcefactory.html#removeFactory">removeFactory</keyword> <keyword ref="tqmimesourcefactory.html#removeFactory">removeFactory</keyword>
<keyword ref="qmimesourcefactory.html#setData">setData</keyword> <keyword ref="tqmimesourcefactory.html#setData">setData</keyword>
<keyword ref="qmimesourcefactory.html#setDefaultFactory">setDefaultFactory</keyword> <keyword ref="tqmimesourcefactory.html#setDefaultFactory">setDefaultFactory</keyword>
<keyword ref="qmimesourcefactory.html#setExtensionType">setExtensionType</keyword> <keyword ref="tqmimesourcefactory.html#setExtensionType">setExtensionType</keyword>
<keyword ref="qmimesourcefactory.html#setFilePath">setFilePath</keyword> <keyword ref="tqmimesourcefactory.html#setFilePath">setFilePath</keyword>
<keyword ref="qmimesourcefactory.html#setImage">setImage</keyword> <keyword ref="tqmimesourcefactory.html#setImage">setImage</keyword>
<keyword ref="qmimesourcefactory.html#setPixmap">setPixmap</keyword> <keyword ref="tqmimesourcefactory.html#setPixmap">setPixmap</keyword>
<keyword ref="qmimesourcefactory.html#setText">setText</keyword> <keyword ref="tqmimesourcefactory.html#setText">setText</keyword>
<keyword ref="qmimesourcefactory.html#takeDefaultFactory">takeDefaultFactory</keyword> <keyword ref="tqmimesourcefactory.html#takeDefaultFactory">takeDefaultFactory</keyword>
<keyword ref="qmimesourcefactory.html#~QMimeSourceFactory">~QMimeSourceFactory</keyword> <keyword ref="tqmimesourcefactory.html#~TQMimeSourceFactory">~TQMimeSourceFactory</keyword>
<section ref="qmimesourcefactory-members.html" title="List of All Member Functions"/> <section ref="tqmimesourcefactory-members.html" title="List of All Member Functions"/>
<section ref="qmime-h.html" title="Header File"/> <section ref="tqmime-h.html" title="Header File"/>
</section> </section>
<section ref="qmotif.html" title="QMotif Class Reference"> <section ref="qmotif.html" title="QMotif Class Reference">
<keyword ref="qmotif.html">QMotif</keyword> <keyword ref="qmotif.html">QMotif</keyword>
@ -6939,13 +6939,13 @@
<section ref="tqstatusbar-members.html" title="List of All Member Functions"/> <section ref="tqstatusbar-members.html" title="List of All Member Functions"/>
<section ref="tqstatusbar-h.html" title="Header File"/> <section ref="tqstatusbar-h.html" title="Header File"/>
</section> </section>
<section ref="qstoreddrag.html" title="QStoredDrag Class Reference"> <section ref="tqstoreddrag.html" title="TQStoredDrag Class Reference">
<keyword ref="qstoreddrag.html">QStoredDrag</keyword> <keyword ref="tqstoreddrag.html">TQStoredDrag</keyword>
<keyword ref="qstoreddrag.html#encodedData">encodedData</keyword> <keyword ref="tqstoreddrag.html#encodedData">encodedData</keyword>
<keyword ref="qstoreddrag.html#setEncodedData">setEncodedData</keyword> <keyword ref="tqstoreddrag.html#setEncodedData">setEncodedData</keyword>
<keyword ref="qstoreddrag.html#~QStoredDrag">~QStoredDrag</keyword> <keyword ref="tqstoreddrag.html#~TQStoredDrag">~TQStoredDrag</keyword>
<section ref="qstoreddrag-members.html" title="List of All Member Functions"/> <section ref="tqstoreddrag-members.html" title="List of All Member Functions"/>
<section ref="qdragobject-h.html" title="Header File"/> <section ref="tqdragobject-h.html" title="Header File"/>
</section> </section>
<section ref="tqstrilist.html" title="TQStrIList Class Reference"> <section ref="tqstrilist.html" title="TQStrIList Class Reference">
<keyword ref="tqstrilist.html">TQStrIList</keyword> <keyword ref="tqstrilist.html">TQStrIList</keyword>
@ -7693,7 +7693,7 @@
<keyword ref="tqtextdrag.html#setText">setText</keyword> <keyword ref="tqtextdrag.html#setText">setText</keyword>
<keyword ref="tqtextdrag.html#~TQTextDrag">~TQTextDrag</keyword> <keyword ref="tqtextdrag.html#~TQTextDrag">~TQTextDrag</keyword>
<section ref="tqtextdrag-members.html" title="List of All Member Functions"/> <section ref="tqtextdrag-members.html" title="List of All Member Functions"/>
<section ref="qdragobject-h.html" title="Header File"/> <section ref="tqdragobject-h.html" title="Header File"/>
</section> </section>
<section ref="tqtextedit.html" title="TQTextEdit Class Reference"> <section ref="tqtextedit.html" title="TQTextEdit Class Reference">
<keyword ref="tqtextedit.html">TQTextEdit</keyword> <keyword ref="tqtextedit.html">TQTextEdit</keyword>
@ -8173,22 +8173,22 @@
<section ref="tqtsciicodec-members.html" title="List of All Member Functions"/> <section ref="tqtsciicodec-members.html" title="List of All Member Functions"/>
<section ref="tqtsciicodec-h.html" title="Header File"/> <section ref="tqtsciicodec-h.html" title="Header File"/>
</section> </section>
<section ref="quridrag.html" title="QUriDrag Class Reference"> <section ref="tquridrag.html" title="TQUriDrag Class Reference">
<keyword ref="quridrag.html">QUriDrag</keyword> <keyword ref="tquridrag.html">TQUriDrag</keyword>
<keyword ref="quridrag.html#canDecode">canDecode</keyword> <keyword ref="tquridrag.html#canDecode">canDecode</keyword>
<keyword ref="quridrag.html#decode">decode</keyword> <keyword ref="tquridrag.html#decode">decode</keyword>
<keyword ref="quridrag.html#decodeLocalFiles">decodeLocalFiles</keyword> <keyword ref="tquridrag.html#decodeLocalFiles">decodeLocalFiles</keyword>
<keyword ref="quridrag.html#decodeToUnicodeUris">decodeToUnicodeUris</keyword> <keyword ref="tquridrag.html#decodeToUnicodeUris">decodeToUnicodeUris</keyword>
<keyword ref="quridrag.html#localFileToUri">localFileToUri</keyword> <keyword ref="tquridrag.html#localFileToUri">localFileToUri</keyword>
<keyword ref="quridrag.html#setFileNames">setFileNames</keyword> <keyword ref="tquridrag.html#setFileNames">setFileNames</keyword>
<keyword ref="quridrag.html#setUnicodeUris">setUnicodeUris</keyword> <keyword ref="tquridrag.html#setUnicodeUris">setUnicodeUris</keyword>
<keyword ref="quridrag.html#setUris">setUris</keyword> <keyword ref="tquridrag.html#setUris">setUris</keyword>
<keyword ref="quridrag.html#unicodeUriToUri">unicodeUriToUri</keyword> <keyword ref="tquridrag.html#unicodeUriToUri">unicodeUriToUri</keyword>
<keyword ref="quridrag.html#uriToLocalFile">uriToLocalFile</keyword> <keyword ref="tquridrag.html#uriToLocalFile">uriToLocalFile</keyword>
<keyword ref="quridrag.html#uriToUnicodeUri">uriToUnicodeUri</keyword> <keyword ref="tquridrag.html#uriToUnicodeUri">uriToUnicodeUri</keyword>
<keyword ref="quridrag.html#~QUriDrag">~QUriDrag</keyword> <keyword ref="tquridrag.html#~TQUriDrag">~TQUriDrag</keyword>
<section ref="quridrag-members.html" title="List of All Member Functions"/> <section ref="tquridrag-members.html" title="List of All Member Functions"/>
<section ref="qdragobject-h.html" title="Header File"/> <section ref="tqdragobject-h.html" title="Header File"/>
</section> </section>
<section ref="ntqurl.html" title="QUrl Class Reference"> <section ref="ntqurl.html" title="QUrl Class Reference">
<keyword ref="ntqurl.html">QUrl</keyword> <keyword ref="ntqurl.html">QUrl</keyword>
@ -8960,23 +8960,23 @@
<section ref="tqwidgetstack-members.html" title="List of All Member Functions"/> <section ref="tqwidgetstack-members.html" title="List of All Member Functions"/>
<section ref="tqwidgetstack-h.html" title="Header File"/> <section ref="tqwidgetstack-h.html" title="Header File"/>
</section> </section>
<section ref="qwindowsmime.html" title="QWindowsMime Class Reference"> <section ref="tqwindowsmime.html" title="TQWindowsMime Class Reference">
<keyword ref="qwindowsmime.html">QWindowsMime</keyword> <keyword ref="tqwindowsmime.html">TQWindowsMime</keyword>
<keyword ref="qwindowsmime.html#all">all</keyword> <keyword ref="tqwindowsmime.html#all">all</keyword>
<keyword ref="qwindowsmime.html#canConvert">canConvert</keyword> <keyword ref="tqwindowsmime.html#canConvert">canConvert</keyword>
<keyword ref="qwindowsmime.html#cf">cf</keyword> <keyword ref="tqwindowsmime.html#cf">cf</keyword>
<keyword ref="qwindowsmime.html#cfFor">cfFor</keyword> <keyword ref="tqwindowsmime.html#cfFor">cfFor</keyword>
<keyword ref="qwindowsmime.html#cfToMime">cfToMime</keyword> <keyword ref="tqwindowsmime.html#cfToMime">cfToMime</keyword>
<keyword ref="qwindowsmime.html#convertFromMime">convertFromMime</keyword> <keyword ref="tqwindowsmime.html#convertFromMime">convertFromMime</keyword>
<keyword ref="qwindowsmime.html#convertToMime">convertToMime</keyword> <keyword ref="tqwindowsmime.html#convertToMime">convertToMime</keyword>
<keyword ref="qwindowsmime.html#convertor">convertor</keyword> <keyword ref="tqwindowsmime.html#convertor">convertor</keyword>
<keyword ref="qwindowsmime.html#convertorName">convertorName</keyword> <keyword ref="tqwindowsmime.html#convertorName">convertorName</keyword>
<keyword ref="qwindowsmime.html#countCf">countCf</keyword> <keyword ref="tqwindowsmime.html#countCf">countCf</keyword>
<keyword ref="qwindowsmime.html#initialize">initialize</keyword> <keyword ref="tqwindowsmime.html#initialize">initialize</keyword>
<keyword ref="qwindowsmime.html#mimeFor">mimeFor</keyword> <keyword ref="tqwindowsmime.html#mimeFor">mimeFor</keyword>
<keyword ref="qwindowsmime.html#~QWindowsMime">~QWindowsMime</keyword> <keyword ref="tqwindowsmime.html#~TQWindowsMime">~TQWindowsMime</keyword>
<section ref="qwindowsmime-members.html" title="List of All Member Functions"/> <section ref="tqwindowsmime-members.html" title="List of All Member Functions"/>
<section ref="qmime-h.html" title="Header File"/> <section ref="tqmime-h.html" title="Header File"/>
</section> </section>
<section ref="ntqwindowsstyle.html" title="QWindowsStyle Class Reference"> <section ref="ntqwindowsstyle.html" title="QWindowsStyle Class Reference">
<keyword ref="ntqwindowsstyle.html">QWindowsStyle</keyword> <keyword ref="ntqwindowsstyle.html">QWindowsStyle</keyword>

@ -161,7 +161,7 @@ private:
<a name="x1591"></a> TQWhatsThis::<a href="ntqwhatsthis.html#add">add</a>( fileOpen, fileOpenText ); <a name="x1591"></a> TQWhatsThis::<a href="ntqwhatsthis.html#add">add</a>( fileOpen, fileOpenText );
<a name="x1558"></a> TQMimeSourceFactory::<a href="qmimesourcefactory.html#defaultFactory">defaultFactory</a>()-&gt;setPixmap( "document-open", openIcon ); <a name="x1558"></a> TQMimeSourceFactory::<a href="tqmimesourcefactory.html#defaultFactory">defaultFactory</a>()-&gt;setPixmap( "document-open", openIcon );
const char * fileSaveText = "&lt;p&gt;Click this button to save the file you " const char * fileSaveText = "&lt;p&gt;Click this button to save the file you "
"are editing. You will be prompted for a file name.\n" "are editing. You will be prompted for a file name.\n"

@ -232,7 +232,7 @@ function, as its mouse interface is unusual.
</pre> </pre>
<p> With the above line we add the "What's This?" help-text to the <p> With the above line we add the "What's This?" help-text to the
<em>fileOpen</em> button... <em>fileOpen</em> button...
<p> <pre> TQMimeSourceFactory::<a href="qmimesourcefactory.html#defaultFactory">defaultFactory</a>()-&gt;setPixmap( "document-open", openIcon ); <p> <pre> TQMimeSourceFactory::<a href="tqmimesourcefactory.html#defaultFactory">defaultFactory</a>()-&gt;setPixmap( "document-open", openIcon );
</pre> </pre>
<p> ... and tell the rich-text engine that when a help-text (like the one <p> ... and tell the rich-text engine that when a help-text (like the one
saved in <em>fileOpenText</em>) requests an image named "document-open", the <em>openIcon</em> pixmap is used. saved in <em>fileOpenText</em>) requests an image named "document-open", the <em>openIcon</em> pixmap is used.

@ -65,8 +65,8 @@ class DDListBox : public <a href="ntqlistbox.html">TQListBox</a>
public: public:
DDListBox( <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, WFlags f = 0 ); DDListBox( <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, WFlags f = 0 );
// Low-level drag and drop // Low-level drag and drop
void dragEnterEvent( <a href="qdragenterevent.html">TQDragEnterEvent</a> *evt ); void dragEnterEvent( <a href="tqdragenterevent.html">TQDragEnterEvent</a> *evt );
void dropEvent( <a href="qdropevent.html">TQDropEvent</a> *evt ); void dropEvent( <a href="tqdropevent.html">TQDropEvent</a> *evt );
void mousePressEvent( <a href="qmouseevent.html">TQMouseEvent</a> *evt ); void mousePressEvent( <a href="qmouseevent.html">TQMouseEvent</a> *evt );
void mouseMoveEvent( <a href="qmouseevent.html">TQMouseEvent</a> * ); void mouseMoveEvent( <a href="qmouseevent.html">TQMouseEvent</a> * );
private: private:
@ -82,8 +82,8 @@ public:
DDIconViewItem( <a href="tqiconview.html">TQIconView</a> *parent, const <a href="tqstring.html">TQString</a> &amp;text ) : DDIconViewItem( <a href="tqiconview.html">TQIconView</a> *parent, const <a href="tqstring.html">TQString</a> &amp;text ) :
<a href="tqiconviewitem.html">TQIconViewItem</a>( parent, text ) {} <a href="tqiconviewitem.html">TQIconViewItem</a>( parent, text ) {}
// High-level drag and drop // High-level drag and drop
bool acceptDrop( const <a href="qmimesource.html">TQMimeSource</a> *mime ) const; bool acceptDrop( const <a href="tqmimesource.html">TQMimeSource</a> *mime ) const;
void dropped( <a href="qdropevent.html">TQDropEvent</a> *evt, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&amp; ); void dropped( <a href="tqdropevent.html">TQDropEvent</a> *evt, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&amp; );
}; };
@ -94,9 +94,9 @@ public:
DDIconView( <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, WFlags f = 0 ) : DDIconView( <a href="tqwidget.html">TQWidget</a> * parent = 0, const char * name = 0, WFlags f = 0 ) :
<a href="tqiconview.html">TQIconView</a>( parent, name, f ) {} <a href="tqiconview.html">TQIconView</a>( parent, name, f ) {}
// High-level drag and drop // High-level drag and drop
<a href="ntqdragobject.html">TQDragObject</a> *dragObject(); <a href="tqdragobject.html">TQDragObject</a> *dragObject();
public slots: public slots:
void slotNewItem( <a href="qdropevent.html">TQDropEvent</a> *evt, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&amp; list ); void slotNewItem( <a href="tqdropevent.html">TQDropEvent</a> *evt, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&amp; list );
}; };
</pre> </pre>
@ -189,14 +189,14 @@ const char* green_icon[]={
} }
<a name="x2829"></a>void DDListBox::<a href="tqwidget.html#dragEnterEvent">dragEnterEvent</a>( <a href="qdragenterevent.html">TQDragEnterEvent</a> *evt ) <a name="x2829"></a>void DDListBox::<a href="tqwidget.html#dragEnterEvent">dragEnterEvent</a>( <a href="tqdragenterevent.html">TQDragEnterEvent</a> *evt )
{ {
<a name="x2827"></a> if ( TQTextDrag::<a href="tqtextdrag.html#canDecode">canDecode</a>( evt ) ) <a name="x2827"></a> if ( TQTextDrag::<a href="tqtextdrag.html#canDecode">canDecode</a>( evt ) )
<a name="x2819"></a> evt-&gt;<a href="qdragmoveevent.html#accept">accept</a>(); <a name="x2819"></a> evt-&gt;<a href="tqdragmoveevent.html#accept">accept</a>();
} }
<a name="x2830"></a>void DDListBox::<a href="tqwidget.html#dropEvent">dropEvent</a>( <a href="qdropevent.html">TQDropEvent</a> *evt ) <a name="x2830"></a>void DDListBox::<a href="tqwidget.html#dropEvent">dropEvent</a>( <a href="tqdropevent.html">TQDropEvent</a> *evt )
{ {
<a href="tqstring.html">TQString</a> text; <a href="tqstring.html">TQString</a> text;
@ -215,8 +215,8 @@ const char* green_icon[]={
<a name="x2831"></a>void DDListBox::<a href="tqwidget.html#mouseMoveEvent">mouseMoveEvent</a>( <a href="qmouseevent.html">TQMouseEvent</a> * ) <a name="x2831"></a>void DDListBox::<a href="tqwidget.html#mouseMoveEvent">mouseMoveEvent</a>( <a href="qmouseevent.html">TQMouseEvent</a> * )
{ {
if ( dragging ) { if ( dragging ) {
<a href="ntqdragobject.html">TQDragObject</a> *d = new <a href="tqtextdrag.html">TQTextDrag</a>( currentText(), this ); <a href="tqdragobject.html">TQDragObject</a> *d = new <a href="tqtextdrag.html">TQTextDrag</a>( currentText(), this );
<a name="x2818"></a> d-&gt;<a href="ntqdragobject.html#dragCopy">dragCopy</a>(); // do NOT delete d. <a name="x2818"></a> d-&gt;<a href="tqdragobject.html#dragCopy">dragCopy</a>(); // do NOT delete d.
dragging = FALSE; dragging = FALSE;
} }
} }
@ -225,15 +225,15 @@ const char* green_icon[]={
// IconViewIcon -- high level drag and drop // IconViewIcon -- high level drag and drop
<a name="x2822"></a>bool DDIconViewItem::<a href="tqiconviewitem.html#acceptDrop">acceptDrop</a>( const <a href="qmimesource.html">TQMimeSource</a> *mime ) const <a name="x2822"></a>bool DDIconViewItem::<a href="tqiconviewitem.html#acceptDrop">acceptDrop</a>( const <a href="tqmimesource.html">TQMimeSource</a> *mime ) const
{ {
<a name="x2825"></a> if ( mime-&gt;<a href="qmimesource.html#provides">provides</a>( "text/plain" ) ) <a name="x2825"></a> if ( mime-&gt;<a href="tqmimesource.html#provides">provides</a>( "text/plain" ) )
return TRUE; return TRUE;
return FALSE; return FALSE;
} }
<a name="x2823"></a>void DDIconViewItem::<a href="tqiconviewitem.html#dropped">dropped</a>( <a href="qdropevent.html">TQDropEvent</a> *evt, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&amp; ) <a name="x2823"></a>void DDIconViewItem::<a href="tqiconviewitem.html#dropped">dropped</a>( <a href="tqdropevent.html">TQDropEvent</a> *evt, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&amp; )
{ {
<a href="tqstring.html">TQString</a> label; <a href="tqstring.html">TQString</a> label;
@ -249,7 +249,7 @@ const char* green_icon[]={
return new <a href="tqtextdrag.html">TQTextDrag</a>( <a href="tqiconview.html#currentItem">currentItem</a>()-&gt;text(), this ); return new <a href="tqtextdrag.html">TQTextDrag</a>( <a href="tqiconview.html#currentItem">currentItem</a>()-&gt;text(), this );
} }
void <a name="f588"></a>DDIconView::slotNewItem( <a href="qdropevent.html">TQDropEvent</a> *evt, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&amp; ) void <a name="f588"></a>DDIconView::slotNewItem( <a href="tqdropevent.html">TQDropEvent</a> *evt, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&amp; )
{ {
<a href="tqstring.html">TQString</a> label; <a href="tqstring.html">TQString</a> label;

@ -47,7 +47,7 @@ This is the TQt implementation of the well known game Tetris.
*****************************************************************************/ *****************************************************************************/
#include "qtetrix.h" #include "qtetrix.h"
#include "qdragapp.h" #include "tqdragapp.h"
#include "ntqfont.h" #include "ntqfont.h"
int main( int argc, char **argv ) int main( int argc, char **argv )

@ -238,8 +238,8 @@ TQColor Class | ntqcolor.html
TQColor Member List | qcolor-members.html TQColor Member List | qcolor-members.html
QColorDialog Class | ntqcolordialog.html QColorDialog Class | ntqcolordialog.html
QColorDialog Member List | qcolordialog-members.html QColorDialog Member List | qcolordialog-members.html
QColorDrag Class | qcolordrag.html TQColorDrag Class | tqcolordrag.html
QColorDrag Member List | qcolordrag-members.html TQColorDrag Member List | tqcolordrag-members.html
QColorGroup Class | qcolorgroup.html QColorGroup Class | qcolorgroup.html
QColorGroup Member List | qcolorgroup-members.html QColorGroup Member List | qcolorgroup-members.html
QComboBox Class | ntqcombobox.html QComboBox Class | ntqcombobox.html
@ -339,18 +339,18 @@ TQDomText Class | tqdomtext.html
TQDomText Member List | tqdomtext-members.html TQDomText Member List | tqdomtext-members.html
QDoubleValidator Class | qdoublevalidator.html QDoubleValidator Class | qdoublevalidator.html
QDoubleValidator Member List | qdoublevalidator-members.html QDoubleValidator Member List | qdoublevalidator-members.html
QDragEnterEvent Class | qdragenterevent.html TQDragEnterEvent Class | tqdragenterevent.html
QDragEnterEvent Member List | qdragenterevent-members.html TQDragEnterEvent Member List | tqdragenterevent-members.html
QDragLeaveEvent Class | qdragleaveevent.html TQDragLeaveEvent Class | tqdragleaveevent.html
QDragLeaveEvent Member List | qdragleaveevent-members.html TQDragLeaveEvent Member List | tqdragleaveevent-members.html
QDragMoveEvent Class | qdragmoveevent.html TQDragMoveEvent Class | tqdragmoveevent.html
QDragMoveEvent Member List | qdragmoveevent-members.html TQDragMoveEvent Member List | tqdragmoveevent-members.html
QDragObject Class | ntqdragobject.html TQDragObject Class | tqdragobject.html
QDragObject Member List | qdragobject-members.html TQDragObject Member List | tqdragobject-members.html
QDropEvent Class | qdropevent.html TQDropEvent Class | tqdropevent.html
QDropEvent Member List | qdropevent-members.html TQDropEvent Member List | tqdropevent-members.html
QDropSite Class | ntqdropsite.html TQDropSite Class | tqdropsite.html
QDropSite Member List | qdropsite-members.html TQDropSite Member List | tqdropsite-members.html
TQEditorFactory Class | tqeditorfactory.html TQEditorFactory Class | tqeditorfactory.html
TQEditorFactory Member List | tqeditorfactory-members.html TQEditorFactory Member List | tqeditorfactory-members.html
QEmbed - File and Image Embedder | qembed.html QEmbed - File and Image Embedder | qembed.html
@ -531,8 +531,8 @@ QLocalFs Class | ntqlocalfs.html
QLocalFs Member List | qlocalfs-members.html QLocalFs Member List | qlocalfs-members.html
QLocale Class | ntqlocale.html QLocale Class | ntqlocale.html
QLocale Member List | qlocale-members.html QLocale Member List | qlocale-members.html
QMacMime Class | qmacmime.html TQMacMime Class | tqmacmime.html
QMacMime Member List | qmacmime-members.html TQMacMime Member List | tqmacmime-members.html
QMacStyle Class | qmacstyle.html QMacStyle Class | qmacstyle.html
QMacStyle Member List | qmacstyle-members.html QMacStyle Member List | qmacstyle-members.html
QMag | qmag-example.html QMag | qmag-example.html
@ -556,10 +556,10 @@ QMetaObject Class | ntqmetaobject.html
QMetaObject Member List | qmetaobject-members.html QMetaObject Member List | qmetaobject-members.html
QMetaProperty Class | qmetaproperty.html QMetaProperty Class | qmetaproperty.html
QMetaProperty Member List | qmetaproperty-members.html QMetaProperty Member List | qmetaproperty-members.html
QMimeSource Class | qmimesource.html TQMimeSource Class | tqmimesource.html
QMimeSource Member List | qmimesource-members.html TQMimeSource Member List | tqmimesource-members.html
QMimeSourceFactory Class | qmimesourcefactory.html TQMimeSourceFactory Class | tqmimesourcefactory.html
QMimeSourceFactory Member List | qmimesourcefactory-members.html TQMimeSourceFactory Member List | tqmimesourcefactory-members.html
QMotif Class | qmotif.html QMotif Class | qmotif.html
QMotif Member List | qmotif-members.html QMotif Member List | qmotif-members.html
QMotif Support Extension | motif-examples.html QMotif Support Extension | motif-examples.html
@ -758,8 +758,8 @@ TQSqlSelectCursor Class | tqsqlselectcursor.html
TQSqlSelectCursor Member List | tqsqlselectcursor-members.html TQSqlSelectCursor Member List | tqsqlselectcursor-members.html
TQStatusBar Class | tqstatusbar.html TQStatusBar Class | tqstatusbar.html
TQStatusBar Member List | tqstatusbar-members.html TQStatusBar Member List | tqstatusbar-members.html
QStoredDrag Class | qstoreddrag.html TQStoredDrag Class | tqstoreddrag.html
QStoredDrag Member List | qstoreddrag-members.html TQStoredDrag Member List | tqstoreddrag-members.html
TQStrIList Class | tqstrilist.html TQStrIList Class | tqstrilist.html
TQStrIList Member List | tqstrilist-members.html TQStrIList Member List | tqstrilist-members.html
TQStrList Class | tqstrlist.html TQStrList Class | tqstrlist.html
@ -850,8 +850,8 @@ QTranslatorMessage Class | qtranslatormessage.html
QTranslatorMessage Member List | qtranslatormessage-members.html QTranslatorMessage Member List | qtranslatormessage-members.html
TQTsciiCodec Class | tqtsciicodec.html TQTsciiCodec Class | tqtsciicodec.html
TQTsciiCodec Member List | tqtsciicodec-members.html TQTsciiCodec Member List | tqtsciicodec-members.html
QUriDrag Class | quridrag.html TQUriDrag Class | tquridrag.html
QUriDrag Member List | quridrag-members.html TQUriDrag Member List | tquridrag-members.html
QUrl Class | ntqurl.html QUrl Class | ntqurl.html
QUrl Member List | qurl-members.html QUrl Member List | qurl-members.html
QUrlInfo Class | ntqurlinfo.html QUrlInfo Class | ntqurlinfo.html
@ -900,8 +900,8 @@ TQWidgetPlugin Class | tqwidgetplugin.html
TQWidgetPlugin Member List | tqwidgetplugin-members.html TQWidgetPlugin Member List | tqwidgetplugin-members.html
TQWidgetStack Class | tqwidgetstack.html TQWidgetStack Class | tqwidgetstack.html
TQWidgetStack Member List | tqwidgetstack-members.html TQWidgetStack Member List | tqwidgetstack-members.html
QWindowsMime Class | qwindowsmime.html TQWindowsMime Class | tqwindowsmime.html
QWindowsMime Member List | qwindowsmime-members.html TQWindowsMime Member List | tqwindowsmime-members.html
QWindowsStyle Class | ntqwindowsstyle.html QWindowsStyle Class | ntqwindowsstyle.html
QWindowsStyle Member List | qwindowsstyle-members.html QWindowsStyle Member List | qwindowsstyle-members.html
QWizard Class | ntqwizard.html QWizard Class | ntqwizard.html
@ -1114,9 +1114,9 @@ ntqdns.h Include File | qdns-h.html
ntqdockarea.h Include File | qdockarea-h.html ntqdockarea.h Include File | qdockarea-h.html
ntqdockwindow.h Include File | qdockwindow-h.html ntqdockwindow.h Include File | qdockwindow-h.html
tqdom.h Include File | tqdom-h.html tqdom.h Include File | tqdom-h.html
ntqdragobject.h Include File | qdragobject-h.html tqdragobject.h Include File | tqdragobject-h.html
ntqdrawutil.h Include File | qdrawutil-h.html ntqdrawutil.h Include File | qdrawutil-h.html
ntqdropsite.h Include File | qdropsite-h.html tqdropsite.h Include File | tqdropsite-h.html
tqeditorfactory.h Include File | tqeditorfactory-h.html tqeditorfactory.h Include File | tqeditorfactory-h.html
ntqerrormessage.h Include File | qerrormessage-h.html ntqerrormessage.h Include File | qerrormessage-h.html
tqeucjpcodec.h Include File | tqeucjpcodec-h.html tqeucjpcodec.h Include File | tqeucjpcodec-h.html
@ -1174,7 +1174,7 @@ tqmenubar.h Include File | tqmenubar-h.html
tqmenudata.h Include File | tqmenudata-h.html tqmenudata.h Include File | tqmenudata-h.html
ntqmessagebox.h Include File | qmessagebox-h.html ntqmessagebox.h Include File | qmessagebox-h.html
ntqmetaobject.h Include File | qmetaobject-h.html ntqmetaobject.h Include File | qmetaobject-h.html
ntqmime.h Include File | qmime-h.html tqmime.h Include File | tqmime-h.html
qmotif.h Include File | qmotif-h.html qmotif.h Include File | qmotif-h.html
qmotifdialog.h Include File | qmotifdialog-h.html qmotifdialog.h Include File | qmotifdialog-h.html
ntqmotifplusstyle.h Include File | qmotifplusstyle-h.html ntqmotifplusstyle.h Include File | qmotifplusstyle-h.html

@ -152,7 +152,7 @@ private:
"Click this button to open a &lt;em&gt;new file&lt;/em&gt;. &lt;br&gt;" "Click this button to open a &lt;em&gt;new file&lt;/em&gt;. &lt;br&gt;"
"You can also select the &lt;b&gt;Open&lt;/b&gt; command " "You can also select the &lt;b&gt;Open&lt;/b&gt; command "
"from the &lt;b&gt;File&lt;/b&gt; menu.&lt;/p&gt;"; "from the &lt;b&gt;File&lt;/b&gt; menu.&lt;/p&gt;";
<a name="x1140"></a> TQMimeSourceFactory::<a href="qmimesourcefactory.html#defaultFactory">defaultFactory</a>()-&gt;setPixmap( "document-open", <a name="x1140"></a> TQMimeSourceFactory::<a href="tqmimesourcefactory.html#defaultFactory">defaultFactory</a>()-&gt;setPixmap( "document-open",
<a name="x1125"></a> fileOpenAction-&gt;<a href="tqaction.html#iconSet">iconSet</a>().pixmap() ); <a name="x1125"></a> fileOpenAction-&gt;<a href="tqaction.html#iconSet">iconSet</a>().pixmap() );
<a name="x1126"></a> fileOpenAction-&gt;<a href="tqaction.html#setWhatsThis">setWhatsThis</a>( fileOpenText ); <a name="x1126"></a> fileOpenAction-&gt;<a href="tqaction.html#setWhatsThis">setWhatsThis</a>( fileOpenText );

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqdragobject.h:196 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqdragobject.h:196 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -32,12 +32,12 @@ body { background: #ffffff; color: black; }
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQColorDrag</h1> <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQColorDrag</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="qcolordrag.html">TQColorDrag</a>, including inherited members. <a href="tqcolordrag.html">TQColorDrag</a>, including inherited members.
<ul> <ul>
<li><a href="qcolordrag.html#TQColorDrag">TQColorDrag</a>() <li><a href="tqcolordrag.html#TQColorDrag">TQColorDrag</a>()
<li><a href="tqobject.html#blockSignals">blockSignals</a>() <li><a href="tqobject.html#blockSignals">blockSignals</a>()
<li><a href="qcolordrag.html#canDecode">canDecode</a>() <li><a href="tqcolordrag.html#canDecode">canDecode</a>()
<li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>() <li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>()
<li><a href="tqobject.html#child">child</a>() <li><a href="tqobject.html#child">child</a>()
<li><a href="tqobject.html#childEvent">childEvent</a>() <li><a href="tqobject.html#childEvent">childEvent</a>()
@ -46,21 +46,21 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#connect">connect</a>() <li><a href="tqobject.html#connect">connect</a>()
<li><a href="tqobject.html#connectNotify">connectNotify</a>() <li><a href="tqobject.html#connectNotify">connectNotify</a>()
<li><a href="tqobject.html#customEvent">customEvent</a>() <li><a href="tqobject.html#customEvent">customEvent</a>()
<li><a href="qcolordrag.html#decode">decode</a>() <li><a href="tqcolordrag.html#decode">decode</a>()
<li><a href="tqobject.html#deleteLater">deleteLater</a>() <li><a href="tqobject.html#deleteLater">deleteLater</a>()
<li><a href="tqobject.html#destroyed">destroyed</a>() <li><a href="tqobject.html#destroyed">destroyed</a>()
<li><a href="tqobject.html#disconnect">disconnect</a>() <li><a href="tqobject.html#disconnect">disconnect</a>()
<li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>() <li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>()
<li><a href="ntqdragobject.html#drag">drag</a>() <li><a href="tqdragobject.html#drag">drag</a>()
<li><a href="ntqdragobject.html#dragCopy">dragCopy</a>() <li><a href="tqdragobject.html#dragCopy">dragCopy</a>()
<li><a href="ntqdragobject.html#dragLink">dragLink</a>() <li><a href="tqdragobject.html#dragLink">dragLink</a>()
<li><a href="ntqdragobject.html#dragMove">dragMove</a>() <li><a href="tqdragobject.html#dragMove">dragMove</a>()
<li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>() <li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>()
<li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>() <li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>()
<li><a href="qstoreddrag.html#encodedData">encodedData</a>() <li><a href="tqstoreddrag.html#encodedData">encodedData</a>()
<li><a href="tqobject.html#event">event</a>() <li><a href="tqobject.html#event">event</a>()
<li><a href="tqobject.html#eventFilter">eventFilter</a>() <li><a href="tqobject.html#eventFilter">eventFilter</a>()
<li><a href="qmimesource.html#format">format</a>() <li><a href="tqmimesource.html#format">format</a>()
<li><a href="tqobject.html#highPriority">highPriority</a>() <li><a href="tqobject.html#highPriority">highPriority</a>()
<li><a href="tqobject.html#inherits">inherits</a>() <li><a href="tqobject.html#inherits">inherits</a>()
<li><a href="tqobject.html#insertChild">insertChild</a>() <li><a href="tqobject.html#insertChild">insertChild</a>()
@ -74,24 +74,24 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>() <li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>()
<li><a href="tqobject.html#objectTrees">objectTrees</a>() <li><a href="tqobject.html#objectTrees">objectTrees</a>()
<li><a href="tqobject.html#parent">parent</a>() <li><a href="tqobject.html#parent">parent</a>()
<li><a href="ntqdragobject.html#pixmap">pixmap</a>() <li><a href="tqdragobject.html#pixmap">pixmap</a>()
<li><a href="ntqdragobject.html#pixmapHotSpot">pixmapHotSpot</a>() <li><a href="tqdragobject.html#pixmapHotSpot">pixmapHotSpot</a>()
<li><a href="tqobject.html#property">property</a>() <li><a href="tqobject.html#property">property</a>()
<li><a href="qmimesource.html#provides">provides</a>() <li><a href="tqmimesource.html#provides">provides</a>()
<li><a href="tqobject.html#queryList">queryList</a>() <li><a href="tqobject.html#queryList">queryList</a>()
<li><a href="tqobject.html#removeChild">removeChild</a>() <li><a href="tqobject.html#removeChild">removeChild</a>()
<li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>() <li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>()
<li><a href="tqobject.html#sender">sender</a>() <li><a href="tqobject.html#sender">sender</a>()
<li><a href="qmimesource.html#serialNumber">serialNumber</a>() <li><a href="tqmimesource.html#serialNumber">serialNumber</a>()
<li><a href="qcolordrag.html#setColor">setColor</a>() <li><a href="tqcolordrag.html#setColor">setColor</a>()
<li><a href="qstoreddrag.html#setEncodedData">setEncodedData</a>() <li><a href="tqstoreddrag.html#setEncodedData">setEncodedData</a>()
<li><a href="tqobject.html#setName">setName</a>() <li><a href="tqobject.html#setName">setName</a>()
<li><a href="ntqdragobject.html#setPixmap">setPixmap</a>() <li><a href="tqdragobject.html#setPixmap">setPixmap</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>() <li><a href="tqobject.html#setProperty">setProperty</a>()
<li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>() <li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>()
<li><a href="ntqdragobject.html#source">source</a>() <li><a href="tqdragobject.html#source">source</a>()
<li><a href="tqobject.html#startTimer">startTimer</a>() <li><a href="tqobject.html#startTimer">startTimer</a>()
<li><a href="ntqdragobject.html#target">target</a>() <li><a href="tqdragobject.html#target">target</a>()
<li><a href="tqobject.html#timerEvent">timerEvent</a>() <li><a href="tqobject.html#timerEvent">timerEvent</a>()
<li><a href="tqobject.html#tr">tr</a>() <li><a href="tqobject.html#tr">tr</a>()
<li><a href="tqobject.html#trUtf8">trUtf8</a>() <li><a href="tqobject.html#trUtf8">trUtf8</a>()

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/qdragobject.cpp:1695 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqdragobject.cpp:1695 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -34,9 +34,9 @@ body { background: #ffffff; color: black; }
<p>The TQColorDrag class provides a drag and drop object for <p>The TQColorDrag class provides a drag and drop object for
transferring colors. transferring colors.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qdragobject-h.html">ntqdragobject.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqdragobject-h.html">tqdragobject.h</a>&gt;</tt>
<p>Inherits <a href="qstoreddrag.html">TQStoredDrag</a>. <p>Inherits <a href="tqstoreddrag.html">TQStoredDrag</a>.
<p><a href="qcolordrag-members.html">List of all member functions.</a> <p><a href="tqcolordrag-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQColorDrag"><b>TQColorDrag</b></a> ( const&nbsp;TQColor&nbsp;&amp;&nbsp;col, TQWidget&nbsp;*&nbsp;dragsource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )</li> <li class=fn><a href="#TQColorDrag"><b>TQColorDrag</b></a> ( const&nbsp;TQColor&nbsp;&amp;&nbsp;col, TQWidget&nbsp;*&nbsp;dragsource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )</li>
@ -59,25 +59,25 @@ about colors for drag and drop and in the clipboard. For example, it
is used in <a href="ntqcolordialog.html">TQColorDialog</a>. is used in <a href="ntqcolordialog.html">TQColorDialog</a>.
<p> The color is set in the constructor but can be changed with <p> The color is set in the constructor but can be changed with
<a href="#setColor">setColor</a>(). <a href="#setColor">setColor</a>().
<p> For more information about drag and drop, see the <a href="ntqdragobject.html">TQDragObject</a> class <p> For more information about drag and drop, see the <a href="tqdragobject.html">TQDragObject</a> class
and the <a href="dnd.html">drag and drop documentation</a>. and the <a href="dnd.html">drag and drop documentation</a>.
<p>See also <a href="draganddrop.html">Drag And Drop Classes</a>. <p>See also <a href="draganddrop.html">Drag And Drop Classes</a>.
<hr><h2>Member Function Documentation</h2> <hr><h2>Member Function Documentation</h2>
<h3 class=fn><a name="TQColorDrag"></a>TQColorDrag::TQColorDrag ( const&nbsp;<a href="ntqcolor.html">TQColor</a>&nbsp;&amp;&nbsp;col, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;dragsource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 ) <h3 class=fn><a name="TQColorDrag"></a>TQColorDrag::TQColorDrag ( const&nbsp;<a href="ntqcolor.html">TQColor</a>&nbsp;&amp;&nbsp;col, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;dragsource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )
</h3> </h3>
Constructs a color drag object with the color <em>col</em>. Passes <em>dragsource</em> and <em>name</em> to the <a href="qstoreddrag.html">TQStoredDrag</a> constructor. Constructs a color drag object with the color <em>col</em>. Passes <em>dragsource</em> and <em>name</em> to the <a href="tqstoreddrag.html">TQStoredDrag</a> constructor.
<h3 class=fn><a name="TQColorDrag-2"></a>TQColorDrag::TQColorDrag ( <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;dragsource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 ) <h3 class=fn><a name="TQColorDrag-2"></a>TQColorDrag::TQColorDrag ( <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;dragsource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )
</h3> </h3>
Constructs a color drag object with a white color. Passes <em>dragsource</em> and <em>name</em> to the <a href="qstoreddrag.html">TQStoredDrag</a> constructor. Constructs a color drag object with a white color. Passes <em>dragsource</em> and <em>name</em> to the <a href="tqstoreddrag.html">TQStoredDrag</a> constructor.
<h3 class=fn>bool <a name="canDecode"></a>TQColorDrag::canDecode ( <a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e )<tt> [static]</tt> <h3 class=fn>bool <a name="canDecode"></a>TQColorDrag::canDecode ( <a href="tqmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e )<tt> [static]</tt>
</h3> </h3>
Returns TRUE if the color drag object can decode the mime source Returns TRUE if the color drag object can decode the mime source
<em>e</em>; otherwise returns FALSE. <em>e</em>; otherwise returns FALSE.
<h3 class=fn>bool <a name="decode"></a>TQColorDrag::decode ( <a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e, <a href="ntqcolor.html">TQColor</a>&nbsp;&amp;&nbsp;col )<tt> [static]</tt> <h3 class=fn>bool <a name="decode"></a>TQColorDrag::decode ( <a href="tqmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e, <a href="ntqcolor.html">TQColor</a>&nbsp;&amp;&nbsp;col )<tt> [static]</tt>
</h3> </h3>
Decodes the mime source <em>e</em> and sets the decoded values to <em>col</em>. Decodes the mime source <em>e</em> and sets the decoded values to <em>col</em>.

@ -32,26 +32,26 @@ body { background: #ffffff; color: black; }
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQDragEnterEvent</h1> <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQDragEnterEvent</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="qdragenterevent.html">TQDragEnterEvent</a>, including inherited members. <a href="tqdragenterevent.html">TQDragEnterEvent</a>, including inherited members.
<ul> <ul>
<li><a href="qdragenterevent.html#TQDragEnterEvent">TQDragEnterEvent</a>() <li><a href="tqdragenterevent.html#TQDragEnterEvent">TQDragEnterEvent</a>()
<li><a href="qdragmoveevent.html#accept">accept</a>() <li><a href="tqdragmoveevent.html#accept">accept</a>()
<li><a href="qdropevent.html#acceptAction">acceptAction</a>() <li><a href="tqdropevent.html#acceptAction">acceptAction</a>()
<li><a href="qdropevent.html#action">action</a>() <li><a href="tqdropevent.html#action">action</a>()
<li><a href="qdragmoveevent.html#answerRect">answerRect</a>() <li><a href="tqdragmoveevent.html#answerRect">answerRect</a>()
<li><a href="qdropevent.html#data">data</a>() <li><a href="tqdropevent.html#data">data</a>()
<li><a href="qdropevent.html#encodedData">encodedData</a>() <li><a href="tqdropevent.html#encodedData">encodedData</a>()
<li><a href="qdropevent.html#format">format</a>() <li><a href="tqdropevent.html#format">format</a>()
<li><a href="qdragmoveevent.html#ignore">ignore</a>() <li><a href="tqdragmoveevent.html#ignore">ignore</a>()
<li><a href="qdropevent.html#isAccepted">isAccepted</a>() <li><a href="tqdropevent.html#isAccepted">isAccepted</a>()
<li><a href="qdropevent.html#isActionAccepted">isActionAccepted</a>() <li><a href="tqdropevent.html#isActionAccepted">isActionAccepted</a>()
<li><a href="qdropevent.html#pos">pos</a>() <li><a href="tqdropevent.html#pos">pos</a>()
<li><a href="qdropevent.html#provides">provides</a>() <li><a href="tqdropevent.html#provides">provides</a>()
<li><a href="qmimesource.html#serialNumber">serialNumber</a>() <li><a href="tqmimesource.html#serialNumber">serialNumber</a>()
<li><a href="qdropevent.html#setAction">setAction</a>() <li><a href="tqdropevent.html#setAction">setAction</a>()
<li><a href="qdropevent.html#setPoint">setPoint</a>() <li><a href="tqdropevent.html#setPoint">setPoint</a>()
<li><a href="qdropevent.html#source">source</a>() <li><a href="tqdropevent.html#source">source</a>()
<li><a href="ntqevent.html#spontaneous">spontaneous</a>() <li><a href="ntqevent.html#spontaneous">spontaneous</a>()
<li><a href="ntqevent.html#type">type</a>() <li><a href="ntqevent.html#type">type</a>()
</ul> </ul>

@ -34,8 +34,8 @@ body { background: #ffffff; color: black; }
<p>The TQDragEnterEvent class provides an event which is sent to the widget when a drag and drop first drags onto the widget. <p>The TQDragEnterEvent class provides an event which is sent to the widget when a drag and drop first drags onto the widget.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qevent-h.html">ntqevent.h</a>&gt;</tt> <p><tt>#include &lt;<a href="qevent-h.html">ntqevent.h</a>&gt;</tt>
<p>Inherits <a href="qdragmoveevent.html">TQDragMoveEvent</a>. <p>Inherits <a href="tqdragmoveevent.html">TQDragMoveEvent</a>.
<p><a href="qdragenterevent-members.html">List of all member functions.</a> <p><a href="tqdragenterevent-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQDragEnterEvent"><b>TQDragEnterEvent</b></a> ( const&nbsp;TQPoint&nbsp;&amp;&nbsp;pos )</li> <li class=fn><a href="#TQDragEnterEvent"><b>TQDragEnterEvent</b></a> ( const&nbsp;TQPoint&nbsp;&amp;&nbsp;pos )</li>
@ -46,11 +46,11 @@ body { background: #ffffff; color: black; }
The TQDragEnterEvent class provides an event which is sent to the widget when a drag and drop first drags onto the widget. The TQDragEnterEvent class provides an event which is sent to the widget when a drag and drop first drags onto the widget.
<p> <p>
<p> This event is always immediately followed by a <a href="qdragmoveevent.html">TQDragMoveEvent</a>, so <p> This event is always immediately followed by a <a href="tqdragmoveevent.html">TQDragMoveEvent</a>, so
you only need to respond to one or the other event. This class you only need to respond to one or the other event. This class
inherits most of its functionality from TQDragMoveEvent, which in inherits most of its functionality from TQDragMoveEvent, which in
turn inherits most of its functionality from <a href="qdropevent.html">TQDropEvent</a>. turn inherits most of its functionality from <a href="tqdropevent.html">TQDropEvent</a>.
<p> <p>See also <a href="qdragleaveevent.html">TQDragLeaveEvent</a>, <a href="qdragmoveevent.html">TQDragMoveEvent</a>, <a href="qdropevent.html">TQDropEvent</a>, <a href="draganddrop.html">Drag And Drop Classes</a>, and <a href="events.html">Event Classes</a>. <p> <p>See also <a href="tqdragleaveevent.html">TQDragLeaveEvent</a>, <a href="tqdragmoveevent.html">TQDragMoveEvent</a>, <a href="tqdropevent.html">TQDropEvent</a>, <a href="draganddrop.html">Drag And Drop Classes</a>, and <a href="events.html">Event Classes</a>.
<hr><h2>Member Function Documentation</h2> <hr><h2>Member Function Documentation</h2>
<h3 class=fn><a name="TQDragEnterEvent"></a>TQDragEnterEvent::TQDragEnterEvent ( const&nbsp;<a href="ntqpoint.html">TQPoint</a>&nbsp;&amp;&nbsp;pos ) <h3 class=fn><a name="TQDragEnterEvent"></a>TQDragEnterEvent::TQDragEnterEvent ( const&nbsp;<a href="ntqpoint.html">TQPoint</a>&nbsp;&amp;&nbsp;pos )

@ -32,10 +32,10 @@ body { background: #ffffff; color: black; }
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQDragLeaveEvent</h1> <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQDragLeaveEvent</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="qdragleaveevent.html">TQDragLeaveEvent</a>, including inherited members. <a href="tqdragleaveevent.html">TQDragLeaveEvent</a>, including inherited members.
<ul> <ul>
<li><a href="qdragleaveevent.html#TQDragLeaveEvent">TQDragLeaveEvent</a>() <li><a href="tqdragleaveevent.html#TQDragLeaveEvent">TQDragLeaveEvent</a>()
<li><a href="ntqevent.html#spontaneous">spontaneous</a>() <li><a href="ntqevent.html#spontaneous">spontaneous</a>()
<li><a href="ntqevent.html#type">type</a>() <li><a href="ntqevent.html#type">type</a>()
</ul> </ul>

@ -35,7 +35,7 @@ body { background: #ffffff; color: black; }
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qevent-h.html">ntqevent.h</a>&gt;</tt> <p><tt>#include &lt;<a href="qevent-h.html">ntqevent.h</a>&gt;</tt>
<p>Inherits <a href="ntqevent.html">TQEvent</a>. <p>Inherits <a href="ntqevent.html">TQEvent</a>.
<p><a href="qdragleaveevent-members.html">List of all member functions.</a> <p><a href="tqdragleaveevent-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQDragLeaveEvent"><b>TQDragLeaveEvent</b></a> ()</li> <li class=fn><a href="#TQDragLeaveEvent"><b>TQDragLeaveEvent</b></a> ()</li>
@ -46,10 +46,10 @@ body { background: #ffffff; color: black; }
The TQDragLeaveEvent class provides an event which is sent to the widget when a drag and drop leaves the widget. The TQDragLeaveEvent class provides an event which is sent to the widget when a drag and drop leaves the widget.
<p> <p>
<p> This event is always preceded by a <a href="qdragenterevent.html">TQDragEnterEvent</a> and a series of <p> This event is always preceded by a <a href="tqdragenterevent.html">TQDragEnterEvent</a> and a series of
<a href="qdragmoveevent.html">TQDragMoveEvent</a>s. It is not sent if a <a href="qdropevent.html">TQDropEvent</a> is sent <a href="tqdragmoveevent.html">TQDragMoveEvent</a>s. It is not sent if a <a href="tqdropevent.html">TQDropEvent</a> is sent
instead. instead.
<p> <p>See also <a href="qdragenterevent.html">TQDragEnterEvent</a>, <a href="qdragmoveevent.html">TQDragMoveEvent</a>, <a href="qdropevent.html">TQDropEvent</a>, <a href="draganddrop.html">Drag And Drop Classes</a>, and <a href="events.html">Event Classes</a>. <p> <p>See also <a href="tqdragenterevent.html">TQDragEnterEvent</a>, <a href="tqdragmoveevent.html">TQDragMoveEvent</a>, <a href="tqdropevent.html">TQDropEvent</a>, <a href="draganddrop.html">Drag And Drop Classes</a>, and <a href="events.html">Event Classes</a>.
<hr><h2>Member Function Documentation</h2> <hr><h2>Member Function Documentation</h2>
<h3 class=fn><a name="TQDragLeaveEvent"></a>TQDragLeaveEvent::TQDragLeaveEvent () <h3 class=fn><a name="TQDragLeaveEvent"></a>TQDragLeaveEvent::TQDragLeaveEvent ()

@ -32,26 +32,26 @@ body { background: #ffffff; color: black; }
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQDragMoveEvent</h1> <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQDragMoveEvent</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="qdragmoveevent.html">TQDragMoveEvent</a>, including inherited members. <a href="tqdragmoveevent.html">TQDragMoveEvent</a>, including inherited members.
<ul> <ul>
<li><a href="qdragmoveevent.html#TQDragMoveEvent">TQDragMoveEvent</a>() <li><a href="tqdragmoveevent.html#TQDragMoveEvent">TQDragMoveEvent</a>()
<li><a href="qdragmoveevent.html#accept">accept</a>() <li><a href="tqdragmoveevent.html#accept">accept</a>()
<li><a href="qdropevent.html#acceptAction">acceptAction</a>() <li><a href="tqdropevent.html#acceptAction">acceptAction</a>()
<li><a href="qdropevent.html#action">action</a>() <li><a href="tqdropevent.html#action">action</a>()
<li><a href="qdragmoveevent.html#answerRect">answerRect</a>() <li><a href="tqdragmoveevent.html#answerRect">answerRect</a>()
<li><a href="qdropevent.html#data">data</a>() <li><a href="tqdropevent.html#data">data</a>()
<li><a href="qdropevent.html#encodedData">encodedData</a>() <li><a href="tqdropevent.html#encodedData">encodedData</a>()
<li><a href="qdropevent.html#format">format</a>() <li><a href="tqdropevent.html#format">format</a>()
<li><a href="qdragmoveevent.html#ignore">ignore</a>() <li><a href="tqdragmoveevent.html#ignore">ignore</a>()
<li><a href="qdropevent.html#isAccepted">isAccepted</a>() <li><a href="tqdropevent.html#isAccepted">isAccepted</a>()
<li><a href="qdropevent.html#isActionAccepted">isActionAccepted</a>() <li><a href="tqdropevent.html#isActionAccepted">isActionAccepted</a>()
<li><a href="qdropevent.html#pos">pos</a>() <li><a href="tqdropevent.html#pos">pos</a>()
<li><a href="qdropevent.html#provides">provides</a>() <li><a href="tqdropevent.html#provides">provides</a>()
<li><a href="qmimesource.html#serialNumber">serialNumber</a>() <li><a href="tqmimesource.html#serialNumber">serialNumber</a>()
<li><a href="qdropevent.html#setAction">setAction</a>() <li><a href="tqdropevent.html#setAction">setAction</a>()
<li><a href="qdropevent.html#setPoint">setPoint</a>() <li><a href="tqdropevent.html#setPoint">setPoint</a>()
<li><a href="qdropevent.html#source">source</a>() <li><a href="tqdropevent.html#source">source</a>()
<li><a href="ntqevent.html#spontaneous">spontaneous</a>() <li><a href="ntqevent.html#spontaneous">spontaneous</a>()
<li><a href="ntqevent.html#type">type</a>() <li><a href="ntqevent.html#type">type</a>()
</ul> </ul>

@ -34,9 +34,9 @@ body { background: #ffffff; color: black; }
<p>The TQDragMoveEvent class provides an event which is sent while a drag and drop is in progress. <p>The TQDragMoveEvent class provides an event which is sent while a drag and drop is in progress.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qevent-h.html">ntqevent.h</a>&gt;</tt> <p><tt>#include &lt;<a href="qevent-h.html">ntqevent.h</a>&gt;</tt>
<p>Inherits <a href="qdropevent.html">TQDropEvent</a>. <p>Inherits <a href="tqdropevent.html">TQDropEvent</a>.
<p>Inherited by <a href="qdragenterevent.html">TQDragEnterEvent</a>. <p>Inherited by <a href="tqdragenterevent.html">TQDragEnterEvent</a>.
<p><a href="qdragmoveevent-members.html">List of all member functions.</a> <p><a href="tqdragmoveevent-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQDragMoveEvent"><b>TQDragMoveEvent</b></a> ( const&nbsp;TQPoint&nbsp;&amp;&nbsp;pos, Type&nbsp;type = DragMove )</li> <li class=fn><a href="#TQDragMoveEvent"><b>TQDragMoveEvent</b></a> ( const&nbsp;TQPoint&nbsp;&amp;&nbsp;pos, Type&nbsp;type = DragMove )</li>
@ -53,9 +53,9 @@ The TQDragMoveEvent class provides an event which is sent while a drag and drop
<p> When a widget <a href="tqwidget.html#setAcceptDrops">accepts drop <p> When a widget <a href="tqwidget.html#setAcceptDrops">accepts drop
events</a>, it will receive this event repeatedly while the events</a>, it will receive this event repeatedly while the
drag is within the widget's boundaries. The widget should examine drag is within the widget's boundaries. The widget should examine
the event to see what data it <a href="qdropevent.html#provides">provides</a>, and <a href="#accept">accept</a>() the drop if appropriate. the event to see what data it <a href="tqdropevent.html#provides">provides</a>, and <a href="#accept">accept</a>() the drop if appropriate.
<p> Note that this class inherits most of its functionality from <p> Note that this class inherits most of its functionality from
<a href="qdropevent.html">TQDropEvent</a>. <a href="tqdropevent.html">TQDropEvent</a>.
<p>See also <a href="draganddrop.html">Drag And Drop Classes</a> and <a href="events.html">Event Classes</a>. <p>See also <a href="draganddrop.html">Drag And Drop Classes</a> and <a href="events.html">Event Classes</a>.
<hr><h2>Member Function Documentation</h2> <hr><h2>Member Function Documentation</h2>

@ -1,9 +1,9 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqdragobject.h:1 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqdragobject.h:1 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>ntqdragobject.h Include File</title> <title>tqdragobject.h Include File</title>
<style type="text/css"><!-- <style type="text/css"><!--
fn { margin-left: 1cm; text-indent: -1cm; } fn { margin-left: 1cm; text-indent: -1cm; }
a:link { color: #004faf; text-decoration: none } a:link { color: #004faf; text-decoration: none }
@ -29,13 +29,13 @@ body { background: #ffffff; color: black; }
| <a href="functions.html"> | <a href="functions.html">
<font color="#004faf">Functions</font></a> <font color="#004faf">Functions</font></a>
</td> </td>
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>ntqdragobject.h</h1> <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>tqdragobject.h</h1>
<p>This is the verbatim text of the ntqdragobject.h include file. It is provided only for illustration; the copyright remains with Trolltech. <p>This is the verbatim text of the tqdragobject.h include file. It is provided only for illustration; the copyright remains with Trolltech.
<hr> <hr>
<pre> <pre>
/**************************************************************************** /****************************************************************************
** $Id: qt/ntqdragobject.h 3.3.8 edited Jan 11 14:38 $ ** $Id: qt/tqdragobject.h 3.3.8 edited Jan 11 14:38 $
** **
** Definition of TQDragObject ** Definition of TQDragObject
** **

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqdragobject.h:54 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqdragobject.h:54 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -32,11 +32,11 @@ body { background: #ffffff; color: black; }
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQDragObject</h1> <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQDragObject</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="ntqdragobject.html">TQDragObject</a>, including inherited members. <a href="tqdragobject.html">TQDragObject</a>, including inherited members.
<ul> <ul>
<li><a href="ntqdragobject.html#TQDragObject">TQDragObject</a>() <li><a href="tqdragobject.html#TQDragObject">TQDragObject</a>()
<li><a href="ntqdragobject.html#~TQDragObject">~TQDragObject</a>() <li><a href="tqdragobject.html#~TQDragObject">~TQDragObject</a>()
<li><a href="tqobject.html#blockSignals">blockSignals</a>() <li><a href="tqobject.html#blockSignals">blockSignals</a>()
<li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>() <li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>()
<li><a href="tqobject.html#child">child</a>() <li><a href="tqobject.html#child">child</a>()
@ -50,16 +50,16 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#destroyed">destroyed</a>() <li><a href="tqobject.html#destroyed">destroyed</a>()
<li><a href="tqobject.html#disconnect">disconnect</a>() <li><a href="tqobject.html#disconnect">disconnect</a>()
<li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>() <li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>()
<li><a href="ntqdragobject.html#drag">drag</a>() <li><a href="tqdragobject.html#drag">drag</a>()
<li><a href="ntqdragobject.html#dragCopy">dragCopy</a>() <li><a href="tqdragobject.html#dragCopy">dragCopy</a>()
<li><a href="ntqdragobject.html#dragLink">dragLink</a>() <li><a href="tqdragobject.html#dragLink">dragLink</a>()
<li><a href="ntqdragobject.html#dragMove">dragMove</a>() <li><a href="tqdragobject.html#dragMove">dragMove</a>()
<li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>() <li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>()
<li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>() <li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>()
<li><a href="qmimesource.html#encodedData">encodedData</a>() <li><a href="tqmimesource.html#encodedData">encodedData</a>()
<li><a href="tqobject.html#event">event</a>() <li><a href="tqobject.html#event">event</a>()
<li><a href="tqobject.html#eventFilter">eventFilter</a>() <li><a href="tqobject.html#eventFilter">eventFilter</a>()
<li><a href="qmimesource.html#format">format</a>() <li><a href="tqmimesource.html#format">format</a>()
<li><a href="tqobject.html#highPriority">highPriority</a>() <li><a href="tqobject.html#highPriority">highPriority</a>()
<li><a href="tqobject.html#inherits">inherits</a>() <li><a href="tqobject.html#inherits">inherits</a>()
<li><a href="tqobject.html#insertChild">insertChild</a>() <li><a href="tqobject.html#insertChild">insertChild</a>()
@ -73,22 +73,22 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>() <li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>()
<li><a href="tqobject.html#objectTrees">objectTrees</a>() <li><a href="tqobject.html#objectTrees">objectTrees</a>()
<li><a href="tqobject.html#parent">parent</a>() <li><a href="tqobject.html#parent">parent</a>()
<li><a href="ntqdragobject.html#pixmap">pixmap</a>() <li><a href="tqdragobject.html#pixmap">pixmap</a>()
<li><a href="ntqdragobject.html#pixmapHotSpot">pixmapHotSpot</a>() <li><a href="tqdragobject.html#pixmapHotSpot">pixmapHotSpot</a>()
<li><a href="tqobject.html#property">property</a>() <li><a href="tqobject.html#property">property</a>()
<li><a href="qmimesource.html#provides">provides</a>() <li><a href="tqmimesource.html#provides">provides</a>()
<li><a href="tqobject.html#queryList">queryList</a>() <li><a href="tqobject.html#queryList">queryList</a>()
<li><a href="tqobject.html#removeChild">removeChild</a>() <li><a href="tqobject.html#removeChild">removeChild</a>()
<li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>() <li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>()
<li><a href="tqobject.html#sender">sender</a>() <li><a href="tqobject.html#sender">sender</a>()
<li><a href="qmimesource.html#serialNumber">serialNumber</a>() <li><a href="tqmimesource.html#serialNumber">serialNumber</a>()
<li><a href="tqobject.html#setName">setName</a>() <li><a href="tqobject.html#setName">setName</a>()
<li><a href="ntqdragobject.html#setPixmap">setPixmap</a>() <li><a href="tqdragobject.html#setPixmap">setPixmap</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>() <li><a href="tqobject.html#setProperty">setProperty</a>()
<li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>() <li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>()
<li><a href="ntqdragobject.html#source">source</a>() <li><a href="tqdragobject.html#source">source</a>()
<li><a href="tqobject.html#startTimer">startTimer</a>() <li><a href="tqobject.html#startTimer">startTimer</a>()
<li><a href="ntqdragobject.html#target">target</a>() <li><a href="tqdragobject.html#target">target</a>()
<li><a href="tqobject.html#timerEvent">timerEvent</a>() <li><a href="tqobject.html#timerEvent">timerEvent</a>()
<li><a href="tqobject.html#tr">tr</a>() <li><a href="tqobject.html#tr">tr</a>()
<li><a href="tqobject.html#trUtf8">trUtf8</a>() <li><a href="tqobject.html#trUtf8">trUtf8</a>()

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/qdragobject.cpp:571 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqdragobject.cpp:571 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -34,10 +34,10 @@ body { background: #ffffff; color: black; }
<p>The TQDragObject class encapsulates MIME-based data <p>The TQDragObject class encapsulates MIME-based data
transfer. transfer.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qdragobject-h.html">ntqdragobject.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqdragobject-h.html">tqdragobject.h</a>&gt;</tt>
<p>Inherits <a href="tqobject.html">TQObject</a> and <a href="qmimesource.html">TQMimeSource</a>. <p>Inherits <a href="tqobject.html">TQObject</a> and <a href="tqmimesource.html">TQMimeSource</a>.
<p>Inherited by <a href="qstoreddrag.html">TQStoredDrag</a>, <a href="tqtextdrag.html">TQTextDrag</a>, <a href="tqimagedrag.html">TQImageDrag</a>, and <a href="tqicondrag.html">TQIconDrag</a>. <p>Inherited by <a href="tqstoreddrag.html">TQStoredDrag</a>, <a href="tqtextdrag.html">TQTextDrag</a>, <a href="tqimagedrag.html">TQImageDrag</a>, and <a href="tqicondrag.html">TQIconDrag</a>.
<p><a href="qdragobject-members.html">List of all member functions.</a> <p><a href="tqdragobject-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQDragObject"><b>TQDragObject</b></a> ( TQWidget&nbsp;*&nbsp;dragSource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )</li> <li class=fn><a href="#TQDragObject"><b>TQDragObject</b></a> ( TQWidget&nbsp;*&nbsp;dragSource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )</li>
@ -115,7 +115,7 @@ DragDefault mode.
copy of the dragged data (but see <a href="#target">target</a>()); otherwise returns copy of the dragged data (but see <a href="#target">target</a>()); otherwise returns
FALSE. FALSE.
<p> If the drag contains <em>references</em> to information (e.g. file names <p> If the drag contains <em>references</em> to information (e.g. file names
in a <a href="quridrag.html">TQUriDrag</a> are references) then the return value should always in a <a href="tquridrag.html">TQUriDrag</a> are references) then the return value should always
be ignored, as the target is expected to manipulate the be ignored, as the target is expected to manipulate the
referred-to content directly. On X11 the return value should referred-to content directly. On X11 the return value should
always be correct anyway, but on Windows this is not necessarily always be correct anyway, but on Windows this is not necessarily
@ -125,7 +125,7 @@ move files, so the source <em>must not</em> delete the files!)
event loop that will not dispatch any TQTimers. event loop that will not dispatch any TQTimers.
<p>Example: <a href="dirview-example.html#x1670">dirview/dirview.cpp</a>. <p>Example: <a href="dirview-example.html#x1670">dirview/dirview.cpp</a>.
<h3 class=fn>bool <a name="drag-2"></a>TQDragObject::drag ( <a href="ntqdragobject.html#DragMode-enum">DragMode</a>&nbsp;mode )<tt> [virtual protected]</tt> <h3 class=fn>bool <a name="drag-2"></a>TQDragObject::drag ( <a href="tqdragobject.html#DragMode-enum">DragMode</a>&nbsp;mode )<tt> [virtual protected]</tt>
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Starts a drag operation using the contents of this object. <p> Starts a drag operation using the contents of this object.

@ -32,25 +32,25 @@ body { background: #ffffff; color: black; }
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQDropEvent</h1> <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQDropEvent</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="qdropevent.html">TQDropEvent</a>, including inherited members. <a href="tqdropevent.html">TQDropEvent</a>, including inherited members.
<ul> <ul>
<li><a href="qdropevent.html#TQDropEvent">TQDropEvent</a>() <li><a href="tqdropevent.html#TQDropEvent">TQDropEvent</a>()
<li><a href="qdropevent.html#accept">accept</a>() <li><a href="tqdropevent.html#accept">accept</a>()
<li><a href="qdropevent.html#acceptAction">acceptAction</a>() <li><a href="tqdropevent.html#acceptAction">acceptAction</a>()
<li><a href="qdropevent.html#action">action</a>() <li><a href="tqdropevent.html#action">action</a>()
<li><a href="qdropevent.html#data">data</a>() <li><a href="tqdropevent.html#data">data</a>()
<li><a href="qdropevent.html#encodedData">encodedData</a>() <li><a href="tqdropevent.html#encodedData">encodedData</a>()
<li><a href="qdropevent.html#format">format</a>() <li><a href="tqdropevent.html#format">format</a>()
<li><a href="qdropevent.html#ignore">ignore</a>() <li><a href="tqdropevent.html#ignore">ignore</a>()
<li><a href="qdropevent.html#isAccepted">isAccepted</a>() <li><a href="tqdropevent.html#isAccepted">isAccepted</a>()
<li><a href="qdropevent.html#isActionAccepted">isActionAccepted</a>() <li><a href="tqdropevent.html#isActionAccepted">isActionAccepted</a>()
<li><a href="qdropevent.html#pos">pos</a>() <li><a href="tqdropevent.html#pos">pos</a>()
<li><a href="qdropevent.html#provides">provides</a>() <li><a href="tqdropevent.html#provides">provides</a>()
<li><a href="qmimesource.html#serialNumber">serialNumber</a>() <li><a href="tqmimesource.html#serialNumber">serialNumber</a>()
<li><a href="qdropevent.html#setAction">setAction</a>() <li><a href="tqdropevent.html#setAction">setAction</a>()
<li><a href="qdropevent.html#setPoint">setPoint</a>() <li><a href="tqdropevent.html#setPoint">setPoint</a>()
<li><a href="qdropevent.html#source">source</a>() <li><a href="tqdropevent.html#source">source</a>()
<li><a href="ntqevent.html#spontaneous">spontaneous</a>() <li><a href="ntqevent.html#spontaneous">spontaneous</a>()
<li><a href="ntqevent.html#type">type</a>() <li><a href="ntqevent.html#type">type</a>()
</ul> </ul>

@ -34,9 +34,9 @@ body { background: #ffffff; color: black; }
<p>The TQDropEvent class provides an event which is sent when a drag and drop is completed. <p>The TQDropEvent class provides an event which is sent when a drag and drop is completed.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qevent-h.html">ntqevent.h</a>&gt;</tt> <p><tt>#include &lt;<a href="qevent-h.html">ntqevent.h</a>&gt;</tt>
<p>Inherits <a href="ntqevent.html">TQEvent</a> and <a href="qmimesource.html">TQMimeSource</a>. <p>Inherits <a href="ntqevent.html">TQEvent</a> and <a href="tqmimesource.html">TQMimeSource</a>.
<p>Inherited by <a href="qdragmoveevent.html">TQDragMoveEvent</a>. <p>Inherited by <a href="tqdragmoveevent.html">TQDragMoveEvent</a>.
<p><a href="qdropevent-members.html">List of all member functions.</a> <p><a href="tqdropevent-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQDropEvent"><b>TQDropEvent</b></a> ( const&nbsp;TQPoint&nbsp;&amp;&nbsp;pos, Type&nbsp;typ = Drop )</li> <li class=fn><a href="#TQDropEvent"><b>TQDropEvent</b></a> ( const&nbsp;TQPoint&nbsp;&amp;&nbsp;pos, Type&nbsp;typ = Drop )</li>
@ -64,7 +64,7 @@ body { background: #ffffff; color: black; }
<p> The TQDropEvent class provides an event which is sent when a drag and drop is completed. <p> The TQDropEvent class provides an event which is sent when a drag and drop is completed.
<p> When a widget <a href="tqwidget.html#setAcceptDrops">accepts drop <p> When a widget <a href="tqwidget.html#setAcceptDrops">accepts drop
events</a>, it will receive this event if it has accepted the events</a>, it will receive this event if it has accepted the
most recent <a href="qdragenterevent.html">TQDragEnterEvent</a> or <a href="qdragmoveevent.html">TQDragMoveEvent</a> sent to it. most recent <a href="tqdragenterevent.html">TQDragEnterEvent</a> or <a href="tqdragmoveevent.html">TQDragMoveEvent</a> sent to it.
<p> The widget should use <a href="#data">data</a>() to extract the data in an appropriate <p> The widget should use <a href="#data">data</a>() to extract the data in an appropriate
format. format.
<p>See also <a href="draganddrop.html">Drag And Drop Classes</a> and <a href="events.html">Event Classes</a>. <p>See also <a href="draganddrop.html">Drag And Drop Classes</a> and <a href="events.html">Event Classes</a>.
@ -88,7 +88,7 @@ a Copy.
special actions. This feature is not currently special actions. This feature is not currently
supported. supported.
</ul><p> The Link and Move actions only makes sense if the data is a </ul><p> The Link and Move actions only makes sense if the data is a
reference, for example, text/uri-list file lists (see <a href="quridrag.html">TQUriDrag</a>). reference, for example, text/uri-list file lists (see <a href="tquridrag.html">TQUriDrag</a>).
<hr><h2>Member Function Documentation</h2> <hr><h2>Member Function Documentation</h2>
<h3 class=fn><a name="TQDropEvent"></a>TQDropEvent::TQDropEvent ( const&nbsp;<a href="ntqpoint.html">TQPoint</a>&nbsp;&amp;&nbsp;pos, <a href="ntqevent.html#Type-enum">Type</a>&nbsp;typ = Drop ) <h3 class=fn><a name="TQDropEvent"></a>TQDropEvent::TQDropEvent ( const&nbsp;<a href="ntqpoint.html">TQPoint</a>&nbsp;&amp;&nbsp;pos, <a href="ntqevent.html#Type-enum">Type</a>&nbsp;typ = Drop )
@ -104,7 +104,7 @@ reference, for example, text/uri-list file lists (see <a href="quridrag.html">TQ
which your widget processed. Set <em>y</em> to TRUE (the default) if which your widget processed. Set <em>y</em> to TRUE (the default) if
your widget could process the data, otherwise set <em>y</em> to FALSE. your widget could process the data, otherwise set <em>y</em> to FALSE.
To get the data, use <a href="#encodedData">encodedData</a>(), or preferably, the decode() To get the data, use <a href="#encodedData">encodedData</a>(), or preferably, the decode()
methods of existing <a href="ntqdragobject.html">TQDragObject</a> subclasses, such as methods of existing <a href="tqdragobject.html">TQDragObject</a> subclasses, such as
<a href="tqtextdrag.html#decode">TQTextDrag::decode</a>(), or your own subclasses. <a href="tqtextdrag.html#decode">TQTextDrag::decode</a>(), or your own subclasses.
<p> <p>See also <a href="#acceptAction">acceptAction</a>(). <p> <p>See also <a href="#acceptAction">acceptAction</a>().
@ -118,7 +118,7 @@ the default copy action. If you call <a href="#acceptAction">acceptAction</a>(TR
no need to also call <a href="#accept">accept</a>(TRUE). no need to also call <a href="#accept">accept</a>(TRUE).
<p>Examples: <a href="dirview-example.html#x1671">dirview/dirview.cpp</a> and <a href="fileiconview-example.html#x816">fileiconview/qfileiconview.cpp</a>. <p>Examples: <a href="dirview-example.html#x1671">dirview/dirview.cpp</a> and <a href="fileiconview-example.html#x816">fileiconview/qfileiconview.cpp</a>.
<h3 class=fn><a href="qdropevent.html#Action-enum">Action</a> <a name="action"></a>TQDropEvent::action () const <h3 class=fn><a href="tqdropevent.html#Action-enum">Action</a> <a name="action"></a>TQDropEvent::action () const
</h3> </h3>
<p> Returns the Action which the target is requesting to be performed <p> Returns the Action which the target is requesting to be performed
@ -144,7 +144,7 @@ only if you're sure that you will need the data in <em>format</em>.
available. available.
<p> <p>See also <a href="#format">format</a>() and <a href="ntqmemarray.html#size">TQByteArray::size</a>(). <p> <p>See also <a href="#format">format</a>() and <a href="ntqmemarray.html#size">TQByteArray::size</a>().
<p>Reimplemented from <a href="qmimesource.html#encodedData">TQMimeSource</a>. <p>Reimplemented from <a href="tqmimesource.html#encodedData">TQMimeSource</a>.
<h3 class=fn>const char * <a name="format"></a>TQDropEvent::format ( int&nbsp;n = 0 ) const<tt> [virtual]</tt> <h3 class=fn>const char * <a name="format"></a>TQDropEvent::format ( int&nbsp;n = 0 ) const<tt> [virtual]</tt>
</h3> </h3>
Returns a string describing one of the available data types for Returns a string describing one of the available data types for
@ -155,7 +155,7 @@ will use <a href="#provides">provides</a>().
<p> <p>See also <a href="#data">data</a>() and <a href="#provides">provides</a>(). <p> <p>See also <a href="#data">data</a>() and <a href="#provides">provides</a>().
<p>Example: <a href="iconview-example.html#x1454">iconview/main.cpp</a>. <p>Example: <a href="iconview-example.html#x1454">iconview/main.cpp</a>.
<p>Reimplemented from <a href="qmimesource.html#format">TQMimeSource</a>. <p>Reimplemented from <a href="tqmimesource.html#format">TQMimeSource</a>.
<h3 class=fn>void <a name="ignore"></a>TQDropEvent::ignore () <h3 class=fn>void <a name="ignore"></a>TQDropEvent::ignore ()
</h3> </h3>
@ -187,8 +187,8 @@ returns FALSE.
<p> <p>See also <a href="#data">data</a>(). <p> <p>See also <a href="#data">data</a>().
<p>Example: <a href="fileiconview-example.html#x819">fileiconview/qfileiconview.cpp</a>. <p>Example: <a href="fileiconview-example.html#x819">fileiconview/qfileiconview.cpp</a>.
<p>Reimplemented from <a href="qmimesource.html#provides">TQMimeSource</a>. <p>Reimplemented from <a href="tqmimesource.html#provides">TQMimeSource</a>.
<h3 class=fn>void <a name="setAction"></a>TQDropEvent::setAction ( <a href="qdropevent.html#Action-enum">Action</a>&nbsp;a ) <h3 class=fn>void <a name="setAction"></a>TQDropEvent::setAction ( <a href="tqdropevent.html#Action-enum">Action</a>&nbsp;a )
</h3> </h3>
<p> Sets the action to <em>a</em>. This is used internally, you should not <p> Sets the action to <em>a</em>. This is used internally, you should not
@ -210,7 +210,7 @@ returns 0. The source of the operation is the first parameter to
drag object subclasses. drag object subclasses.
<p> This is useful if your widget needs special behavior when dragging <p> This is useful if your widget needs special behavior when dragging
to itself, etc. to itself, etc.
<p> See <a href="ntqdragobject.html#TQDragObject">TQDragObject::TQDragObject</a>() and subclasses. <p> See <a href="tqdragobject.html#TQDragObject">TQDragObject::TQDragObject</a>() and subclasses.
<!-- eof --> <!-- eof -->
<hr><p> <hr><p>

@ -1,9 +1,9 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqdropsite.h:1 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqdropsite.h:1 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>ntqdropsite.h Include File</title> <title>tqdropsite.h Include File</title>
<style type="text/css"><!-- <style type="text/css"><!--
fn { margin-left: 1cm; text-indent: -1cm; } fn { margin-left: 1cm; text-indent: -1cm; }
a:link { color: #004faf; text-decoration: none } a:link { color: #004faf; text-decoration: none }
@ -29,13 +29,13 @@ body { background: #ffffff; color: black; }
| <a href="functions.html"> | <a href="functions.html">
<font color="#004faf">Functions</font></a> <font color="#004faf">Functions</font></a>
</td> </td>
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>ntqdropsite.h</h1> <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>tqdropsite.h</h1>
<p>This is the verbatim text of the ntqdropsite.h include file. It is provided only for illustration; the copyright remains with Trolltech. <p>This is the verbatim text of the tqdropsite.h include file. It is provided only for illustration; the copyright remains with Trolltech.
<hr> <hr>
<pre> <pre>
/**************************************************************************** /****************************************************************************
** $Id: qt/ntqdropsite.h 3.3.8 edited Jan 11 14:38 $ ** $Id: qt/tqdropsite.h 3.3.8 edited Jan 11 14:38 $
** **
** Definitation of Drag and Drop support ** Definitation of Drag and Drop support
** **

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqdropsite.h:49 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqdropsite.h:49 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -32,11 +32,11 @@ body { background: #ffffff; color: black; }
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQDropSite</h1> <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQDropSite</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="ntqdropsite.html">TQDropSite</a>, including inherited members. <a href="tqdropsite.html">TQDropSite</a>, including inherited members.
<ul> <ul>
<li><a href="ntqdropsite.html#TQDropSite">TQDropSite</a>() <li><a href="tqdropsite.html#TQDropSite">TQDropSite</a>()
<li><a href="ntqdropsite.html#~TQDropSite">~TQDropSite</a>() <li><a href="tqdropsite.html#~TQDropSite">~TQDropSite</a>()
</ul> </ul>
<!-- eof --> <!-- eof -->
<p><address><hr><div align=center> <p><address><hr><div align=center>

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/qdropsite.cpp:44 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqdropsite.cpp:44 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -33,8 +33,8 @@ body { background: #ffffff; color: black; }
<p>The TQDropSite class provides nothing and does nothing. <p>The TQDropSite class provides nothing and does nothing.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qdropsite-h.html">ntqdropsite.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqdropsite-h.html">tqdropsite.h</a>&gt;</tt>
<p><a href="qdropsite-members.html">List of all member functions.</a> <p><a href="tqdropsite-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQDropSite"><b>TQDropSite</b></a> ( TQWidget&nbsp;*&nbsp;self )</li> <li class=fn><a href="#TQDropSite"><b>TQDropSite</b></a> ( TQWidget&nbsp;*&nbsp;self )</li>
@ -48,8 +48,8 @@ The TQDropSite class provides nothing and does nothing.
<p> If your code uses it, you can safely delete it. <p> If your code uses it, you can safely delete it.
<p> It was used in TQt 1.x to do some drag and drop; that has since been <p> It was used in TQt 1.x to do some drag and drop; that has since been
folded into <a href="tqwidget.html">TQWidget</a>. folded into <a href="tqwidget.html">TQWidget</a>.
<p> For detailed information about drag-and-drop, see the <a href="ntqdragobject.html">TQDragObject</a> class. <p> For detailed information about drag-and-drop, see the <a href="tqdragobject.html">TQDragObject</a> class.
<p> <p>See also <a href="ntqdragobject.html">TQDragObject</a>, <a href="tqtextdrag.html">TQTextDrag</a>, and <a href="tqimagedrag.html">TQImageDrag</a>. <p> <p>See also <a href="tqdragobject.html">TQDragObject</a>, <a href="tqtextdrag.html">TQTextDrag</a>, and <a href="tqimagedrag.html">TQImageDrag</a>.
<hr><h2>Member Function Documentation</h2> <hr><h2>Member Function Documentation</h2>
<h3 class=fn><a name="TQDropSite"></a>TQDropSite::TQDropSite ( <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;self ) <h3 class=fn><a name="TQDropSite"></a>TQDropSite::TQDropSite ( <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;self )

@ -52,16 +52,16 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#destroyed">destroyed</a>() <li><a href="tqobject.html#destroyed">destroyed</a>()
<li><a href="tqobject.html#disconnect">disconnect</a>() <li><a href="tqobject.html#disconnect">disconnect</a>()
<li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>() <li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>()
<li><a href="ntqdragobject.html#drag">drag</a>() <li><a href="tqdragobject.html#drag">drag</a>()
<li><a href="ntqdragobject.html#dragCopy">dragCopy</a>() <li><a href="tqdragobject.html#dragCopy">dragCopy</a>()
<li><a href="ntqdragobject.html#dragLink">dragLink</a>() <li><a href="tqdragobject.html#dragLink">dragLink</a>()
<li><a href="ntqdragobject.html#dragMove">dragMove</a>() <li><a href="tqdragobject.html#dragMove">dragMove</a>()
<li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>() <li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>()
<li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>() <li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>()
<li><a href="tqicondrag.html#encodedData">encodedData</a>() <li><a href="tqicondrag.html#encodedData">encodedData</a>()
<li><a href="tqobject.html#event">event</a>() <li><a href="tqobject.html#event">event</a>()
<li><a href="tqobject.html#eventFilter">eventFilter</a>() <li><a href="tqobject.html#eventFilter">eventFilter</a>()
<li><a href="qmimesource.html#format">format</a>() <li><a href="tqmimesource.html#format">format</a>()
<li><a href="tqobject.html#highPriority">highPriority</a>() <li><a href="tqobject.html#highPriority">highPriority</a>()
<li><a href="tqobject.html#inherits">inherits</a>() <li><a href="tqobject.html#inherits">inherits</a>()
<li><a href="tqobject.html#insertChild">insertChild</a>() <li><a href="tqobject.html#insertChild">insertChild</a>()
@ -75,22 +75,22 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>() <li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>()
<li><a href="tqobject.html#objectTrees">objectTrees</a>() <li><a href="tqobject.html#objectTrees">objectTrees</a>()
<li><a href="tqobject.html#parent">parent</a>() <li><a href="tqobject.html#parent">parent</a>()
<li><a href="ntqdragobject.html#pixmap">pixmap</a>() <li><a href="tqdragobject.html#pixmap">pixmap</a>()
<li><a href="ntqdragobject.html#pixmapHotSpot">pixmapHotSpot</a>() <li><a href="tqdragobject.html#pixmapHotSpot">pixmapHotSpot</a>()
<li><a href="tqobject.html#property">property</a>() <li><a href="tqobject.html#property">property</a>()
<li><a href="qmimesource.html#provides">provides</a>() <li><a href="tqmimesource.html#provides">provides</a>()
<li><a href="tqobject.html#queryList">queryList</a>() <li><a href="tqobject.html#queryList">queryList</a>()
<li><a href="tqobject.html#removeChild">removeChild</a>() <li><a href="tqobject.html#removeChild">removeChild</a>()
<li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>() <li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>()
<li><a href="tqobject.html#sender">sender</a>() <li><a href="tqobject.html#sender">sender</a>()
<li><a href="qmimesource.html#serialNumber">serialNumber</a>() <li><a href="tqmimesource.html#serialNumber">serialNumber</a>()
<li><a href="tqobject.html#setName">setName</a>() <li><a href="tqobject.html#setName">setName</a>()
<li><a href="ntqdragobject.html#setPixmap">setPixmap</a>() <li><a href="tqdragobject.html#setPixmap">setPixmap</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>() <li><a href="tqobject.html#setProperty">setProperty</a>()
<li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>() <li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>()
<li><a href="ntqdragobject.html#source">source</a>() <li><a href="tqdragobject.html#source">source</a>()
<li><a href="tqobject.html#startTimer">startTimer</a>() <li><a href="tqobject.html#startTimer">startTimer</a>()
<li><a href="ntqdragobject.html#target">target</a>() <li><a href="tqdragobject.html#target">target</a>()
<li><a href="tqobject.html#timerEvent">timerEvent</a>() <li><a href="tqobject.html#timerEvent">timerEvent</a>()
<li><a href="tqobject.html#tr">tr</a>() <li><a href="tqobject.html#tr">tr</a>()
<li><a href="tqobject.html#trUtf8">trUtf8</a>() <li><a href="tqobject.html#trUtf8">trUtf8</a>()

@ -35,7 +35,7 @@ body { background: #ffffff; color: black; }
within a TQIconView. within a TQIconView.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="tqiconview-h.html">tqiconview.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqiconview-h.html">tqiconview.h</a>&gt;</tt>
<p>Inherits <a href="ntqdragobject.html">TQDragObject</a>. <p>Inherits <a href="tqdragobject.html">TQDragObject</a>.
<p><a href="tqicondrag-members.html">List of all member functions.</a> <p><a href="tqicondrag-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
@ -68,17 +68,17 @@ which should be dragged, set the data it represents with
<a href="tqicondragitem.html#setData">TQIconDragItem::setData</a>(), and add each TQIconDragItem to the drag <a href="tqicondragitem.html#setData">TQIconDragItem::setData</a>(), and add each TQIconDragItem to the drag
object using <a href="#append">append</a>(). object using <a href="#append">append</a>().
<p> The data in TQIconDragItems is stored in a <a href="qbytearray.html">TQByteArray</a> and is <p> The data in TQIconDragItems is stored in a <a href="qbytearray.html">TQByteArray</a> and is
mime-typed (see <a href="qmimesource.html">TQMimeSource</a> and the mime-typed (see <a href="tqmimesource.html">TQMimeSource</a> and the
<a href="http://doc.trolltech.com/dnd.html">Drag and Drop</a> <a href="http://doc.trolltech.com/dnd.html">Drag and Drop</a>
overview). If you want to use your own mime-types derive a class overview). If you want to use your own mime-types derive a class
from TQIconDrag and reimplement <a href="qmimesource.html#format">format</a>(), <a href="#encodedData">encodedData</a>() and from TQIconDrag and reimplement <a href="tqmimesource.html#format">format</a>(), <a href="#encodedData">encodedData</a>() and
<a href="#canDecode">canDecode</a>(). <a href="#canDecode">canDecode</a>().
<p> The fileiconview example program demonstrates the use of the <p> The fileiconview example program demonstrates the use of the
TQIconDrag class including subclassing and reimplementing TQIconDrag class including subclassing and reimplementing
dragObject(), format(), encodedData() and canDecode(). See the files dragObject(), format(), encodedData() and canDecode(). See the files
<tt>qt/examples/fileiconview/qfileiconview.h</tt> and <tt>qt/examples/fileiconview/qfileiconview.h</tt> and
<tt>qt/examples/fileiconview/qfileiconview.cpp</tt>. <tt>qt/examples/fileiconview/qfileiconview.cpp</tt>.
<p> <p>See also <a href="qmimesource.html#format">TQMimeSource::format</a>() and <a href="draganddrop.html">Drag And Drop Classes</a>. <p> <p>See also <a href="tqmimesource.html#format">TQMimeSource::format</a>() and <a href="draganddrop.html">Drag And Drop Classes</a>.
<hr><h2>Member Function Documentation</h2> <hr><h2>Member Function Documentation</h2>
<h3 class=fn><a name="TQIconDrag"></a>TQIconDrag::TQIconDrag ( <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;dragSource, const&nbsp;char&nbsp;*&nbsp;name = 0 ) <h3 class=fn><a name="TQIconDrag"></a>TQIconDrag::TQIconDrag ( <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;dragSource, const&nbsp;char&nbsp;*&nbsp;name = 0 )
@ -98,7 +98,7 @@ the textual caption, <em>tr</em>.
<p> <p>See also <a href="tqicondragitem.html">TQIconDragItem</a>. <p> <p>See also <a href="tqicondragitem.html">TQIconDragItem</a>.
<p>Example: <a href="fileiconview-example.html#x829">fileiconview/qfileiconview.cpp</a>. <p>Example: <a href="fileiconview-example.html#x829">fileiconview/qfileiconview.cpp</a>.
<h3 class=fn>bool <a name="canDecode"></a>TQIconDrag::canDecode ( <a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e )<tt> [static]</tt> <h3 class=fn>bool <a name="canDecode"></a>TQIconDrag::canDecode ( <a href="tqmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e )<tt> [static]</tt>
</h3> </h3>
Returns TRUE if <em>e</em> can be decoded by the TQIconDrag, otherwise Returns TRUE if <em>e</em> can be decoded by the TQIconDrag, otherwise
return FALSE. return FALSE.
@ -110,7 +110,7 @@ Returns the encoded data of the drag object if <em>mime</em> is
application/x-qiconlist. application/x-qiconlist.
<p>Example: <a href="fileiconview-example.html#x831">fileiconview/qfileiconview.cpp</a>. <p>Example: <a href="fileiconview-example.html#x831">fileiconview/qfileiconview.cpp</a>.
<p>Reimplemented from <a href="qmimesource.html#encodedData">TQMimeSource</a>. <p>Reimplemented from <a href="tqmimesource.html#encodedData">TQMimeSource</a>.
<!-- eof --> <!-- eof -->
<hr><p> <hr><p>
This file is part of the <a href="index.html">TQt toolkit</a>. This file is part of the <a href="index.html">TQt toolkit</a>.

@ -84,7 +84,7 @@ body { background: #ffffff; color: black; }
#include "ntqpoint.h" #include "ntqpoint.h"
#include "tqsize.h" #include "tqsize.h"
#include "ntqfont.h" // TQString-&gt;TQFont conversion #include "ntqfont.h" // TQString-&gt;TQFont conversion
#include "ntqdragobject.h" #include "tqdragobject.h"
#include "ntqbitmap.h" #include "ntqbitmap.h"
#include "ntqpicture.h" #include "ntqpicture.h"
#endif // QT_H #endif // QT_H

@ -273,7 +273,7 @@ subclass TQIconView and reimplement <a href="#dragObject">TQIconView::dragObject
</pre> </pre>
<p> In this example we create a <a href="tqtextdrag.html">TQTextDrag</a> object, (derived from <p> In this example we create a <a href="tqtextdrag.html">TQTextDrag</a> object, (derived from
<a href="ntqdragobject.html">TQDragObject</a>), containing the item's label and return it as the drag <a href="tqdragobject.html">TQDragObject</a>), containing the item's label and return it as the drag
object. We could just as easily have created a <a href="tqimagedrag.html">TQImageDrag</a> from the object. We could just as easily have created a <a href="tqimagedrag.html">TQImageDrag</a> from the
item's pixmap and returned that instead. item's pixmap and returned that instead.
<p> TQIconViews and their TQIconViewItems can also be the targets of drag <p> TQIconViews and their TQIconViewItems can also be the targets of drag
@ -284,14 +284,14 @@ make a <a href="tqiconviewitem.html">TQIconViewItem</a> into a drop target subcl
reimplement <a href="tqiconviewitem.html#acceptDrop">TQIconViewItem::acceptDrop</a>() and reimplement <a href="tqiconviewitem.html#acceptDrop">TQIconViewItem::acceptDrop</a>() and
<a href="tqiconviewitem.html#dropped">TQIconViewItem::dropped</a>(). <a href="tqiconviewitem.html#dropped">TQIconViewItem::dropped</a>().
<p> <pre> <p> <pre>
bool MyIconViewItem::acceptDrop( const <a href="qmimesource.html">TQMimeSource</a> *mime ) const bool MyIconViewItem::acceptDrop( const <a href="tqmimesource.html">TQMimeSource</a> *mime ) const
{ {
if ( mime-&gt;<a href="qmimesource.html#provides">provides</a>( "text/plain" ) ) if ( mime-&gt;<a href="tqmimesource.html#provides">provides</a>( "text/plain" ) )
return TRUE; return TRUE;
return FALSE; return FALSE;
} }
void MyIconViewItem::dropped( <a href="qdropevent.html">TQDropEvent</a> *evt, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&amp; ) void MyIconViewItem::dropped( <a href="tqdropevent.html">TQDropEvent</a> *evt, const <a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&amp; )
{ {
<a href="tqstring.html">TQString</a> label; <a href="tqstring.html">TQString</a> label;
if ( TQTextDrag::<a href="tqtextdrag.html#decode">decode</a>( evt, label ) ) if ( TQTextDrag::<a href="tqtextdrag.html#decode">decode</a>( evt, label ) )
@ -484,9 +484,9 @@ rubber band.
<p> This signal is emitted when the user double-clicks on <em>item</em>. <p> This signal is emitted when the user double-clicks on <em>item</em>.
<h3 class=fn><a href="ntqdragobject.html">TQDragObject</a>&nbsp;* <a name="dragObject"></a>TQIconView::dragObject ()<tt> [virtual protected]</tt> <h3 class=fn><a href="tqdragobject.html">TQDragObject</a>&nbsp;* <a name="dragObject"></a>TQIconView::dragObject ()<tt> [virtual protected]</tt>
</h3> </h3>
Returns the <a href="ntqdragobject.html">TQDragObject</a> that should be used for drag-and-drop. Returns the <a href="tqdragobject.html">TQDragObject</a> that should be used for drag-and-drop.
This function is called by the icon view when starting a drag to This function is called by the icon view when starting a drag to
get the dragobject that should be used for the drag. Subclasses get the dragobject that should be used for the drag. Subclasses
may reimplement this. may reimplement this.
@ -506,7 +506,7 @@ backgrounds.
</h3> </h3>
Draws the rubber band using the painter <em>p</em>. Draws the rubber band using the painter <em>p</em>.
<h3 class=fn>void <a name="dropped"></a>TQIconView::dropped ( <a href="qdropevent.html">TQDropEvent</a>&nbsp;*&nbsp;e, const&nbsp;<a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&nbsp;&amp;&nbsp;lst )<tt> [signal]</tt> <h3 class=fn>void <a name="dropped"></a>TQIconView::dropped ( <a href="tqdropevent.html">TQDropEvent</a>&nbsp;*&nbsp;e, const&nbsp;<a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&nbsp;&amp;&nbsp;lst )<tt> [signal]</tt>
</h3> </h3>
<p> This signal is emitted when a drop event occurs in the viewport <p> This signal is emitted when a drop event occurs in the viewport

@ -209,10 +209,10 @@ the icon view item <em>after</em>.
Destroys the icon view item and tells the parent icon view that Destroys the icon view item and tells the parent icon view that
the item has been destroyed. the item has been destroyed.
<h3 class=fn>bool <a name="acceptDrop"></a>TQIconViewItem::acceptDrop ( const&nbsp;<a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;mime ) const<tt> [virtual]</tt> <h3 class=fn>bool <a name="acceptDrop"></a>TQIconViewItem::acceptDrop ( const&nbsp;<a href="tqmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;mime ) const<tt> [virtual]</tt>
</h3> </h3>
<p> Returns TRUE if you can drop things with a <a href="qmimesource.html">TQMimeSource</a> of <em>mime</em> <p> Returns TRUE if you can drop things with a <a href="tqmimesource.html">TQMimeSource</a> of <em>mime</em>
onto this item; otherwise returns FALSE. onto this item; otherwise returns FALSE.
<p> The default implementation always returns FALSE. You must subclass <p> The default implementation always returns FALSE. You must subclass
TQIconViewItem and reimplement <a href="#acceptDrop">acceptDrop</a>() to accept drops. TQIconViewItem and reimplement <a href="#acceptDrop">acceptDrop</a>() to accept drops.
@ -277,7 +277,7 @@ Returns TRUE if the user is allowed to drop something onto the
item; otherwise returns FALSE. item; otherwise returns FALSE.
<p> <p>See also <a href="#setDropEnabled">setDropEnabled</a>(). <p> <p>See also <a href="#setDropEnabled">setDropEnabled</a>().
<h3 class=fn>void <a name="dropped"></a>TQIconViewItem::dropped ( <a href="qdropevent.html">TQDropEvent</a>&nbsp;*&nbsp;e, const&nbsp;<a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&nbsp;&amp;&nbsp;lst )<tt> [virtual protected]</tt> <h3 class=fn>void <a name="dropped"></a>TQIconViewItem::dropped ( <a href="tqdropevent.html">TQDropEvent</a>&nbsp;*&nbsp;e, const&nbsp;<a href="tqvaluelist.html">TQValueList</a>&lt;TQIconDragItem&gt;&nbsp;&amp;&nbsp;lst )<tt> [virtual protected]</tt>
</h3> </h3>
<p> This function is called when something is dropped on the item. <em>e</em> provides all the information about the drop. If the drag object <p> This function is called when something is dropped on the item. <em>e</em> provides all the information about the drop. If the drag object

@ -544,7 +544,7 @@ existing image or <a href="ntqcolor.html#rgb">TQColor::rgb</a>() to use a specif
</h3> Convenience function. Gets the data associated with the absolute </h3> Convenience function. Gets the data associated with the absolute
name <em>abs_name</em> from the default mime source factory and decodes it name <em>abs_name</em> from the default mime source factory and decodes it
to an image. to an image.
<p> <p>See also <a href="qmimesourcefactory.html">TQMimeSourceFactory</a>, <a href="#fromMimeSource">TQImage::fromMimeSource</a>(), and <a href="tqimagedrag.html#decode">TQImageDrag::decode</a>(). <p> <p>See also <a href="tqmimesourcefactory.html">TQMimeSourceFactory</a>, <a href="#fromMimeSource">TQImage::fromMimeSource</a>(), and <a href="tqimagedrag.html#decode">TQImageDrag::decode</a>().
<h3 class=fn>bool <a name="hasAlphaBuffer"></a>TQImage::hasAlphaBuffer () const <h3 class=fn>bool <a name="hasAlphaBuffer"></a>TQImage::hasAlphaBuffer () const
</h3> </h3>

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqdragobject.h:139 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqdragobject.h:139 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -52,16 +52,16 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#destroyed">destroyed</a>() <li><a href="tqobject.html#destroyed">destroyed</a>()
<li><a href="tqobject.html#disconnect">disconnect</a>() <li><a href="tqobject.html#disconnect">disconnect</a>()
<li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>() <li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>()
<li><a href="ntqdragobject.html#drag">drag</a>() <li><a href="tqdragobject.html#drag">drag</a>()
<li><a href="ntqdragobject.html#dragCopy">dragCopy</a>() <li><a href="tqdragobject.html#dragCopy">dragCopy</a>()
<li><a href="ntqdragobject.html#dragLink">dragLink</a>() <li><a href="tqdragobject.html#dragLink">dragLink</a>()
<li><a href="ntqdragobject.html#dragMove">dragMove</a>() <li><a href="tqdragobject.html#dragMove">dragMove</a>()
<li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>() <li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>()
<li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>() <li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>()
<li><a href="qmimesource.html#encodedData">encodedData</a>() <li><a href="tqmimesource.html#encodedData">encodedData</a>()
<li><a href="tqobject.html#event">event</a>() <li><a href="tqobject.html#event">event</a>()
<li><a href="tqobject.html#eventFilter">eventFilter</a>() <li><a href="tqobject.html#eventFilter">eventFilter</a>()
<li><a href="qmimesource.html#format">format</a>() <li><a href="tqmimesource.html#format">format</a>()
<li><a href="tqobject.html#highPriority">highPriority</a>() <li><a href="tqobject.html#highPriority">highPriority</a>()
<li><a href="tqobject.html#inherits">inherits</a>() <li><a href="tqobject.html#inherits">inherits</a>()
<li><a href="tqobject.html#insertChild">insertChild</a>() <li><a href="tqobject.html#insertChild">insertChild</a>()
@ -75,23 +75,23 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>() <li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>()
<li><a href="tqobject.html#objectTrees">objectTrees</a>() <li><a href="tqobject.html#objectTrees">objectTrees</a>()
<li><a href="tqobject.html#parent">parent</a>() <li><a href="tqobject.html#parent">parent</a>()
<li><a href="ntqdragobject.html#pixmap">pixmap</a>() <li><a href="tqdragobject.html#pixmap">pixmap</a>()
<li><a href="ntqdragobject.html#pixmapHotSpot">pixmapHotSpot</a>() <li><a href="tqdragobject.html#pixmapHotSpot">pixmapHotSpot</a>()
<li><a href="tqobject.html#property">property</a>() <li><a href="tqobject.html#property">property</a>()
<li><a href="qmimesource.html#provides">provides</a>() <li><a href="tqmimesource.html#provides">provides</a>()
<li><a href="tqobject.html#queryList">queryList</a>() <li><a href="tqobject.html#queryList">queryList</a>()
<li><a href="tqobject.html#removeChild">removeChild</a>() <li><a href="tqobject.html#removeChild">removeChild</a>()
<li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>() <li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>()
<li><a href="tqobject.html#sender">sender</a>() <li><a href="tqobject.html#sender">sender</a>()
<li><a href="qmimesource.html#serialNumber">serialNumber</a>() <li><a href="tqmimesource.html#serialNumber">serialNumber</a>()
<li><a href="tqimagedrag.html#setImage">setImage</a>() <li><a href="tqimagedrag.html#setImage">setImage</a>()
<li><a href="tqobject.html#setName">setName</a>() <li><a href="tqobject.html#setName">setName</a>()
<li><a href="ntqdragobject.html#setPixmap">setPixmap</a>() <li><a href="tqdragobject.html#setPixmap">setPixmap</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>() <li><a href="tqobject.html#setProperty">setProperty</a>()
<li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>() <li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>()
<li><a href="ntqdragobject.html#source">source</a>() <li><a href="tqdragobject.html#source">source</a>()
<li><a href="tqobject.html#startTimer">startTimer</a>() <li><a href="tqobject.html#startTimer">startTimer</a>()
<li><a href="ntqdragobject.html#target">target</a>() <li><a href="tqdragobject.html#target">target</a>()
<li><a href="tqobject.html#timerEvent">timerEvent</a>() <li><a href="tqobject.html#timerEvent">timerEvent</a>()
<li><a href="tqobject.html#tr">tr</a>() <li><a href="tqobject.html#tr">tr</a>()
<li><a href="tqobject.html#trUtf8">trUtf8</a>() <li><a href="tqobject.html#trUtf8">trUtf8</a>()

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/qdragobject.cpp:981 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqdragobject.cpp:981 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -34,8 +34,8 @@ body { background: #ffffff; color: black; }
<p>The TQImageDrag class provides a drag and drop object for <p>The TQImageDrag class provides a drag and drop object for
transferring images. transferring images.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qdragobject-h.html">ntqdragobject.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqdragobject-h.html">tqdragobject.h</a>&gt;</tt>
<p>Inherits <a href="ntqdragobject.html">TQDragObject</a>. <p>Inherits <a href="tqdragobject.html">TQDragObject</a>.
<p><a href="tqimagedrag-members.html">List of all member functions.</a> <p><a href="tqimagedrag-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
@ -59,7 +59,7 @@ transferring images.
<p> Images are offered to the receiving application in multiple <p> Images are offered to the receiving application in multiple
formats, determined by TQt's <a href="tqimage.html#outputFormats">output formats, determined by TQt's <a href="tqimage.html#outputFormats">output
formats</a>. formats</a>.
<p> For more information about drag and drop, see the <a href="ntqdragobject.html">TQDragObject</a> <p> For more information about drag and drop, see the <a href="tqdragobject.html">TQDragObject</a>
class and the <a href="dnd.html">drag and drop documentation</a>. class and the <a href="dnd.html">drag and drop documentation</a>.
<p>See also <a href="draganddrop.html">Drag And Drop Classes</a>. <p>See also <a href="draganddrop.html">Drag And Drop Classes</a>.
@ -78,21 +78,21 @@ drag source; <em>name</em> is the object name.
Destroys the image drag object and frees up all allocated Destroys the image drag object and frees up all allocated
resources. resources.
<h3 class=fn>bool <a name="canDecode"></a>TQImageDrag::canDecode ( const&nbsp;<a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e )<tt> [static]</tt> <h3 class=fn>bool <a name="canDecode"></a>TQImageDrag::canDecode ( const&nbsp;<a href="tqmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e )<tt> [static]</tt>
</h3> </h3>
Returns TRUE if the information in mime source <em>e</em> can be decoded Returns TRUE if the information in mime source <em>e</em> can be decoded
into an image; otherwise returns FALSE. into an image; otherwise returns FALSE.
<p> <p>See also <a href="#decode">decode</a>(). <p> <p>See also <a href="#decode">decode</a>().
<p>Example: <a href="desktop-example.html#x1731">desktop/desktop.cpp</a>. <p>Example: <a href="desktop-example.html#x1731">desktop/desktop.cpp</a>.
<h3 class=fn>bool <a name="decode"></a>TQImageDrag::decode ( const&nbsp;<a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e, <a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;img )<tt> [static]</tt> <h3 class=fn>bool <a name="decode"></a>TQImageDrag::decode ( const&nbsp;<a href="tqmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e, <a href="tqimage.html">TQImage</a>&nbsp;&amp;&nbsp;img )<tt> [static]</tt>
</h3> </h3>
Attempts to decode the dropped information in mime source <em>e</em> Attempts to decode the dropped information in mime source <em>e</em>
into <em>img</em>. Returns TRUE if successful; otherwise returns FALSE. into <em>img</em>. Returns TRUE if successful; otherwise returns FALSE.
<p> <p>See also <a href="#canDecode">canDecode</a>(). <p> <p>See also <a href="#canDecode">canDecode</a>().
<p>Example: <a href="desktop-example.html#x1732">desktop/desktop.cpp</a>. <p>Example: <a href="desktop-example.html#x1732">desktop/desktop.cpp</a>.
<h3 class=fn>bool <a name="decode-2"></a>TQImageDrag::decode ( const&nbsp;<a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e, <a href="ntqpixmap.html">TQPixmap</a>&nbsp;&amp;&nbsp;pm )<tt> [static]</tt> <h3 class=fn>bool <a name="decode-2"></a>TQImageDrag::decode ( const&nbsp;<a href="tqmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e, <a href="ntqpixmap.html">TQPixmap</a>&nbsp;&amp;&nbsp;pm )<tt> [static]</tt>
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Attempts to decode the dropped information in mime source <em>e</em> <p> Attempts to decode the dropped information in mime source <em>e</em>

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqmime.h:170 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqmime.h:170 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -32,22 +32,22 @@ body { background: #ffffff; color: black; }
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQMacMime</h1> <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQMacMime</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="qmacmime.html">TQMacMime</a>, including inherited members. <a href="tqmacmime.html">TQMacMime</a>, including inherited members.
<ul> <ul>
<li><a href="qmacmime.html#TQMacMime">TQMacMime</a>() <li><a href="tqmacmime.html#TQMacMime">TQMacMime</a>()
<li><a href="qmacmime.html#~TQMacMime">~TQMacMime</a>() <li><a href="tqmacmime.html#~TQMacMime">~TQMacMime</a>()
<li><a href="qmacmime.html#all">all</a>() <li><a href="tqmacmime.html#all">all</a>()
<li><a href="qmacmime.html#canConvert">canConvert</a>() <li><a href="tqmacmime.html#canConvert">canConvert</a>()
<li><a href="qmacmime.html#convertFromMime">convertFromMime</a>() <li><a href="tqmacmime.html#convertFromMime">convertFromMime</a>()
<li><a href="qmacmime.html#convertToMime">convertToMime</a>() <li><a href="tqmacmime.html#convertToMime">convertToMime</a>()
<li><a href="qmacmime.html#convertor">convertor</a>() <li><a href="tqmacmime.html#convertor">convertor</a>()
<li><a href="qmacmime.html#convertorName">convertorName</a>() <li><a href="tqmacmime.html#convertorName">convertorName</a>()
<li><a href="qmacmime.html#countFlavors">countFlavors</a>() <li><a href="tqmacmime.html#countFlavors">countFlavors</a>()
<li><a href="qmacmime.html#flavor">flavor</a>() <li><a href="tqmacmime.html#flavor">flavor</a>()
<li><a href="qmacmime.html#flavorFor">flavorFor</a>() <li><a href="tqmacmime.html#flavorFor">flavorFor</a>()
<li><a href="qmacmime.html#flavorToMime">flavorToMime</a>() <li><a href="tqmacmime.html#flavorToMime">flavorToMime</a>()
<li><a href="qmacmime.html#mimeFor">mimeFor</a>() <li><a href="tqmacmime.html#mimeFor">mimeFor</a>()
</ul> </ul>
<!-- eof --> <!-- eof -->
<p><address><hr><div align=center> <p><address><hr><div align=center>

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/qmime_mac.cpp:64 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqmime_mac.cpp:64 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -33,8 +33,8 @@ body { background: #ffffff; color: black; }
<p>The TQMacMime class maps open-standard MIME to Mac flavors. <p>The TQMacMime class maps open-standard MIME to Mac flavors.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qmime-h.html">ntqmime.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqmime-h.html">tqmime.h</a>&gt;</tt>
<p><a href="qmacmime-members.html">List of all member functions.</a> <p><a href="tqmacmime-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQMacMime"><b>TQMacMime</b></a> ( char&nbsp;t )</li> <li class=fn><a href="#TQMacMime"><b>TQMacMime</b></a> ( char&nbsp;t )</li>
@ -79,7 +79,7 @@ and supported by TQTextDrag.
a <a href="tqimage.html#outputFormats">TQt image format</a>, a <a href="tqimage.html#outputFormats">TQt image format</a>,
and supported by <a href="tqimagedrag.html">TQImageDrag</a>. and supported by <a href="tqimagedrag.html">TQImageDrag</a>.
<li> kDragFlavorTypeHFS - converted to "text/uri-list", <li> kDragFlavorTypeHFS - converted to "text/uri-list",
and supported by <a href="quridrag.html">TQUriDrag</a>. and supported by <a href="tquridrag.html">TQUriDrag</a>.
</ul> </ul>
<p> You can check if a MIME type is convertible using <a href="#canConvert">canConvert</a>() and <p> You can check if a MIME type is convertible using <a href="#canConvert">canConvert</a>() and
can perform conversions with <a href="#convertToMime">convertToMime</a>() and <a href="#convertFromMime">convertFromMime</a>(). can perform conversions with <a href="#convertToMime">convertToMime</a>() and <a href="#convertFromMime">convertFromMime</a>().
@ -123,7 +123,7 @@ value may contain trailing data.
<p> Note that Mac flavors must all be self-terminating. The input <em>data</em> may contain trailing data. <p> Note that Mac flavors must all be self-terminating. The input <em>data</em> may contain trailing data.
<p> All subclasses must reimplement this pure virtual function. <p> All subclasses must reimplement this pure virtual function.
<h3 class=fn><a href="qmacmime.html">TQMacMime</a>&nbsp;* <a name="convertor"></a>TQMacMime::convertor ( TQMacMimeType&nbsp;t, const&nbsp;char&nbsp;*&nbsp;mime, int&nbsp;flav )<tt> [static]</tt> <h3 class=fn><a href="tqmacmime.html">TQMacMime</a>&nbsp;* <a name="convertor"></a>TQMacMime::convertor ( TQMacMimeType&nbsp;t, const&nbsp;char&nbsp;*&nbsp;mime, int&nbsp;flav )<tt> [static]</tt>
</h3> </h3>
Returns the most-recently created TQMacMime of type <em>t</em> that can convert Returns the most-recently created TQMacMime of type <em>t</em> that can convert
between the <em>mime</em> and <em>flav</em> formats. Returns 0 if no such convertor between the <em>mime</em> and <em>flav</em> formats. Returns 0 if no such convertor

@ -1,9 +1,9 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqmime.h:1 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqmime.h:1 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>ntqmime.h Include File</title> <title>tqmime.h Include File</title>
<style type="text/css"><!-- <style type="text/css"><!--
fn { margin-left: 1cm; text-indent: -1cm; } fn { margin-left: 1cm; text-indent: -1cm; }
a:link { color: #004faf; text-decoration: none } a:link { color: #004faf; text-decoration: none }
@ -29,13 +29,13 @@ body { background: #ffffff; color: black; }
| <a href="functions.html"> | <a href="functions.html">
<font color="#004faf">Functions</font></a> <font color="#004faf">Functions</font></a>
</td> </td>
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>ntqmime.h</h1> <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>tqmime.h</h1>
<p>This is the verbatim text of the ntqmime.h include file. It is provided only for illustration; the copyright remains with Trolltech. <p>This is the verbatim text of the tqmime.h include file. It is provided only for illustration; the copyright remains with Trolltech.
<hr> <hr>
<pre> <pre>
/**************************************************************************** /****************************************************************************
** $Id: qt/ntqmime.h 3.3.8 edited Jan 11 14:46 $ ** $Id: qt/tqmime.h 3.3.8 edited Jan 11 14:46 $
** **
** Definition of mime classes ** Definition of mime classes
** **

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqmime.h:52 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqmime.h:52 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -32,15 +32,15 @@ body { background: #ffffff; color: black; }
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQMimeSource</h1> <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQMimeSource</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="qmimesource.html">TQMimeSource</a>, including inherited members. <a href="tqmimesource.html">TQMimeSource</a>, including inherited members.
<ul> <ul>
<li><a href="qmimesource.html#TQMimeSource">TQMimeSource</a>() <li><a href="tqmimesource.html#TQMimeSource">TQMimeSource</a>()
<li><a href="qmimesource.html#~TQMimeSource">~TQMimeSource</a>() <li><a href="tqmimesource.html#~TQMimeSource">~TQMimeSource</a>()
<li><a href="qmimesource.html#encodedData">encodedData</a>() <li><a href="tqmimesource.html#encodedData">encodedData</a>()
<li><a href="qmimesource.html#format">format</a>() <li><a href="tqmimesource.html#format">format</a>()
<li><a href="qmimesource.html#provides">provides</a>() <li><a href="tqmimesource.html#provides">provides</a>()
<li><a href="qmimesource.html#serialNumber">serialNumber</a>() <li><a href="tqmimesource.html#serialNumber">serialNumber</a>()
</ul> </ul>
<!-- eof --> <!-- eof -->
<p><address><hr><div align=center> <p><address><hr><div align=center>

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/qmime.cpp:49 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqmime.cpp:49 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -33,9 +33,9 @@ body { background: #ffffff; color: black; }
<p>The TQMimeSource class is an abstraction of objects which provide formatted data of a certain MIME type. <p>The TQMimeSource class is an abstraction of objects which provide formatted data of a certain MIME type.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qmime-h.html">ntqmime.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqmime-h.html">tqmime.h</a>&gt;</tt>
<p>Inherited by <a href="ntqdragobject.html">TQDragObject</a> and <a href="qdropevent.html">TQDropEvent</a>. <p>Inherited by <a href="tqdragobject.html">TQDragObject</a> and <a href="tqdropevent.html">TQDropEvent</a>.
<p><a href="qmimesource-members.html">List of all member functions.</a> <p><a href="tqmimesource-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQMimeSource"><b>TQMimeSource</b></a> ()</li> <li class=fn><a href="#TQMimeSource"><b>TQMimeSource</b></a> ()</li>
@ -75,13 +75,13 @@ Provided to ensure that subclasses destroy themselves correctly.
format. format.
<p> Subclasses must reimplement this function. <p> Subclasses must reimplement this function.
<p>Reimplemented in <a href="qstoreddrag.html#encodedData">TQStoredDrag</a>, <a href="qdropevent.html#encodedData">TQDropEvent</a>, and <a href="tqicondrag.html#encodedData">TQIconDrag</a>. <p>Reimplemented in <a href="tqstoreddrag.html#encodedData">TQStoredDrag</a>, <a href="tqdropevent.html#encodedData">TQDropEvent</a>, and <a href="tqicondrag.html#encodedData">TQIconDrag</a>.
<h3 class=fn>const char * <a name="format"></a>TQMimeSource::format ( int&nbsp;i = 0 ) const<tt> [pure virtual]</tt> <h3 class=fn>const char * <a name="format"></a>TQMimeSource::format ( int&nbsp;i = 0 ) const<tt> [pure virtual]</tt>
</h3> </h3>
<p> Returns the <em>i</em>-th supported MIME format, or 0. <p> Returns the <em>i</em>-th supported MIME format, or 0.
<p>Reimplemented in <a href="qdropevent.html#format">TQDropEvent</a>. <p>Reimplemented in <a href="tqdropevent.html#format">TQDropEvent</a>.
<h3 class=fn>bool <a name="provides"></a>TQMimeSource::provides ( const&nbsp;char&nbsp;*&nbsp;mimeType ) const<tt> [virtual]</tt> <h3 class=fn>bool <a name="provides"></a>TQMimeSource::provides ( const&nbsp;char&nbsp;*&nbsp;mimeType ) const<tt> [virtual]</tt>
</h3> </h3>
Returns TRUE if the object can provide the data in format <em>mimeType</em>; otherwise returns FALSE. Returns TRUE if the object can provide the data in format <em>mimeType</em>; otherwise returns FALSE.
@ -90,7 +90,7 @@ better to implement the more abstract canDecode() functions such
as <a href="tqtextdrag.html#canDecode">TQTextDrag::canDecode</a>() and <a href="tqimagedrag.html#canDecode">TQImageDrag::canDecode</a>(). as <a href="tqtextdrag.html#canDecode">TQTextDrag::canDecode</a>() and <a href="tqimagedrag.html#canDecode">TQImageDrag::canDecode</a>().
<p>Example: <a href="simple_dd-example.html#x2825">iconview/simple_dd/main.cpp</a>. <p>Example: <a href="simple_dd-example.html#x2825">iconview/simple_dd/main.cpp</a>.
<p>Reimplemented in <a href="qdropevent.html#provides">TQDropEvent</a>. <p>Reimplemented in <a href="tqdropevent.html#provides">TQDropEvent</a>.
<h3 class=fn>int <a name="serialNumber"></a>TQMimeSource::serialNumber () const <h3 class=fn>int <a name="serialNumber"></a>TQMimeSource::serialNumber () const
</h3> </h3>

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqmime.h:93 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqmime.h:93 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -32,26 +32,26 @@ body { background: #ffffff; color: black; }
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQMimeSourceFactory</h1> <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQMimeSourceFactory</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="qmimesourcefactory.html">TQMimeSourceFactory</a>, including inherited members. <a href="tqmimesourcefactory.html">TQMimeSourceFactory</a>, including inherited members.
<ul> <ul>
<li><a href="qmimesourcefactory.html#TQMimeSourceFactory">TQMimeSourceFactory</a>() <li><a href="tqmimesourcefactory.html#TQMimeSourceFactory">TQMimeSourceFactory</a>()
<li><a href="qmimesourcefactory.html#~TQMimeSourceFactory">~TQMimeSourceFactory</a>() <li><a href="tqmimesourcefactory.html#~TQMimeSourceFactory">~TQMimeSourceFactory</a>()
<li><a href="qmimesourcefactory.html#addFactory">addFactory</a>() <li><a href="tqmimesourcefactory.html#addFactory">addFactory</a>()
<li><a href="qmimesourcefactory.html#addFilePath">addFilePath</a>() <li><a href="tqmimesourcefactory.html#addFilePath">addFilePath</a>()
<li><a href="qmimesourcefactory.html#data">data</a>() <li><a href="tqmimesourcefactory.html#data">data</a>()
<li><a href="qmimesourcefactory.html#defaultFactory">defaultFactory</a>() <li><a href="tqmimesourcefactory.html#defaultFactory">defaultFactory</a>()
<li><a href="qmimesourcefactory.html#filePath">filePath</a>() <li><a href="tqmimesourcefactory.html#filePath">filePath</a>()
<li><a href="qmimesourcefactory.html#makeAbsolute">makeAbsolute</a>() <li><a href="tqmimesourcefactory.html#makeAbsolute">makeAbsolute</a>()
<li><a href="qmimesourcefactory.html#removeFactory">removeFactory</a>() <li><a href="tqmimesourcefactory.html#removeFactory">removeFactory</a>()
<li><a href="qmimesourcefactory.html#setData">setData</a>() <li><a href="tqmimesourcefactory.html#setData">setData</a>()
<li><a href="qmimesourcefactory.html#setDefaultFactory">setDefaultFactory</a>() <li><a href="tqmimesourcefactory.html#setDefaultFactory">setDefaultFactory</a>()
<li><a href="qmimesourcefactory.html#setExtensionType">setExtensionType</a>() <li><a href="tqmimesourcefactory.html#setExtensionType">setExtensionType</a>()
<li><a href="qmimesourcefactory.html#setFilePath">setFilePath</a>() <li><a href="tqmimesourcefactory.html#setFilePath">setFilePath</a>()
<li><a href="qmimesourcefactory.html#setImage">setImage</a>() <li><a href="tqmimesourcefactory.html#setImage">setImage</a>()
<li><a href="qmimesourcefactory.html#setPixmap">setPixmap</a>() <li><a href="tqmimesourcefactory.html#setPixmap">setPixmap</a>()
<li><a href="qmimesourcefactory.html#setText">setText</a>() <li><a href="tqmimesourcefactory.html#setText">setText</a>()
<li><a href="qmimesourcefactory.html#takeDefaultFactory">takeDefaultFactory</a>() <li><a href="tqmimesourcefactory.html#takeDefaultFactory">takeDefaultFactory</a>()
</ul> </ul>
<!-- eof --> <!-- eof -->
<p><address><hr><div align=center> <p><address><hr><div align=center>

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/qmime.cpp:179 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqmime.cpp:179 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -33,8 +33,8 @@ body { background: #ffffff; color: black; }
<p>The TQMimeSourceFactory class is an extensible provider of mime-typed data. <p>The TQMimeSourceFactory class is an extensible provider of mime-typed data.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qmime-h.html">ntqmime.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqmime-h.html">tqmime.h</a>&gt;</tt>
<p><a href="qmimesourcefactory-members.html">List of all member functions.</a> <p><a href="tqmimesourcefactory-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQMimeSourceFactory"><b>TQMimeSourceFactory</b></a> ()</li> <li class=fn><a href="#TQMimeSourceFactory"><b>TQMimeSourceFactory</b></a> ()</li>
@ -67,7 +67,7 @@ The TQMimeSourceFactory class is an extensible provider of mime-typed data.
<p> A TQMimeSourceFactory provides an abstract interface to a <p> A TQMimeSourceFactory provides an abstract interface to a
collection of information. Each piece of information is collection of information. Each piece of information is
represented by a <a href="qmimesource.html">TQMimeSource</a> object which can be examined and represented by a <a href="tqmimesource.html">TQMimeSource</a> object which can be examined and
converted to concrete data types by functions such as converted to concrete data types by functions such as
<a href="tqimagedrag.html#canDecode">TQImageDrag::canDecode</a>() and <a href="tqimagedrag.html#decode">TQImageDrag::decode</a>(). <a href="tqimagedrag.html#canDecode">TQImageDrag::canDecode</a>() and <a href="tqimagedrag.html#decode">TQImageDrag::decode</a>().
<p> The base TQMimeSourceFactory can be used in two ways: as an <p> The base TQMimeSourceFactory can be used in two ways: as an
@ -128,7 +128,7 @@ stored content.
</h3> </h3>
Destroys the TQMimeSourceFactory, deleting all stored content. Destroys the TQMimeSourceFactory, deleting all stored content.
<h3 class=fn>void <a name="addFactory"></a>TQMimeSourceFactory::addFactory ( <a href="qmimesourcefactory.html">TQMimeSourceFactory</a>&nbsp;*&nbsp;f )<tt> [static]</tt> <h3 class=fn>void <a name="addFactory"></a>TQMimeSourceFactory::addFactory ( <a href="tqmimesourcefactory.html">TQMimeSourceFactory</a>&nbsp;*&nbsp;f )<tt> [static]</tt>
</h3> </h3>
Adds the TQMimeSourceFactory <em>f</em> to the list of available Adds the TQMimeSourceFactory <em>f</em> to the list of available
mimesource factories. If the <a href="#defaultFactory">defaultFactory</a>() can't resolve a mimesource factories. If the <a href="#defaultFactory">defaultFactory</a>() can't resolve a
@ -141,7 +141,7 @@ until the data can be resolved.
Adds another search path, <em>p</em> to the existing search paths. Adds another search path, <em>p</em> to the existing search paths.
<p> <p>See also <a href="#setFilePath">setFilePath</a>(). <p> <p>See also <a href="#setFilePath">setFilePath</a>().
<h3 class=fn>const&nbsp;<a href="qmimesource.html">TQMimeSource</a>&nbsp;* <a name="data"></a>TQMimeSourceFactory::data ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;abs_name ) const<tt> [virtual]</tt> <h3 class=fn>const&nbsp;<a href="tqmimesource.html">TQMimeSource</a>&nbsp;* <a name="data"></a>TQMimeSourceFactory::data ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;abs_name ) const<tt> [virtual]</tt>
</h3> </h3>
Returns a reference to the data associated with <em>abs_name</em>. The Returns a reference to the data associated with <em>abs_name</em>. The
return value remains valid only until the next <a href="#data">data</a>() or <a href="#setData">setData</a>() return value remains valid only until the next <a href="#data">data</a>() or <a href="#setData">setData</a>()
@ -173,7 +173,7 @@ viewed regardless of the runtime encoding and can encode any
Unicode characters without resorting to encoding definitions Unicode characters without resorting to encoding definitions
inside the file. inside the file.
<p> Any file data that is not recognized will be retrieved as a <p> Any file data that is not recognized will be retrieved as a
<a href="qmimesource.html">TQMimeSource</a> providing the "application/octet-stream" mime type, <a href="tqmimesource.html">TQMimeSource</a> providing the "application/octet-stream" mime type,
meaning uninterpreted binary data. meaning uninterpreted binary data.
<p> You can add further extensions or change existing ones with <p> You can add further extensions or change existing ones with
subsequent calls to <a href="#setExtensionType">setExtensionType</a>(). If the extension mechanism subsequent calls to <a href="#setExtensionType">setExtensionType</a>(). If the extension mechanism
@ -183,13 +183,13 @@ more specialized mime-type detection. The same applies if you want
to use the mime source factory to access URL referenced data over to use the mime source factory to access URL referenced data over
a network. a network.
<h3 class=fn>const&nbsp;<a href="qmimesource.html">TQMimeSource</a>&nbsp;* <a name="data-2"></a>TQMimeSourceFactory::data ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;abs_or_rel_name, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;context ) const <h3 class=fn>const&nbsp;<a href="tqmimesource.html">TQMimeSource</a>&nbsp;* <a name="data-2"></a>TQMimeSourceFactory::data ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;abs_or_rel_name, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;context ) const
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> A convenience function. See <a href="#data">data</a>(const <a href="tqstring.html">TQString</a>& abs_name). The <p> A convenience function. See <a href="#data">data</a>(const <a href="tqstring.html">TQString</a>& abs_name). The
file name is given in <em>abs_or_rel_name</em> and the path is in <em>context</em>. file name is given in <em>abs_or_rel_name</em> and the path is in <em>context</em>.
<h3 class=fn><a href="qmimesourcefactory.html">TQMimeSourceFactory</a>&nbsp;* <a name="defaultFactory"></a>TQMimeSourceFactory::defaultFactory ()<tt> [static]</tt> <h3 class=fn><a href="tqmimesourcefactory.html">TQMimeSourceFactory</a>&nbsp;* <a name="defaultFactory"></a>TQMimeSourceFactory::defaultFactory ()<tt> [static]</tt>
</h3> </h3>
Returns the application-wide default mime source factory. This Returns the application-wide default mime source factory. This
factory is used by rich text rendering classes such as factory is used by rich text rendering classes such as
@ -210,13 +210,13 @@ Converts the absolute or relative data item name <em>abs_or_rel_name</em> to an
context (path) of the data item named <em>context</em> (this must be an context (path) of the data item named <em>context</em> (this must be an
absolute name). absolute name).
<h3 class=fn>void <a name="removeFactory"></a>TQMimeSourceFactory::removeFactory ( <a href="qmimesourcefactory.html">TQMimeSourceFactory</a>&nbsp;*&nbsp;f )<tt> [static]</tt> <h3 class=fn>void <a name="removeFactory"></a>TQMimeSourceFactory::removeFactory ( <a href="tqmimesourcefactory.html">TQMimeSourceFactory</a>&nbsp;*&nbsp;f )<tt> [static]</tt>
</h3> </h3>
Removes the mimesource factory <em>f</em> from the list of available Removes the mimesource factory <em>f</em> from the list of available
mimesource factories. mimesource factories.
<p> <p>See also <a href="#addFactory">addFactory</a>(). <p> <p>See also <a href="#addFactory">addFactory</a>().
<h3 class=fn>void <a name="setData"></a>TQMimeSourceFactory::setData ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;abs_name, <a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;data )<tt> [virtual]</tt> <h3 class=fn>void <a name="setData"></a>TQMimeSourceFactory::setData ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;abs_name, <a href="tqmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;data )<tt> [virtual]</tt>
</h3> </h3>
Sets <em>data</em> to be the data item associated with Sets <em>data</em> to be the data item associated with
the absolute name <em>abs_name</em>. Note that the ownership of <em>data</em> is the absolute name <em>abs_name</em>. Note that the ownership of <em>data</em> is
@ -224,7 +224,7 @@ transferred to the factory: do not delete or access the pointer after
passing it to this function. passing it to this function.
<p> Passing 0 for data removes previously stored data. <p> Passing 0 for data removes previously stored data.
<h3 class=fn>void <a name="setDefaultFactory"></a>TQMimeSourceFactory::setDefaultFactory ( <a href="qmimesourcefactory.html">TQMimeSourceFactory</a>&nbsp;*&nbsp;factory )<tt> [static]</tt> <h3 class=fn>void <a name="setDefaultFactory"></a>TQMimeSourceFactory::setDefaultFactory ( <a href="tqmimesourcefactory.html">TQMimeSourceFactory</a>&nbsp;*&nbsp;factory )<tt> [static]</tt>
</h3> </h3>
Sets the default <em>factory</em>, destroying any previously set mime Sets the default <em>factory</em>, destroying any previously set mime
source provider. The ownership of the factory is transferred to source provider. The ownership of the factory is transferred to
@ -260,7 +260,7 @@ Sets <em>text</em> to be the data item associated with the absolute name
<em>abs_name</em>. <em>abs_name</em>.
<p> Equivalent to <a href="#setData">setData</a>(abs_name, new <a href="tqtextdrag.html">TQTextDrag</a>(text)). <p> Equivalent to <a href="#setData">setData</a>(abs_name, new <a href="tqtextdrag.html">TQTextDrag</a>(text)).
<h3 class=fn><a href="qmimesourcefactory.html">TQMimeSourceFactory</a>&nbsp;* <a name="takeDefaultFactory"></a>TQMimeSourceFactory::takeDefaultFactory ()<tt> [static]</tt> <h3 class=fn><a href="tqmimesourcefactory.html">TQMimeSourceFactory</a>&nbsp;* <a name="takeDefaultFactory"></a>TQMimeSourceFactory::takeDefaultFactory ()<tt> [static]</tt>
</h3> </h3>
Sets the <a href="#defaultFactory">defaultFactory</a>() to 0 and returns the previous one. Sets the <a href="#defaultFactory">defaultFactory</a>() to 0 and returns the previous one.

@ -36,7 +36,7 @@ body { background: #ffffff; color: black; }
<p>All the functions in this class are <a href="threads.html#reentrant">reentrant</a> when TQt is built with thread support.</p> <p>All the functions in this class are <a href="threads.html#reentrant">reentrant</a> when TQt is built with thread support.</p>
<p><tt>#include &lt;<a href="tqobject-h.html">tqobject.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqobject-h.html">tqobject.h</a>&gt;</tt>
<p>Inherits <a href="ntqt.html">TQt</a>. <p>Inherits <a href="ntqt.html">TQt</a>.
-<p>Inherited by <a href="ntqaccel.html">TQAccel</a>, <a href="qaccessibleobject.html">TQAccessibleObject</a>, <a href="tqaction.html">TQAction</a>, <a href="ntqapplication.html">TQApplication</a>, <a href="ntqassistantclient.html">TQAssistantClient</a>, <a href="qdatapump.html">TQDataPump</a>, <a href="tqwidget.html">TQWidget</a>, <a href="tqcanvas.html">TQCanvas</a>, <a href="tqstyle.html">TQStyle</a>, <a href="ntqclipboard.html">TQClipboard</a>, <a href="ntqdns.html">TQDns</a>, <a href="ntqlayout.html">TQLayout</a>, <a href="ntqdragobject.html">TQDragObject</a>, <a href="tqeditorfactory.html">TQEditorFactory</a>, <a href="ntqeventloop.html">TQEventLoop</a>, <a href="qfileiconprovider.html">TQFileIconProvider</a>, <a href="ntqnetworkprotocol.html">TQNetworkProtocol</a>, <a href="qnetworkoperation.html">TQNetworkOperation</a>, <a href="qnpinstance.html">TQNPInstance</a>, <a href="tqobjectcleanuphandler.html">TQObjectCleanupHandler</a>, <a href="ntqprocess.html">TQProcess</a>, <a href="ntqserversocket.html">TQServerSocket</a>, <a href="tqsessionmanager.html">TQSessionManager</a>, <a href="ntqsignal.html">TQSignal</a>, <a href="ntqsignalmapper.html">TQSignalMapper</a>, <a href="ntqsocket.html">TQSocket</a>, <a href="ntqsocketnotifier.html">TQSocketNotifier</a>, <a href="ntqsound.html">TQSound</a>, <a href="tqsqldatabase.html">TQSqlDatabase</a>, <a href="tqsqldriver.html">TQSqlDriver</a>, <a href="tqsqlform.html">TQSqlForm</a>, <a href="tqstylesheet.html">TQStyleSheet</a>, <a href="tqtimer.html">TQTimer</a>, <a href="tqtooltipgroup.html">TQToolTipGroup</a>, <a href="ntqtranslator.html">TQTranslator</a>, <a href="ntqurloperator.html">TQUrlOperator</a>, and <a href="ntqvalidator.html">TQValidator</a>. -<p>Inherited by <a href="ntqaccel.html">TQAccel</a>, <a href="qaccessibleobject.html">TQAccessibleObject</a>, <a href="tqaction.html">TQAction</a>, <a href="ntqapplication.html">TQApplication</a>, <a href="ntqassistantclient.html">TQAssistantClient</a>, <a href="qdatapump.html">TQDataPump</a>, <a href="tqwidget.html">TQWidget</a>, <a href="tqcanvas.html">TQCanvas</a>, <a href="tqstyle.html">TQStyle</a>, <a href="ntqclipboard.html">TQClipboard</a>, <a href="ntqdns.html">TQDns</a>, <a href="ntqlayout.html">TQLayout</a>, <a href="tqdragobject.html">TQDragObject</a>, <a href="tqeditorfactory.html">TQEditorFactory</a>, <a href="ntqeventloop.html">TQEventLoop</a>, <a href="qfileiconprovider.html">TQFileIconProvider</a>, <a href="ntqnetworkprotocol.html">TQNetworkProtocol</a>, <a href="qnetworkoperation.html">TQNetworkOperation</a>, <a href="qnpinstance.html">TQNPInstance</a>, <a href="tqobjectcleanuphandler.html">TQObjectCleanupHandler</a>, <a href="ntqprocess.html">TQProcess</a>, <a href="ntqserversocket.html">TQServerSocket</a>, <a href="tqsessionmanager.html">TQSessionManager</a>, <a href="ntqsignal.html">TQSignal</a>, <a href="ntqsignalmapper.html">TQSignalMapper</a>, <a href="ntqsocket.html">TQSocket</a>, <a href="ntqsocketnotifier.html">TQSocketNotifier</a>, <a href="ntqsound.html">TQSound</a>, <a href="tqsqldatabase.html">TQSqlDatabase</a>, <a href="tqsqldriver.html">TQSqlDriver</a>, <a href="tqsqlform.html">TQSqlForm</a>, <a href="tqstylesheet.html">TQStyleSheet</a>, <a href="tqtimer.html">TQTimer</a>, <a href="tqtooltipgroup.html">TQToolTipGroup</a>, <a href="ntqtranslator.html">TQTranslator</a>, <a href="ntqurloperator.html">TQUrlOperator</a>, and <a href="ntqvalidator.html">TQValidator</a>.
<p><a href="tqobject-members.html">List of all member functions.</a> <p><a href="tqobject-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqdragobject.h:92 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqdragobject.h:92 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -32,11 +32,11 @@ body { background: #ffffff; color: black; }
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQStoredDrag</h1> <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQStoredDrag</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="qstoreddrag.html">TQStoredDrag</a>, including inherited members. <a href="tqstoreddrag.html">TQStoredDrag</a>, including inherited members.
<ul> <ul>
<li><a href="qstoreddrag.html#TQStoredDrag">TQStoredDrag</a>() <li><a href="tqstoreddrag.html#TQStoredDrag">TQStoredDrag</a>()
<li><a href="qstoreddrag.html#~TQStoredDrag">~TQStoredDrag</a>() <li><a href="tqstoreddrag.html#~TQStoredDrag">~TQStoredDrag</a>()
<li><a href="tqobject.html#blockSignals">blockSignals</a>() <li><a href="tqobject.html#blockSignals">blockSignals</a>()
<li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>() <li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>()
<li><a href="tqobject.html#child">child</a>() <li><a href="tqobject.html#child">child</a>()
@ -50,16 +50,16 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#destroyed">destroyed</a>() <li><a href="tqobject.html#destroyed">destroyed</a>()
<li><a href="tqobject.html#disconnect">disconnect</a>() <li><a href="tqobject.html#disconnect">disconnect</a>()
<li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>() <li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>()
<li><a href="ntqdragobject.html#drag">drag</a>() <li><a href="tqdragobject.html#drag">drag</a>()
<li><a href="ntqdragobject.html#dragCopy">dragCopy</a>() <li><a href="tqdragobject.html#dragCopy">dragCopy</a>()
<li><a href="ntqdragobject.html#dragLink">dragLink</a>() <li><a href="tqdragobject.html#dragLink">dragLink</a>()
<li><a href="ntqdragobject.html#dragMove">dragMove</a>() <li><a href="tqdragobject.html#dragMove">dragMove</a>()
<li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>() <li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>()
<li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>() <li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>()
<li><a href="qstoreddrag.html#encodedData">encodedData</a>() <li><a href="tqstoreddrag.html#encodedData">encodedData</a>()
<li><a href="tqobject.html#event">event</a>() <li><a href="tqobject.html#event">event</a>()
<li><a href="tqobject.html#eventFilter">eventFilter</a>() <li><a href="tqobject.html#eventFilter">eventFilter</a>()
<li><a href="qmimesource.html#format">format</a>() <li><a href="tqmimesource.html#format">format</a>()
<li><a href="tqobject.html#highPriority">highPriority</a>() <li><a href="tqobject.html#highPriority">highPriority</a>()
<li><a href="tqobject.html#inherits">inherits</a>() <li><a href="tqobject.html#inherits">inherits</a>()
<li><a href="tqobject.html#insertChild">insertChild</a>() <li><a href="tqobject.html#insertChild">insertChild</a>()
@ -73,23 +73,23 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>() <li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>()
<li><a href="tqobject.html#objectTrees">objectTrees</a>() <li><a href="tqobject.html#objectTrees">objectTrees</a>()
<li><a href="tqobject.html#parent">parent</a>() <li><a href="tqobject.html#parent">parent</a>()
<li><a href="ntqdragobject.html#pixmap">pixmap</a>() <li><a href="tqdragobject.html#pixmap">pixmap</a>()
<li><a href="ntqdragobject.html#pixmapHotSpot">pixmapHotSpot</a>() <li><a href="tqdragobject.html#pixmapHotSpot">pixmapHotSpot</a>()
<li><a href="tqobject.html#property">property</a>() <li><a href="tqobject.html#property">property</a>()
<li><a href="qmimesource.html#provides">provides</a>() <li><a href="tqmimesource.html#provides">provides</a>()
<li><a href="tqobject.html#queryList">queryList</a>() <li><a href="tqobject.html#queryList">queryList</a>()
<li><a href="tqobject.html#removeChild">removeChild</a>() <li><a href="tqobject.html#removeChild">removeChild</a>()
<li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>() <li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>()
<li><a href="tqobject.html#sender">sender</a>() <li><a href="tqobject.html#sender">sender</a>()
<li><a href="qmimesource.html#serialNumber">serialNumber</a>() <li><a href="tqmimesource.html#serialNumber">serialNumber</a>()
<li><a href="qstoreddrag.html#setEncodedData">setEncodedData</a>() <li><a href="tqstoreddrag.html#setEncodedData">setEncodedData</a>()
<li><a href="tqobject.html#setName">setName</a>() <li><a href="tqobject.html#setName">setName</a>()
<li><a href="ntqdragobject.html#setPixmap">setPixmap</a>() <li><a href="tqdragobject.html#setPixmap">setPixmap</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>() <li><a href="tqobject.html#setProperty">setProperty</a>()
<li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>() <li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>()
<li><a href="ntqdragobject.html#source">source</a>() <li><a href="tqdragobject.html#source">source</a>()
<li><a href="tqobject.html#startTimer">startTimer</a>() <li><a href="tqobject.html#startTimer">startTimer</a>()
<li><a href="ntqdragobject.html#target">target</a>() <li><a href="tqdragobject.html#target">target</a>()
<li><a href="tqobject.html#timerEvent">timerEvent</a>() <li><a href="tqobject.html#timerEvent">timerEvent</a>()
<li><a href="tqobject.html#tr">tr</a>() <li><a href="tqobject.html#tr">tr</a>()
<li><a href="tqobject.html#trUtf8">trUtf8</a>() <li><a href="tqobject.html#trUtf8">trUtf8</a>()

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/qdragobject.cpp:1202 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqdragobject.cpp:1202 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -33,10 +33,10 @@ body { background: #ffffff; color: black; }
<p>The TQStoredDrag class provides a simple stored-value drag object for arbitrary MIME data. <p>The TQStoredDrag class provides a simple stored-value drag object for arbitrary MIME data.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qdragobject-h.html">ntqdragobject.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqdragobject-h.html">tqdragobject.h</a>&gt;</tt>
<p>Inherits <a href="ntqdragobject.html">TQDragObject</a>. <p>Inherits <a href="tqdragobject.html">TQDragObject</a>.
<p>Inherited by <a href="quridrag.html">TQUriDrag</a> and <a href="qcolordrag.html">TQColorDrag</a>. <p>Inherited by <a href="tquridrag.html">TQUriDrag</a> and <a href="tqcolordrag.html">TQColorDrag</a>.
<p><a href="qstoreddrag-members.html">List of all member functions.</a> <p><a href="tqstoreddrag-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQStoredDrag"><b>TQStoredDrag</b></a> ( const&nbsp;char&nbsp;*&nbsp;mimeType, TQWidget&nbsp;*&nbsp;dragSource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )</li> <li class=fn><a href="#TQStoredDrag"><b>TQStoredDrag</b></a> ( const&nbsp;char&nbsp;*&nbsp;mimeType, TQWidget&nbsp;*&nbsp;dragSource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )</li>
@ -51,7 +51,7 @@ The TQStoredDrag class provides a simple stored-value drag object for arbitrary
<p> <p>
<p> When a block of data has only one representation, you can use a <p> When a block of data has only one representation, you can use a
TQStoredDrag to hold it. TQStoredDrag to hold it.
<p> For more information about drag and drop, see the <a href="ntqdragobject.html">TQDragObject</a> <p> For more information about drag and drop, see the <a href="tqdragobject.html">TQDragObject</a>
class and the <a href="dnd.html">drag and drop documentation</a>. class and the <a href="dnd.html">drag and drop documentation</a>.
<p>See also <a href="draganddrop.html">Drag And Drop Classes</a>. <p>See also <a href="draganddrop.html">Drag And Drop Classes</a>.
@ -59,7 +59,7 @@ class and the <a href="dnd.html">drag and drop documentation</a>.
<h3 class=fn><a name="TQStoredDrag"></a>TQStoredDrag::TQStoredDrag ( const&nbsp;char&nbsp;*&nbsp;mimeType, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;dragSource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 ) <h3 class=fn><a name="TQStoredDrag"></a>TQStoredDrag::TQStoredDrag ( const&nbsp;char&nbsp;*&nbsp;mimeType, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;dragSource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )
</h3> </h3>
Constructs a TQStoredDrag. The <em>dragSource</em> and <em>name</em> are passed Constructs a TQStoredDrag. The <em>dragSource</em> and <em>name</em> are passed
to the <a href="ntqdragobject.html">TQDragObject</a> constructor, and the format is set to <em>mimeType</em>. to the <a href="tqdragobject.html">TQDragObject</a> constructor, and the format is set to <em>mimeType</em>.
<p> The data will be unset. Use <a href="#setEncodedData">setEncodedData</a>() to set it. <p> The data will be unset. Use <a href="#setEncodedData">setEncodedData</a>() to set it.
<h3 class=fn><a name="~TQStoredDrag"></a>TQStoredDrag::~TQStoredDrag () <h3 class=fn><a name="~TQStoredDrag"></a>TQStoredDrag::~TQStoredDrag ()
@ -71,7 +71,7 @@ Destroys the drag object and frees up all allocated resources.
Returns the stored data. <em>m</em> contains the data's format. Returns the stored data. <em>m</em> contains the data's format.
<p> <p>See also <a href="#setEncodedData">setEncodedData</a>(). <p> <p>See also <a href="#setEncodedData">setEncodedData</a>().
<p>Reimplemented from <a href="qmimesource.html#encodedData">TQMimeSource</a>. <p>Reimplemented from <a href="tqmimesource.html#encodedData">TQMimeSource</a>.
<h3 class=fn>void <a name="setEncodedData"></a>TQStoredDrag::setEncodedData ( const&nbsp;<a href="qbytearray.html">TQByteArray</a>&nbsp;&amp;&nbsp;encodedData )<tt> [virtual]</tt> <h3 class=fn>void <a name="setEncodedData"></a>TQStoredDrag::setEncodedData ( const&nbsp;<a href="qbytearray.html">TQByteArray</a>&nbsp;&amp;&nbsp;encodedData )<tt> [virtual]</tt>
</h3> </h3>
Sets the encoded data of this drag object to <em>encodedData</em>. The Sets the encoded data of this drag object to <em>encodedData</em>. The

@ -94,7 +94,7 @@ popup similar to <a href="ntqwhatsthis.html">TQWhatsThis</a>. Note that links wi
in documents with <tt>&lt;qt type="detail"&gt;...&lt;/qt&gt;</tt>. in documents with <tt>&lt;qt type="detail"&gt;...&lt;/qt&gt;</tt>.
<li> <tt>bgcolor</tt> -- The background color, for example <tt>bgcolor="yellow"</tt> or <tt>bgcolor="#0000FF"</tt>. <li> <tt>bgcolor</tt> -- The background color, for example <tt>bgcolor="yellow"</tt> or <tt>bgcolor="#0000FF"</tt>.
<li> <tt>background</tt> -- The background pixmap, for example <tt>background="granite.xpm"</tt>. The pixmap name will be resolved <li> <tt>background</tt> -- The background pixmap, for example <tt>background="granite.xpm"</tt>. The pixmap name will be resolved
by a <a href="qmimesourcefactory.html">TQMimeSourceFactory</a>(). by a <a href="tqmimesourcefactory.html">TQMimeSourceFactory</a>().
<li> <tt>text</tt> -- The default text color, for example <tt>text="red"</tt>. <li> <tt>text</tt> -- The default text color, for example <tt>text="red"</tt>.
<li> <tt>link</tt> -- The link color, for example <tt>link="green"</tt>. <li> <tt>link</tt> -- The link color, for example <tt>link="green"</tt>.
</ul> </ul>
@ -354,7 +354,7 @@ deleting any style sheet previously set. The ownership is
transferred to TQStyleSheet. transferred to TQStyleSheet.
<p> <p>See also <a href="#defaultSheet">defaultSheet</a>(). <p> <p>See also <a href="#defaultSheet">defaultSheet</a>().
<h3 class=fn>TQTextCustomItem * <a name="tag"></a>TQStyleSheet::tag ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;name, const&nbsp;<a href="tqmap.html">TQMap</a>&lt;TQString,&nbsp;TQString&gt;&nbsp;&amp;&nbsp;attr, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;context, const&nbsp;<a href="qmimesourcefactory.html">TQMimeSourceFactory</a>&nbsp;&amp;&nbsp;factory, bool&nbsp;emptyTag, TQTextDocument&nbsp;*&nbsp;doc ) const<tt> [virtual]</tt> <h3 class=fn>TQTextCustomItem * <a name="tag"></a>TQStyleSheet::tag ( const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;name, const&nbsp;<a href="tqmap.html">TQMap</a>&lt;TQString,&nbsp;TQString&gt;&nbsp;&amp;&nbsp;attr, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;context, const&nbsp;<a href="tqmimesourcefactory.html">TQMimeSourceFactory</a>&nbsp;&amp;&nbsp;factory, bool&nbsp;emptyTag, TQTextDocument&nbsp;*&nbsp;doc ) const<tt> [virtual]</tt>
</h3> </h3>
<p><b>This function is under development and is subject to change.</b> <p><b>This function is under development and is subject to change.</b>
<p> Generates an internal object for the tag called <em>name</em>, given the <p> Generates an internal object for the tag called <em>name</em>, given the
@ -364,9 +364,9 @@ the mime source factory <em>factory</em>.
to look for relative links. This becomes important if the text to look for relative links. This becomes important if the text
contains relative references, for example within image tags. contains relative references, for example within image tags.
<a href="ntqsimplerichtext.html">TQSimpleRichText</a> always uses the default mime source factory (see <a href="ntqsimplerichtext.html">TQSimpleRichText</a> always uses the default mime source factory (see
<a href="qmimesourcefactory.html#defaultFactory">TQMimeSourceFactory::defaultFactory</a>()) to resolve these <a href="tqmimesourcefactory.html#defaultFactory">TQMimeSourceFactory::defaultFactory</a>()) to resolve these
references. The context will then be used to calculate the references. The context will then be used to calculate the
absolute path. See <a href="qmimesourcefactory.html#makeAbsolute">TQMimeSourceFactory::makeAbsolute</a>() for details. absolute path. See <a href="tqmimesourcefactory.html#makeAbsolute">TQMimeSourceFactory::makeAbsolute</a>() for details.
<p> <em>emptyTag</em> and <em>doc</em> are for internal use only. <p> <em>emptyTag</em> and <em>doc</em> are for internal use only.
<p> This function should not be used in application code. <p> This function should not be used in application code.

@ -95,9 +95,9 @@ use to implement Back and Forward buttons. The <a href="#home">home</a>() slot s
the text to the very first document displayed. The <a href="#linkClicked">linkClicked</a>() the text to the very first document displayed. The <a href="#linkClicked">linkClicked</a>()
signal is emitted when the user clicks a link. signal is emitted when the user clicks a link.
<p> By using <a href="tqtextedit.html#setMimeSourceFactory">TQTextEdit::setMimeSourceFactory</a>() you can provide your <p> By using <a href="tqtextedit.html#setMimeSourceFactory">TQTextEdit::setMimeSourceFactory</a>() you can provide your
own subclass of <a href="qmimesourcefactory.html">TQMimeSourceFactory</a>. This makes it possible to own subclass of <a href="tqmimesourcefactory.html">TQMimeSourceFactory</a>. This makes it possible to
access data from anywhere, for example from a network or from a access data from anywhere, for example from a network or from a
database. See <a href="qmimesourcefactory.html#data">TQMimeSourceFactory::data</a>() for details. database. See <a href="tqmimesourcefactory.html#data">TQMimeSourceFactory::data</a>() for details.
<p> If you intend using the mime factory to read the data directly <p> If you intend using the mime factory to read the data directly
from the file system, you may have to specify the encoding for the from the file system, you may have to specify the encoding for the
file extension you are using. For example: file extension you are using. For example:
@ -243,7 +243,7 @@ source factory, you must ensure that the factory knows about the
encoding of specified files; otherwise no data will be available. encoding of specified files; otherwise no data will be available.
The default factory handles a couple of common file extensions The default factory handles a couple of common file extensions
such as <tt>*.html</tt> and <tt>*.txt</tt> with reasonable defaults. See such as <tt>*.html</tt> and <tt>*.txt</tt> with reasonable defaults. See
<a href="qmimesourcefactory.html#data">TQMimeSourceFactory::data</a>() for details. <a href="tqmimesourcefactory.html#data">TQMimeSourceFactory::data</a>() for details.
<p>Set this property's value with <a href="#setSource">setSource</a>() and get this property's value with <a href="#source">source</a>(). <p>Set this property's value with <a href="#setSource">setSource</a>() and get this property's value with <a href="#source">source</a>().
<h3 class=fn>int <a name="undoDepth-prop"></a>undoDepth</h3> <h3 class=fn>int <a name="undoDepth-prop"></a>undoDepth</h3>

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqdragobject.h:113 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqdragobject.h:113 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -52,16 +52,16 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#destroyed">destroyed</a>() <li><a href="tqobject.html#destroyed">destroyed</a>()
<li><a href="tqobject.html#disconnect">disconnect</a>() <li><a href="tqobject.html#disconnect">disconnect</a>()
<li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>() <li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>()
<li><a href="ntqdragobject.html#drag">drag</a>() <li><a href="tqdragobject.html#drag">drag</a>()
<li><a href="ntqdragobject.html#dragCopy">dragCopy</a>() <li><a href="tqdragobject.html#dragCopy">dragCopy</a>()
<li><a href="ntqdragobject.html#dragLink">dragLink</a>() <li><a href="tqdragobject.html#dragLink">dragLink</a>()
<li><a href="ntqdragobject.html#dragMove">dragMove</a>() <li><a href="tqdragobject.html#dragMove">dragMove</a>()
<li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>() <li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>()
<li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>() <li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>()
<li><a href="qmimesource.html#encodedData">encodedData</a>() <li><a href="tqmimesource.html#encodedData">encodedData</a>()
<li><a href="tqobject.html#event">event</a>() <li><a href="tqobject.html#event">event</a>()
<li><a href="tqobject.html#eventFilter">eventFilter</a>() <li><a href="tqobject.html#eventFilter">eventFilter</a>()
<li><a href="qmimesource.html#format">format</a>() <li><a href="tqmimesource.html#format">format</a>()
<li><a href="tqobject.html#highPriority">highPriority</a>() <li><a href="tqobject.html#highPriority">highPriority</a>()
<li><a href="tqobject.html#inherits">inherits</a>() <li><a href="tqobject.html#inherits">inherits</a>()
<li><a href="tqobject.html#insertChild">insertChild</a>() <li><a href="tqobject.html#insertChild">insertChild</a>()
@ -75,24 +75,24 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>() <li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>()
<li><a href="tqobject.html#objectTrees">objectTrees</a>() <li><a href="tqobject.html#objectTrees">objectTrees</a>()
<li><a href="tqobject.html#parent">parent</a>() <li><a href="tqobject.html#parent">parent</a>()
<li><a href="ntqdragobject.html#pixmap">pixmap</a>() <li><a href="tqdragobject.html#pixmap">pixmap</a>()
<li><a href="ntqdragobject.html#pixmapHotSpot">pixmapHotSpot</a>() <li><a href="tqdragobject.html#pixmapHotSpot">pixmapHotSpot</a>()
<li><a href="tqobject.html#property">property</a>() <li><a href="tqobject.html#property">property</a>()
<li><a href="qmimesource.html#provides">provides</a>() <li><a href="tqmimesource.html#provides">provides</a>()
<li><a href="tqobject.html#queryList">queryList</a>() <li><a href="tqobject.html#queryList">queryList</a>()
<li><a href="tqobject.html#removeChild">removeChild</a>() <li><a href="tqobject.html#removeChild">removeChild</a>()
<li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>() <li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>()
<li><a href="tqobject.html#sender">sender</a>() <li><a href="tqobject.html#sender">sender</a>()
<li><a href="qmimesource.html#serialNumber">serialNumber</a>() <li><a href="tqmimesource.html#serialNumber">serialNumber</a>()
<li><a href="tqobject.html#setName">setName</a>() <li><a href="tqobject.html#setName">setName</a>()
<li><a href="ntqdragobject.html#setPixmap">setPixmap</a>() <li><a href="tqdragobject.html#setPixmap">setPixmap</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>() <li><a href="tqobject.html#setProperty">setProperty</a>()
<li><a href="tqtextdrag.html#setSubtype">setSubtype</a>() <li><a href="tqtextdrag.html#setSubtype">setSubtype</a>()
<li><a href="tqtextdrag.html#setText">setText</a>() <li><a href="tqtextdrag.html#setText">setText</a>()
<li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>() <li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>()
<li><a href="ntqdragobject.html#source">source</a>() <li><a href="tqdragobject.html#source">source</a>()
<li><a href="tqobject.html#startTimer">startTimer</a>() <li><a href="tqobject.html#startTimer">startTimer</a>()
<li><a href="ntqdragobject.html#target">target</a>() <li><a href="tqdragobject.html#target">target</a>()
<li><a href="tqobject.html#timerEvent">timerEvent</a>() <li><a href="tqobject.html#timerEvent">timerEvent</a>()
<li><a href="tqobject.html#tr">tr</a>() <li><a href="tqobject.html#tr">tr</a>()
<li><a href="tqobject.html#trUtf8">trUtf8</a>() <li><a href="tqobject.html#trUtf8">trUtf8</a>()

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/qdragobject.cpp:676 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqdragobject.cpp:676 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -34,8 +34,8 @@ body { background: #ffffff; color: black; }
<p>The TQTextDrag class is a drag and drop object for <p>The TQTextDrag class is a drag and drop object for
transferring plain and Unicode text. transferring plain and Unicode text.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qdragobject-h.html">ntqdragobject.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqdragobject-h.html">tqdragobject.h</a>&gt;</tt>
<p>Inherits <a href="ntqdragobject.html">TQDragObject</a>. <p>Inherits <a href="tqdragobject.html">TQDragObject</a>.
<p><a href="tqtextdrag-members.html">List of all member functions.</a> <p><a href="tqtextdrag-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
@ -62,7 +62,7 @@ transferring plain and Unicode text.
the newlines according to the runtime environment, e.g. LF on Unix, the newlines according to the runtime environment, e.g. LF on Unix,
and CRLF on Windows. and CRLF on Windows.
<p> TQt provides no built-in mechanism for delivering only a single-line. <p> TQt provides no built-in mechanism for delivering only a single-line.
<p> For more information about drag and drop, see the <a href="ntqdragobject.html">TQDragObject</a> class <p> For more information about drag and drop, see the <a href="tqdragobject.html">TQDragObject</a> class
and the <a href="dnd.html">drag and drop documentation</a>. and the <a href="dnd.html">drag and drop documentation</a>.
<p>See also <a href="draganddrop.html">Drag And Drop Classes</a>. <p>See also <a href="draganddrop.html">Drag And Drop Classes</a>.
@ -81,21 +81,21 @@ drag source; <em>name</em> is the object name.
Destroys the text drag object and frees up all allocated Destroys the text drag object and frees up all allocated
resources. resources.
<h3 class=fn>bool <a name="canDecode"></a>TQTextDrag::canDecode ( const&nbsp;<a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e )<tt> [static]</tt> <h3 class=fn>bool <a name="canDecode"></a>TQTextDrag::canDecode ( const&nbsp;<a href="tqmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e )<tt> [static]</tt>
</h3> </h3>
Returns TRUE if the information in <em>e</em> can be decoded into a Returns TRUE if the information in <em>e</em> can be decoded into a
<a href="tqstring.html">TQString</a>; otherwise returns FALSE. <a href="tqstring.html">TQString</a>; otherwise returns FALSE.
<p> <p>See also <a href="#decode">decode</a>(). <p> <p>See also <a href="#decode">decode</a>().
<p>Example: <a href="simple_dd-example.html#x2827">iconview/simple_dd/main.cpp</a>. <p>Example: <a href="simple_dd-example.html#x2827">iconview/simple_dd/main.cpp</a>.
<h3 class=fn>bool <a name="decode"></a>TQTextDrag::decode ( const&nbsp;<a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e, <a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;str )<tt> [static]</tt> <h3 class=fn>bool <a name="decode"></a>TQTextDrag::decode ( const&nbsp;<a href="tqmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e, <a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;str )<tt> [static]</tt>
</h3> </h3>
Attempts to decode the dropped information in <em>e</em> into <em>str</em>. Attempts to decode the dropped information in <em>e</em> into <em>str</em>.
Returns TRUE if successful; otherwise returns FALSE. Returns TRUE if successful; otherwise returns FALSE.
<p> <p>See also <a href="#canDecode">canDecode</a>(). <p> <p>See also <a href="#canDecode">canDecode</a>().
<p>Example: <a href="simple_dd-example.html#x2828">iconview/simple_dd/main.cpp</a>. <p>Example: <a href="simple_dd-example.html#x2828">iconview/simple_dd/main.cpp</a>.
<h3 class=fn>bool <a name="decode-2"></a>TQTextDrag::decode ( const&nbsp;<a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e, <a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;str, <a href="ntqcstring.html">TQCString</a>&nbsp;&amp;&nbsp;subtype )<tt> [static]</tt> <h3 class=fn>bool <a name="decode-2"></a>TQTextDrag::decode ( const&nbsp;<a href="tqmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e, <a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;str, <a href="ntqcstring.html">TQCString</a>&nbsp;&amp;&nbsp;subtype )<tt> [static]</tt>
</h3> </h3>
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Attempts to decode the dropped information in <em>e</em> into <em>str</em>. <p> Attempts to decode the dropped information in <em>e</em> into <em>str</em>.

@ -298,7 +298,7 @@ is the format of the selected text if any.
<li> <em>current paragraph</em> -- the paragraph which contains the <li> <em>current paragraph</em> -- the paragraph which contains the
cursor. cursor.
</ul> </ul>
<p> TQTextEdit can display images (using <a href="qmimesourcefactory.html">TQMimeSourceFactory</a>), lists and <p> TQTextEdit can display images (using <a href="tqmimesourcefactory.html">TQMimeSourceFactory</a>), lists and
tables. If the text is too large to view within the text edit's tables. If the text is too large to view within the text edit's
viewport, scrollbars will appear. The text edit can load both viewport, scrollbars will appear. The text edit can load both
plain text and HTML files (a subset of HTML 3.2 and 4). The plain text and HTML files (a subset of HTML 3.2 and 4). The
@ -307,7 +307,7 @@ rendering style and the set of valid tags are defined by a
style sheet. Change the style sheet with <a href="#setStyleSheet">setStyleSheet</a>(); see style sheet. Change the style sheet with <a href="#setStyleSheet">setStyleSheet</a>(); see
<a href="tqstylesheet.html">TQStyleSheet</a> for details. The images identified by image tags are <a href="tqstylesheet.html">TQStyleSheet</a> for details. The images identified by image tags are
displayed if they can be interpreted using the text edit's displayed if they can be interpreted using the text edit's
<a href="qmimesourcefactory.html">TQMimeSourceFactory</a>; see <a href="#setMimeSourceFactory">setMimeSourceFactory</a>(). <a href="tqmimesourcefactory.html">TQMimeSourceFactory</a>; see <a href="#setMimeSourceFactory">setMimeSourceFactory</a>().
<p> If you want a text browser with more navigation use <a href="tqtextbrowser.html">TQTextBrowser</a>. <p> If you want a text browser with more navigation use <a href="tqtextbrowser.html">TQTextBrowser</a>.
If you just need to display a small piece of rich text use <a href="ntqlabel.html">TQLabel</a> If you just need to display a small piece of rich text use <a href="ntqlabel.html">TQLabel</a>
or <a href="ntqsimplerichtext.html">TQSimpleRichText</a>. or <a href="ntqsimplerichtext.html">TQSimpleRichText</a>.
@ -410,7 +410,7 @@ navigation, and text may only be selected with the mouse:
example, the <a href="#documentTitle">documentTitle</a>() function will return the text from example, the <a href="#documentTitle">documentTitle</a>() function will return the text from
within HTML <tt>&lt;title&gt;</tt> tags. within HTML <tt>&lt;title&gt;</tt> tags.
<p> The text displayed in a text edit has a <em>context</em>. The context is <p> The text displayed in a text edit has a <em>context</em>. The context is
a path which the text edit's <a href="qmimesourcefactory.html">TQMimeSourceFactory</a> uses to resolve a path which the text edit's <a href="tqmimesourcefactory.html">TQMimeSourceFactory</a> uses to resolve
the locations of files and images. It is passed to the the locations of files and images. It is passed to the
<a href="#mimeSourceFactory">mimeSourceFactory</a>() when quering data. (See TQTextEdit() and <a href="#mimeSourceFactory">mimeSourceFactory</a>() when quering data. (See TQTextEdit() and
<a href="#context">context</a>().) <a href="#context">context</a>().)
@ -648,7 +648,7 @@ spaces or newlines if possible. Break it anywhere otherwise.
</h3> </h3>
Constructs a TQTextEdit called <em>name</em>, with parent <em>parent</em>. The Constructs a TQTextEdit called <em>name</em>, with parent <em>parent</em>. The
text edit will display the text <em>text</em> using context <em>context</em>. text edit will display the text <em>text</em> using context <em>context</em>.
<p> The <em>context</em> is a path which the text edit's <a href="qmimesourcefactory.html">TQMimeSourceFactory</a> <p> The <em>context</em> is a path which the text edit's <a href="tqmimesourcefactory.html">TQMimeSourceFactory</a>
uses to resolve the locations of files and images. It is passed to uses to resolve the locations of files and images. It is passed to
the <a href="#mimeSourceFactory">mimeSourceFactory</a>() when quering data. the <a href="#mimeSourceFactory">mimeSourceFactory</a>() when quering data.
<p> For example if the text contains an image tag, <p> For example if the text contains an image tag,
@ -732,7 +732,7 @@ Returns the color of the current format.
<h3 class=fn><a href="tqstring.html">TQString</a> <a name="context"></a>TQTextEdit::context () const <h3 class=fn><a href="tqstring.html">TQString</a> <a name="context"></a>TQTextEdit::context () const
</h3> </h3>
Returns the context of the text edit. The context is a path which Returns the context of the text edit. The context is a path which
the text edit's <a href="qmimesourcefactory.html">TQMimeSourceFactory</a> uses to resolve the locations the text edit's <a href="tqmimesourcefactory.html">TQMimeSourceFactory</a> uses to resolve the locations
of files and images. of files and images.
<p> <p>See also <a href="#text-prop">text</a>. <p> <p>See also <a href="#text-prop">text</a>.
@ -1022,9 +1022,9 @@ See the <a href="tqtextedit.html#linkUnderline-prop">"linkUnderline"</a> propert
Returns the maximum number of lines TQTextEdit can hold in <a href="ntqt.html#TextFormat-enum">LogText</a> mode. By default the number of lines is unlimited, which Returns the maximum number of lines TQTextEdit can hold in <a href="ntqt.html#TextFormat-enum">LogText</a> mode. By default the number of lines is unlimited, which
is signified by a value of -1. is signified by a value of -1.
<h3 class=fn><a href="qmimesourcefactory.html">TQMimeSourceFactory</a>&nbsp;* <a name="mimeSourceFactory"></a>TQTextEdit::mimeSourceFactory () const <h3 class=fn><a href="tqmimesourcefactory.html">TQMimeSourceFactory</a>&nbsp;* <a name="mimeSourceFactory"></a>TQTextEdit::mimeSourceFactory () const
</h3> </h3>
Returns the <a href="qmimesourcefactory.html">TQMimeSourceFactory</a> which is being used by this text Returns the <a href="tqmimesourcefactory.html">TQMimeSourceFactory</a> which is being used by this text
edit. edit.
<p> <p>See also <a href="#setMimeSourceFactory">setMimeSourceFactory</a>(). <p> <p>See also <a href="#setMimeSourceFactory">setMimeSourceFactory</a>().
@ -1230,10 +1230,10 @@ when the maximum log lines is set. When lines are removed from the
top of the buffer it could result in an unbalanced tag pair, i.e. top of the buffer it could result in an unbalanced tag pair, i.e.
the left formatting tag is removed before the right one. the left formatting tag is removed before the right one.
<h3 class=fn>void <a name="setMimeSourceFactory"></a>TQTextEdit::setMimeSourceFactory ( <a href="qmimesourcefactory.html">TQMimeSourceFactory</a>&nbsp;*&nbsp;factory )<tt> [virtual slot]</tt> <h3 class=fn>void <a name="setMimeSourceFactory"></a>TQTextEdit::setMimeSourceFactory ( <a href="tqmimesourcefactory.html">TQMimeSourceFactory</a>&nbsp;*&nbsp;factory )<tt> [virtual slot]</tt>
</h3> </h3>
Sets the text edit's mimesource factory to <em>factory</em>. See Sets the text edit's mimesource factory to <em>factory</em>. See
<a href="qmimesourcefactory.html">TQMimeSourceFactory</a> for further details. <a href="tqmimesourcefactory.html">TQMimeSourceFactory</a> for further details.
<p> <p>See also <a href="#mimeSourceFactory">mimeSourceFactory</a>(). <p> <p>See also <a href="#mimeSourceFactory">mimeSourceFactory</a>().
<h3 class=fn>void <a name="setModified"></a>TQTextEdit::setModified ( bool&nbsp;m )<tt> [virtual slot]</tt> <h3 class=fn>void <a name="setModified"></a>TQTextEdit::setModified ( bool&nbsp;m )<tt> [virtual slot]</tt>
@ -1307,7 +1307,7 @@ i.e. the text edit auto-detects the format from <em>text</em>.
<p> For rich text the rendering style and available tags are defined <p> For rich text the rendering style and available tags are defined
by a <a href="#styleSheet">styleSheet</a>(); see <a href="tqstylesheet.html">TQStyleSheet</a> for details. by a <a href="#styleSheet">styleSheet</a>(); see <a href="tqstylesheet.html">TQStyleSheet</a> for details.
<p> The optional <em>context</em> is a path which the text edit's <p> The optional <em>context</em> is a path which the text edit's
<a href="qmimesourcefactory.html">TQMimeSourceFactory</a> uses to resolve the locations of files and <a href="tqmimesourcefactory.html">TQMimeSourceFactory</a> uses to resolve the locations of files and
images. (See <a href="#TQTextEdit">TQTextEdit::TQTextEdit</a>().) It is passed to the text images. (See <a href="#TQTextEdit">TQTextEdit::TQTextEdit</a>().) It is passed to the text
edit's TQMimeSourceFactory when quering data. edit's TQMimeSourceFactory when quering data.
<p> Note that the undo/redo history is cleared by this function. <p> Note that the undo/redo history is cleared by this function.

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqdragobject.h:167 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqdragobject.h:167 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -32,13 +32,13 @@ body { background: #ffffff; color: black; }
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQUriDrag</h1> <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQUriDrag</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="quridrag.html">TQUriDrag</a>, including inherited members. <a href="tquridrag.html">TQUriDrag</a>, including inherited members.
<ul> <ul>
<li><a href="quridrag.html#TQUriDrag">TQUriDrag</a>() <li><a href="tquridrag.html#TQUriDrag">TQUriDrag</a>()
<li><a href="quridrag.html#~TQUriDrag">~TQUriDrag</a>() <li><a href="tquridrag.html#~TQUriDrag">~TQUriDrag</a>()
<li><a href="tqobject.html#blockSignals">blockSignals</a>() <li><a href="tqobject.html#blockSignals">blockSignals</a>()
<li><a href="quridrag.html#canDecode">canDecode</a>() <li><a href="tquridrag.html#canDecode">canDecode</a>()
<li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>() <li><a href="tqobject.html#checkConnectArgs">checkConnectArgs</a>()
<li><a href="tqobject.html#child">child</a>() <li><a href="tqobject.html#child">child</a>()
<li><a href="tqobject.html#childEvent">childEvent</a>() <li><a href="tqobject.html#childEvent">childEvent</a>()
@ -47,23 +47,23 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#connect">connect</a>() <li><a href="tqobject.html#connect">connect</a>()
<li><a href="tqobject.html#connectNotify">connectNotify</a>() <li><a href="tqobject.html#connectNotify">connectNotify</a>()
<li><a href="tqobject.html#customEvent">customEvent</a>() <li><a href="tqobject.html#customEvent">customEvent</a>()
<li><a href="quridrag.html#decode">decode</a>() <li><a href="tquridrag.html#decode">decode</a>()
<li><a href="quridrag.html#decodeLocalFiles">decodeLocalFiles</a>() <li><a href="tquridrag.html#decodeLocalFiles">decodeLocalFiles</a>()
<li><a href="quridrag.html#decodeToUnicodeUris">decodeToUnicodeUris</a>() <li><a href="tquridrag.html#decodeToUnicodeUris">decodeToUnicodeUris</a>()
<li><a href="tqobject.html#deleteLater">deleteLater</a>() <li><a href="tqobject.html#deleteLater">deleteLater</a>()
<li><a href="tqobject.html#destroyed">destroyed</a>() <li><a href="tqobject.html#destroyed">destroyed</a>()
<li><a href="tqobject.html#disconnect">disconnect</a>() <li><a href="tqobject.html#disconnect">disconnect</a>()
<li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>() <li><a href="tqobject.html#disconnectNotify">disconnectNotify</a>()
<li><a href="ntqdragobject.html#drag">drag</a>() <li><a href="tqdragobject.html#drag">drag</a>()
<li><a href="ntqdragobject.html#dragCopy">dragCopy</a>() <li><a href="tqdragobject.html#dragCopy">dragCopy</a>()
<li><a href="ntqdragobject.html#dragLink">dragLink</a>() <li><a href="tqdragobject.html#dragLink">dragLink</a>()
<li><a href="ntqdragobject.html#dragMove">dragMove</a>() <li><a href="tqdragobject.html#dragMove">dragMove</a>()
<li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>() <li><a href="tqobject.html#dumpObjectInfo">dumpObjectInfo</a>()
<li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>() <li><a href="tqobject.html#dumpObjectTree">dumpObjectTree</a>()
<li><a href="qstoreddrag.html#encodedData">encodedData</a>() <li><a href="tqstoreddrag.html#encodedData">encodedData</a>()
<li><a href="tqobject.html#event">event</a>() <li><a href="tqobject.html#event">event</a>()
<li><a href="tqobject.html#eventFilter">eventFilter</a>() <li><a href="tqobject.html#eventFilter">eventFilter</a>()
<li><a href="qmimesource.html#format">format</a>() <li><a href="tqmimesource.html#format">format</a>()
<li><a href="tqobject.html#highPriority">highPriority</a>() <li><a href="tqobject.html#highPriority">highPriority</a>()
<li><a href="tqobject.html#inherits">inherits</a>() <li><a href="tqobject.html#inherits">inherits</a>()
<li><a href="tqobject.html#insertChild">insertChild</a>() <li><a href="tqobject.html#insertChild">insertChild</a>()
@ -72,39 +72,39 @@ body { background: #ffffff; color: black; }
<li><a href="tqobject.html#isWidgetType">isWidgetType</a>() <li><a href="tqobject.html#isWidgetType">isWidgetType</a>()
<li><a href="tqobject.html#killTimer">killTimer</a>() <li><a href="tqobject.html#killTimer">killTimer</a>()
<li><a href="tqobject.html#killTimers">killTimers</a>() <li><a href="tqobject.html#killTimers">killTimers</a>()
<li><a href="quridrag.html#localFileToUri">localFileToUri</a>() <li><a href="tquridrag.html#localFileToUri">localFileToUri</a>()
<li><a href="tqobject.html#metaObject">metaObject</a>() <li><a href="tqobject.html#metaObject">metaObject</a>()
<li><a href="tqobject.html#name">name</a>() <li><a href="tqobject.html#name">name</a>()
<li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>() <li><a href="tqobject.html#normalizeSignalSlot">normalizeSignalSlot</a>()
<li><a href="tqobject.html#objectTrees">objectTrees</a>() <li><a href="tqobject.html#objectTrees">objectTrees</a>()
<li><a href="tqobject.html#parent">parent</a>() <li><a href="tqobject.html#parent">parent</a>()
<li><a href="ntqdragobject.html#pixmap">pixmap</a>() <li><a href="tqdragobject.html#pixmap">pixmap</a>()
<li><a href="ntqdragobject.html#pixmapHotSpot">pixmapHotSpot</a>() <li><a href="tqdragobject.html#pixmapHotSpot">pixmapHotSpot</a>()
<li><a href="tqobject.html#property">property</a>() <li><a href="tqobject.html#property">property</a>()
<li><a href="qmimesource.html#provides">provides</a>() <li><a href="tqmimesource.html#provides">provides</a>()
<li><a href="tqobject.html#queryList">queryList</a>() <li><a href="tqobject.html#queryList">queryList</a>()
<li><a href="tqobject.html#removeChild">removeChild</a>() <li><a href="tqobject.html#removeChild">removeChild</a>()
<li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>() <li><a href="tqobject.html#removeEventFilter">removeEventFilter</a>()
<li><a href="tqobject.html#sender">sender</a>() <li><a href="tqobject.html#sender">sender</a>()
<li><a href="qmimesource.html#serialNumber">serialNumber</a>() <li><a href="tqmimesource.html#serialNumber">serialNumber</a>()
<li><a href="qstoreddrag.html#setEncodedData">setEncodedData</a>() <li><a href="tqstoreddrag.html#setEncodedData">setEncodedData</a>()
<li><a href="quridrag.html#setFileNames">setFileNames</a>() <li><a href="tquridrag.html#setFileNames">setFileNames</a>()
<li><a href="quridrag.html#setFilenames">setFilenames</a>() <li><a href="tquridrag.html#setFilenames">setFilenames</a>()
<li><a href="tqobject.html#setName">setName</a>() <li><a href="tqobject.html#setName">setName</a>()
<li><a href="ntqdragobject.html#setPixmap">setPixmap</a>() <li><a href="tqdragobject.html#setPixmap">setPixmap</a>()
<li><a href="tqobject.html#setProperty">setProperty</a>() <li><a href="tqobject.html#setProperty">setProperty</a>()
<li><a href="quridrag.html#setUnicodeUris">setUnicodeUris</a>() <li><a href="tquridrag.html#setUnicodeUris">setUnicodeUris</a>()
<li><a href="quridrag.html#setUris">setUris</a>() <li><a href="tquridrag.html#setUris">setUris</a>()
<li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>() <li><a href="tqobject.html#signalsBlocked">signalsBlocked</a>()
<li><a href="ntqdragobject.html#source">source</a>() <li><a href="tqdragobject.html#source">source</a>()
<li><a href="tqobject.html#startTimer">startTimer</a>() <li><a href="tqobject.html#startTimer">startTimer</a>()
<li><a href="ntqdragobject.html#target">target</a>() <li><a href="tqdragobject.html#target">target</a>()
<li><a href="tqobject.html#timerEvent">timerEvent</a>() <li><a href="tqobject.html#timerEvent">timerEvent</a>()
<li><a href="tqobject.html#tr">tr</a>() <li><a href="tqobject.html#tr">tr</a>()
<li><a href="tqobject.html#trUtf8">trUtf8</a>() <li><a href="tqobject.html#trUtf8">trUtf8</a>()
<li><a href="quridrag.html#unicodeUriToUri">unicodeUriToUri</a>() <li><a href="tquridrag.html#unicodeUriToUri">unicodeUriToUri</a>()
<li><a href="quridrag.html#uriToLocalFile">uriToLocalFile</a>() <li><a href="tquridrag.html#uriToLocalFile">uriToLocalFile</a>()
<li><a href="quridrag.html#uriToUnicodeUri">uriToUnicodeUri</a>() <li><a href="tquridrag.html#uriToUnicodeUri">uriToUnicodeUri</a>()
</ul> </ul>
<!-- eof --> <!-- eof -->
<p><address><hr><div align=center> <p><address><hr><div align=center>

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/qdragobject.cpp:1278 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqdragobject.cpp:1278 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -33,9 +33,9 @@ body { background: #ffffff; color: black; }
<p>The TQUriDrag class provides a drag object for a list of URI references. <p>The TQUriDrag class provides a drag object for a list of URI references.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qdragobject-h.html">ntqdragobject.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqdragobject-h.html">tqdragobject.h</a>&gt;</tt>
<p>Inherits <a href="qstoreddrag.html">TQStoredDrag</a>. <p>Inherits <a href="tqstoreddrag.html">TQStoredDrag</a>.
<p><a href="quridrag-members.html">List of all member functions.</a> <p><a href="tquridrag-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQUriDrag"><b>TQUriDrag</b></a> ( TQStrList&nbsp;uris, TQWidget&nbsp;*&nbsp;dragSource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )</li> <li class=fn><a href="#TQUriDrag"><b>TQUriDrag</b></a> ( TQStrList&nbsp;uris, TQWidget&nbsp;*&nbsp;dragSource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )</li>
@ -82,25 +82,25 @@ You can also decode URIs from a mimesource into a list with
<hr><h2>Member Function Documentation</h2> <hr><h2>Member Function Documentation</h2>
<h3 class=fn><a name="TQUriDrag"></a>TQUriDrag::TQUriDrag ( <a href="tqstrlist.html">TQStrList</a>&nbsp;uris, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;dragSource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 ) <h3 class=fn><a name="TQUriDrag"></a>TQUriDrag::TQUriDrag ( <a href="tqstrlist.html">TQStrList</a>&nbsp;uris, <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;dragSource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )
</h3> </h3>
Constructs an object to drag the list of URIs in <em>uris</em>. The <em>dragSource</em> and <em>name</em> arguments are passed on to <a href="qstoreddrag.html">TQStoredDrag</a>. Constructs an object to drag the list of URIs in <em>uris</em>. The <em>dragSource</em> and <em>name</em> arguments are passed on to <a href="tqstoreddrag.html">TQStoredDrag</a>.
Note that URIs are always in escaped UTF8 encoding. Note that URIs are always in escaped UTF8 encoding.
<h3 class=fn><a name="TQUriDrag-2"></a>TQUriDrag::TQUriDrag ( <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;dragSource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 ) <h3 class=fn><a name="TQUriDrag-2"></a>TQUriDrag::TQUriDrag ( <a href="tqwidget.html">TQWidget</a>&nbsp;*&nbsp;dragSource = 0, const&nbsp;char&nbsp;*&nbsp;name = 0 )
</h3> </h3>
Constructs an object to drag. You must call <a href="#setUris">setUris</a>() before you Constructs an object to drag. You must call <a href="#setUris">setUris</a>() before you
start the <a href="ntqdragobject.html#drag">drag</a>(). Passes <em>dragSource</em> and <em>name</em> to the start the <a href="tqdragobject.html#drag">drag</a>(). Passes <em>dragSource</em> and <em>name</em> to the
<a href="qstoreddrag.html">TQStoredDrag</a> constructor. <a href="tqstoreddrag.html">TQStoredDrag</a> constructor.
<h3 class=fn><a name="~TQUriDrag"></a>TQUriDrag::~TQUriDrag () <h3 class=fn><a name="~TQUriDrag"></a>TQUriDrag::~TQUriDrag ()
</h3> </h3>
Destroys the object. Destroys the object.
<h3 class=fn>bool <a name="canDecode"></a>TQUriDrag::canDecode ( const&nbsp;<a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e )<tt> [static]</tt> <h3 class=fn>bool <a name="canDecode"></a>TQUriDrag::canDecode ( const&nbsp;<a href="tqmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e )<tt> [static]</tt>
</h3> </h3>
Returns TRUE if <a href="#decode">decode</a>() would be able to decode <em>e</em>; otherwise Returns TRUE if <a href="#decode">decode</a>() would be able to decode <em>e</em>; otherwise
returns FALSE. returns FALSE.
<h3 class=fn>bool <a name="decode"></a>TQUriDrag::decode ( const&nbsp;<a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e, <a href="tqstrlist.html">TQStrList</a>&nbsp;&amp;&nbsp;l )<tt> [static]</tt> <h3 class=fn>bool <a name="decode"></a>TQUriDrag::decode ( const&nbsp;<a href="tqmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e, <a href="tqstrlist.html">TQStrList</a>&nbsp;&amp;&nbsp;l )<tt> [static]</tt>
</h3> </h3>
Decodes URIs from <em>e</em>, placing the result in <em>l</em> (which is first Decodes URIs from <em>e</em>, placing the result in <em>l</em> (which is first
cleared). cleared).
@ -108,7 +108,7 @@ cleared).
returns FALSE. returns FALSE.
<p>Example: <a href="dirview-example.html#x1707">dirview/dirview.cpp</a>. <p>Example: <a href="dirview-example.html#x1707">dirview/dirview.cpp</a>.
<h3 class=fn>bool <a name="decodeLocalFiles"></a>TQUriDrag::decodeLocalFiles ( const&nbsp;<a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e, <a href="tqstringlist.html">TQStringList</a>&nbsp;&amp;&nbsp;l )<tt> [static]</tt> <h3 class=fn>bool <a name="decodeLocalFiles"></a>TQUriDrag::decodeLocalFiles ( const&nbsp;<a href="tqmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e, <a href="tqstringlist.html">TQStringList</a>&nbsp;&amp;&nbsp;l )<tt> [static]</tt>
</h3> </h3>
Decodes URIs from the mime source event <em>e</em>, converts them to Decodes URIs from the mime source event <em>e</em>, converts them to
local files if they refer to local files, and places them in <em>l</em> local files if they refer to local files, and places them in <em>l</em>
@ -117,7 +117,7 @@ local files if they refer to local files, and places them in <em>l</em>
returns FALSE. The list will be empty if no URIs were local files. returns FALSE. The list will be empty if no URIs were local files.
<p>Example: <a href="fileiconview-example.html#x873">fileiconview/qfileiconview.cpp</a>. <p>Example: <a href="fileiconview-example.html#x873">fileiconview/qfileiconview.cpp</a>.
<h3 class=fn>bool <a name="decodeToUnicodeUris"></a>TQUriDrag::decodeToUnicodeUris ( const&nbsp;<a href="qmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e, <a href="tqstringlist.html">TQStringList</a>&nbsp;&amp;&nbsp;l )<tt> [static]</tt> <h3 class=fn>bool <a name="decodeToUnicodeUris"></a>TQUriDrag::decodeToUnicodeUris ( const&nbsp;<a href="tqmimesource.html">TQMimeSource</a>&nbsp;*&nbsp;e, <a href="tqstringlist.html">TQStringList</a>&nbsp;&amp;&nbsp;l )<tt> [static]</tt>
</h3> </h3>
Decodes URIs from the mime source event <em>e</em>, converts them to Decodes URIs from the mime source event <em>e</em>, converts them to
Unicode URIs (only useful for displaying to humans), placing them Unicode URIs (only useful for displaying to humans), placing them

@ -916,30 +916,30 @@ To have more control over destruction of subwidgets, destroy
subwidgets selectively first. subwidgets selectively first.
<p> This function is usually called from the TQWidget destructor. <p> This function is usually called from the TQWidget destructor.
<h3 class=fn>void <a name="dragEnterEvent"></a>TQWidget::dragEnterEvent ( <a href="qdragenterevent.html">TQDragEnterEvent</a>&nbsp;* )<tt> [virtual protected]</tt> <h3 class=fn>void <a name="dragEnterEvent"></a>TQWidget::dragEnterEvent ( <a href="tqdragenterevent.html">TQDragEnterEvent</a>&nbsp;* )<tt> [virtual protected]</tt>
</h3> </h3>
This event handler is called when a drag is in progress and the This event handler is called when a drag is in progress and the
mouse enters this widget. mouse enters this widget.
<p> See the <a href="dnd.html">Drag-and-drop documentation</a> for an <p> See the <a href="dnd.html">Drag-and-drop documentation</a> for an
overview of how to provide drag-and-drop in your application. overview of how to provide drag-and-drop in your application.
<p> <p>See also <a href="tqtextdrag.html">TQTextDrag</a>, <a href="tqimagedrag.html">TQImageDrag</a>, and <a href="qdragenterevent.html">TQDragEnterEvent</a>. <p> <p>See also <a href="tqtextdrag.html">TQTextDrag</a>, <a href="tqimagedrag.html">TQImageDrag</a>, and <a href="tqdragenterevent.html">TQDragEnterEvent</a>.
<p>Example: <a href="simple_dd-example.html#x2829">iconview/simple_dd/main.cpp</a>. <p>Example: <a href="simple_dd-example.html#x2829">iconview/simple_dd/main.cpp</a>.
<h3 class=fn>void <a name="dragLeaveEvent"></a>TQWidget::dragLeaveEvent ( <a href="qdragleaveevent.html">TQDragLeaveEvent</a>&nbsp;* )<tt> [virtual protected]</tt> <h3 class=fn>void <a name="dragLeaveEvent"></a>TQWidget::dragLeaveEvent ( <a href="tqdragleaveevent.html">TQDragLeaveEvent</a>&nbsp;* )<tt> [virtual protected]</tt>
</h3> </h3>
This event handler is called when a drag is in progress and the This event handler is called when a drag is in progress and the
mouse leaves this widget. mouse leaves this widget.
<p> See the <a href="dnd.html">Drag-and-drop documentation</a> for an <p> See the <a href="dnd.html">Drag-and-drop documentation</a> for an
overview of how to provide drag-and-drop in your application. overview of how to provide drag-and-drop in your application.
<p> <p>See also <a href="tqtextdrag.html">TQTextDrag</a>, <a href="tqimagedrag.html">TQImageDrag</a>, and <a href="qdragleaveevent.html">TQDragLeaveEvent</a>. <p> <p>See also <a href="tqtextdrag.html">TQTextDrag</a>, <a href="tqimagedrag.html">TQImageDrag</a>, and <a href="tqdragleaveevent.html">TQDragLeaveEvent</a>.
<h3 class=fn>void <a name="dragMoveEvent"></a>TQWidget::dragMoveEvent ( <a href="qdragmoveevent.html">TQDragMoveEvent</a>&nbsp;* )<tt> [virtual protected]</tt> <h3 class=fn>void <a name="dragMoveEvent"></a>TQWidget::dragMoveEvent ( <a href="tqdragmoveevent.html">TQDragMoveEvent</a>&nbsp;* )<tt> [virtual protected]</tt>
</h3> </h3>
This event handler is called when a drag is in progress and the This event handler is called when a drag is in progress and the
mouse enters this widget, and whenever it moves within the widget. mouse enters this widget, and whenever it moves within the widget.
<p> See the <a href="dnd.html">Drag-and-drop documentation</a> for an <p> See the <a href="dnd.html">Drag-and-drop documentation</a> for an
overview of how to provide drag-and-drop in your application. overview of how to provide drag-and-drop in your application.
<p> <p>See also <a href="tqtextdrag.html">TQTextDrag</a>, <a href="tqimagedrag.html">TQImageDrag</a>, and <a href="qdragmoveevent.html">TQDragMoveEvent</a>. <p> <p>See also <a href="tqtextdrag.html">TQTextDrag</a>, <a href="tqimagedrag.html">TQImageDrag</a>, and <a href="tqdragmoveevent.html">TQDragMoveEvent</a>.
<h3 class=fn>void <a name="drawText"></a>TQWidget::drawText ( int&nbsp;x, int&nbsp;y, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;str ) <h3 class=fn>void <a name="drawText"></a>TQWidget::drawText ( int&nbsp;x, int&nbsp;y, const&nbsp;<a href="tqstring.html">TQString</a>&nbsp;&amp;&nbsp;str )
</h3> </h3>
@ -955,13 +955,13 @@ more flexible results and often higher speed by using a a <a href="ntqpainter.ht
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
<p> Draws the string <em>str</em> at position <em>pos</em>. <p> Draws the string <em>str</em> at position <em>pos</em>.
<h3 class=fn>void <a name="dropEvent"></a>TQWidget::dropEvent ( <a href="qdropevent.html">TQDropEvent</a>&nbsp;* )<tt> [virtual protected]</tt> <h3 class=fn>void <a name="dropEvent"></a>TQWidget::dropEvent ( <a href="tqdropevent.html">TQDropEvent</a>&nbsp;* )<tt> [virtual protected]</tt>
</h3> </h3>
This event handler is called when the drag is dropped on this This event handler is called when the drag is dropped on this
widget. widget.
<p> See the <a href="dnd.html">Drag-and-drop documentation</a> for an <p> See the <a href="dnd.html">Drag-and-drop documentation</a> for an
overview of how to provide drag-and-drop in your application. overview of how to provide drag-and-drop in your application.
<p> <p>See also <a href="tqtextdrag.html">TQTextDrag</a>, <a href="tqimagedrag.html">TQImageDrag</a>, and <a href="qdropevent.html">TQDropEvent</a>. <p> <p>See also <a href="tqtextdrag.html">TQTextDrag</a>, <a href="tqimagedrag.html">TQImageDrag</a>, and <a href="tqdropevent.html">TQDropEvent</a>.
<p>Example: <a href="simple_dd-example.html#x2830">iconview/simple_dd/main.cpp</a>. <p>Example: <a href="simple_dd-example.html#x2830">iconview/simple_dd/main.cpp</a>.
<h3 class=fn>void <a name="enabledChange"></a>TQWidget::enabledChange ( bool&nbsp;oldEnabled )<tt> [virtual protected]</tt> <h3 class=fn>void <a name="enabledChange"></a>TQWidget::enabledChange ( bool&nbsp;oldEnabled )<tt> [virtual protected]</tt>

@ -145,7 +145,7 @@ where MyWidgetFactory is your TQWidgetFactory subclass.
If you use a pixmap collection (which is the default for new If you use a pixmap collection (which is the default for new
projects) rather than saving the pixmaps within the .ui XML file, projects) rather than saving the pixmaps within the .ui XML file,
you must load the pixmap collection. TQWidgetFactory looks in the you must load the pixmap collection. TQWidgetFactory looks in the
default <a href="qmimesourcefactory.html">TQMimeSourceFactory</a> for the pixmaps. Either add it there default <a href="tqmimesourcefactory.html">TQMimeSourceFactory</a> for the pixmaps. Either add it there
manually, or call this function and specify the directory where manually, or call this function and specify the directory where
the images can be found, as <em>dir</em>. This is normally the the images can be found, as <em>dir</em>. This is normally the
directory called <tt>images</tt> in the project's directory. directory called <tt>images</tt> in the project's directory.

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/ntqmime.h:134 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/include/tqmime.h:134 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -32,23 +32,23 @@ body { background: #ffffff; color: black; }
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQWindowsMime</h1> <td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Complete Member List for TQWindowsMime</h1>
<p>This is the complete list of member functions for <p>This is the complete list of member functions for
<a href="qwindowsmime.html">TQWindowsMime</a>, including inherited members. <a href="tqwindowsmime.html">TQWindowsMime</a>, including inherited members.
<ul> <ul>
<li><a href="qwindowsmime.html#TQWindowsMime">TQWindowsMime</a>() <li><a href="tqwindowsmime.html#TQWindowsMime">TQWindowsMime</a>()
<li><a href="qwindowsmime.html#~TQWindowsMime">~TQWindowsMime</a>() <li><a href="tqwindowsmime.html#~TQWindowsMime">~TQWindowsMime</a>()
<li><a href="qwindowsmime.html#all">all</a>() <li><a href="tqwindowsmime.html#all">all</a>()
<li><a href="qwindowsmime.html#canConvert">canConvert</a>() <li><a href="tqwindowsmime.html#canConvert">canConvert</a>()
<li><a href="qwindowsmime.html#cf">cf</a>() <li><a href="tqwindowsmime.html#cf">cf</a>()
<li><a href="qwindowsmime.html#cfFor">cfFor</a>() <li><a href="tqwindowsmime.html#cfFor">cfFor</a>()
<li><a href="qwindowsmime.html#cfToMime">cfToMime</a>() <li><a href="tqwindowsmime.html#cfToMime">cfToMime</a>()
<li><a href="qwindowsmime.html#convertFromMime">convertFromMime</a>() <li><a href="tqwindowsmime.html#convertFromMime">convertFromMime</a>()
<li><a href="qwindowsmime.html#convertToMime">convertToMime</a>() <li><a href="tqwindowsmime.html#convertToMime">convertToMime</a>()
<li><a href="qwindowsmime.html#convertor">convertor</a>() <li><a href="tqwindowsmime.html#convertor">convertor</a>()
<li><a href="qwindowsmime.html#convertorName">convertorName</a>() <li><a href="tqwindowsmime.html#convertorName">convertorName</a>()
<li><a href="qwindowsmime.html#countCf">countCf</a>() <li><a href="tqwindowsmime.html#countCf">countCf</a>()
<li><a href="qwindowsmime.html#initialize">initialize</a>() <li><a href="tqwindowsmime.html#initialize">initialize</a>()
<li><a href="qwindowsmime.html#mimeFor">mimeFor</a>() <li><a href="tqwindowsmime.html#mimeFor">mimeFor</a>()
</ul> </ul>
<!-- eof --> <!-- eof -->
<p><address><hr><div align=center> <p><address><hr><div align=center>

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/qmime_win.cpp:52 --> <!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/src/kernel/tqmime_win.cpp:52 -->
<html> <html>
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
@ -33,8 +33,8 @@ body { background: #ffffff; color: black; }
<p>The TQWindowsMime class maps open-standard MIME to Window Clipboard formats. <p>The TQWindowsMime class maps open-standard MIME to Window Clipboard formats.
<a href="#details">More...</a> <a href="#details">More...</a>
<p><tt>#include &lt;<a href="qmime-h.html">ntqmime.h</a>&gt;</tt> <p><tt>#include &lt;<a href="tqmime-h.html">tqmime.h</a>&gt;</tt>
<p><a href="qwindowsmime-members.html">List of all member functions.</a> <p><a href="tqwindowsmime-members.html">List of all member functions.</a>
<h2>Public Members</h2> <h2>Public Members</h2>
<ul> <ul>
<li class=fn><a href="#TQWindowsMime"><b>TQWindowsMime</b></a> ()</li> <li class=fn><a href="#TQWindowsMime"><b>TQWindowsMime</b></a> ()</li>
@ -80,7 +80,7 @@ and supported by TQTextDrag.
a <a href="tqimage.html#outputFormats">TQt image format</a>, a <a href="tqimage.html#outputFormats">TQt image format</a>,
and supported by <a href="tqimagedrag.html">TQImageDrag</a>. and supported by <a href="tqimagedrag.html">TQImageDrag</a>.
<li> CF_HDROP - converted to "text/uri-list", <li> CF_HDROP - converted to "text/uri-list",
and supported by <a href="quridrag.html">TQUriDrag</a>. and supported by <a href="tquridrag.html">TQUriDrag</a>.
</ul> </ul>
<p> An example use of this class would be to map the Windows Metafile <p> An example use of this class would be to map the Windows Metafile
clipboard format (CF_METAFILEPICT) to and from the MIME type "image/x-wmf". clipboard format (CF_METAFILEPICT) to and from the MIME type "image/x-wmf".
@ -153,7 +153,7 @@ to MIME type <em>mime</em>.
input <em>data</em> may contain trailing data. input <em>data</em> may contain trailing data.
<p> All subclasses must reimplement this pure virtual function. <p> All subclasses must reimplement this pure virtual function.
<h3 class=fn><a href="qwindowsmime.html">TQWindowsMime</a>&nbsp;* <a name="convertor"></a>TQWindowsMime::convertor ( const&nbsp;char&nbsp;*&nbsp;mime, int&nbsp;cf )<tt> [static]</tt> <h3 class=fn><a href="tqwindowsmime.html">TQWindowsMime</a>&nbsp;* <a name="convertor"></a>TQWindowsMime::convertor ( const&nbsp;char&nbsp;*&nbsp;mime, int&nbsp;cf )<tt> [static]</tt>
</h3> </h3>
Returns the most-recently created TQWindowsMime that can convert Returns the most-recently created TQWindowsMime that can convert
between the <em>mime</em> and <em>cf</em> formats. Returns 0 if no such convertor between the <em>mime</em> and <em>cf</em> formats. Returns 0 if no such convertor

@ -15,7 +15,7 @@ Abstract item that a QLayout manipulates. | QLayoutItem
Abstract user interface action that can appear both in menus and tool bars. | TQAction Abstract user interface action that can appear both in menus and tool bars. | TQAction
Abstraction for date and edit editors. | TQDateTimeEditBase Abstraction for date and edit editors. | TQDateTimeEditBase
Abstraction of Unicode text and the classic C '&#92;0'-terminated char array. | TQString Abstraction of Unicode text and the classic C '&#92;0'-terminated char array. | TQString
Abstraction of objects which provide formatted data of a certain MIME type. | QMimeSource Abstraction of objects which provide formatted data of a certain MIME type. | TQMimeSource
Abstraction of the classic C zero-terminated char array (char *). | QCString Abstraction of the classic C zero-terminated char array (char *). | QCString
Abstraction used by TQImageDecoder. | TQImageConsumer Abstraction used by TQImageDecoder. | TQImageConsumer
Access serialization between threads. | TQMutex Access serialization between threads. | TQMutex
@ -102,12 +102,12 @@ Displays a number with LCD-like digits. | QLCDNumber
Does low-level painting e.g. on widgets. | QPainter Does low-level painting e.g. on widgets. | QPainter
Doubly-linked list of char*. | TQStrList Doubly-linked list of char*. | TQStrList
Doubly-linked list of char* with case-insensitive comparison. | TQStrIList Doubly-linked list of char* with case-insensitive comparison. | TQStrIList
Drag and drop object for transferring colors. | QColorDrag Drag and drop object for transferring colors. | TQColorDrag
Drag and drop object for transferring images. | TQImageDrag Drag and drop object for transferring images. | TQImageDrag
Drag and drop object for transferring plain and Unicode text. | TQTextDrag Drag and drop object for transferring plain and Unicode text. | TQTextDrag
Drag object for a list of URI references. | QUriDrag Drag object for a list of URI references. | TQUriDrag
Ellipse or ellipse segment on a TQCanvas. | TQCanvasEllipse Ellipse or ellipse segment on a TQCanvas. | TQCanvasEllipse
Encapsulates MIME-based data transfer. | QDragObject Encapsulates MIME-based data transfer. | TQDragObject
Encapsulates a database record, i.e. a set of database fields. | TQSqlRecord Encapsulates a database record, i.e. a set of database fields. | TQSqlRecord
Encapsulates a drag item. | TQIconDragItem Encapsulates a drag item. | TQIconDragItem
Encapsulates a key sequence as used by accelerators. | QKeySequence Encapsulates a key sequence as used by accelerators. | QKeySequence
@ -123,12 +123,12 @@ Event parameters for paint events. | QPaintEvent
Event parameters for resize events. | QResizeEvent Event parameters for resize events. | QResizeEvent
Event parameters for widget focus events. | QFocusEvent Event parameters for widget focus events. | QFocusEvent
Event which is sent after a widget is hidden. | QHideEvent Event which is sent after a widget is hidden. | QHideEvent
Event which is sent to the widget when a drag and drop first drags onto the widget. | QDragEnterEvent Event which is sent to the widget when a drag and drop first drags onto the widget. | TQDragEnterEvent
Event which is sent to the widget when a drag and drop leaves the widget. | QDragLeaveEvent Event which is sent to the widget when a drag and drop leaves the widget. | TQDragLeaveEvent
Event which is sent when a drag and drop is completed. | QDropEvent Event which is sent when a drag and drop is completed. | TQDropEvent
Event which is sent when a widget is shown. | QShowEvent Event which is sent when a widget is shown. | QShowEvent
Event which is sent while a drag and drop is in progress. | QDragMoveEvent Event which is sent while a drag and drop is in progress. | TQDragMoveEvent
Extensible provider of mime-typed data. | QMimeSourceFactory Extensible provider of mime-typed data. | TQMimeSourceFactory
Factory that makes TQImageFormat objects. | TQImageFormatType Factory that makes TQImageFormat objects. | TQImageFormatType
Feedback on the progress of a slow operation. | QProgressDialog Feedback on the progress of a slow operation. | QProgressDialog
File previewing in QFileDialog. | QFilePreview File previewing in QFileDialog. | QFilePreview
@ -218,8 +218,8 @@ Manages and lays out QDockWindows. | QDockArea
Manages the GUI application's control flow and main settings. | QApplication Manages the GUI application's control flow and main settings. | QApplication
Manages the event queue. | QEventLoop Manages the event queue. | QEventLoop
Manipulates the fields in SQL database tables and views. | TQSqlField Manipulates the fields in SQL database tables and views. | TQSqlField
Maps open-standard MIME to Mac flavors. | QMacMime Maps open-standard MIME to Mac flavors. | TQMacMime
Maps open-standard MIME to Window Clipboard formats. | QWindowsMime Maps open-standard MIME to Window Clipboard formats. | TQWindowsMime
Means of executing and manipulating SQL statements. | TQSqlQuery Means of executing and manipulating SQL statements. | TQSqlQuery
Means of using TQt Assistant as an application's help tool. | QAssistantClient Means of using TQt Assistant as an application's help tool. | QAssistantClient
Means of using comboboxes in QTables. | QComboTableItem Means of using comboboxes in QTables. | QComboTableItem
@ -297,7 +297,7 @@ Signals that a main icon drag has begun. | TQIconDragEvent
Simple convenience dialog to get a single value from the user. | QInputDialog Simple convenience dialog to get a single value from the user. | QInputDialog
Simple description of any widget, i.e. answering the question "What's this?". | QWhatsThis Simple description of any widget, i.e. answering the question "What's this?". | QWhatsThis
Simple geometry management of its children. | QGrid Simple geometry management of its children. | QGrid
Simple stored-value drag object for arbitrary MIME data. | QStoredDrag Simple stored-value drag object for arbitrary MIME data. | TQStoredDrag
Simplifies locking and unlocking TQMutexes. | TQMutexLocker Simplifies locking and unlocking TQMutexes. | TQMutexLocker
Single item in a TQIconView. | TQIconViewItem Single item in a TQIconView. | TQIconViewItem
Small displayable piece of rich text. | QSimpleRichText Small displayable piece of rich text. | QSimpleRichText

@ -49,10 +49,10 @@ Inherits TQObject.
.BI "void \fBsetText\fR ( const TQString & text, Mode mode )" .BI "void \fBsetText\fR ( const TQString & text, Mode mode )"
.br .br
.ti -1c .ti -1c
.BI "QMimeSource * \fBdata\fR ( Mode mode ) const" .BI "TQMimeSource * \fBdata\fR ( Mode mode ) const"
.br .br
.ti -1c .ti -1c
.BI "void \fBsetData\fR ( QMimeSource * src, Mode mode )" .BI "void \fBsetData\fR ( TQMimeSource * src, Mode mode )"
.br .br
.ti -1c .ti -1c
.BI "TQImage \fBimage\fR ( Mode mode ) const" .BI "TQImage \fBimage\fR ( Mode mode ) const"
@ -76,10 +76,10 @@ Inherits TQObject.
.BI "void \fBsetText\fR ( const TQString & text )" .BI "void \fBsetText\fR ( const TQString & text )"
.br .br
.ti -1c .ti -1c
.BI "QMimeSource * \fBdata\fR () const" .BI "TQMimeSource * \fBdata\fR () const"
.br .br
.ti -1c .ti -1c
.BI "void \fBsetData\fR ( QMimeSource * src )" .BI "void \fBsetData\fR ( TQMimeSource * src )"
.br .br
.ti -1c .ti -1c
.BI "TQImage \fBimage\fR () const" .BI "TQImage \fBimage\fR () const"
@ -108,7 +108,7 @@ The QClipboard class provides access to the window system clipboard.
.PP .PP
The clipboard offers a simple mechanism to copy and paste data between applications. The clipboard offers a simple mechanism to copy and paste data between applications.
.PP .PP
QClipboard supports the same data types that QDragObject does, and uses similar mechanisms. For advanced clipboard usage read the drag-and-drop documentation. QClipboard supports the same data types that TQDragObject does, and uses similar mechanisms. For advanced clipboard usage read the drag-and-drop documentation.
.PP .PP
There is a single QClipboard object in an application, and you can access it using QApplication::clipboard(). There is a single QClipboard object in an application, and you can access it using QApplication::clipboard().
.PP .PP
@ -136,7 +136,7 @@ Example:
.br .br
.fi .fi
.PP .PP
QClipboard features some convenience functions to access common data types: setText() allows the exchange of Unicode text and setPixmap() and setImage() allows the exchange of QPixmaps and TQImages between applications. The setData() function is the ultimate in flexibility: it allows you to add any QMimeSource into the clipboard. There are corresponding getters for each of these, e.g. text(), image() and pixmap(). QClipboard features some convenience functions to access common data types: setText() allows the exchange of Unicode text and setPixmap() and setImage() allows the exchange of QPixmaps and TQImages between applications. The setData() function is the ultimate in flexibility: it allows you to add any TQMimeSource into the clipboard. There are corresponding getters for each of these, e.g. text(), image() and pixmap().
.PP .PP
You can clear the clipboard by calling clear(). You can clear the clipboard by calling clear().
.SH "Platform Specific Information" .SH "Platform Specific Information"
@ -188,13 +188,13 @@ See also QClipboard::Mode and supportsSelection().
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP .PP
This function uses the QClipboard::clear() function which takes a QClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is QClipboard::Selection, otherwise the mode argument is QClipboard::Clipboard. This function uses the QClipboard::clear() function which takes a QClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is QClipboard::Selection, otherwise the mode argument is QClipboard::Clipboard.
.SH "QMimeSource * QClipboard::data ( Mode mode ) const" .SH "TQMimeSource * QClipboard::data ( Mode mode ) const"
Returns a reference to a QMimeSource representation of the current clipboard data. Returns a reference to a TQMimeSource representation of the current clipboard data.
.PP .PP
The \fImode\fR argument is used to control which part of the system clipboard is used. If \fImode\fR is QClipboard::Clipboard, the data is retrieved from the global clipboard. If \fImode\fR is QClipboard::Selection, the data is retrieved from the global mouse selection. The \fImode\fR argument is used to control which part of the system clipboard is used. If \fImode\fR is QClipboard::Clipboard, the data is retrieved from the global clipboard. If \fImode\fR is QClipboard::Selection, the data is retrieved from the global mouse selection.
.PP .PP
See also setData(). See also setData().
.SH "QMimeSource * QClipboard::data () const" .SH "TQMimeSource * QClipboard::data () const"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP .PP
This function uses the QClipboard::data() function which takes a QClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is QClipboard::Selection, otherwise the mode argument is QClipboard::Clipboard. This function uses the QClipboard::data() function which takes a QClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is QClipboard::Selection, otherwise the mode argument is QClipboard::Clipboard.
@ -234,17 +234,17 @@ Use the QClipboard::data(), QClipboard::setData() and related functions which ta
Returns the selection mode. Returns the selection mode.
.PP .PP
See also setSelectionMode() and supportsSelection(). See also setSelectionMode() and supportsSelection().
.SH "void QClipboard::setData ( QMimeSource * src, Mode mode )" .SH "void QClipboard::setData ( TQMimeSource * src, Mode mode )"
Sets the clipboard data to \fIsrc\fR. Ownership of the data is transferred to the clipboard. If you want to remove the data either call clear() or call setData() again with new data. Sets the clipboard data to \fIsrc\fR. Ownership of the data is transferred to the clipboard. If you want to remove the data either call clear() or call setData() again with new data.
.PP .PP
The \fImode\fR argument is used to control which part of the system clipboard is used. If \fImode\fR is QClipboard::Clipboard, the data is retrieved from the global clipboard. If \fImode\fR is QClipboard::Selection, the data is retrieved from the global mouse selection. The \fImode\fR argument is used to control which part of the system clipboard is used. If \fImode\fR is QClipboard::Clipboard, the data is retrieved from the global clipboard. If \fImode\fR is QClipboard::Selection, the data is retrieved from the global mouse selection.
.PP .PP
The QDragObject subclasses are reasonable objects to put into the clipboard (but do not try to call QDragObject::drag() on the same object). Any QDragObject placed in the clipboard should have a parent of 0. Do not put QDragMoveEvent or QDropEvent subclasses in the clipboard, as they do not belong to the event handler which receives them. The TQDragObject subclasses are reasonable objects to put into the clipboard (but do not try to call TQDragObject::drag() on the same object). Any TQDragObject placed in the clipboard should have a parent of 0. Do not put TQDragMoveEvent or TQDropEvent subclasses in the clipboard, as they do not belong to the event handler which receives them.
.PP .PP
The setText(), setImage() and setPixmap() functions are simpler wrappers for setting text, image and pixmap data respectively. The setText(), setImage() and setPixmap() functions are simpler wrappers for setting text, image and pixmap data respectively.
.PP .PP
See also data(). See also data().
.SH "void QClipboard::setData ( QMimeSource * src )" .SH "void QClipboard::setData ( TQMimeSource * src )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP .PP
This function uses the QClipboard::setData() function which takes a QClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is QClipboard::Selection, otherwise the mode argument is QClipboard::Clipboard. This function uses the QClipboard::setData() function which takes a QClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is QClipboard::Selection, otherwise the mode argument is QClipboard::Clipboard.

@ -1,5 +1,5 @@
'\" t '\" t
.TH QColorDrag 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQColorDrag 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,19 +7,19 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QColorDrag \- Drag and drop object for transferring colors TQColorDrag \- Drag and drop object for transferring colors
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqdragobject.h>\fR \fC#include <tqdragobject.h>\fR
.PP .PP
Inherits QStoredDrag. Inherits TQStoredDrag.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQColorDrag\fR ( const TQColor & col, TQWidget * dragsource = 0, const char * name = 0 )" .BI "\fBTQColorDrag\fR ( const TQColor & col, TQWidget * dragsource = 0, const char * name = 0 )"
.br .br
.ti -1c .ti -1c
.BI "\fBQColorDrag\fR ( TQWidget * dragsource = 0, const char * name = 0 )" .BI "\fBTQColorDrag\fR ( TQWidget * dragsource = 0, const char * name = 0 )"
.br .br
.ti -1c .ti -1c
.BI "void \fBsetColor\fR ( const TQColor & col )" .BI "void \fBsetColor\fR ( const TQColor & col )"
@ -28,36 +28,36 @@ Inherits QStoredDrag.
.SS "Static Public Members" .SS "Static Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "bool \fBcanDecode\fR ( QMimeSource * e )" .BI "bool \fBcanDecode\fR ( TQMimeSource * e )"
.br .br
.ti -1c .ti -1c
.BI "bool \fBdecode\fR ( QMimeSource * e, TQColor & col )" .BI "bool \fBdecode\fR ( TQMimeSource * e, TQColor & col )"
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QColorDrag class provides a drag and drop object for transferring colors. The TQColorDrag class provides a drag and drop object for transferring colors.
.PP .PP
This class provides a drag object which can be used to transfer data about colors for drag and drop and in the clipboard. For example, it is used in QColorDialog. This class provides a drag object which can be used to transfer data about colors for drag and drop and in the clipboard. For example, it is used in QColorDialog.
.PP .PP
The color is set in the constructor but can be changed with setColor(). The color is set in the constructor but can be changed with setColor().
.PP .PP
For more information about drag and drop, see the QDragObject class and the drag and drop documentation. For more information about drag and drop, see the TQDragObject class and the drag and drop documentation.
.PP .PP
See also Drag And Drop Classes. See also Drag And Drop Classes.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QColorDrag::QColorDrag ( const TQColor & col, TQWidget * dragsource = 0, const char * name = 0 )" .SH "TQColorDrag::TQColorDrag ( const TQColor & col, TQWidget * dragsource = 0, const char * name = 0 )"
Constructs a color drag object with the color \fIcol\fR. Passes \fIdragsource\fR and \fIname\fR to the QStoredDrag constructor. Constructs a color drag object with the color \fIcol\fR. Passes \fIdragsource\fR and \fIname\fR to the TQStoredDrag constructor.
.SH "QColorDrag::QColorDrag ( TQWidget * dragsource = 0, const char * name = 0 )" .SH "TQColorDrag::TQColorDrag ( TQWidget * dragsource = 0, const char * name = 0 )"
Constructs a color drag object with a white color. Passes \fIdragsource\fR and \fIname\fR to the QStoredDrag constructor. Constructs a color drag object with a white color. Passes \fIdragsource\fR and \fIname\fR to the TQStoredDrag constructor.
.SH "bool QColorDrag::canDecode ( QMimeSource * e )\fC [static]\fR" .SH "bool TQColorDrag::canDecode ( TQMimeSource * e )\fC [static]\fR"
Returns TRUE if the color drag object can decode the mime source \fIe\fR; otherwise returns FALSE. Returns TRUE if the color drag object can decode the mime source \fIe\fR; otherwise returns FALSE.
.SH "bool QColorDrag::decode ( QMimeSource * e, TQColor & col )\fC [static]\fR" .SH "bool TQColorDrag::decode ( TQMimeSource * e, TQColor & col )\fC [static]\fR"
Decodes the mime source \fIe\fR and sets the decoded values to \fIcol\fR. Decodes the mime source \fIe\fR and sets the decoded values to \fIcol\fR.
.SH "void QColorDrag::setColor ( const TQColor & col )" .SH "void TQColorDrag::setColor ( const TQColor & col )"
Sets the color of the color drag to \fIcol\fR. Sets the color of the color drag to \fIcol\fR.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/qcolordrag.html .BR http://doc.trolltech.com/tqcolordrag.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -1,5 +1,5 @@
'\" t '\" t
.TH QDragEnterEvent 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQDragEnterEvent 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,33 +7,33 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QDragEnterEvent \- Event which is sent to the widget when a drag and drop first drags onto the widget TQDragEnterEvent \- Event which is sent to the widget when a drag and drop first drags onto the widget
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqevent.h>\fR \fC#include <ntqevent.h>\fR
.PP .PP
Inherits QDragMoveEvent. Inherits TQDragMoveEvent.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQDragEnterEvent\fR ( const QPoint & pos )" .BI "\fBTQDragEnterEvent\fR ( const QPoint & pos )"
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QDragEnterEvent class provides an event which is sent to the widget when a drag and drop first drags onto the widget. The TQDragEnterEvent class provides an event which is sent to the widget when a drag and drop first drags onto the widget.
.PP .PP
This event is always immediately followed by a QDragMoveEvent, so you only need to respond to one or the other event. This class inherits most of its functionality from QDragMoveEvent, which in turn inherits most of its functionality from QDropEvent. This event is always immediately followed by a TQDragMoveEvent, so you only need to respond to one or the other event. This class inherits most of its functionality from TQDragMoveEvent, which in turn inherits most of its functionality from TQDropEvent.
.PP .PP
See also QDragLeaveEvent, QDragMoveEvent, QDropEvent, Drag And Drop Classes, and Event Classes. See also TQDragLeaveEvent, TQDragMoveEvent, TQDropEvent, Drag And Drop Classes, and Event Classes.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QDragEnterEvent::QDragEnterEvent ( const QPoint & pos )" .SH "TQDragEnterEvent::TQDragEnterEvent ( const QPoint & pos )"
Constructs a QDragEnterEvent entering at the given point, \fIpos\fR. Constructs a TQDragEnterEvent entering at the given point, \fIpos\fR.
.PP .PP
\fBWarning:\fR Do not create a QDragEnterEvent yourself since these \fBWarning:\fR Do not create a TQDragEnterEvent yourself since these
objects rely on Qt's internal state. objects rely on Qt's internal state.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/qdragenterevent.html .BR http://doc.trolltech.com/tqdragenterevent.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -1,5 +1,5 @@
'\" t '\" t
.TH QDragLeaveEvent 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQDragLeaveEvent 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,7 +7,7 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QDragLeaveEvent \- Event which is sent to the widget when a drag and drop leaves the widget TQDragLeaveEvent \- Event which is sent to the widget when a drag and drop leaves the widget
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqevent.h>\fR \fC#include <ntqevent.h>\fR
.PP .PP
@ -16,24 +16,24 @@ Inherits QEvent.
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQDragLeaveEvent\fR ()" .BI "\fBTQDragLeaveEvent\fR ()"
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QDragLeaveEvent class provides an event which is sent to the widget when a drag and drop leaves the widget. The TQDragLeaveEvent class provides an event which is sent to the widget when a drag and drop leaves the widget.
.PP .PP
This event is always preceded by a QDragEnterEvent and a series of QDragMoveEvents. It is not sent if a QDropEvent is sent instead. This event is always preceded by a TQDragEnterEvent and a series of TQDragMoveEvents. It is not sent if a TQDropEvent is sent instead.
.PP .PP
See also QDragEnterEvent, QDragMoveEvent, QDropEvent, Drag And Drop Classes, and Event Classes. See also TQDragEnterEvent, TQDragMoveEvent, TQDropEvent, Drag And Drop Classes, and Event Classes.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QDragLeaveEvent::QDragLeaveEvent ()" .SH "TQDragLeaveEvent::TQDragLeaveEvent ()"
Constructs a QDragLeaveEvent. Constructs a TQDragLeaveEvent.
.PP .PP
\fBWarning:\fR Do not create a QDragLeaveEvent yourself since these \fBWarning:\fR Do not create a TQDragLeaveEvent yourself since these
objects rely on Qt's internal state. objects rely on Qt's internal state.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/qdragleaveevent.html .BR http://doc.trolltech.com/tqdragleaveevent.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -1,5 +1,5 @@
'\" t '\" t
.TH QDragMoveEvent 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQDragMoveEvent 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,18 +7,18 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QDragMoveEvent \- Event which is sent while a drag and drop is in progress TQDragMoveEvent \- Event which is sent while a drag and drop is in progress
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqevent.h>\fR \fC#include <ntqevent.h>\fR
.PP .PP
Inherits QDropEvent. Inherits TQDropEvent.
.PP .PP
Inherited by QDragEnterEvent. Inherited by TQDragEnterEvent.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQDragMoveEvent\fR ( const QPoint & pos, Type type = DragMove )" .BI "\fBTQDragMoveEvent\fR ( const QPoint & pos, Type type = DragMove )"
.br .br
.ti -1c .ti -1c
.BI "QRect \fBanswerRect\fR () const" .BI "QRect \fBanswerRect\fR () const"
@ -31,34 +31,34 @@ Inherited by QDragEnterEvent.
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QDragMoveEvent class provides an event which is sent while a drag and drop is in progress. The TQDragMoveEvent class provides an event which is sent while a drag and drop is in progress.
.PP .PP
When a widget accepts drop events, it will receive this event repeatedly while the drag is within the widget's boundaries. The widget should examine the event to see what data it provides, and accept() the drop if appropriate. When a widget accepts drop events, it will receive this event repeatedly while the drag is within the widget's boundaries. The widget should examine the event to see what data it provides, and accept() the drop if appropriate.
.PP .PP
Note that this class inherits most of its functionality from QDropEvent. Note that this class inherits most of its functionality from TQDropEvent.
.PP .PP
See also Drag And Drop Classes and Event Classes. See also Drag And Drop Classes and Event Classes.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QDragMoveEvent::QDragMoveEvent ( const QPoint & pos, Type type = DragMove )" .SH "TQDragMoveEvent::TQDragMoveEvent ( const QPoint & pos, Type type = DragMove )"
Creates a QDragMoveEvent for which the mouse is at point \fIpos\fR, and the event is of type \fItype\fR. Creates a TQDragMoveEvent for which the mouse is at point \fIpos\fR, and the event is of type \fItype\fR.
.PP .PP
\fBWarning:\fR Do not create a QDragMoveEvent yourself since these objects rely on Qt's internal state. \fBWarning:\fR Do not create a TQDragMoveEvent yourself since these objects rely on Qt's internal state.
.SH "void QDragMoveEvent::accept ( const QRect & r )" .SH "void TQDragMoveEvent::accept ( const QRect & r )"
The same as accept(), but also notifies that future moves will also be acceptable if they remain within the rectangle \fIr\fR on the widget: this can improve performance, but may also be ignored by the underlying system. The same as accept(), but also notifies that future moves will also be acceptable if they remain within the rectangle \fIr\fR on the widget: this can improve performance, but may also be ignored by the underlying system.
.PP .PP
If the rectangle is empty, then drag move events will be sent continuously. This is useful if the source is scrolling in a timer event. If the rectangle is empty, then drag move events will be sent continuously. This is useful if the source is scrolling in a timer event.
.PP .PP
Examples: Examples:
.)l desktop/desktop.cpp and dirview/dirview.cpp. .)l desktop/desktop.cpp and dirview/dirview.cpp.
.SH "QRect QDragMoveEvent::answerRect () const" .SH "QRect TQDragMoveEvent::answerRect () const"
Returns the rectangle for which the acceptance of the move event applies. Returns the rectangle for which the acceptance of the move event applies.
.SH "void QDragMoveEvent::ignore ( const QRect & r )" .SH "void TQDragMoveEvent::ignore ( const QRect & r )"
The opposite of accept(const QRect&), i.e. says that moves within rectangle \fIr\fR are not acceptable (will be ignored). The opposite of accept(const QRect&), i.e. says that moves within rectangle \fIr\fR are not acceptable (will be ignored).
.PP .PP
Example: dirview/dirview.cpp. Example: dirview/dirview.cpp.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/qdragmoveevent.html .BR http://doc.trolltech.com/tqdragmoveevent.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -1,5 +1,5 @@
'\" t '\" t
.TH QDragObject 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQDragObject 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,21 +7,21 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QDragObject \- Encapsulates MIME-based data transfer TQDragObject \- Encapsulates MIME-based data transfer
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqdragobject.h>\fR \fC#include <tqdragobject.h>\fR
.PP .PP
Inherits TQObject and QMimeSource. Inherits TQObject and TQMimeSource.
.PP .PP
Inherited by QStoredDrag, TQTextDrag, TQImageDrag, and TQIconDrag. Inherited by TQStoredDrag, TQTextDrag, TQImageDrag, and TQIconDrag.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQDragObject\fR ( TQWidget * dragSource = 0, const char * name = 0 )" .BI "\fBTQDragObject\fR ( TQWidget * dragSource = 0, const char * name = 0 )"
.br .br
.ti -1c .ti -1c
.BI "virtual \fB~QDragObject\fR ()" .BI "virtual \fB~TQDragObject\fR ()"
.br .br
.ti -1c .ti -1c
.BI "bool \fBdrag\fR ()" .BI "bool \fBdrag\fR ()"
@ -67,9 +67,9 @@ Inherited by QStoredDrag, TQTextDrag, TQImageDrag, and TQIconDrag.
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QDragObject class encapsulates MIME-based data transfer. The TQDragObject class encapsulates MIME-based data transfer.
.PP .PP
QDragObject is the base class for all data that needs to be transferred between and within applications, both for drag and drop and for the clipboard. TQDragObject is the base class for all data that needs to be transferred between and within applications, both for drag and drop and for the clipboard.
.PP .PP
See the Drag-and-drop documentation for an overview of how to provide drag and drop in your application. See the Drag-and-drop documentation for an overview of how to provide drag and drop in your application.
.PP .PP
@ -79,36 +79,36 @@ The drag() function is used to start a drag operation. You can specify the DragM
.PP .PP
See also Drag And Drop Classes. See also Drag And Drop Classes.
.SS "Member Type Documentation" .SS "Member Type Documentation"
.SH "QDragObject::DragMode" .SH "TQDragObject::DragMode"
This enum describes the possible drag modes. This enum describes the possible drag modes.
.TP .TP
\fCQDragObject::DragDefault\fR - The mode is determined heuristically. \fCTQDragObject::DragDefault\fR - The mode is determined heuristically.
.TP .TP
\fCQDragObject::DragCopy\fR - The data is copied, never moved. \fCTQDragObject::DragCopy\fR - The data is copied, never moved.
.TP .TP
\fCQDragObject::DragMove\fR - The data is moved, if dragged at all. \fCTQDragObject::DragMove\fR - The data is moved, if dragged at all.
.TP .TP
\fCQDragObject::DragLink\fR - The data is linked, if dragged at all. \fCTQDragObject::DragLink\fR - The data is linked, if dragged at all.
.TP .TP
\fCQDragObject::DragCopyOrMove\fR - The user chooses the mode by using a control key to switch from the default. \fCTQDragObject::DragCopyOrMove\fR - The user chooses the mode by using a control key to switch from the default.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QDragObject::QDragObject ( TQWidget * dragSource = 0, const char * name = 0 )" .SH "TQDragObject::TQDragObject ( TQWidget * dragSource = 0, const char * name = 0 )"
Constructs a drag object called \fIname\fR, which is a child of \fIdragSource\fR. Constructs a drag object called \fIname\fR, which is a child of \fIdragSource\fR.
.PP .PP
Note that the drag object will be deleted when \fIdragSource\fR is deleted. Note that the drag object will be deleted when \fIdragSource\fR is deleted.
.SH "QDragObject::~QDragObject ()\fC [virtual]\fR" .SH "TQDragObject::~TQDragObject ()\fC [virtual]\fR"
Destroys the drag object, canceling any drag and drop operation in which it is involved, and frees up the storage used. Destroys the drag object, canceling any drag and drop operation in which it is involved, and frees up the storage used.
.SH "bool QDragObject::drag ()" .SH "bool TQDragObject::drag ()"
Starts a drag operation using the contents of this object, using DragDefault mode. Starts a drag operation using the contents of this object, using DragDefault mode.
.PP .PP
The function returns TRUE if the caller should delete the original copy of the dragged data (but see target()); otherwise returns FALSE. The function returns TRUE if the caller should delete the original copy of the dragged data (but see target()); otherwise returns FALSE.
.PP .PP
If the drag contains \fIreferences\fR to information (e.g. file names in a QUriDrag are references) then the return value should always be ignored, as the target is expected to manipulate the referred-to content directly. On X11 the return value should always be correct anyway, but on Windows this is not necessarily the case (e.g. the file manager starts a background process to move files, so the source \fImust not\fR delete the files!) If the drag contains \fIreferences\fR to information (e.g. file names in a TQUriDrag are references) then the return value should always be ignored, as the target is expected to manipulate the referred-to content directly. On X11 the return value should always be correct anyway, but on Windows this is not necessarily the case (e.g. the file manager starts a background process to move files, so the source \fImust not\fR delete the files!)
.PP .PP
Note that on Windows the drag operation will spin a blocking modal event loop that will not dispatch any TQTimers. Note that on Windows the drag operation will spin a blocking modal event loop that will not dispatch any TQTimers.
.PP .PP
Example: dirview/dirview.cpp. Example: dirview/dirview.cpp.
.SH "bool QDragObject::drag ( DragMode mode )\fC [virtual protected]\fR" .SH "bool TQDragObject::drag ( DragMode mode )\fC [virtual protected]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP .PP
Starts a drag operation using the contents of this object. Starts a drag operation using the contents of this object.
@ -117,26 +117,26 @@ At this point, the object becomes owned by Qt, not the application. You should n
.PP .PP
Returns TRUE if the dragged data was dragged as a \fImove\fR, indicating that the caller should remove the original source of the data (the drag object must continue to have a copy); otherwise returns FALSE. Returns TRUE if the dragged data was dragged as a \fImove\fR, indicating that the caller should remove the original source of the data (the drag object must continue to have a copy); otherwise returns FALSE.
.PP .PP
The \fImode\fR specifies the drag mode (see QDragObject::DragMode.) Normally one of the simpler drag(), dragMove(), or dragCopy() functions would be used instead. The \fImode\fR specifies the drag mode (see TQDragObject::DragMode.) Normally one of the simpler drag(), dragMove(), or dragCopy() functions would be used instead.
.SH "void QDragObject::dragCopy ()" .SH "void TQDragObject::dragCopy ()"
Starts a drag operation using the contents of this object, using DragCopy mode. Be sure to read the constraints described in drag(). Starts a drag operation using the contents of this object, using DragCopy mode. Be sure to read the constraints described in drag().
.PP .PP
See also drag(), dragMove(), and dragLink(). See also drag(), dragMove(), and dragLink().
.PP .PP
Example: iconview/simple_dd/main.cpp. Example: iconview/simple_dd/main.cpp.
.SH "void QDragObject::dragLink ()" .SH "void TQDragObject::dragLink ()"
Starts a drag operation using the contents of this object, using DragLink mode. Be sure to read the constraints described in drag(). Starts a drag operation using the contents of this object, using DragLink mode. Be sure to read the constraints described in drag().
.PP .PP
See also drag(), dragCopy(), and dragMove(). See also drag(), dragCopy(), and dragMove().
.SH "bool QDragObject::dragMove ()" .SH "bool TQDragObject::dragMove ()"
Starts a drag operation using the contents of this object, using DragMove mode. Be sure to read the constraints described in drag(). Starts a drag operation using the contents of this object, using DragMove mode. Be sure to read the constraints described in drag().
.PP .PP
See also drag(), dragCopy(), and dragLink(). See also drag(), dragCopy(), and dragLink().
.SH "QPixmap QDragObject::pixmap () const" .SH "QPixmap TQDragObject::pixmap () const"
Returns the currently set pixmap (which isNull() if none is set). Returns the currently set pixmap (which isNull() if none is set).
.SH "QPoint QDragObject::pixmapHotSpot () const" .SH "QPoint TQDragObject::pixmapHotSpot () const"
Returns the currently set pixmap hotspot. Returns the currently set pixmap hotspot.
.SH "void QDragObject::setPixmap ( QPixmap pm, const QPoint & hotspot )\fC [virtual]\fR" .SH "void TQDragObject::setPixmap ( QPixmap pm, const QPoint & hotspot )\fC [virtual]\fR"
Set the pixmap \fIpm\fR to display while dragging the object. The platform-specific implementation will use this where it can - so provide a small masked pixmap, and do not assume that the user will actually see it. For example, cursors on Windows 95 are of limited size. Set the pixmap \fIpm\fR to display while dragging the object. The platform-specific implementation will use this where it can - so provide a small masked pixmap, and do not assume that the user will actually see it. For example, cursors on Windows 95 are of limited size.
.PP .PP
The \fIhotspot\fR is the point on (or off) the pixmap that should be under the cursor as it is dragged. It is relative to the top-left pixel of the pixmap. The \fIhotspot\fR is the point on (or off) the pixmap that should be under the cursor as it is dragged. It is relative to the top-left pixel of the pixmap.
@ -144,20 +144,20 @@ The \fIhotspot\fR is the point on (or off) the pixmap that should be under the c
\fBWarning:\fR We have seen problems with drag cursors on different graphics hardware and driver software on Windows. Setting the graphics acceleration in the display settings down one tick solved the problems in all cases. \fBWarning:\fR We have seen problems with drag cursors on different graphics hardware and driver software on Windows. Setting the graphics acceleration in the display settings down one tick solved the problems in all cases.
.PP .PP
Example: fileiconview/qfileiconview.cpp. Example: fileiconview/qfileiconview.cpp.
.SH "void QDragObject::setPixmap ( QPixmap pm )\fC [virtual]\fR" .SH "void TQDragObject::setPixmap ( QPixmap pm )\fC [virtual]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP .PP
Uses a hotspot that positions the pixmap below and to the right of the mouse pointer. This allows the user to clearly see the point on the window which they are dragging the data onto. Uses a hotspot that positions the pixmap below and to the right of the mouse pointer. This allows the user to clearly see the point on the window which they are dragging the data onto.
.SH "TQWidget * QDragObject::source ()" .SH "TQWidget * TQDragObject::source ()"
Returns a pointer to the drag source where this object originated. Returns a pointer to the drag source where this object originated.
.SH "TQWidget * QDragObject::target ()\fC [static]\fR" .SH "TQWidget * TQDragObject::target ()\fC [static]\fR"
After the drag completes, this function will return the TQWidget which received the drop, or 0 if the data was dropped on another application. After the drag completes, this function will return the TQWidget which received the drop, or 0 if the data was dropped on another application.
.PP .PP
This can be useful for detecting the case where drag and drop is This can be useful for detecting the case where drag and drop is
to and from the same widget. to and from the same widget.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/ntqdragobject.html .BR http://doc.trolltech.com/tqdragobject.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -1,5 +1,5 @@
'\" t '\" t
.TH QDropEvent 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQDropEvent 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,18 +7,18 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QDropEvent \- Event which is sent when a drag and drop is completed TQDropEvent \- Event which is sent when a drag and drop is completed
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqevent.h>\fR \fC#include <ntqevent.h>\fR
.PP .PP
Inherits QEvent and QMimeSource. Inherits QEvent and TQMimeSource.
.PP .PP
Inherited by QDragMoveEvent. Inherited by TQDragMoveEvent.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQDropEvent\fR ( const QPoint & pos, Type typ = Drop )" .BI "\fBTQDropEvent\fR ( const QPoint & pos, Type typ = Drop )"
.br .br
.ti -1c .ti -1c
.BI "const QPoint & \fBpos\fR () const" .BI "const QPoint & \fBpos\fR () const"
@ -67,52 +67,52 @@ Inherited by QDragMoveEvent.
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QDropEvent class provides an event which is sent when a drag and drop is completed. The TQDropEvent class provides an event which is sent when a drag and drop is completed.
.PP .PP
When a widget accepts drop events, it will receive this event if it has accepted the most recent QDragEnterEvent or QDragMoveEvent sent to it. When a widget accepts drop events, it will receive this event if it has accepted the most recent TQDragEnterEvent or TQDragMoveEvent sent to it.
.PP .PP
The widget should use data() to extract the data in an appropriate format. The widget should use data() to extract the data in an appropriate format.
.PP .PP
See also Drag And Drop Classes and Event Classes. See also Drag And Drop Classes and Event Classes.
.SS "Member Type Documentation" .SS "Member Type Documentation"
.SH "QDropEvent::Action" .SH "TQDropEvent::Action"
This enum describes the action which a source requests that a target perform with dropped data. This enum describes the action which a source requests that a target perform with dropped data.
.TP .TP
\fCQDropEvent::Copy\fR - The default action. The source simply uses the data provided in the operation. \fCTQDropEvent::Copy\fR - The default action. The source simply uses the data provided in the operation.
.TP .TP
\fCQDropEvent::Link\fR - The source should somehow create a link to the location specified by the data. \fCTQDropEvent::Link\fR - The source should somehow create a link to the location specified by the data.
.TP .TP
\fCQDropEvent::Move\fR - The source should somehow move the object from the location specified by the data to a new location. \fCTQDropEvent::Move\fR - The source should somehow move the object from the location specified by the data to a new location.
.TP .TP
\fCQDropEvent::Private\fR - The target has special knowledge of the MIME type, which the source should respond to in a similar way to a Copy. \fCTQDropEvent::Private\fR - The target has special knowledge of the MIME type, which the source should respond to in a similar way to a Copy.
.TP .TP
\fCQDropEvent::UserAction\fR - The source and target can co-operate using special actions. This feature is not currently supported. \fCTQDropEvent::UserAction\fR - The source and target can co-operate using special actions. This feature is not currently supported.
.PP .PP
The Link and Move actions only makes sense if the data is a reference, for example, text/uri-list file lists (see QUriDrag). The Link and Move actions only makes sense if the data is a reference, for example, text/uri-list file lists (see TQUriDrag).
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QDropEvent::QDropEvent ( const QPoint & pos, Type typ = Drop )" .SH "TQDropEvent::TQDropEvent ( const QPoint & pos, Type typ = Drop )"
Constructs a drop event that drops a drop of type \fItyp\fR on point \fIpos\fR. Constructs a drop event that drops a drop of type \fItyp\fR on point \fIpos\fR.
.SH "void QDropEvent::accept ( bool y = TRUE )" .SH "void TQDropEvent::accept ( bool y = TRUE )"
Call this function to indicate whether the event provided data which your widget processed. Set \fIy\fR to TRUE (the default) if your widget could process the data, otherwise set \fIy\fR to FALSE. To get the data, use encodedData(), or preferably, the decode() methods of existing QDragObject subclasses, such as TQTextDrag::decode(), or your own subclasses. Call this function to indicate whether the event provided data which your widget processed. Set \fIy\fR to TRUE (the default) if your widget could process the data, otherwise set \fIy\fR to FALSE. To get the data, use encodedData(), or preferably, the decode() methods of existing TQDragObject subclasses, such as TQTextDrag::decode(), or your own subclasses.
.PP .PP
See also acceptAction(). See also acceptAction().
.PP .PP
Example: iconview/simple_dd/main.cpp. Example: iconview/simple_dd/main.cpp.
.SH "void QDropEvent::acceptAction ( bool y = TRUE )" .SH "void TQDropEvent::acceptAction ( bool y = TRUE )"
Call this to indicate that the action described by action() is accepted (i.e. if \fIy\fR is TRUE, which is the default), not merely the default copy action. If you call acceptAction(TRUE), there is no need to also call accept(TRUE). Call this to indicate that the action described by action() is accepted (i.e. if \fIy\fR is TRUE, which is the default), not merely the default copy action. If you call acceptAction(TRUE), there is no need to also call accept(TRUE).
.PP .PP
Examples: Examples:
.)l dirview/dirview.cpp and fileiconview/qfileiconview.cpp. .)l dirview/dirview.cpp and fileiconview/qfileiconview.cpp.
.SH "Action QDropEvent::action () const" .SH "Action TQDropEvent::action () const"
Returns the Action which the target is requesting to be performed with the data. If your application understands the action and can process the supplied data, call acceptAction(); if your application can process the supplied data but can only perform the Copy action, call accept(). Returns the Action which the target is requesting to be performed with the data. If your application understands the action and can process the supplied data, call acceptAction(); if your application can process the supplied data but can only perform the Copy action, call accept().
.PP .PP
Examples: Examples:
.)l dirview/dirview.cpp and fileiconview/qfileiconview.cpp. .)l dirview/dirview.cpp and fileiconview/qfileiconview.cpp.
.SH "QByteArray QDropEvent::data ( const char * f ) const" .SH "QByteArray TQDropEvent::data ( const char * f ) const"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. \fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.PP .PP
Use QDropEvent::encodedData(). Use TQDropEvent::encodedData().
.SH "QByteArray QDropEvent::encodedData ( const char * format ) const\fC [virtual]\fR" .SH "QByteArray TQDropEvent::encodedData ( const char * format ) const\fC [virtual]\fR"
Returns a byte array containing the drag's data, in \fIformat\fR. Returns a byte array containing the drag's data, in \fIformat\fR.
.PP .PP
data() normally needs to get the data from the drag source, which is potentially very slow, so it's advisable to call this function only if you're sure that you will need the data in \fIformat\fR. data() normally needs to get the data from the drag source, which is potentially very slow, so it's advisable to call this function only if you're sure that you will need the data in \fIformat\fR.
@ -121,8 +121,8 @@ The resulting data will have a size of 0 if the format was not available.
.PP .PP
See also format() and QByteArray::size(). See also format() and QByteArray::size().
.PP .PP
Reimplemented from QMimeSource. Reimplemented from TQMimeSource.
.SH "const char * QDropEvent::format ( int n = 0 ) const\fC [virtual]\fR" .SH "const char * TQDropEvent::format ( int n = 0 ) const\fC [virtual]\fR"
Returns a string describing one of the available data types for this drag. Common examples are "text/plain" and "image/gif". If \fIn\fR is less than zero or greater than the number of available data types, format() returns 0. Returns a string describing one of the available data types for this drag. Common examples are "text/plain" and "image/gif". If \fIn\fR is less than zero or greater than the number of available data types, format() returns 0.
.PP .PP
This function is provided mainly for debugging. Most drop targets will use provides(). This function is provided mainly for debugging. Most drop targets will use provides().
@ -131,40 +131,40 @@ See also data() and provides().
.PP .PP
Example: iconview/main.cpp. Example: iconview/main.cpp.
.PP .PP
Reimplemented from QMimeSource. Reimplemented from TQMimeSource.
.SH "void QDropEvent::ignore ()" .SH "void TQDropEvent::ignore ()"
The opposite of accept(), i.e. you have ignored the drop event. The opposite of accept(), i.e. you have ignored the drop event.
.PP .PP
Example: fileiconview/qfileiconview.cpp. Example: fileiconview/qfileiconview.cpp.
.SH "bool QDropEvent::isAccepted () const" .SH "bool TQDropEvent::isAccepted () const"
Returns TRUE if the drop target accepts the event; otherwise returns FALSE. Returns TRUE if the drop target accepts the event; otherwise returns FALSE.
.SH "bool QDropEvent::isActionAccepted () const" .SH "bool TQDropEvent::isActionAccepted () const"
Returns TRUE if the drop action was accepted by the drop site; otherwise returns FALSE. Returns TRUE if the drop action was accepted by the drop site; otherwise returns FALSE.
.SH "const QPoint & QDropEvent::pos () const" .SH "const QPoint & TQDropEvent::pos () const"
Returns the position where the drop was made. Returns the position where the drop was made.
.PP .PP
Example: dirview/dirview.cpp. Example: dirview/dirview.cpp.
.SH "bool QDropEvent::provides ( const char * mimeType ) const\fC [virtual]\fR" .SH "bool TQDropEvent::provides ( const char * mimeType ) const\fC [virtual]\fR"
Returns TRUE if this event provides format \fImimeType\fR; otherwise returns FALSE. Returns TRUE if this event provides format \fImimeType\fR; otherwise returns FALSE.
.PP .PP
See also data(). See also data().
.PP .PP
Example: fileiconview/qfileiconview.cpp. Example: fileiconview/qfileiconview.cpp.
.PP .PP
Reimplemented from QMimeSource. Reimplemented from TQMimeSource.
.SH "void QDropEvent::setAction ( Action a )" .SH "void TQDropEvent::setAction ( Action a )"
Sets the action to \fIa\fR. This is used internally, you should not need to call this in your code: the \fIsource\fR decides the action, not the target. Sets the action to \fIa\fR. This is used internally, you should not need to call this in your code: the \fIsource\fR decides the action, not the target.
.SH "void QDropEvent::setPoint ( const QPoint & np )" .SH "void TQDropEvent::setPoint ( const QPoint & np )"
Sets the drop to happen at point \fInp\fR. You do not normally need to use this as it will be set internally before your widget receives the drop event. Sets the drop to happen at point \fInp\fR. You do not normally need to use this as it will be set internally before your widget receives the drop event.
.SH "TQWidget * QDropEvent::source () const" .SH "TQWidget * TQDropEvent::source () const"
If the source of the drag operation is a widget in this application, this function returns that source, otherwise it returns 0. The source of the operation is the first parameter to drag object subclasses. If the source of the drag operation is a widget in this application, this function returns that source, otherwise it returns 0. The source of the operation is the first parameter to drag object subclasses.
.PP .PP
This is useful if your widget needs special behavior when dragging to itself, etc. This is useful if your widget needs special behavior when dragging to itself, etc.
.PP .PP
See QDragObject::QDragObject() and subclasses. See TQDragObject::TQDragObject() and subclasses.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/qdropevent.html .BR http://doc.trolltech.com/tqdropevent.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -13,7 +13,7 @@ QEvent \- The base class of all event classes. Event objects contain event param
.PP .PP
Inherits Qt. Inherits Qt.
.PP .PP
Inherited by TQTimerEvent, QMouseEvent, QWheelEvent, QTabletEvent, QKeyEvent, QFocusEvent, QPaintEvent, QMoveEvent, QResizeEvent, QCloseEvent, TQIconDragEvent, QShowEvent, QHideEvent, QContextMenuEvent, QIMEvent, QDropEvent, QDragLeaveEvent, QChildEvent, and QCustomEvent. Inherited by TQTimerEvent, QMouseEvent, QWheelEvent, QTabletEvent, QKeyEvent, QFocusEvent, QPaintEvent, QMoveEvent, QResizeEvent, QCloseEvent, TQIconDragEvent, QShowEvent, QHideEvent, QContextMenuEvent, QIMEvent, TQDropEvent, TQDragLeaveEvent, QChildEvent, and QCustomEvent.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
@ -141,13 +141,13 @@ This enum type defines the valid event types in Qt. The event types and the spec
.TP .TP
\fCQEvent::SockAct\fR - Socket activated, used to implement QSocketNotifier. \fCQEvent::SockAct\fR - Socket activated, used to implement QSocketNotifier.
.TP .TP
\fCQEvent::DragEnter\fR - A drag-and-drop enters widget, QDragEnterEvent. \fCQEvent::DragEnter\fR - A drag-and-drop enters widget, TQDragEnterEvent.
.TP .TP
\fCQEvent::DragMove\fR - A drag-and-drop is in progress, QDragMoveEvent. \fCQEvent::DragMove\fR - A drag-and-drop is in progress, TQDragMoveEvent.
.TP .TP
\fCQEvent::DragLeave\fR - A drag-and-drop leaves widget, QDragLeaveEvent. \fCQEvent::DragLeave\fR - A drag-and-drop leaves widget, TQDragLeaveEvent.
.TP .TP
\fCQEvent::Drop\fR - A drag-and-drop is completed, QDropEvent. \fCQEvent::Drop\fR - A drag-and-drop is completed, TQDropEvent.
.TP .TP
\fCQEvent::DragResponse\fR - Internal event used by TQt on some platforms. \fCQEvent::DragResponse\fR - Internal event used by TQt on some platforms.
.TP .TP

@ -11,7 +11,7 @@ TQIconDrag \- Supports drag and drop operations within a TQIconView
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <tqiconview.h>\fR \fC#include <tqiconview.h>\fR
.PP .PP
Inherits QDragObject. Inherits TQDragObject.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
@ -31,7 +31,7 @@ Inherits QDragObject.
.SS "Static Public Members" .SS "Static Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "bool \fBcanDecode\fR ( QMimeSource * e )" .BI "bool \fBcanDecode\fR ( TQMimeSource * e )"
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
@ -41,11 +41,11 @@ A TQIconDrag object is used to maintain information about the positions of dragg
.PP .PP
If you want to use the extended drag-and-drop functionality of TQIconView, create a TQIconDrag object in a reimplementation of TQIconView::dragObject(). Then create a TQIconDragItem for each item which should be dragged, set the data it represents with TQIconDragItem::setData(), and add each TQIconDragItem to the drag object using append(). If you want to use the extended drag-and-drop functionality of TQIconView, create a TQIconDrag object in a reimplementation of TQIconView::dragObject(). Then create a TQIconDragItem for each item which should be dragged, set the data it represents with TQIconDragItem::setData(), and add each TQIconDragItem to the drag object using append().
.PP .PP
The data in TQIconDragItems 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 TQIconDrag and reimplement format(), encodedData() and canDecode(). The data in TQIconDragItems is stored in a QByteArray and is mime-typed (see TQMimeSource and the Drag and Drop overview). If you want to use your own mime-types derive a class from TQIconDrag and reimplement format(), encodedData() and canDecode().
.PP .PP
The fileiconview example program demonstrates the use of the TQIconDrag class including subclassing and reimplementing dragObject(), format(), encodedData() and canDecode(). See the files \fCqt/examples/fileiconview/qfileiconview.h\fR and \fCqt/examples/fileiconview/qfileiconview.cpp\fR. The fileiconview example program demonstrates the use of the TQIconDrag class including subclassing and reimplementing dragObject(), format(), encodedData() and canDecode(). See the files \fCqt/examples/fileiconview/qfileiconview.h\fR and \fCqt/examples/fileiconview/qfileiconview.cpp\fR.
.PP .PP
See also QMimeSource::format() and Drag And Drop Classes. See also TQMimeSource::format() and Drag And Drop Classes.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "TQIconDrag::TQIconDrag ( TQWidget * dragSource, const char * name = 0 )" .SH "TQIconDrag::TQIconDrag ( TQWidget * dragSource, const char * name = 0 )"
Constructs a drag object called \fIname\fR, which is a child of \fIdragSource\fR. Constructs a drag object called \fIname\fR, which is a child of \fIdragSource\fR.
@ -59,7 +59,7 @@ Append the TQIconDragItem, \fIi\fR, to the TQIconDrag object's list of items. Yo
See also TQIconDragItem. See also TQIconDragItem.
.PP .PP
Example: fileiconview/qfileiconview.cpp. Example: fileiconview/qfileiconview.cpp.
.SH "bool TQIconDrag::canDecode ( QMimeSource * e )\fC [static]\fR" .SH "bool TQIconDrag::canDecode ( TQMimeSource * e )\fC [static]\fR"
Returns TRUE if \fIe\fR can be decoded by the TQIconDrag, otherwise return FALSE. Returns TRUE if \fIe\fR can be decoded by the TQIconDrag, otherwise return FALSE.
.PP .PP
Example: fileiconview/qfileiconview.cpp. Example: fileiconview/qfileiconview.cpp.
@ -68,7 +68,7 @@ Returns the encoded data of the drag object if \fImime\fR is application/x-qicon
.PP .PP
Example: fileiconview/qfileiconview.cpp. Example: fileiconview/qfileiconview.cpp.
.PP .PP
Reimplemented from QMimeSource. Reimplemented from TQMimeSource.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/tqicondrag.html .BR http://doc.trolltech.com/tqicondrag.html

@ -247,7 +247,7 @@ Inherits QScrollView.
.BI "void \fBcontextMenuRequested\fR ( TQIconViewItem * item, const QPoint & pos )" .BI "void \fBcontextMenuRequested\fR ( TQIconViewItem * item, const QPoint & pos )"
.br .br
.ti -1c .ti -1c
.BI "void \fBdropped\fR ( QDropEvent * e, const TQValueList<TQIconDragItem> & lst )" .BI "void \fBdropped\fR ( TQDropEvent * e, const TQValueList<TQIconDragItem> & lst )"
.br .br
.ti -1c .ti -1c
.BI "void \fBmoved\fR ()" .BI "void \fBmoved\fR ()"
@ -325,7 +325,7 @@ Inherits QScrollView.
.BI "virtual void \fBdrawRubber\fR ( QPainter * p )" .BI "virtual void \fBdrawRubber\fR ( QPainter * p )"
.br .br
.ti -1c .ti -1c
.BI "virtual QDragObject * \fBdragObject\fR ()" .BI "virtual TQDragObject * \fBdragObject\fR ()"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBstartDrag\fR ()" .BI "virtual void \fBstartDrag\fR ()"
@ -419,7 +419,7 @@ The simple approach to dragging items out of the icon view is to subclass TQIcon
.PP .PP
.nf .nf
.br .br
QDragObject *MyIconView::dragObject() TQDragObject *MyIconView::dragObject()
.br .br
{ {
.br .br
@ -429,13 +429,13 @@ The simple approach to dragging items out of the icon view is to subclass TQIcon
.br .br
.fi .fi
.PP .PP
In this example we create a TQTextDrag object, (derived from QDragObject), containing the item's label and return it as the drag object. We could just as easily have created a TQImageDrag from the item's pixmap and returned that instead. In this example we create a TQTextDrag object, (derived from TQDragObject), containing the item's label and return it as the drag object. We could just as easily have created a TQImageDrag from the item's pixmap and returned that instead.
.PP .PP
TQIconViews and their TQIconViewItems can also be the targets of drag and drops. To make the TQIconView itself able to accept drops connect to the dropped() signal. When a drop occurs this signal will be emitted with a QDragEvent and a TQValueList of TQIconDragItems. To make a TQIconViewItem into a drop target subclass TQIconViewItem and reimplement TQIconViewItem::acceptDrop() and TQIconViewItem::dropped(). TQIconViews and their TQIconViewItems can also be the targets of drag and drops. To make the TQIconView itself able to accept drops connect to the dropped() signal. When a drop occurs this signal will be emitted with a TQDragEvent and a TQValueList of TQIconDragItems. To make a TQIconViewItem into a drop target subclass TQIconViewItem and reimplement TQIconViewItem::acceptDrop() and TQIconViewItem::dropped().
.PP .PP
.nf .nf
.br .br
bool MyIconViewItem::acceptDrop( const QMimeSource *mime ) const bool MyIconViewItem::acceptDrop( const TQMimeSource *mime ) const
.br .br
{ {
.br .br
@ -448,7 +448,7 @@ TQIconViews and their TQIconViewItems can also be the targets of drag and drops.
} }
.br .br
.br .br
void MyIconViewItem::dropped( QDropEvent *evt, const TQValueList<TQIconDragItem>& ) void MyIconViewItem::dropped( TQDropEvent *evt, const TQValueList<TQIconDragItem>& )
.br .br
{ {
.br .br
@ -573,8 +573,8 @@ See also setCurrentItem(), firstItem(), and lastItem().
Performs autoscrolling when selecting multiple icons with the rubber band. Performs autoscrolling when selecting multiple icons with the rubber band.
.SH "void TQIconView::doubleClicked ( TQIconViewItem * item )\fC [signal]\fR" .SH "void TQIconView::doubleClicked ( TQIconViewItem * item )\fC [signal]\fR"
This signal is emitted when the user double-clicks on \fIitem\fR. This signal is emitted when the user double-clicks on \fIitem\fR.
.SH "QDragObject * TQIconView::dragObject ()\fC [virtual protected]\fR" .SH "TQDragObject * TQIconView::dragObject ()\fC [virtual protected]\fR"
Returns the QDragObject that should be used for drag-and-drop. This function is called by the icon view when starting a drag to get the dragobject that should be used for the drag. Subclasses may reimplement this. Returns the TQDragObject that should be used for drag-and-drop. This function is called by the icon view when starting a drag to get the dragobject that should be used for the drag. Subclasses may reimplement this.
.PP .PP
See also TQIconDrag. See also TQIconDrag.
.PP .PP
@ -588,7 +588,7 @@ The default implementation fills \fIr\fR with the viewport's backgroundBrush().
See also contentsX, contentsY, and drawContents(). See also contentsX, contentsY, and drawContents().
.SH "void TQIconView::drawRubber ( QPainter * p )\fC [virtual protected]\fR" .SH "void TQIconView::drawRubber ( QPainter * p )\fC [virtual protected]\fR"
Draws the rubber band using the painter \fIp\fR. Draws the rubber band using the painter \fIp\fR.
.SH "void TQIconView::dropped ( QDropEvent * e, const TQValueList<TQIconDragItem> & lst )\fC [signal]\fR" .SH "void TQIconView::dropped ( TQDropEvent * e, const TQValueList<TQIconDragItem> & lst )\fC [signal]\fR"
This signal is emitted when a drop event occurs in the viewport (but not on any icon) which the icon view itself can't handle. This signal is emitted when a drop event occurs in the viewport (but not on any icon) which the icon view itself can't handle.
.PP .PP
\fIe\fR provides all the information about the drop. If the drag object of the drop was a TQIconDrag, \fIlst\fR contains the list of the dropped items. You can get the data using TQIconDragItem::data() on each item. If the \fIlst\fR is empty, i.e. the drag was not a TQIconDrag, you have to decode the data in \fIe\fR and work with that. \fIe\fR provides all the information about the drop. If the drag object of the drop was a TQIconDrag, \fIlst\fR contains the list of the dropped items. You can get the data using TQIconDragItem::data() on each item. If the \fIlst\fR is empty, i.e. the drag was not a TQIconDrag, you have to decode the data in \fIe\fR and work with that.

@ -148,7 +148,7 @@ Inherits Qt.
.BI "bool \fBintersects\fR ( const QRect & r ) const" .BI "bool \fBintersects\fR ( const QRect & r ) const"
.br .br
.ti -1c .ti -1c
.BI "virtual bool \fBacceptDrop\fR ( const QMimeSource * mime ) const" .BI "virtual bool \fBacceptDrop\fR ( const TQMimeSource * mime ) const"
.br .br
.ti -1c .ti -1c
.BI "void \fBrename\fR ()" .BI "void \fBrename\fR ()"
@ -193,7 +193,7 @@ Inherits Qt.
.BI "virtual void \fBpaintFocus\fR ( QPainter * p, const QColorGroup & cg )" .BI "virtual void \fBpaintFocus\fR ( QPainter * p, const QColorGroup & cg )"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBdropped\fR ( QDropEvent * e, const TQValueList<TQIconDragItem> & lst )" .BI "virtual void \fBdropped\fR ( TQDropEvent * e, const TQValueList<TQIconDragItem> & lst )"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBdragEntered\fR ()" .BI "virtual void \fBdragEntered\fR ()"
@ -282,8 +282,8 @@ Constructs an icon view item and inserts it into the icon view \fIparent\fR usin
Constructs an icon view item and inserts it into the icon view \fIparent\fR using \fItext\fR as the text and \fIpicture\fR as the icon, after the icon view item \fIafter\fR. Constructs an icon view item and inserts it into the icon view \fIparent\fR using \fItext\fR as the text and \fIpicture\fR as the icon, after the icon view item \fIafter\fR.
.SH "TQIconViewItem::~TQIconViewItem ()\fC [virtual]\fR" .SH "TQIconViewItem::~TQIconViewItem ()\fC [virtual]\fR"
Destroys the icon view item and tells the parent icon view that the item has been destroyed. Destroys the icon view item and tells the parent icon view that the item has been destroyed.
.SH "bool TQIconViewItem::acceptDrop ( const QMimeSource * mime ) const\fC [virtual]\fR" .SH "bool TQIconViewItem::acceptDrop ( const TQMimeSource * mime ) const\fC [virtual]\fR"
Returns TRUE if you can drop things with a QMimeSource of \fImime\fR onto this item; otherwise returns FALSE. Returns TRUE if you can drop things with a TQMimeSource of \fImime\fR onto this item; otherwise returns FALSE.
.PP .PP
The default implementation always returns FALSE. You must subclass TQIconViewItem and reimplement acceptDrop() to accept drops. The default implementation always returns FALSE. You must subclass TQIconViewItem and reimplement acceptDrop() to accept drops.
.PP .PP
@ -333,7 +333,7 @@ Example: fileiconview/qfileiconview.cpp.
Returns TRUE if the user is allowed to drop something onto the item; otherwise returns FALSE. Returns TRUE if the user is allowed to drop something onto the item; otherwise returns FALSE.
.PP .PP
See also setDropEnabled(). See also setDropEnabled().
.SH "void TQIconViewItem::dropped ( QDropEvent * e, const TQValueList<TQIconDragItem> & lst )\fC [virtual protected]\fR" .SH "void TQIconViewItem::dropped ( TQDropEvent * e, const TQValueList<TQIconDragItem> & lst )\fC [virtual protected]\fR"
This function is called when something is dropped on the item. \fIe\fR provides all the information about the drop. If the drag object of the drop was a TQIconDrag, \fIlst\fR contains the list of the dropped items. You can get the data by calling TQIconDragItem::data() on each item. If the \fIlst\fR is empty, i.e. the drag was not a TQIconDrag, you must decode the data in \fIe\fR and work with that. This function is called when something is dropped on the item. \fIe\fR provides all the information about the drop. If the drag object of the drop was a TQIconDrag, \fIlst\fR contains the list of the dropped items. You can get the data by calling TQIconDragItem::data() on each item. If the \fIlst\fR is empty, i.e. the drag was not a TQIconDrag, you must decode the data in \fIe\fR and work with that.
.PP .PP
The default implementation does nothing; subclasses may reimplement this function. The default implementation does nothing; subclasses may reimplement this function.

@ -619,7 +619,7 @@ See also invertPixels(), depth(), hasAlphaBuffer(), and create().
.SH "TQImage TQImage::fromMimeSource ( const TQString & abs_name )\fC [static]\fR" .SH "TQImage TQImage::fromMimeSource ( const TQString & abs_name )\fC [static]\fR"
Convenience function. Gets the data associated with the absolute name \fIabs_name\fR from the default mime source factory and decodes it to an image. Convenience function. Gets the data associated with the absolute name \fIabs_name\fR from the default mime source factory and decodes it to an image.
.PP .PP
See also QMimeSourceFactory, TQImage::fromMimeSource(), and TQImageDrag::decode(). See also TQMimeSourceFactory, TQImage::fromMimeSource(), and TQImageDrag::decode().
.SH "bool TQImage::hasAlphaBuffer () const" .SH "bool TQImage::hasAlphaBuffer () const"
Returns TRUE if alpha buffer mode is enabled; otherwise returns FALSE. Returns TRUE if alpha buffer mode is enabled; otherwise returns FALSE.
.PP .PP

@ -9,9 +9,9 @@
.SH NAME .SH NAME
TQImageDrag \- Drag and drop object for transferring images TQImageDrag \- Drag and drop object for transferring images
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqdragobject.h>\fR \fC#include <tqdragobject.h>\fR
.PP .PP
Inherits QDragObject. Inherits TQDragObject.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
@ -31,13 +31,13 @@ Inherits QDragObject.
.SS "Static Public Members" .SS "Static Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "bool \fBcanDecode\fR ( const QMimeSource * e )" .BI "bool \fBcanDecode\fR ( const TQMimeSource * e )"
.br .br
.ti -1c .ti -1c
.BI "bool \fBdecode\fR ( const QMimeSource * e, TQImage & img )" .BI "bool \fBdecode\fR ( const TQMimeSource * e, TQImage & img )"
.br .br
.ti -1c .ti -1c
.BI "bool \fBdecode\fR ( const QMimeSource * e, QPixmap & pm )" .BI "bool \fBdecode\fR ( const TQMimeSource * e, QPixmap & pm )"
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
@ -45,7 +45,7 @@ The TQImageDrag class provides a drag and drop object for transferring images.
.PP .PP
Images are offered to the receiving application in multiple formats, determined by Qt's output formats. Images are offered to the receiving application in multiple formats, determined by Qt's output formats.
.PP .PP
For more information about drag and drop, see the QDragObject class and the drag and drop documentation. For more information about drag and drop, see the TQDragObject class and the drag and drop documentation.
.PP .PP
See also Drag And Drop Classes. See also Drag And Drop Classes.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
@ -55,19 +55,19 @@ Constructs an image drag object and sets its data to \fIimage\fR. \fIdragSource\
Constructs a default image drag object. \fIdragSource\fR must be the drag source; \fIname\fR is the object name. Constructs a default image drag object. \fIdragSource\fR must be the drag source; \fIname\fR is the object name.
.SH "TQImageDrag::~TQImageDrag ()" .SH "TQImageDrag::~TQImageDrag ()"
Destroys the image drag object and frees up all allocated resources. Destroys the image drag object and frees up all allocated resources.
.SH "bool TQImageDrag::canDecode ( const QMimeSource * e )\fC [static]\fR" .SH "bool TQImageDrag::canDecode ( const TQMimeSource * e )\fC [static]\fR"
Returns TRUE if the information in mime source \fIe\fR can be decoded into an image; otherwise returns FALSE. Returns TRUE if the information in mime source \fIe\fR can be decoded into an image; otherwise returns FALSE.
.PP .PP
See also decode(). See also decode().
.PP .PP
Example: desktop/desktop.cpp. Example: desktop/desktop.cpp.
.SH "bool TQImageDrag::decode ( const QMimeSource * e, TQImage & img )\fC [static]\fR" .SH "bool TQImageDrag::decode ( const TQMimeSource * e, TQImage & img )\fC [static]\fR"
Attempts to decode the dropped information in mime source \fIe\fR into \fIimg\fR. Returns TRUE if successful; otherwise returns FALSE. Attempts to decode the dropped information in mime source \fIe\fR into \fIimg\fR. Returns TRUE if successful; otherwise returns FALSE.
.PP .PP
See also canDecode(). See also canDecode().
.PP .PP
Example: desktop/desktop.cpp. Example: desktop/desktop.cpp.
.SH "bool TQImageDrag::decode ( const QMimeSource * e, QPixmap & pm )\fC [static]\fR" .SH "bool TQImageDrag::decode ( const TQMimeSource * e, QPixmap & pm )\fC [static]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP .PP
Attempts to decode the dropped information in mime source \fIe\fR into pixmap \fIpm\fR. Returns TRUE if successful; otherwise returns FALSE. Attempts to decode the dropped information in mime source \fIe\fR into pixmap \fIpm\fR. Returns TRUE if successful; otherwise returns FALSE.

@ -307,7 +307,7 @@ Inherits QScrollView.
.BI "void \fBcollapsed\fR ( QListViewItem * item )" .BI "void \fBcollapsed\fR ( QListViewItem * item )"
.br .br
.ti -1c .ti -1c
.BI "void \fBdropped\fR ( QDropEvent * e )" .BI "void \fBdropped\fR ( TQDropEvent * e )"
.br .br
.ti -1c .ti -1c
.BI "void \fBitemRenamed\fR ( QListViewItem * item, int col, const TQString & text )" .BI "void \fBitemRenamed\fR ( QListViewItem * item, int col, const TQString & text )"
@ -370,7 +370,7 @@ Inherits QScrollView.
.BI "virtual void \fBcontentsMouseDoubleClickEvent\fR ( QMouseEvent * e )" .BI "virtual void \fBcontentsMouseDoubleClickEvent\fR ( QMouseEvent * e )"
.br .br
.ti -1c .ti -1c
.BI "virtual QDragObject * \fBdragObject\fR ()" .BI "virtual TQDragObject * \fBdragObject\fR ()"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBstartDrag\fR ()" .BI "virtual void \fBstartDrag\fR ()"
@ -654,15 +654,15 @@ This signal is emitted whenever an item is double-clicked. It's emitted on the s
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. (use doubleClicked( QListViewItem *, const QPoint&, int )) \fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. (use doubleClicked( QListViewItem *, const QPoint&, int ))
.PP .PP
This signal is emitted whenever an item is double-clicked. It's emitted on the second button press, not the second button release. \fIitem\fR is the list view item on which the user did the double-click. This signal is emitted whenever an item is double-clicked. It's emitted on the second button press, not the second button release. \fIitem\fR is the list view item on which the user did the double-click.
.SH "QDragObject * QListView::dragObject ()\fC [virtual protected]\fR" .SH "TQDragObject * QListView::dragObject ()\fC [virtual protected]\fR"
If the user presses the mouse on an item and starts moving the mouse, and the item allow dragging (see QListViewItem::setDragEnabled()), this function is called to get a drag object and a drag is started unless dragObject() returns 0. If the user presses the mouse on an item and starts moving the mouse, and the item allow dragging (see QListViewItem::setDragEnabled()), this function is called to get a drag object and a drag is started unless dragObject() returns 0.
.PP .PP
By default this function returns 0. You should reimplement it and create a QDragObject depending on the selected items. By default this function returns 0. You should reimplement it and create a TQDragObject depending on the selected items.
.SH "void QListView::drawContentsOffset ( QPainter * p, int ox, int oy, int cx, int cy, int cw, int ch )\fC [virtual protected]\fR" .SH "void QListView::drawContentsOffset ( QPainter * p, int ox, int oy, int cx, int cy, int cw, int ch )\fC [virtual protected]\fR"
Calls QListViewItem::paintCell() and QListViewItem::paintBranches() as necessary for all list view items that require repainting in the \fIcw\fR pixels wide and \fIch\fR pixels high bounding rectangle starting at position \fIcx\fR, \fIcy\fR with offset \fIox\fR, \fIoy\fR. Uses the painter \fIp\fR. Calls QListViewItem::paintCell() and QListViewItem::paintBranches() as necessary for all list view items that require repainting in the \fIcw\fR pixels wide and \fIch\fR pixels high bounding rectangle starting at position \fIcx\fR, \fIcy\fR with offset \fIox\fR, \fIoy\fR. Uses the painter \fIp\fR.
.PP .PP
Reimplemented from QScrollView. Reimplemented from QScrollView.
.SH "void QListView::dropped ( QDropEvent * e )\fC [signal]\fR" .SH "void QListView::dropped ( TQDropEvent * e )\fC [signal]\fR"
This signal is emitted, when a drop event occurred on the viewport (not onto an item). This signal is emitted, when a drop event occurred on the viewport (not onto an item).
.PP .PP
\fIe\fR provides all the information about the drop. \fIe\fR provides all the information about the drop.

@ -174,7 +174,7 @@ Inherited by QCheckListItem.
.BI "bool \fBdropEnabled\fR () const" .BI "bool \fBdropEnabled\fR () const"
.br .br
.ti -1c .ti -1c
.BI "virtual bool \fBacceptDrop\fR ( const QMimeSource * mime ) const" .BI "virtual bool \fBacceptDrop\fR ( const TQMimeSource * mime ) const"
.br .br
.ti -1c .ti -1c
.BI "void \fBsetVisible\fR ( bool b )" .BI "void \fBsetVisible\fR ( bool b )"
@ -222,7 +222,7 @@ Inherited by QCheckListItem.
.BI "bool \fBactivatedPos\fR ( QPoint & pos )" .BI "bool \fBactivatedPos\fR ( QPoint & pos )"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBdropped\fR ( QDropEvent * e )" .BI "virtual void \fBdropped\fR ( TQDropEvent * e )"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBdragEntered\fR ()" .BI "virtual void \fBdragEntered\fR ()"
@ -346,8 +346,8 @@ Note that the order is changed according to QListViewItem::key() unless the list
See also setText(). See also setText().
.SH "QListViewItem::~QListViewItem ()\fC [virtual]\fR" .SH "QListViewItem::~QListViewItem ()\fC [virtual]\fR"
Destroys the item, deleting all its children and freeing up all allocated resources. Destroys the item, deleting all its children and freeing up all allocated resources.
.SH "bool QListViewItem::acceptDrop ( const QMimeSource * mime ) const\fC [virtual]\fR" .SH "bool QListViewItem::acceptDrop ( const TQMimeSource * mime ) const\fC [virtual]\fR"
Returns TRUE if the item can accept drops of type QMimeSource \fImime\fR; otherwise returns FALSE. Returns TRUE if the item can accept drops of type TQMimeSource \fImime\fR; otherwise returns FALSE.
.PP .PP
The default implementation does nothing and returns FALSE. A subclass must reimplement this to accept drops. The default implementation does nothing and returns FALSE. A subclass must reimplement this to accept drops.
.SH "void QListViewItem::activate ()\fC [virtual protected]\fR" .SH "void QListViewItem::activate ()\fC [virtual protected]\fR"
@ -415,7 +415,7 @@ The default implementation does nothing, subclasses may need to reimplement this
Returns TRUE if this item accepts drops; otherwise returns FALSE. Returns TRUE if this item accepts drops; otherwise returns FALSE.
.PP .PP
See also setDropEnabled() and acceptDrop(). See also setDropEnabled() and acceptDrop().
.SH "void QListViewItem::dropped ( QDropEvent * e )\fC [virtual protected]\fR" .SH "void QListViewItem::dropped ( TQDropEvent * e )\fC [virtual protected]\fR"
This function is called when something was dropped on the item. \fIe\fR contains all the information about the drop. This function is called when something was dropped on the item. \fIe\fR contains all the information about the drop.
.PP .PP
The default implementation does nothing, subclasses may need to reimplement this function. The default implementation does nothing, subclasses may need to reimplement this function.

@ -1,5 +1,5 @@
'\" t '\" t
.TH QMacMime 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQMacMime 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,17 +7,17 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QMacMime \- Maps open-standard MIME to Mac flavors TQMacMime \- Maps open-standard MIME to Mac flavors
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqmime.h>\fR \fC#include <tqmime.h>\fR
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQMacMime\fR ( char t )" .BI "\fBTQMacMime\fR ( char t )"
.br .br
.ti -1c .ti -1c
.BI "virtual \fB~QMacMime\fR ()" .BI "virtual \fB~TQMacMime\fR ()"
.br .br
.ti -1c .ti -1c
.BI "virtual const char * \fBconvertorName\fR () = 0" .BI "virtual const char * \fBconvertorName\fR () = 0"
@ -47,21 +47,21 @@ QMacMime \- Maps open-standard MIME to Mac flavors
.SS "Static Public Members" .SS "Static Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "TQPtrList<QMacMime> \fBall\fR ( QMacMimeType t )" .BI "TQPtrList<TQMacMime> \fBall\fR ( TQMacMimeType t )"
.br .br
.ti -1c .ti -1c
.BI "QMacMime * \fBconvertor\fR ( QMacMimeType t, const char * mime, int flav )" .BI "TQMacMime * \fBconvertor\fR ( TQMacMimeType t, const char * mime, int flav )"
.br .br
.ti -1c .ti -1c
.BI "const char * \fBflavorToMime\fR ( QMacMimeType t, int flav )" .BI "const char * \fBflavorToMime\fR ( TQMacMimeType t, int flav )"
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QMacMime class maps open-standard MIME to Mac flavors. The TQMacMime class maps open-standard MIME to Mac flavors.
.PP .PP
Qt's drag-and-drop and clipboard facilities use the MIME standard. On X11, this maps trivially to the Xdnd protocol, but on Mac although some applications use MIME types to describe clipboard formats, others use arbitrary non-standardized naming conventions, or unnamed built-in Mac formats. Qt's drag-and-drop and clipboard facilities use the MIME standard. On X11, this maps trivially to the Xdnd protocol, but on Mac although some applications use MIME types to describe clipboard formats, others use arbitrary non-standardized naming conventions, or unnamed built-in Mac formats.
.PP .PP
By instantiating subclasses of QMacMime that provide conversions between Mac flavors and MIME formats, you can convert proprietary clipboard formats to MIME formats. By instantiating subclasses of TQMacMime that provide conversions between Mac flavors and MIME formats, you can convert proprietary clipboard formats to MIME formats.
.PP .PP
Qt has predefined support for the following Mac flavors: Qt has predefined support for the following Mac flavors:
.TP .TP
@ -71,61 +71,61 @@ kScrapFlavorTypeText - converted to "text/plain;charset=system" or "text/plain"
.TP .TP
kScrapFlavorTypePicture - converted to "image/format", where format is a TQt image format, and supported by TQImageDrag. kScrapFlavorTypePicture - converted to "image/format", where format is a TQt image format, and supported by TQImageDrag.
.TP .TP
kDragFlavorTypeHFS - converted to "text/uri-list", and supported by QUriDrag. kDragFlavorTypeHFS - converted to "text/uri-list", and supported by TQUriDrag.
.PP .PP
You can check if a MIME type is convertible using canConvert() and can perform conversions with convertToMime() and convertFromMime(). You can check if a MIME type is convertible using canConvert() and can perform conversions with convertToMime() and convertFromMime().
.PP .PP
See also Drag And Drop Classes, Input/Output and Networking, and Miscellaneous Classes. See also Drag And Drop Classes, Input/Output and Networking, and Miscellaneous Classes.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QMacMime::QMacMime ( char t )" .SH "TQMacMime::TQMacMime ( char t )"
Constructs a new conversion object of type \fIt\fR, adding it to the globally accessed list of available convertors. Constructs a new conversion object of type \fIt\fR, adding it to the globally accessed list of available convertors.
.SH "QMacMime::~QMacMime ()\fC [virtual]\fR" .SH "TQMacMime::~TQMacMime ()\fC [virtual]\fR"
Destroys a conversion object, removing it from the global list of available convertors. Destroys a conversion object, removing it from the global list of available convertors.
.SH "TQPtrList<QMacMime> QMacMime::all ( QMacMimeType t )\fC [static]\fR" .SH "TQPtrList<TQMacMime> TQMacMime::all ( TQMacMimeType t )\fC [static]\fR"
Returns a list of all currently defined QMacMime objects of type \fIt\fR. Returns a list of all currently defined TQMacMime objects of type \fIt\fR.
.SH "bool QMacMime::canConvert ( const char * mime, int flav )\fC [pure virtual]\fR" .SH "bool TQMacMime::canConvert ( const char * mime, int flav )\fC [pure virtual]\fR"
Returns TRUE if the convertor can convert (both ways) between \fImime\fR and \fIflav\fR; otherwise returns FALSE. Returns TRUE if the convertor can convert (both ways) between \fImime\fR and \fIflav\fR; otherwise returns FALSE.
.PP .PP
All subclasses must reimplement this pure virtual function. All subclasses must reimplement this pure virtual function.
.SH "TQValueList<QByteArray> QMacMime::convertFromMime ( QByteArray data, const char * mime, int flav )\fC [pure virtual]\fR" .SH "TQValueList<QByteArray> TQMacMime::convertFromMime ( QByteArray data, const char * mime, int flav )\fC [pure virtual]\fR"
Returns \fIdata\fR converted from MIME type \fImime\fR to Mac flavor \fIflav\fR. Returns \fIdata\fR converted from MIME type \fImime\fR to Mac flavor \fIflav\fR.
.PP .PP
Note that Mac flavors must all be self-terminating. The return value may contain trailing data. Note that Mac flavors must all be self-terminating. The return value may contain trailing data.
.PP .PP
All subclasses must reimplement this pure virtual function. All subclasses must reimplement this pure virtual function.
.SH "QByteArray QMacMime::convertToMime ( TQValueList<QByteArray> data, const char * mime, int flav )\fC [pure virtual]\fR" .SH "QByteArray TQMacMime::convertToMime ( TQValueList<QByteArray> data, const char * mime, int flav )\fC [pure virtual]\fR"
Returns \fIdata\fR converted from Mac flavor \fIflav\fR to MIME type \fImime\fR. Returns \fIdata\fR converted from Mac flavor \fIflav\fR to MIME type \fImime\fR.
.PP .PP
Note that Mac flavors must all be self-terminating. The input \fIdata\fR may contain trailing data. Note that Mac flavors must all be self-terminating. The input \fIdata\fR may contain trailing data.
.PP .PP
All subclasses must reimplement this pure virtual function. All subclasses must reimplement this pure virtual function.
.SH "QMacMime * QMacMime::convertor ( QMacMimeType t, const char * mime, int flav )\fC [static]\fR" .SH "TQMacMime * TQMacMime::convertor ( TQMacMimeType t, const char * mime, int flav )\fC [static]\fR"
Returns the most-recently created QMacMime of type \fIt\fR that can convert between the \fImime\fR and \fIflav\fR formats. Returns 0 if no such convertor exists. Returns the most-recently created TQMacMime of type \fIt\fR that can convert between the \fImime\fR and \fIflav\fR formats. Returns 0 if no such convertor exists.
.SH "const char * QMacMime::convertorName ()\fC [pure virtual]\fR" .SH "const char * TQMacMime::convertorName ()\fC [pure virtual]\fR"
Returns a name for the convertor. Returns a name for the convertor.
.PP .PP
All subclasses must reimplement this pure virtual function. All subclasses must reimplement this pure virtual function.
.SH "int QMacMime::countFlavors ()\fC [pure virtual]\fR" .SH "int TQMacMime::countFlavors ()\fC [pure virtual]\fR"
Returns the number of Mac flavors supported by this convertor. Returns the number of Mac flavors supported by this convertor.
.PP .PP
All subclasses must reimplement this pure virtual function. All subclasses must reimplement this pure virtual function.
.SH "int QMacMime::flavor ( int index )\fC [pure virtual]\fR" .SH "int TQMacMime::flavor ( int index )\fC [pure virtual]\fR"
Returns the Mac flavor supported by this convertor that is ordinarily at position \fIindex\fR. This means that flavor(0) returns the first Mac flavor supported, and flavor(countFlavors()-1) returns the last. If \fIindex\fR is out of range the return value is undefined. Returns the Mac flavor supported by this convertor that is ordinarily at position \fIindex\fR. This means that flavor(0) returns the first Mac flavor supported, and flavor(countFlavors()-1) returns the last. If \fIindex\fR is out of range the return value is undefined.
.PP .PP
All subclasses must reimplement this pure virtual function. All subclasses must reimplement this pure virtual function.
.SH "int QMacMime::flavorFor ( const char * mime )\fC [pure virtual]\fR" .SH "int TQMacMime::flavorFor ( const char * mime )\fC [pure virtual]\fR"
Returns the Mac flavor used for MIME type \fImime\fR, or 0 if this convertor does not support \fImime\fR. Returns the Mac flavor used for MIME type \fImime\fR, or 0 if this convertor does not support \fImime\fR.
.PP .PP
All subclasses must reimplement this pure virtual function. All subclasses must reimplement this pure virtual function.
.SH "const char * QMacMime::flavorToMime ( QMacMimeType t, int flav )\fC [static]\fR" .SH "const char * TQMacMime::flavorToMime ( TQMacMimeType t, int flav )\fC [static]\fR"
Returns a MIME type of type \fIt\fR for \fIflav\fR, or 0 if none exists. Returns a MIME type of type \fIt\fR for \fIflav\fR, or 0 if none exists.
.SH "const char * QMacMime::mimeFor ( int flav )\fC [pure virtual]\fR" .SH "const char * TQMacMime::mimeFor ( int flav )\fC [pure virtual]\fR"
Returns the MIME type used for Mac flavor \fIflav\fR, or 0 if this convertor does not support \fIflav\fR. Returns the MIME type used for Mac flavor \fIflav\fR, or 0 if this convertor does not support \fIflav\fR.
.PP .PP
All subclasses must reimplement this pure virtual function. All subclasses must reimplement this pure virtual function.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/qmacmime.html .BR http://doc.trolltech.com/tqmacmime.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -1,5 +1,5 @@
'\" t '\" t
.TH QMimeSource 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQMimeSource 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,19 +7,19 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QMimeSource \- Abstraction of objects which provide formatted data of a certain MIME type TQMimeSource \- Abstraction of objects which provide formatted data of a certain MIME type
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqmime.h>\fR \fC#include <tqmime.h>\fR
.PP .PP
Inherited by QDragObject and QDropEvent. Inherited by TQDragObject and TQDropEvent.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQMimeSource\fR ()" .BI "\fBTQMimeSource\fR ()"
.br .br
.ti -1c .ti -1c
.BI "virtual \fB~QMimeSource\fR ()" .BI "virtual \fB~TQMimeSource\fR ()"
.br .br
.ti -1c .ti -1c
.BI "virtual const char * \fBformat\fR ( int i = 0 ) const = 0" .BI "virtual const char * \fBformat\fR ( int i = 0 ) const = 0"
@ -35,41 +35,41 @@ Inherited by QDragObject and QDropEvent.
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QMimeSource class is an abstraction of objects which provide formatted data of a certain MIME type. The TQMimeSource class is an abstraction of objects which provide formatted data of a certain MIME type.
.PP .PP
Drag-and-drop and clipboard use this abstraction. Drag-and-drop and clipboard use this abstraction.
.PP .PP
See also IANA list of MIME media types, Drag And Drop Classes, Input/Output and Networking, and Miscellaneous Classes. See also IANA list of MIME media types, Drag And Drop Classes, Input/Output and Networking, and Miscellaneous Classes.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QMimeSource::QMimeSource ()" .SH "TQMimeSource::TQMimeSource ()"
Constructs a mime source and assigns a globally unique serial number to it. Constructs a mime source and assigns a globally unique serial number to it.
.PP .PP
See also serialNumber(). See also serialNumber().
.SH "QMimeSource::~QMimeSource ()\fC [virtual]\fR" .SH "TQMimeSource::~TQMimeSource ()\fC [virtual]\fR"
Provided to ensure that subclasses destroy themselves correctly. Provided to ensure that subclasses destroy themselves correctly.
.SH "QByteArray QMimeSource::encodedData ( const char * ) const\fC [pure virtual]\fR" .SH "QByteArray TQMimeSource::encodedData ( const char * ) const\fC [pure virtual]\fR"
Returns the encoded data of this object in the specified MIME format. Returns the encoded data of this object in the specified MIME format.
.PP .PP
Subclasses must reimplement this function. Subclasses must reimplement this function.
.PP .PP
Reimplemented in QStoredDrag, QDropEvent, and TQIconDrag. Reimplemented in TQStoredDrag, TQDropEvent, and TQIconDrag.
.SH "const char * QMimeSource::format ( int i = 0 ) const\fC [pure virtual]\fR" .SH "const char * TQMimeSource::format ( int i = 0 ) const\fC [pure virtual]\fR"
Returns the \fIi\fR-th supported MIME format, or 0. Returns the \fIi\fR-th supported MIME format, or 0.
.PP .PP
Reimplemented in QDropEvent. Reimplemented in TQDropEvent.
.SH "bool QMimeSource::provides ( const char * mimeType ) const\fC [virtual]\fR" .SH "bool TQMimeSource::provides ( const char * mimeType ) const\fC [virtual]\fR"
Returns TRUE if the object can provide the data in format \fImimeType\fR; otherwise returns FALSE. Returns TRUE if the object can provide the data in format \fImimeType\fR; otherwise returns FALSE.
.PP .PP
If you inherit from QMimeSource, for consistency reasons it is better to implement the more abstract canDecode() functions such as TQTextDrag::canDecode() and TQImageDrag::canDecode(). If you inherit from TQMimeSource, for consistency reasons it is better to implement the more abstract canDecode() functions such as TQTextDrag::canDecode() and TQImageDrag::canDecode().
.PP .PP
Example: iconview/simple_dd/main.cpp. Example: iconview/simple_dd/main.cpp.
.PP .PP
Reimplemented in QDropEvent. Reimplemented in TQDropEvent.
.SH "int QMimeSource::serialNumber () const" .SH "int TQMimeSource::serialNumber () const"
Returns the mime source's globally unique serial number. Returns the mime source's globally unique serial number.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/qmimesource.html .BR http://doc.trolltech.com/tqmimesource.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -1,5 +1,5 @@
'\" t '\" t
.TH QMimeSourceFactory 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQMimeSourceFactory 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,26 +7,26 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QMimeSourceFactory \- Extensible provider of mime-typed data TQMimeSourceFactory \- Extensible provider of mime-typed data
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqmime.h>\fR \fC#include <tqmime.h>\fR
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQMimeSourceFactory\fR ()" .BI "\fBTQMimeSourceFactory\fR ()"
.br .br
.ti -1c .ti -1c
.BI "virtual \fB~QMimeSourceFactory\fR ()" .BI "virtual \fB~TQMimeSourceFactory\fR ()"
.br .br
.ti -1c .ti -1c
.BI "virtual const QMimeSource * \fBdata\fR ( const TQString & abs_name ) const" .BI "virtual const TQMimeSource * \fBdata\fR ( const TQString & abs_name ) const"
.br .br
.ti -1c .ti -1c
.BI "virtual TQString \fBmakeAbsolute\fR ( const TQString & abs_or_rel_name, const TQString & context ) const" .BI "virtual TQString \fBmakeAbsolute\fR ( const TQString & abs_or_rel_name, const TQString & context ) const"
.br .br
.ti -1c .ti -1c
.BI "const QMimeSource * \fBdata\fR ( const TQString & abs_or_rel_name, const TQString & context ) const" .BI "const TQMimeSource * \fBdata\fR ( const TQString & abs_or_rel_name, const TQString & context ) const"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBsetText\fR ( const TQString & abs_name, const TQString & text )" .BI "virtual void \fBsetText\fR ( const TQString & abs_name, const TQString & text )"
@ -38,7 +38,7 @@ QMimeSourceFactory \- Extensible provider of mime-typed data
.BI "virtual void \fBsetPixmap\fR ( const TQString & abs_name, const QPixmap & pixmap )" .BI "virtual void \fBsetPixmap\fR ( const TQString & abs_name, const QPixmap & pixmap )"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBsetData\fR ( const TQString & abs_name, QMimeSource * data )" .BI "virtual void \fBsetData\fR ( const TQString & abs_name, TQMimeSource * data )"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBsetFilePath\fR ( const TQStringList & path )" .BI "virtual void \fBsetFilePath\fR ( const TQStringList & path )"
@ -56,29 +56,29 @@ QMimeSourceFactory \- Extensible provider of mime-typed data
.SS "Static Public Members" .SS "Static Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "QMimeSourceFactory * \fBdefaultFactory\fR ()" .BI "TQMimeSourceFactory * \fBdefaultFactory\fR ()"
.br .br
.ti -1c .ti -1c
.BI "void \fBsetDefaultFactory\fR ( QMimeSourceFactory * factory )" .BI "void \fBsetDefaultFactory\fR ( TQMimeSourceFactory * factory )"
.br .br
.ti -1c .ti -1c
.BI "QMimeSourceFactory * \fBtakeDefaultFactory\fR ()" .BI "TQMimeSourceFactory * \fBtakeDefaultFactory\fR ()"
.br .br
.ti -1c .ti -1c
.BI "void \fBaddFactory\fR ( QMimeSourceFactory * f )" .BI "void \fBaddFactory\fR ( TQMimeSourceFactory * f )"
.br .br
.ti -1c .ti -1c
.BI "void \fBremoveFactory\fR ( QMimeSourceFactory * f )" .BI "void \fBremoveFactory\fR ( TQMimeSourceFactory * f )"
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QMimeSourceFactory class is an extensible provider of mime-typed data. The TQMimeSourceFactory class is an extensible provider of mime-typed data.
.PP .PP
A QMimeSourceFactory provides an abstract interface to a collection of information. Each piece of information is represented by a QMimeSource object which can be examined and converted to concrete data types by functions such as TQImageDrag::canDecode() and TQImageDrag::decode(). A TQMimeSourceFactory provides an abstract interface to a collection of information. Each piece of information is represented by a TQMimeSource object which can be examined and converted to concrete data types by functions such as TQImageDrag::canDecode() and TQImageDrag::decode().
.PP .PP
The base QMimeSourceFactory can be used in two ways: as an abstraction of a collection of files or as specifically stored data. For it to access files, call setFilePath() before accessing data. For stored data, call setData() for each item (there are also convenience functions, e.g. setText(), setImage() and setPixmap(), that simply call setData() with appropriate parameters). The base TQMimeSourceFactory can be used in two ways: as an abstraction of a collection of files or as specifically stored data. For it to access files, call setFilePath() before accessing data. For stored data, call setData() for each item (there are also convenience functions, e.g. setText(), setImage() and setPixmap(), that simply call setData() with appropriate parameters).
.PP .PP
The rich text widgets, TQTextEdit and TQTextBrowser, use QMimeSourceFactory to resolve references such as images or links within rich text documents. They either access the default factory (see defaultFactory()) or their own (see TQTextEdit::setMimeSourceFactory()). Other classes that are capable of displaying rich text (such as QLabel, QWhatsThis or QMessageBox) always use the default factory. The rich text widgets, TQTextEdit and TQTextBrowser, use TQMimeSourceFactory to resolve references such as images or links within rich text documents. They either access the default factory (see defaultFactory()) or their own (see TQTextEdit::setMimeSourceFactory()). Other classes that are capable of displaying rich text (such as QLabel, QWhatsThis or QMessageBox) always use the default factory.
.PP .PP
A factory can also be used as a container to store data associated with a name. This technique is useful whenever rich text contains images that are stored in the program itself, not loaded from the hard disk. Your program may, for example, define some image data as: A factory can also be used as a container to store data associated with a name. This technique is useful whenever rich text contains images that are stored in the program itself, not loaded from the hard disk. Your program may, for example, define some image data as:
.PP .PP
@ -98,7 +98,7 @@ To be able to use this image within some rich text, for example inside a QLabel,
.PP .PP
.nf .nf
.br .br
QMimeSourceFactory::defaultFactory()->setImage( "myimage", TQImage(myimage_data) ); TQMimeSourceFactory::defaultFactory()->setImage( "myimage", TQImage(myimage_data) );
.br .br
.fi .fi
.PP .PP
@ -120,25 +120,25 @@ When no longer needed, you can clear the data from the factory:
.br .br
delete label; delete label;
.br .br
QMimeSourceFactory::defaultFactory()->setData( "myimage", 0 ); TQMimeSourceFactory::defaultFactory()->setData( "myimage", 0 );
.br .br
.fi .fi
.PP .PP
See also Environment Classes and Input/Output and Networking. See also Environment Classes and Input/Output and Networking.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QMimeSourceFactory::QMimeSourceFactory ()" .SH "TQMimeSourceFactory::TQMimeSourceFactory ()"
Constructs a QMimeSourceFactory that has no file path and no stored content. Constructs a TQMimeSourceFactory that has no file path and no stored content.
.SH "QMimeSourceFactory::~QMimeSourceFactory ()\fC [virtual]\fR" .SH "TQMimeSourceFactory::~TQMimeSourceFactory ()\fC [virtual]\fR"
Destroys the QMimeSourceFactory, deleting all stored content. Destroys the TQMimeSourceFactory, deleting all stored content.
.SH "void QMimeSourceFactory::addFactory ( QMimeSourceFactory * f )\fC [static]\fR" .SH "void TQMimeSourceFactory::addFactory ( TQMimeSourceFactory * f )\fC [static]\fR"
Adds the QMimeSourceFactory \fIf\fR to the list of available mimesource factories. If the defaultFactory() can't resolve a data() it iterates over the list of installed mimesource factories until the data can be resolved. Adds the TQMimeSourceFactory \fIf\fR to the list of available mimesource factories. If the defaultFactory() can't resolve a data() it iterates over the list of installed mimesource factories until the data can be resolved.
.PP .PP
See also removeFactory(). See also removeFactory().
.SH "void QMimeSourceFactory::addFilePath ( const TQString & p )" .SH "void TQMimeSourceFactory::addFilePath ( const TQString & p )"
Adds another search path, \fIp\fR to the existing search paths. Adds another search path, \fIp\fR to the existing search paths.
.PP .PP
See also setFilePath(). See also setFilePath().
.SH "const QMimeSource * QMimeSourceFactory::data ( const TQString & abs_name ) const\fC [virtual]\fR" .SH "const TQMimeSource * TQMimeSourceFactory::data ( const TQString & abs_name ) const\fC [virtual]\fR"
Returns a reference to the data associated with \fIabs_name\fR. The return value remains valid only until the next data() or setData() call, so you should immediately decode the result. Returns a reference to the data associated with \fIabs_name\fR. The return value remains valid only until the next data() or setData() call, so you should immediately decode the result.
.PP .PP
If there is no data associated with \fIabs_name\fR in the factory's store, the factory tries to access the local filesystem. If \fIabs_name\fR isn't an absolute file name, the factory will search for it in all defined paths (see setFilePath()). If there is no data associated with \fIabs_name\fR in the factory's store, the factory tries to access the local filesystem. If \fIabs_name\fR isn't an absolute file name, the factory will search for it in all defined paths (see setFilePath()).
@ -158,57 +158,57 @@ The factory understands all the image formats supported by TQImageIO. Any other
.fi .fi
The effect of these is that file names ending in "txt" will be treated as text encoded in the local encoding; those ending in" xml" will be treated as text encoded in Unicode UTF-8 encoding. The text/html type is treated specially, since the encoding can be specified in the html file itself. "html" or "htm" will be treated as text encoded in the encoding specified by the html meta tag, if none could be found, the charset of the mime type will be used. The text subtype ("html", "plain", or "xml") does not affect the factory, but users of the factory may behave differently. We recommend creating "xml" files where practical. These files can be viewed regardless of the runtime encoding and can encode any Unicode characters without resorting to encoding definitions inside the file. The effect of these is that file names ending in "txt" will be treated as text encoded in the local encoding; those ending in" xml" will be treated as text encoded in Unicode UTF-8 encoding. The text/html type is treated specially, since the encoding can be specified in the html file itself. "html" or "htm" will be treated as text encoded in the encoding specified by the html meta tag, if none could be found, the charset of the mime type will be used. The text subtype ("html", "plain", or "xml") does not affect the factory, but users of the factory may behave differently. We recommend creating "xml" files where practical. These files can be viewed regardless of the runtime encoding and can encode any Unicode characters without resorting to encoding definitions inside the file.
.PP .PP
Any file data that is not recognized will be retrieved as a QMimeSource providing the "application/octet-stream" mime type, meaning uninterpreted binary data. Any file data that is not recognized will be retrieved as a TQMimeSource providing the "application/octet-stream" mime type, meaning uninterpreted binary data.
.PP .PP
You can add further extensions or change existing ones with subsequent calls to setExtensionType(). If the extension mechanism is not sufficient for your problem domain, you can inherit QMimeSourceFactory and reimplement this function to perform some more specialized mime-type detection. The same applies if you want to use the mime source factory to access URL referenced data over a network. You can add further extensions or change existing ones with subsequent calls to setExtensionType(). If the extension mechanism is not sufficient for your problem domain, you can inherit TQMimeSourceFactory and reimplement this function to perform some more specialized mime-type detection. The same applies if you want to use the mime source factory to access URL referenced data over a network.
.SH "const QMimeSource * QMimeSourceFactory::data ( const TQString & abs_or_rel_name, const TQString & context ) const" .SH "const TQMimeSource * TQMimeSourceFactory::data ( const TQString & abs_or_rel_name, const TQString & context ) const"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP .PP
A convenience function. See data(const TQString& abs_name). The file name is given in \fIabs_or_rel_name\fR and the path is in \fIcontext\fR. A convenience function. See data(const TQString& abs_name). The file name is given in \fIabs_or_rel_name\fR and the path is in \fIcontext\fR.
.SH "QMimeSourceFactory * QMimeSourceFactory::defaultFactory ()\fC [static]\fR" .SH "TQMimeSourceFactory * TQMimeSourceFactory::defaultFactory ()\fC [static]\fR"
Returns the application-wide default mime source factory. This factory is used by rich text rendering classes such as QSimpleRichText, QWhatsThis and QMessageBox to resolve named references within rich text documents. It serves also as the initial factory for the more complex render widgets, TQTextEdit and TQTextBrowser. Returns the application-wide default mime source factory. This factory is used by rich text rendering classes such as QSimpleRichText, QWhatsThis and QMessageBox to resolve named references within rich text documents. It serves also as the initial factory for the more complex render widgets, TQTextEdit and TQTextBrowser.
.PP .PP
See also setDefaultFactory(). See also setDefaultFactory().
.PP .PP
Examples: Examples:
.)l action/application.cpp and application/application.cpp. .)l action/application.cpp and application/application.cpp.
.SH "TQStringList QMimeSourceFactory::filePath () const\fC [virtual]\fR" .SH "TQStringList TQMimeSourceFactory::filePath () const\fC [virtual]\fR"
Returns the currently set search paths. Returns the currently set search paths.
.SH "TQString QMimeSourceFactory::makeAbsolute ( const TQString & abs_or_rel_name, const TQString & context ) const\fC [virtual]\fR" .SH "TQString TQMimeSourceFactory::makeAbsolute ( const TQString & abs_or_rel_name, const TQString & context ) const\fC [virtual]\fR"
Converts the absolute or relative data item name \fIabs_or_rel_name\fR to an absolute name, interpreted within the context (path) of the data item named \fIcontext\fR (this must be an absolute name). Converts the absolute or relative data item name \fIabs_or_rel_name\fR to an absolute name, interpreted within the context (path) of the data item named \fIcontext\fR (this must be an absolute name).
.SH "void QMimeSourceFactory::removeFactory ( QMimeSourceFactory * f )\fC [static]\fR" .SH "void TQMimeSourceFactory::removeFactory ( TQMimeSourceFactory * f )\fC [static]\fR"
Removes the mimesource factory \fIf\fR from the list of available mimesource factories. Removes the mimesource factory \fIf\fR from the list of available mimesource factories.
.PP .PP
See also addFactory(). See also addFactory().
.SH "void QMimeSourceFactory::setData ( const TQString & abs_name, QMimeSource * data )\fC [virtual]\fR" .SH "void TQMimeSourceFactory::setData ( const TQString & abs_name, TQMimeSource * data )\fC [virtual]\fR"
Sets \fIdata\fR to be the data item associated with the absolute name \fIabs_name\fR. Note that the ownership of \fIdata\fR is transferred to the factory: do not delete or access the pointer after passing it to this function. Sets \fIdata\fR to be the data item associated with the absolute name \fIabs_name\fR. Note that the ownership of \fIdata\fR is transferred to the factory: do not delete or access the pointer after passing it to this function.
.PP .PP
Passing 0 for data removes previously stored data. Passing 0 for data removes previously stored data.
.SH "void QMimeSourceFactory::setDefaultFactory ( QMimeSourceFactory * factory )\fC [static]\fR" .SH "void TQMimeSourceFactory::setDefaultFactory ( TQMimeSourceFactory * factory )\fC [static]\fR"
Sets the default \fIfactory\fR, destroying any previously set mime source provider. The ownership of the factory is transferred to Qt. Sets the default \fIfactory\fR, destroying any previously set mime source provider. The ownership of the factory is transferred to Qt.
.PP .PP
See also defaultFactory(). See also defaultFactory().
.SH "void QMimeSourceFactory::setExtensionType ( const TQString & ext, const char * mimetype )\fC [virtual]\fR" .SH "void TQMimeSourceFactory::setExtensionType ( const TQString & ext, const char * mimetype )\fC [virtual]\fR"
Sets the mime-type to be associated with the file name extension, \fIext\fR to \fImimetype\fR. This determines the mime-type for files found via the paths set by setFilePath(). Sets the mime-type to be associated with the file name extension, \fIext\fR to \fImimetype\fR. This determines the mime-type for files found via the paths set by setFilePath().
.SH "void QMimeSourceFactory::setFilePath ( const TQStringList & path )\fC [virtual]\fR" .SH "void TQMimeSourceFactory::setFilePath ( const TQStringList & path )\fC [virtual]\fR"
Sets the list of directories that will be searched when named data is requested to the those given in the string list \fIpath\fR. Sets the list of directories that will be searched when named data is requested to the those given in the string list \fIpath\fR.
.PP .PP
See also filePath(). See also filePath().
.SH "void QMimeSourceFactory::setImage ( const TQString & abs_name, const TQImage & image )\fC [virtual]\fR" .SH "void TQMimeSourceFactory::setImage ( const TQString & abs_name, const TQImage & image )\fC [virtual]\fR"
Sets \fIimage\fR to be the data item associated with the absolute name \fIabs_name\fR. Sets \fIimage\fR to be the data item associated with the absolute name \fIabs_name\fR.
.PP .PP
Equivalent to setData(abs_name, new TQImageDrag(image)). Equivalent to setData(abs_name, new TQImageDrag(image)).
.SH "void QMimeSourceFactory::setPixmap ( const TQString & abs_name, const QPixmap & pixmap )\fC [virtual]\fR" .SH "void TQMimeSourceFactory::setPixmap ( const TQString & abs_name, const QPixmap & pixmap )\fC [virtual]\fR"
Sets \fIpixmap\fR to be the data item associated with the absolute name \fIabs_name\fR. Sets \fIpixmap\fR to be the data item associated with the absolute name \fIabs_name\fR.
.SH "void QMimeSourceFactory::setText ( const TQString & abs_name, const TQString & text )\fC [virtual]\fR" .SH "void TQMimeSourceFactory::setText ( const TQString & abs_name, const TQString & text )\fC [virtual]\fR"
Sets \fItext\fR to be the data item associated with the absolute name \fIabs_name\fR. Sets \fItext\fR to be the data item associated with the absolute name \fIabs_name\fR.
.PP .PP
Equivalent to setData(abs_name, new TQTextDrag(text)). Equivalent to setData(abs_name, new TQTextDrag(text)).
.SH "QMimeSourceFactory * QMimeSourceFactory::takeDefaultFactory ()\fC [static]\fR" .SH "TQMimeSourceFactory * TQMimeSourceFactory::takeDefaultFactory ()\fC [static]\fR"
Sets the defaultFactory() to 0 and returns the previous one. Sets the defaultFactory() to 0 and returns the previous one.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/qmimesourcefactory.html .BR http://doc.trolltech.com/tqmimesourcefactory.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -15,7 +15,7 @@ All the functions in this class are reentrant when TQt is built with thread supp
.PP .PP
Inherits Qt. Inherits Qt.
.PP .PP
-Inherited by QAccel, QAccessibleObject, TQAction, QApplication, QAssistantClient, QDataPump, TQWidget, TQCanvas, TQStyle, QClipboard, QDns, QLayout, QDragObject, TQEditorFactory, QEventLoop, QFileIconProvider, QNetworkProtocol, QNetworkOperation, QNPInstance, TQObjectCleanupHandler, QProcess, QServerSocket, TQSessionManager, QSignal, QSignalMapper, QSocket, QSocketNotifier, QSound, TQSqlDatabase, TQSqlDriver, TQSqlForm, TQStyleSheet, TQTimer, TQToolTipGroup, QTranslator, QUrlOperator, and QValidator. -Inherited by QAccel, QAccessibleObject, TQAction, QApplication, QAssistantClient, QDataPump, TQWidget, TQCanvas, TQStyle, QClipboard, QDns, QLayout, TQDragObject, TQEditorFactory, QEventLoop, QFileIconProvider, QNetworkProtocol, QNetworkOperation, QNPInstance, TQObjectCleanupHandler, QProcess, QServerSocket, TQSessionManager, QSignal, QSignalMapper, QSocket, QSocketNotifier, QSound, TQSqlDatabase, TQSqlDriver, TQSqlForm, TQStyleSheet, TQTimer, TQToolTipGroup, QTranslator, QUrlOperator, and QValidator.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c

@ -472,7 +472,7 @@ Example:
.SH "QPixmap QPixmap::fromMimeSource ( const TQString & abs_name )\fC [static]\fR" .SH "QPixmap QPixmap::fromMimeSource ( const TQString & abs_name )\fC [static]\fR"
Convenience function. Gets the data associated with the absolute name \fIabs_name\fR from the default mime source factory and decodes it to a pixmap. Convenience function. Gets the data associated with the absolute name \fIabs_name\fR from the default mime source factory and decodes it to a pixmap.
.PP .PP
See also QMimeSourceFactory, TQImage::fromMimeSource(), and TQImageDrag::decode(). See also TQMimeSourceFactory, TQImage::fromMimeSource(), and TQImageDrag::decode().
.PP .PP
Example: textedit/textedit.cpp. Example: textedit/textedit.cpp.
.SH "QPixmap QPixmap::grabWidget ( TQWidget * widget, int x = 0, int y = 0, int w = -1, int h = -1 )\fC [static]\fR" .SH "QPixmap QPixmap::grabWidget ( TQWidget * widget, int x = 0, int y = 0, int w = -1, int h = -1 )\fC [static]\fR"

@ -258,16 +258,16 @@ Inherited by TQCanvasView, QTable, QGridView, TQIconView, QListBox, QListView, a
.BI "virtual void \fBcontentsMouseMoveEvent\fR ( QMouseEvent * e )" .BI "virtual void \fBcontentsMouseMoveEvent\fR ( QMouseEvent * e )"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBcontentsDragEnterEvent\fR ( QDragEnterEvent * )" .BI "virtual void \fBcontentsDragEnterEvent\fR ( TQDragEnterEvent * )"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBcontentsDragMoveEvent\fR ( QDragMoveEvent * )" .BI "virtual void \fBcontentsDragMoveEvent\fR ( TQDragMoveEvent * )"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBcontentsDragLeaveEvent\fR ( QDragLeaveEvent * )" .BI "virtual void \fBcontentsDragLeaveEvent\fR ( TQDragLeaveEvent * )"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBcontentsDropEvent\fR ( QDropEvent * )" .BI "virtual void \fBcontentsDropEvent\fR ( TQDropEvent * )"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBcontentsWheelEvent\fR ( QWheelEvent * e )" .BI "virtual void \fBcontentsWheelEvent\fR ( QWheelEvent * e )"
@ -521,19 +521,19 @@ See also visibleWidth and visibleHeight.
This event handler is called whenever the QScrollView receives a contextMenuEvent() in \fIe\fR: the mouse position is translated to be a point on the contents. This event handler is called whenever the QScrollView receives a contextMenuEvent() in \fIe\fR: the mouse position is translated to be a point on the contents.
.PP .PP
Example: chart/canvasview.cpp. Example: chart/canvasview.cpp.
.SH "void QScrollView::contentsDragEnterEvent ( QDragEnterEvent * )\fC [virtual protected]\fR" .SH "void QScrollView::contentsDragEnterEvent ( TQDragEnterEvent * )\fC [virtual protected]\fR"
This event handler is called whenever the QScrollView receives a dragEnterEvent(): the drag position is translated to be a point on the contents. This event handler is called whenever the QScrollView receives a dragEnterEvent(): the drag position is translated to be a point on the contents.
.PP .PP
Reimplemented in QTable. Reimplemented in QTable.
.SH "void QScrollView::contentsDragLeaveEvent ( QDragLeaveEvent * )\fC [virtual protected]\fR" .SH "void QScrollView::contentsDragLeaveEvent ( TQDragLeaveEvent * )\fC [virtual protected]\fR"
This event handler is called whenever the QScrollView receives a dragLeaveEvent(): the drag position is translated to be a point on the contents. This event handler is called whenever the QScrollView receives a dragLeaveEvent(): the drag position is translated to be a point on the contents.
.PP .PP
Reimplemented in QTable. Reimplemented in QTable.
.SH "void QScrollView::contentsDragMoveEvent ( QDragMoveEvent * )\fC [virtual protected]\fR" .SH "void QScrollView::contentsDragMoveEvent ( TQDragMoveEvent * )\fC [virtual protected]\fR"
This event handler is called whenever the QScrollView receives a dragMoveEvent(): the drag position is translated to be a point on the contents. This event handler is called whenever the QScrollView receives a dragMoveEvent(): the drag position is translated to be a point on the contents.
.PP .PP
Reimplemented in QTable. Reimplemented in QTable.
.SH "void QScrollView::contentsDropEvent ( QDropEvent * )\fC [virtual protected]\fR" .SH "void QScrollView::contentsDropEvent ( TQDropEvent * )\fC [virtual protected]\fR"
This event handler is called whenever the QScrollView receives a dropEvent(): the drop position is translated to be a point on the contents. This event handler is called whenever the QScrollView receives a dropEvent(): the drop position is translated to be a point on the contents.
.PP .PP
Reimplemented in QTable. Reimplemented in QTable.
@ -851,7 +851,7 @@ This property holds whether autoscrolling in drag move events is enabled.
.PP .PP
If this property is set to TRUE (the default), the QScrollView automatically scrolls the contents in drag move events if the user moves the cursor close to a border of the view. Of course this works only if the viewport accepts drops. Specifying FALSE disables this autoscroll feature. If this property is set to TRUE (the default), the QScrollView automatically scrolls the contents in drag move events if the user moves the cursor close to a border of the view. Of course this works only if the viewport accepts drops. Specifying FALSE disables this autoscroll feature.
.PP .PP
\fBWarning:\fR Enabling this property might not be enough to effectively turn on autoscrolling. If you put a custom widget in the QScrollView, you might need to call QDragEvent::ignore() on the event in the dragEnterEvent() and dragMoveEvent() reimplementations. \fBWarning:\fR Enabling this property might not be enough to effectively turn on autoscrolling. If you put a custom widget in the QScrollView, you might need to call TQDragEvent::ignore() on the event in the dragEnterEvent() and dragMoveEvent() reimplementations.
.PP .PP
Set this property's value with setDragAutoScroll() and get this property's value with dragAutoScroll(). Set this property's value with setDragAutoScroll() and get this property's value with dragAutoScroll().
.SH "ScrollBarMode hScrollBarMode" .SH "ScrollBarMode hScrollBarMode"

@ -17,7 +17,7 @@ QSimpleRichText \- Small displayable piece of rich text
.BI "\fBQSimpleRichText\fR ( const TQString & text, const QFont & fnt, const TQString & context = TQString::null, const TQStyleSheet * sheet = 0 )" .BI "\fBQSimpleRichText\fR ( const TQString & text, const QFont & fnt, const TQString & context = TQString::null, const TQStyleSheet * sheet = 0 )"
.br .br
.ti -1c .ti -1c
.BI "\fBQSimpleRichText\fR ( const TQString & text, const QFont & fnt, const TQString & context, const TQStyleSheet * sheet, const QMimeSourceFactory * factory, int pageBreak = -1, const TQColor & linkColor = TQt::blue, bool linkUnderline = TRUE )" .BI "\fBQSimpleRichText\fR ( const TQString & text, const QFont & fnt, const TQString & context, const TQStyleSheet * sheet, const TQMimeSourceFactory * factory, int pageBreak = -1, const TQColor & linkColor = TQt::blue, bool linkUnderline = TRUE )"
.br .br
.ti -1c .ti -1c
.BI "\fB~QSimpleRichText\fR ()" .BI "\fB~QSimpleRichText\fR ()"
@ -85,15 +85,15 @@ The font is used as a basis for the text rendering. When using rich text renderi
.br .br
.fi .fi
.PP .PP
\fIcontext\fR is the optional context of the rich text object. This becomes important if \fItext\fR contains relative references, for example within image tags. QSimpleRichText always uses the default mime source factory (see QMimeSourceFactory::defaultFactory()) to resolve those references. The context will then be used to calculate the absolute path. See QMimeSourceFactory::makeAbsolute() for details. \fIcontext\fR is the optional context of the rich text object. This becomes important if \fItext\fR contains relative references, for example within image tags. QSimpleRichText always uses the default mime source factory (see TQMimeSourceFactory::defaultFactory()) to resolve those references. The context will then be used to calculate the absolute path. See TQMimeSourceFactory::makeAbsolute() for details.
.PP .PP
The \fIsheet\fR is an optional style sheet. If it is 0, the default style sheet will be used (see TQStyleSheet::defaultSheet()). The \fIsheet\fR is an optional style sheet. If it is 0, the default style sheet will be used (see TQStyleSheet::defaultSheet()).
.SH "QSimpleRichText::QSimpleRichText ( const TQString & text, const QFont & fnt, const TQString & context, const TQStyleSheet * sheet, const QMimeSourceFactory * factory, int pageBreak = -1, const TQColor & linkColor = TQt::blue, bool linkUnderline = TRUE )" .SH "QSimpleRichText::QSimpleRichText ( const TQString & text, const QFont & fnt, const TQString & context, const TQStyleSheet * sheet, const TQMimeSourceFactory * factory, int pageBreak = -1, const TQColor & linkColor = TQt::blue, bool linkUnderline = TRUE )"
Constructs a QSimpleRichText from the rich text string \fItext\fR and the font \fIfnt\fR. Constructs a QSimpleRichText from the rich text string \fItext\fR and the font \fIfnt\fR.
.PP .PP
This is a slightly more complex constructor for QSimpleRichText that takes an additional mime source factory \fIfactory\fR, a page break parameter \fIpageBreak\fR and a bool \fIlinkUnderline\fR. \fIlinkColor\fR is only provided for compatibility, but has no effect, as QColorGroup's QColorGroup::link() color is used now. This is a slightly more complex constructor for QSimpleRichText that takes an additional mime source factory \fIfactory\fR, a page break parameter \fIpageBreak\fR and a bool \fIlinkUnderline\fR. \fIlinkColor\fR is only provided for compatibility, but has no effect, as QColorGroup's QColorGroup::link() color is used now.
.PP .PP
\fIcontext\fR is the optional context of the rich text object. This becomes important if \fItext\fR contains relative references, for example within image tags. QSimpleRichText always uses the default mime source factory (see QMimeSourceFactory::defaultFactory()) to resolve those references. The context will then be used to calculate the absolute path. See QMimeSourceFactory::makeAbsolute() for details. \fIcontext\fR is the optional context of the rich text object. This becomes important if \fItext\fR contains relative references, for example within image tags. QSimpleRichText always uses the default mime source factory (see TQMimeSourceFactory::defaultFactory()) to resolve those references. The context will then be used to calculate the absolute path. See TQMimeSourceFactory::makeAbsolute() for details.
.PP .PP
The \fIsheet\fR is an optional style sheet. If it is 0, the default style sheet will be used (see TQStyleSheet::defaultSheet()). The \fIsheet\fR is an optional style sheet. If it is 0, the default style sheet will be used (see TQStyleSheet::defaultSheet()).
.PP .PP

@ -1,5 +1,5 @@
'\" t '\" t
.TH QStoredDrag 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQStoredDrag 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,21 +7,21 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QStoredDrag \- Simple stored-value drag object for arbitrary MIME data TQStoredDrag \- Simple stored-value drag object for arbitrary MIME data
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqdragobject.h>\fR \fC#include <tqdragobject.h>\fR
.PP .PP
Inherits QDragObject. Inherits TQDragObject.
.PP .PP
Inherited by QUriDrag and QColorDrag. Inherited by TQUriDrag and TQColorDrag.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQStoredDrag\fR ( const char * mimeType, TQWidget * dragSource = 0, const char * name = 0 )" .BI "\fBTQStoredDrag\fR ( const char * mimeType, TQWidget * dragSource = 0, const char * name = 0 )"
.br .br
.ti -1c .ti -1c
.BI "\fB~QStoredDrag\fR ()" .BI "\fB~TQStoredDrag\fR ()"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBsetEncodedData\fR ( const QByteArray & encodedData )" .BI "virtual void \fBsetEncodedData\fR ( const QByteArray & encodedData )"
@ -31,34 +31,34 @@ Inherited by QUriDrag and QColorDrag.
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QStoredDrag class provides a simple stored-value drag object for arbitrary MIME data. The TQStoredDrag class provides a simple stored-value drag object for arbitrary MIME data.
.PP .PP
When a block of data has only one representation, you can use a QStoredDrag to hold it. When a block of data has only one representation, you can use a TQStoredDrag to hold it.
.PP .PP
For more information about drag and drop, see the QDragObject class and the drag and drop documentation. For more information about drag and drop, see the TQDragObject class and the drag and drop documentation.
.PP .PP
See also Drag And Drop Classes. See also Drag And Drop Classes.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QStoredDrag::QStoredDrag ( const char * mimeType, TQWidget * dragSource = 0, const char * name = 0 )" .SH "TQStoredDrag::TQStoredDrag ( const char * mimeType, TQWidget * dragSource = 0, const char * name = 0 )"
Constructs a QStoredDrag. The \fIdragSource\fR and \fIname\fR are passed to the QDragObject constructor, and the format is set to \fImimeType\fR. Constructs a TQStoredDrag. The \fIdragSource\fR and \fIname\fR are passed to the TQDragObject constructor, and the format is set to \fImimeType\fR.
.PP .PP
The data will be unset. Use setEncodedData() to set it. The data will be unset. Use setEncodedData() to set it.
.SH "QStoredDrag::~QStoredDrag ()" .SH "TQStoredDrag::~TQStoredDrag ()"
Destroys the drag object and frees up all allocated resources. Destroys the drag object and frees up all allocated resources.
.SH "QByteArray QStoredDrag::encodedData ( const char * m ) const\fC [virtual]\fR" .SH "QByteArray TQStoredDrag::encodedData ( const char * m ) const\fC [virtual]\fR"
Returns the stored data. \fIm\fR contains the data's format. Returns the stored data. \fIm\fR contains the data's format.
.PP .PP
See also setEncodedData(). See also setEncodedData().
.PP .PP
Reimplemented from QMimeSource. Reimplemented from TQMimeSource.
.SH "void QStoredDrag::setEncodedData ( const QByteArray & encodedData )\fC [virtual]\fR" .SH "void TQStoredDrag::setEncodedData ( const QByteArray & encodedData )\fC [virtual]\fR"
Sets the encoded data of this drag object to \fIencodedData\fR. The encoded data is what's delivered to the drop sites. It must be in a strictly defined and portable format. Sets the encoded data of this drag object to \fIencodedData\fR. The encoded data is what's delivered to the drop sites. It must be in a strictly defined and portable format.
.PP .PP
The drag object can't be dropped (by the user) until this function The drag object can't be dropped (by the user) until this function
has been called. has been called.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/qstoreddrag.html .BR http://doc.trolltech.com/tqstoreddrag.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -28,7 +28,7 @@ Inherits TQObject.
.BI "const TQStyleSheetItem * \fBitem\fR ( const TQString & name ) const" .BI "const TQStyleSheetItem * \fBitem\fR ( const TQString & name ) const"
.br .br
.ti -1c .ti -1c
.BI "virtual TQTextCustomItem * \fBtag\fR ( const TQString & name, const TQMap<TQString, TQString> & attr, const TQString & context, const QMimeSourceFactory & factory, bool emptyTag, TQTextDocument * doc ) const" .BI "virtual TQTextCustomItem * \fBtag\fR ( const TQString & name, const TQMap<TQString, TQString> & attr, const TQString & context, const TQMimeSourceFactory & factory, bool emptyTag, TQTextDocument * doc ) const"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBscaleFont\fR ( QFont & font, int logicalSize ) const" .BI "virtual void \fBscaleFont\fR ( QFont & font, int logicalSize ) const"
@ -187,12 +187,12 @@ See also TQStyleSheetItem::logicalFontSize(), TQStyleSheetItem::logicalFontSizeS
Sets the application-wide default style sheet to \fIsheet\fR, deleting any style sheet previously set. The ownership is transferred to TQStyleSheet. Sets the application-wide default style sheet to \fIsheet\fR, deleting any style sheet previously set. The ownership is transferred to TQStyleSheet.
.PP .PP
See also defaultSheet(). See also defaultSheet().
.SH "TQTextCustomItem * TQStyleSheet::tag ( const TQString & name, const TQMap<TQString, TQString> & attr, const TQString & context, const QMimeSourceFactory & factory, bool emptyTag, TQTextDocument * doc ) const\fC [virtual]\fR" .SH "TQTextCustomItem * TQStyleSheet::tag ( const TQString & name, const TQMap<TQString, TQString> & attr, const TQString & context, const TQMimeSourceFactory & factory, bool emptyTag, TQTextDocument * doc ) const\fC [virtual]\fR"
\fBThis function is under development and is subject to change.\fR \fBThis function is under development and is subject to change.\fR
.PP .PP
Generates an internal object for the tag called \fIname\fR, given the attributes \fIattr\fR, and using additional information provided by the mime source factory \fIfactory\fR. Generates an internal object for the tag called \fIname\fR, given the attributes \fIattr\fR, and using additional information provided by the mime source factory \fIfactory\fR.
.PP .PP
\fIcontext\fR is the optional context of the document, i.e. the path to look for relative links. This becomes important if the text contains relative references, for example within image tags. QSimpleRichText always uses the default mime source factory (see QMimeSourceFactory::defaultFactory()) to resolve these references. The context will then be used to calculate the absolute path. See QMimeSourceFactory::makeAbsolute() for details. \fIcontext\fR is the optional context of the document, i.e. the path to look for relative links. This becomes important if the text contains relative references, for example within image tags. QSimpleRichText always uses the default mime source factory (see TQMimeSourceFactory::defaultFactory()) to resolve these references. The context will then be used to calculate the absolute path. See TQMimeSourceFactory::makeAbsolute() for details.
.PP .PP
\fIemptyTag\fR and \fIdoc\fR are for internal use only. \fIemptyTag\fR and \fIdoc\fR are for internal use only.
.PP .PP

@ -351,7 +351,7 @@ Inherited by TQDataTable.
.BI "void \fBcontextMenuRequested\fR ( int row, int col, const QPoint & pos )" .BI "void \fBcontextMenuRequested\fR ( int row, int col, const QPoint & pos )"
.br .br
.ti -1c .ti -1c
.BI "void \fBdropped\fR ( QDropEvent * e )" .BI "void \fBdropped\fR ( TQDropEvent * e )"
.br .br
.in -1c .in -1c
.SS "Properties" .SS "Properties"
@ -399,19 +399,19 @@ Inherited by TQDataTable.
.BI "void \fBsetEditMode\fR ( EditMode mode, int row, int col )" .BI "void \fBsetEditMode\fR ( EditMode mode, int row, int col )"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBcontentsDragEnterEvent\fR ( QDragEnterEvent * e )" .BI "virtual void \fBcontentsDragEnterEvent\fR ( TQDragEnterEvent * e )"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBcontentsDragMoveEvent\fR ( QDragMoveEvent * e )" .BI "virtual void \fBcontentsDragMoveEvent\fR ( TQDragMoveEvent * e )"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBcontentsDragLeaveEvent\fR ( QDragLeaveEvent * e )" .BI "virtual void \fBcontentsDragLeaveEvent\fR ( TQDragLeaveEvent * e )"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBcontentsDropEvent\fR ( QDropEvent * e )" .BI "virtual void \fBcontentsDropEvent\fR ( TQDropEvent * e )"
.br .br
.ti -1c .ti -1c
.BI "virtual QDragObject * \fBdragObject\fR ()" .BI "virtual TQDragObject * \fBdragObject\fR ()"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBstartDrag\fR ()" .BI "virtual void \fBstartDrag\fR ()"
@ -693,23 +693,23 @@ Returns the width of column \fIcol\fR.
See also setColumnWidth() and rowHeight(). See also setColumnWidth() and rowHeight().
.SH "void QTable::columnWidthChanged ( int col )\fC [virtual protected slot]\fR" .SH "void QTable::columnWidthChanged ( int col )\fC [virtual protected slot]\fR"
This function should be called whenever the column width of \fIcol\fR has been changed. It updates the geometry of any affected columns and repaints the table to reflect the changes it has made. This function should be called whenever the column width of \fIcol\fR has been changed. It updates the geometry of any affected columns and repaints the table to reflect the changes it has made.
.SH "void QTable::contentsDragEnterEvent ( QDragEnterEvent * e )\fC [virtual protected]\fR" .SH "void QTable::contentsDragEnterEvent ( TQDragEnterEvent * e )\fC [virtual protected]\fR"
This event handler is called whenever a QTable object receives a QDragEnterEvent \fIe\fR, i.e. when the user pressed the mouse button to drag something. This event handler is called whenever a QTable object receives a TQDragEnterEvent \fIe\fR, i.e. when the user pressed the mouse button to drag something.
.PP .PP
The focus is moved to the cell where the QDragEnterEvent occurred. The focus is moved to the cell where the TQDragEnterEvent occurred.
.PP .PP
Reimplemented from QScrollView. Reimplemented from QScrollView.
.SH "void QTable::contentsDragLeaveEvent ( QDragLeaveEvent * e )\fC [virtual protected]\fR" .SH "void QTable::contentsDragLeaveEvent ( TQDragLeaveEvent * e )\fC [virtual protected]\fR"
This event handler is called when a drag activity leaves \fIthis\fR QTable object with event \fIe\fR. This event handler is called when a drag activity leaves \fIthis\fR QTable object with event \fIe\fR.
.PP .PP
Reimplemented from QScrollView. Reimplemented from QScrollView.
.SH "void QTable::contentsDragMoveEvent ( QDragMoveEvent * e )\fC [virtual protected]\fR" .SH "void QTable::contentsDragMoveEvent ( TQDragMoveEvent * e )\fC [virtual protected]\fR"
This event handler is called whenever a QTable object receives a QDragMoveEvent \fIe\fR, i.e. when the user actually drags the mouse. This event handler is called whenever a QTable object receives a TQDragMoveEvent \fIe\fR, i.e. when the user actually drags the mouse.
.PP .PP
The focus is moved to the cell where the QDragMoveEvent occurred. The focus is moved to the cell where the TQDragMoveEvent occurred.
.PP .PP
Reimplemented from QScrollView. Reimplemented from QScrollView.
.SH "void QTable::contentsDropEvent ( QDropEvent * e )\fC [virtual protected]\fR" .SH "void QTable::contentsDropEvent ( TQDropEvent * e )\fC [virtual protected]\fR"
This event handler is called when the user ends a drag and drop by dropping something onto \fIthis\fR QTable and thus triggers the drop event, \fIe\fR. This event handler is called when the user ends a drag and drop by dropping something onto \fIthis\fR QTable and thus triggers the drop event, \fIe\fR.
.PP .PP
Reimplemented from QScrollView. Reimplemented from QScrollView.
@ -778,10 +778,10 @@ See also TQt::ButtonState.
If this function returns TRUE, the table supports dragging. If this function returns TRUE, the table supports dragging.
.PP .PP
See also setDragEnabled(). See also setDragEnabled().
.SH "QDragObject * QTable::dragObject ()\fC [virtual protected]\fR" .SH "TQDragObject * QTable::dragObject ()\fC [virtual protected]\fR"
If the user presses the mouse on a selected cell, starts moving (i.e. dragging), and dragEnabled() is TRUE, this function is called to obtain a drag object. A drag using this object begins immediately unless dragObject() returns 0. If the user presses the mouse on a selected cell, starts moving (i.e. dragging), and dragEnabled() is TRUE, this function is called to obtain a drag object. A drag using this object begins immediately unless dragObject() returns 0.
.PP .PP
By default this function returns 0. You might reimplement it and create a QDragObject depending on the selected items. By default this function returns 0. You might reimplement it and create a TQDragObject depending on the selected items.
.PP .PP
See also dropped(). See also dropped().
.SH "void QTable::drawContents ( QPainter * p, int cx, int cy, int cw, int ch )\fC [virtual protected]\fR" .SH "void QTable::drawContents ( QPainter * p, int cx, int cy, int cw, int ch )\fC [virtual protected]\fR"
@ -790,7 +790,7 @@ Draws the table contents on the painter \fIp\fR. This function is optimized so t
Additionally, drawContents() highlights the current cell. Additionally, drawContents() highlights the current cell.
.PP .PP
Reimplemented from QScrollView. Reimplemented from QScrollView.
.SH "void QTable::dropped ( QDropEvent * e )\fC [signal]\fR" .SH "void QTable::dropped ( TQDropEvent * e )\fC [signal]\fR"
This signal is emitted when a drop event occurred on the table. This signal is emitted when a drop event occurred on the table.
.PP .PP
\fIe\fR contains information about the drop. \fIe\fR contains information about the drop.

@ -95,7 +95,7 @@ This class extends TQTextEdit (in read-only mode), adding some navigation functi
.PP .PP
TQTextBrowser provides backward() and forward() slots which you can use to implement Back and Forward buttons. The home() slot sets the text to the very first document displayed. The linkClicked() signal is emitted when the user clicks a link. TQTextBrowser provides backward() and forward() slots which you can use to implement Back and Forward buttons. The home() slot sets the text to the very first document displayed. The linkClicked() signal is emitted when the user clicks a link.
.PP .PP
By using TQTextEdit::setMimeSourceFactory() you can provide your own subclass of QMimeSourceFactory. This makes it possible to access data from anywhere, for example from a network or from a database. See QMimeSourceFactory::data() for details. By using TQTextEdit::setMimeSourceFactory() you can provide your own subclass of TQMimeSourceFactory. This makes it possible to access data from anywhere, for example from a network or from a database. See TQMimeSourceFactory::data() for details.
.PP .PP
If you intend using the mime factory to read the data directly from the file system, you may have to specify the encoding for the file extension you are using. For example: If you intend using the mime factory to read the data directly from the file system, you may have to specify the encoding for the file extension you are using. For example:
.PP .PP
@ -196,7 +196,7 @@ Setting this property uses the mimeSourceFactory() to lookup the named document.
.PP .PP
If the first tag in the document is \fC<qt type=detail>\fR, the document is displayed as a popup rather than as new document in the browser window itself. Otherwise, the document is displayed normally in the text browser with the text set to the contents of the named document with setText(). If the first tag in the document is \fC<qt type=detail>\fR, the document is displayed as a popup rather than as new document in the browser window itself. Otherwise, the document is displayed normally in the text browser with the text set to the contents of the named document with setText().
.PP .PP
If you are using the filesystem access capabilities of the mime source factory, you must ensure that the factory knows about the encoding of specified files; otherwise no data will be available. The default factory handles a couple of common file extensions such as \fC*.html\fR and \fC*.txt\fR with reasonable defaults. See QMimeSourceFactory::data() for details. If you are using the filesystem access capabilities of the mime source factory, you must ensure that the factory knows about the encoding of specified files; otherwise no data will be available. The default factory handles a couple of common file extensions such as \fC*.html\fR and \fC*.txt\fR with reasonable defaults. See TQMimeSourceFactory::data() for details.
.PP .PP
Set this property's value with setSource() and get this property's value with source(). Set this property's value with setSource() and get this property's value with source().
.SH "int undoDepth" .SH "int undoDepth"

@ -9,9 +9,9 @@
.SH NAME .SH NAME
TQTextDrag \- Drag and drop object for transferring plain and Unicode text TQTextDrag \- Drag and drop object for transferring plain and Unicode text
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqdragobject.h>\fR \fC#include <tqdragobject.h>\fR
.PP .PP
Inherits QDragObject. Inherits TQDragObject.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
@ -34,13 +34,13 @@ Inherits QDragObject.
.SS "Static Public Members" .SS "Static Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "bool \fBcanDecode\fR ( const QMimeSource * e )" .BI "bool \fBcanDecode\fR ( const TQMimeSource * e )"
.br .br
.ti -1c .ti -1c
.BI "bool \fBdecode\fR ( const QMimeSource * e, TQString & str )" .BI "bool \fBdecode\fR ( const TQMimeSource * e, TQString & str )"
.br .br
.ti -1c .ti -1c
.BI "bool \fBdecode\fR ( const QMimeSource * e, TQString & str, QCString & subtype )" .BI "bool \fBdecode\fR ( const TQMimeSource * e, TQString & str, QCString & subtype )"
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
@ -50,7 +50,7 @@ Plain text is passed in a TQString which may contain multiple lines (i.e. may co
.PP .PP
Qt provides no built-in mechanism for delivering only a single-line. Qt provides no built-in mechanism for delivering only a single-line.
.PP .PP
For more information about drag and drop, see the QDragObject class and the drag and drop documentation. For more information about drag and drop, see the TQDragObject class and the drag and drop documentation.
.PP .PP
See also Drag And Drop Classes. See also Drag And Drop Classes.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
@ -60,19 +60,19 @@ Constructs a text drag object and sets its data to \fItext\fR. \fIdragSource\fR
Constructs a default text drag object. \fIdragSource\fR must be the drag source; \fIname\fR is the object name. Constructs a default text drag object. \fIdragSource\fR must be the drag source; \fIname\fR is the object name.
.SH "TQTextDrag::~TQTextDrag ()" .SH "TQTextDrag::~TQTextDrag ()"
Destroys the text drag object and frees up all allocated resources. Destroys the text drag object and frees up all allocated resources.
.SH "bool TQTextDrag::canDecode ( const QMimeSource * e )\fC [static]\fR" .SH "bool TQTextDrag::canDecode ( const TQMimeSource * e )\fC [static]\fR"
Returns TRUE if the information in \fIe\fR can be decoded into a TQString; otherwise returns FALSE. Returns TRUE if the information in \fIe\fR can be decoded into a TQString; otherwise returns FALSE.
.PP .PP
See also decode(). See also decode().
.PP .PP
Example: iconview/simple_dd/main.cpp. Example: iconview/simple_dd/main.cpp.
.SH "bool TQTextDrag::decode ( const QMimeSource * e, TQString & str )\fC [static]\fR" .SH "bool TQTextDrag::decode ( const TQMimeSource * e, TQString & str )\fC [static]\fR"
Attempts to decode the dropped information in \fIe\fR into \fIstr\fR. Returns TRUE if successful; otherwise returns FALSE. Attempts to decode the dropped information in \fIe\fR into \fIstr\fR. Returns TRUE if successful; otherwise returns FALSE.
.PP .PP
See also canDecode(). See also canDecode().
.PP .PP
Example: iconview/simple_dd/main.cpp. Example: iconview/simple_dd/main.cpp.
.SH "bool TQTextDrag::decode ( const QMimeSource * e, TQString & str, QCString & subtype )\fC [static]\fR" .SH "bool TQTextDrag::decode ( const TQMimeSource * e, TQString & str, QCString & subtype )\fC [static]\fR"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP .PP
Attempts to decode the dropped information in \fIe\fR into \fIstr\fR. Returns TRUE if successful; otherwise returns FALSE. If \fIsubtype\fR is null, any text subtype is accepted; otherwise only the specified \fIsubtype\fR is accepted. Attempts to decode the dropped information in \fIe\fR into \fIstr\fR. Returns TRUE if successful; otherwise returns FALSE. If \fIsubtype\fR is null, any text subtype is accepted; otherwise only the specified \fIsubtype\fR is accepted.

@ -93,7 +93,7 @@ Inherited by QMultiLineEdit, TQTextBrowser, and TQTextView.
.BI "TQStyleSheet * \fBstyleSheet\fR () const" .BI "TQStyleSheet * \fBstyleSheet\fR () const"
.br .br
.ti -1c .ti -1c
.BI "QMimeSourceFactory * \fBmimeSourceFactory\fR () const" .BI "TQMimeSourceFactory * \fBmimeSourceFactory\fR () const"
.br .br
.ti -1c .ti -1c
.BI "QBrush \fBpaper\fR () const" .BI "QBrush \fBpaper\fR () const"
@ -198,7 +198,7 @@ Inherited by QMultiLineEdit, TQTextBrowser, and TQTextView.
.SS "Public Slots" .SS "Public Slots"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "virtual void \fBsetMimeSourceFactory\fR ( QMimeSourceFactory * factory )" .BI "virtual void \fBsetMimeSourceFactory\fR ( TQMimeSourceFactory * factory )"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBsetStyleSheet\fR ( TQStyleSheet * styleSheet )" .BI "virtual void \fBsetStyleSheet\fR ( TQStyleSheet * styleSheet )"
@ -551,7 +551,7 @@ The text edit documentation uses the following concepts:
.TP .TP
\fIcurrent paragraph\fR -- the paragraph which contains the cursor. \fIcurrent paragraph\fR -- the paragraph which contains the cursor.
.PP .PP
TQTextEdit can display images (using QMimeSourceFactory), lists and tables. If the text is too large to view within the text edit's viewport, scrollbars will appear. The text edit can load both plain text and HTML files (a subset of HTML 3.2 and 4). The rendering style and the set of valid tags are defined by a styleSheet(). Custom tags can be created and placed in a custom style sheet. Change the style sheet with setStyleSheet(); see TQStyleSheet for details. The images identified by image tags are displayed if they can be interpreted using the text edit's QMimeSourceFactory; see setMimeSourceFactory(). TQTextEdit can display images (using TQMimeSourceFactory), lists and tables. If the text is too large to view within the text edit's viewport, scrollbars will appear. The text edit can load both plain text and HTML files (a subset of HTML 3.2 and 4). The rendering style and the set of valid tags are defined by a styleSheet(). Custom tags can be created and placed in a custom style sheet. Change the style sheet with setStyleSheet(); see TQStyleSheet for details. The images identified by image tags are displayed if they can be interpreted using the text edit's TQMimeSourceFactory; see setMimeSourceFactory().
.PP .PP
If you want a text browser with more navigation use TQTextBrowser. If you just need to display a small piece of rich text use QLabel or QSimpleRichText. If you want a text browser with more navigation use TQTextBrowser. If you just need to display a small piece of rich text use QLabel or QSimpleRichText.
.PP .PP
@ -617,7 +617,7 @@ l - l. Keypresses Action UpArrow Move one line up DownArrow Move one line down L
.PP .PP
The text edit may be able to provide some meta-information. For example, the documentTitle() function will return the text from within HTML \fC<title>\fR tags. The text edit may be able to provide some meta-information. For example, the documentTitle() function will return the text from within HTML \fC<title>\fR tags.
.PP .PP
The text displayed in a text edit has a \fIcontext\fR. The context is a path which the text edit's QMimeSourceFactory uses to resolve the locations of files and images. It is passed to the mimeSourceFactory() when quering data. (See TQTextEdit() and context().) The text displayed in a text edit has a \fIcontext\fR. The context is a path which the text edit's TQMimeSourceFactory uses to resolve the locations of files and images. It is passed to the mimeSourceFactory() when quering data. (See TQTextEdit() and context().)
.PP .PP
<h4> Using TQTextEdit in LogText Mode </h4> <h4> Using TQTextEdit in LogText Mode </h4>
.PP .PP
@ -774,9 +774,9 @@ See also wrapPolicy.
.SH "TQTextEdit::TQTextEdit ( const TQString & text, const TQString & context = TQString::null, TQWidget * parent = 0, const char * name = 0 )" .SH "TQTextEdit::TQTextEdit ( const TQString & text, const TQString & context = TQString::null, TQWidget * parent = 0, const char * name = 0 )"
Constructs a TQTextEdit called \fIname\fR, with parent \fIparent\fR. The text edit will display the text \fItext\fR using context \fIcontext\fR. Constructs a TQTextEdit called \fIname\fR, with parent \fIparent\fR. The text edit will display the text \fItext\fR using context \fIcontext\fR.
.PP .PP
The \fIcontext\fR is a path which the text edit's QMimeSourceFactory uses to resolve the locations of files and images. It is passed to the mimeSourceFactory() when quering data. The \fIcontext\fR is a path which the text edit's TQMimeSourceFactory uses to resolve the locations of files and images. It is passed to the mimeSourceFactory() when quering data.
.PP .PP
For example if the text contains an image tag, \fC<img src="image.png">\fR, and the context is "path/to/look/in", the QMimeSourceFactory will try to load the image from" path/to/look/in/image.png". If the tag was \fC<img src="/image.png">\fR, the context will not be used (because QMimeSourceFactory recognizes that we have used an absolute path) and will try to load "/image.png". The context is applied in exactly the same way to \fIhrefs\fR, for example, \fC<a href="target.html">Target</a>\fR, would resolve to" path/to/look/in/target.html". For example if the text contains an image tag, \fC<img src="image.png">\fR, and the context is "path/to/look/in", the TQMimeSourceFactory will try to load the image from" path/to/look/in/image.png". If the tag was \fC<img src="/image.png">\fR, the context will not be used (because TQMimeSourceFactory recognizes that we have used an absolute path) and will try to load "/image.png". The context is applied in exactly the same way to \fIhrefs\fR, for example, \fC<a href="target.html">Target</a>\fR, would resolve to" path/to/look/in/target.html".
.SH "TQTextEdit::TQTextEdit ( TQWidget * parent = 0, const char * name = 0 )" .SH "TQTextEdit::TQTextEdit ( TQWidget * parent = 0, const char * name = 0 )"
Constructs an empty TQTextEdit called \fIname\fR, with parent \fIparent\fR. Constructs an empty TQTextEdit called \fIname\fR, with parent \fIparent\fR.
.SH "int TQTextEdit::alignment () const" .SH "int TQTextEdit::alignment () const"
@ -817,7 +817,7 @@ Returns the color of the current format.
.PP .PP
See also setColor() and paper. See also setColor() and paper.
.SH "TQString TQTextEdit::context () const" .SH "TQString TQTextEdit::context () const"
Returns the context of the text edit. The context is a path which the text edit's QMimeSourceFactory uses to resolve the locations of files and images. Returns the context of the text edit. The context is a path which the text edit's TQMimeSourceFactory uses to resolve the locations of files and images.
.PP .PP
See also text. See also text.
.PP .PP
@ -1001,8 +1001,8 @@ Returns the number of lines in paragraph \fIpara\fR, or -1 if there is no paragr
Returns TRUE if hypertext links will be underlined; otherwise returns FALSE. See the "linkUnderline" property for details. Returns TRUE if hypertext links will be underlined; otherwise returns FALSE. See the "linkUnderline" property for details.
.SH "int TQTextEdit::maxLogLines ()\fC [slot]\fR" .SH "int TQTextEdit::maxLogLines ()\fC [slot]\fR"
Returns the maximum number of lines TQTextEdit can hold in LogText mode. By default the number of lines is unlimited, which is signified by a value of -1. Returns the maximum number of lines TQTextEdit can hold in LogText mode. By default the number of lines is unlimited, which is signified by a value of -1.
.SH "QMimeSourceFactory * TQTextEdit::mimeSourceFactory () const" .SH "TQMimeSourceFactory * TQTextEdit::mimeSourceFactory () const"
Returns the QMimeSourceFactory which is being used by this text edit. Returns the TQMimeSourceFactory which is being used by this text edit.
.PP .PP
See also setMimeSourceFactory(). See also setMimeSourceFactory().
.PP .PP
@ -1126,8 +1126,8 @@ Sets whether hypertext links will be underlined. See the "linkUnderline" propert
Sets the maximum number of lines a TQTextEdit can hold in LogText mode to \fIlimit\fR. If \fIlimit\fR is -1 (the default), this signifies an unlimited number of lines. Sets the maximum number of lines a TQTextEdit can hold in LogText mode to \fIlimit\fR. If \fIlimit\fR is -1 (the default), this signifies an unlimited number of lines.
.PP .PP
\fBWarning:\fR Never use formatting tags that span more than one line when the maximum log lines is set. When lines are removed from the top of the buffer it could result in an unbalanced tag pair, i.e. the left formatting tag is removed before the right one. \fBWarning:\fR Never use formatting tags that span more than one line when the maximum log lines is set. When lines are removed from the top of the buffer it could result in an unbalanced tag pair, i.e. the left formatting tag is removed before the right one.
.SH "void TQTextEdit::setMimeSourceFactory ( QMimeSourceFactory * factory )\fC [virtual slot]\fR" .SH "void TQTextEdit::setMimeSourceFactory ( TQMimeSourceFactory * factory )\fC [virtual slot]\fR"
Sets the text edit's mimesource factory to \fIfactory\fR. See QMimeSourceFactory for further details. Sets the text edit's mimesource factory to \fIfactory\fR. See TQMimeSourceFactory for further details.
.PP .PP
See also mimeSourceFactory(). See also mimeSourceFactory().
.SH "void TQTextEdit::setModified ( bool m )\fC [virtual slot]\fR" .SH "void TQTextEdit::setModified ( bool m )\fC [virtual slot]\fR"
@ -1179,7 +1179,7 @@ Changes the text of the text edit to the string \fItext\fR and the context to \f
.PP .PP
For rich text the rendering style and available tags are defined by a styleSheet(); see TQStyleSheet for details. For rich text the rendering style and available tags are defined by a styleSheet(); see TQStyleSheet for details.
.PP .PP
The optional \fIcontext\fR is a path which the text edit's QMimeSourceFactory uses to resolve the locations of files and images. (See TQTextEdit::TQTextEdit().) It is passed to the text edit's QMimeSourceFactory when quering data. The optional \fIcontext\fR is a path which the text edit's TQMimeSourceFactory uses to resolve the locations of files and images. (See TQTextEdit::TQTextEdit().) It is passed to the text edit's TQMimeSourceFactory when quering data.
.PP .PP
Note that the undo/redo history is cleared by this function. Note that the undo/redo history is cleared by this function.
.PP .PP

@ -1,5 +1,5 @@
'\" t '\" t
.TH QUriDrag 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQUriDrag 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,22 +7,22 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QUriDrag \- Drag object for a list of URI references TQUriDrag \- Drag object for a list of URI references
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqdragobject.h>\fR \fC#include <tqdragobject.h>\fR
.PP .PP
Inherits QStoredDrag. Inherits TQStoredDrag.
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQUriDrag\fR ( TQStrList uris, TQWidget * dragSource = 0, const char * name = 0 )" .BI "\fBTQUriDrag\fR ( TQStrList uris, TQWidget * dragSource = 0, const char * name = 0 )"
.br .br
.ti -1c .ti -1c
.BI "\fBQUriDrag\fR ( TQWidget * dragSource = 0, const char * name = 0 )" .BI "\fBTQUriDrag\fR ( TQWidget * dragSource = 0, const char * name = 0 )"
.br .br
.ti -1c .ti -1c
.BI "\fB~QUriDrag\fR ()" .BI "\fB~TQUriDrag\fR ()"
.br .br
.ti -1c .ti -1c
.BI "void setFilenames ( const TQStringList & fnames ) \fI(obsolete)\fR" .BI "void setFilenames ( const TQStringList & fnames ) \fI(obsolete)\fR"
@ -52,20 +52,20 @@ Inherits QStoredDrag.
.BI "QCString \fBunicodeUriToUri\fR ( const TQString & uuri )" .BI "QCString \fBunicodeUriToUri\fR ( const TQString & uuri )"
.br .br
.ti -1c .ti -1c
.BI "bool \fBcanDecode\fR ( const QMimeSource * e )" .BI "bool \fBcanDecode\fR ( const TQMimeSource * e )"
.br .br
.ti -1c .ti -1c
.BI "bool \fBdecode\fR ( const QMimeSource * e, TQStrList & l )" .BI "bool \fBdecode\fR ( const TQMimeSource * e, TQStrList & l )"
.br .br
.ti -1c .ti -1c
.BI "bool \fBdecodeToUnicodeUris\fR ( const QMimeSource * e, TQStringList & l )" .BI "bool \fBdecodeToUnicodeUris\fR ( const TQMimeSource * e, TQStringList & l )"
.br .br
.ti -1c .ti -1c
.BI "bool \fBdecodeLocalFiles\fR ( const QMimeSource * e, TQStringList & l )" .BI "bool \fBdecodeLocalFiles\fR ( const TQMimeSource * e, TQStringList & l )"
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QUriDrag class provides a drag object for a list of URI references. The TQUriDrag class provides a drag object for a list of URI references.
.PP .PP
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. 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.
.PP .PP
@ -77,57 +77,57 @@ Static functions are provided to convert between filenames and URIs, e.g. uriToL
.PP .PP
See also Drag And Drop Classes. See also Drag And Drop Classes.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QUriDrag::QUriDrag ( TQStrList uris, TQWidget * dragSource = 0, const char * name = 0 )" .SH "TQUriDrag::TQUriDrag ( TQStrList uris, TQWidget * dragSource = 0, const char * name = 0 )"
Constructs an object to drag the list of URIs in \fIuris\fR. The \fIdragSource\fR and \fIname\fR arguments are passed on to QStoredDrag. Note that URIs are always in escaped UTF8 encoding. Constructs an object to drag the list of URIs in \fIuris\fR. The \fIdragSource\fR and \fIname\fR arguments are passed on to TQStoredDrag. Note that URIs are always in escaped UTF8 encoding.
.SH "QUriDrag::QUriDrag ( TQWidget * dragSource = 0, const char * name = 0 )" .SH "TQUriDrag::TQUriDrag ( TQWidget * dragSource = 0, const char * name = 0 )"
Constructs an object to drag. You must call setUris() before you start the drag(). Passes \fIdragSource\fR and \fIname\fR to the QStoredDrag constructor. Constructs an object to drag. You must call setUris() before you start the drag(). Passes \fIdragSource\fR and \fIname\fR to the TQStoredDrag constructor.
.SH "QUriDrag::~QUriDrag ()" .SH "TQUriDrag::~TQUriDrag ()"
Destroys the object. Destroys the object.
.SH "bool QUriDrag::canDecode ( const QMimeSource * e )\fC [static]\fR" .SH "bool TQUriDrag::canDecode ( const TQMimeSource * e )\fC [static]\fR"
Returns TRUE if decode() would be able to decode \fIe\fR; otherwise returns FALSE. Returns TRUE if decode() would be able to decode \fIe\fR; otherwise returns FALSE.
.SH "bool QUriDrag::decode ( const QMimeSource * e, TQStrList & l )\fC [static]\fR" .SH "bool TQUriDrag::decode ( const TQMimeSource * e, TQStrList & l )\fC [static]\fR"
Decodes URIs from \fIe\fR, placing the result in \fIl\fR (which is first cleared). Decodes URIs from \fIe\fR, placing the result in \fIl\fR (which is first cleared).
.PP .PP
Returns TRUE if \fIe\fR contained a valid list of URIs; otherwise returns FALSE. Returns TRUE if \fIe\fR contained a valid list of URIs; otherwise returns FALSE.
.PP .PP
Example: dirview/dirview.cpp. Example: dirview/dirview.cpp.
.SH "bool QUriDrag::decodeLocalFiles ( const QMimeSource * e, TQStringList & l )\fC [static]\fR" .SH "bool TQUriDrag::decodeLocalFiles ( const TQMimeSource * e, TQStringList & l )\fC [static]\fR"
Decodes URIs from the mime source event \fIe\fR, converts them to local files if they refer to local files, and places them in \fIl\fR (which is first cleared). Decodes URIs from the mime source event \fIe\fR, converts them to local files if they refer to local files, and places them in \fIl\fR (which is first cleared).
.PP .PP
Returns TRUE if \fIcontained\fR a valid list of URIs; otherwise returns FALSE. The list will be empty if no URIs were local files. Returns TRUE if \fIcontained\fR a valid list of URIs; otherwise returns FALSE. The list will be empty if no URIs were local files.
.PP .PP
Example: fileiconview/qfileiconview.cpp. Example: fileiconview/qfileiconview.cpp.
.SH "bool QUriDrag::decodeToUnicodeUris ( const QMimeSource * e, TQStringList & l )\fC [static]\fR" .SH "bool TQUriDrag::decodeToUnicodeUris ( const TQMimeSource * e, TQStringList & l )\fC [static]\fR"
Decodes URIs from the mime source event \fIe\fR, converts them to Unicode URIs (only useful for displaying to humans), placing them in \fIl\fR (which is first cleared). Decodes URIs from the mime source event \fIe\fR, converts them to Unicode URIs (only useful for displaying to humans), placing them in \fIl\fR (which is first cleared).
.PP .PP
Returns TRUE if \fIcontained\fR a valid list of URIs; otherwise returns FALSE. Returns TRUE if \fIcontained\fR a valid list of URIs; otherwise returns FALSE.
.SH "QCString QUriDrag::localFileToUri ( const TQString & filename )\fC [static]\fR" .SH "QCString TQUriDrag::localFileToUri ( const TQString & filename )\fC [static]\fR"
Returns the URI equivalent to the absolute local file \fIfilename\fR. Returns the URI equivalent to the absolute local file \fIfilename\fR.
.PP .PP
See also uriToLocalFile(). See also uriToLocalFile().
.SH "void QUriDrag::setFileNames ( const TQStringList & fnames )" .SH "void TQUriDrag::setFileNames ( const TQStringList & fnames )"
Sets the URIs to be the local-file URIs equivalent to \fIfnames\fR. Sets the URIs to be the local-file URIs equivalent to \fIfnames\fR.
.PP .PP
See also localFileToUri() and setUris(). See also localFileToUri() and setUris().
.PP .PP
Example: dirview/dirview.cpp. Example: dirview/dirview.cpp.
.SH "void QUriDrag::setFilenames ( const TQStringList & fnames )" .SH "void TQUriDrag::setFilenames ( const TQStringList & fnames )"
\fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code. \fBThis function is obsolete.\fR It is provided to keep old source working. We strongly advise against using it in new code.
.PP .PP
Use setFileNames() instead (notice the N). Use setFileNames() instead (notice the N).
.SH "void QUriDrag::setUnicodeUris ( const TQStringList & uuris )" .SH "void TQUriDrag::setUnicodeUris ( const TQStringList & uuris )"
Sets the URIs in \fIuuris\fR to be the Unicode URIs (only useful for displaying to humans). Sets the URIs in \fIuuris\fR to be the Unicode URIs (only useful for displaying to humans).
.PP .PP
See also localFileToUri() and setUris(). See also localFileToUri() and setUris().
.SH "void QUriDrag::setUris ( TQStrList uris )\fC [virtual]\fR" .SH "void TQUriDrag::setUris ( TQStrList uris )\fC [virtual]\fR"
Changes the list of \fIuris\fR to be dragged. Changes the list of \fIuris\fR to be dragged.
.PP .PP
Note that URIs are always in escaped UTF8 encoding. Note that URIs are always in escaped UTF8 encoding.
.SH "QCString QUriDrag::unicodeUriToUri ( const TQString & uuri )\fC [static]\fR" .SH "QCString TQUriDrag::unicodeUriToUri ( const TQString & uuri )\fC [static]\fR"
Returns the URI equivalent of the Unicode URI given in \fIuuri\fR (only useful for displaying to humans). Returns the URI equivalent of the Unicode URI given in \fIuuri\fR (only useful for displaying to humans).
.PP .PP
See also uriToLocalFile(). See also uriToLocalFile().
.SH "TQString QUriDrag::uriToLocalFile ( const char * uri )\fC [static]\fR" .SH "TQString TQUriDrag::uriToLocalFile ( const char * uri )\fC [static]\fR"
Returns the name of a local file equivalent to \fIuri\fR or a null string if \fIuri\fR is not a local file. Returns the name of a local file equivalent to \fIuri\fR or a null string if \fIuri\fR is not a local file.
.PP .PP
Note that URIs are always in escaped UTF8 encoding. Note that URIs are always in escaped UTF8 encoding.
@ -135,7 +135,7 @@ Note that URIs are always in escaped UTF8 encoding.
See also localFileToUri(). See also localFileToUri().
.PP .PP
Example: dirview/dirview.cpp. Example: dirview/dirview.cpp.
.SH "TQString QUriDrag::uriToUnicodeUri ( const char * uri )\fC [static]\fR" .SH "TQString TQUriDrag::uriToUnicodeUri ( const char * uri )\fC [static]\fR"
Returns the Unicode URI (only useful for displaying to humans) equivalent of \fIuri\fR. Returns the Unicode URI (only useful for displaying to humans) equivalent of \fIuri\fR.
.PP .PP
Note that URIs are always in escaped UTF8 encoding. Note that URIs are always in escaped UTF8 encoding.
@ -143,7 +143,7 @@ Note that URIs are always in escaped UTF8 encoding.
See also localFileToUri(). See also localFileToUri().
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/quridrag.html .BR http://doc.trolltech.com/tquridrag.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -82,7 +82,7 @@ The text can be either rich text or plain text. If you specify a rich text forma
.br .br
"from the <b>File</b> menu.</p>"; "from the <b>File</b> menu.</p>";
.br .br
QMimeSourceFactory::defaultFactory()->setPixmap( "fileopen", TQMimeSourceFactory::defaultFactory()->setPixmap( "fileopen",
.br .br
fileOpenAction->iconSet().pixmap() ); fileOpenAction->iconSet().pixmap() );
.br .br

@ -915,16 +915,16 @@ Inherited by QButton, QFrame, QDialog, QComboBox, TQDataBrowser, TQDataView, TQD
.BI "virtual void \fBtabletEvent\fR ( QTabletEvent * e )" .BI "virtual void \fBtabletEvent\fR ( QTabletEvent * e )"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBdragEnterEvent\fR ( QDragEnterEvent * )" .BI "virtual void \fBdragEnterEvent\fR ( TQDragEnterEvent * )"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBdragMoveEvent\fR ( QDragMoveEvent * )" .BI "virtual void \fBdragMoveEvent\fR ( TQDragMoveEvent * )"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBdragLeaveEvent\fR ( QDragLeaveEvent * )" .BI "virtual void \fBdragLeaveEvent\fR ( TQDragLeaveEvent * )"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBdropEvent\fR ( QDropEvent * )" .BI "virtual void \fBdropEvent\fR ( TQDropEvent * )"
.br .br
.ti -1c .ti -1c
.BI "virtual void \fBshowEvent\fR ( QShowEvent * )" .BI "virtual void \fBshowEvent\fR ( QShowEvent * )"
@ -1290,26 +1290,26 @@ Frees up window system resources. Destroys the widget window if \fIdestroyWindow
destroy() calls itself recursively for all the child widgets, passing \fIdestroySubWindows\fR for the \fIdestroyWindow\fR parameter. To have more control over destruction of subwidgets, destroy subwidgets selectively first. destroy() calls itself recursively for all the child widgets, passing \fIdestroySubWindows\fR for the \fIdestroyWindow\fR parameter. To have more control over destruction of subwidgets, destroy subwidgets selectively first.
.PP .PP
This function is usually called from the TQWidget destructor. This function is usually called from the TQWidget destructor.
.SH "void TQWidget::dragEnterEvent ( QDragEnterEvent * )\fC [virtual protected]\fR" .SH "void TQWidget::dragEnterEvent ( TQDragEnterEvent * )\fC [virtual protected]\fR"
This event handler is called when a drag is in progress and the mouse enters this widget. This event handler is called when a drag is in progress and the mouse enters this widget.
.PP .PP
See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application. See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application.
.PP .PP
See also TQTextDrag, TQImageDrag, and QDragEnterEvent. See also TQTextDrag, TQImageDrag, and TQDragEnterEvent.
.PP .PP
Example: iconview/simple_dd/main.cpp. Example: iconview/simple_dd/main.cpp.
.SH "void TQWidget::dragLeaveEvent ( QDragLeaveEvent * )\fC [virtual protected]\fR" .SH "void TQWidget::dragLeaveEvent ( TQDragLeaveEvent * )\fC [virtual protected]\fR"
This event handler is called when a drag is in progress and the mouse leaves this widget. This event handler is called when a drag is in progress and the mouse leaves this widget.
.PP .PP
See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application. See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application.
.PP .PP
See also TQTextDrag, TQImageDrag, and QDragLeaveEvent. See also TQTextDrag, TQImageDrag, and TQDragLeaveEvent.
.SH "void TQWidget::dragMoveEvent ( QDragMoveEvent * )\fC [virtual protected]\fR" .SH "void TQWidget::dragMoveEvent ( TQDragMoveEvent * )\fC [virtual protected]\fR"
This event handler is called when a drag is in progress and the mouse enters this widget, and whenever it moves within the widget. This event handler is called when a drag is in progress and the mouse enters this widget, and whenever it moves within the widget.
.PP .PP
See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application. See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application.
.PP .PP
See also TQTextDrag, TQImageDrag, and QDragMoveEvent. See also TQTextDrag, TQImageDrag, and TQDragMoveEvent.
.SH "void TQWidget::drawText ( int x, int y, const TQString & str )" .SH "void TQWidget::drawText ( int x, int y, const TQString & str )"
Draws the string \fIstr\fR at position \fI(x, y)\fR. Draws the string \fIstr\fR at position \fI(x, y)\fR.
.PP .PP
@ -1322,12 +1322,12 @@ See also font, foregroundColor(), and QPainter::drawText().
This is an overloaded member function, provided for convenience. It behaves essentially like the above function. This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP .PP
Draws the string \fIstr\fR at position \fIpos\fR. Draws the string \fIstr\fR at position \fIpos\fR.
.SH "void TQWidget::dropEvent ( QDropEvent * )\fC [virtual protected]\fR" .SH "void TQWidget::dropEvent ( TQDropEvent * )\fC [virtual protected]\fR"
This event handler is called when the drag is dropped on this widget. This event handler is called when the drag is dropped on this widget.
.PP .PP
See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application. See the Drag-and-drop documentation for an overview of how to provide drag-and-drop in your application.
.PP .PP
See also TQTextDrag, TQImageDrag, and QDropEvent. See also TQTextDrag, TQImageDrag, and TQDropEvent.
.PP .PP
Example: iconview/simple_dd/main.cpp. Example: iconview/simple_dd/main.cpp.
.SH "void TQWidget::enabledChange ( bool oldEnabled )\fC [virtual protected]\fR" .SH "void TQWidget::enabledChange ( bool oldEnabled )\fC [virtual protected]\fR"

@ -103,7 +103,7 @@ Subclass TQWidgetFactory. Then reimplement this function to create and return an
where MyWidgetFactory is your TQWidgetFactory subclass. where MyWidgetFactory is your TQWidgetFactory subclass.
.IP .IP
.SH "void TQWidgetFactory::loadImages ( const TQString & dir )\fC [static]\fR" .SH "void TQWidgetFactory::loadImages ( const TQString & dir )\fC [static]\fR"
If you use a pixmap collection (which is the default for new projects) rather than saving the pixmaps within the .ui XML file, you must load the pixmap collection. TQWidgetFactory looks in the default QMimeSourceFactory for the pixmaps. Either add it there manually, or call this function and specify the directory where the images can be found, as \fIdir\fR. This is normally the directory called \fCimages\fR in the project's directory. If you use a pixmap collection (which is the default for new projects) rather than saving the pixmaps within the .ui XML file, you must load the pixmap collection. TQWidgetFactory looks in the default TQMimeSourceFactory for the pixmaps. Either add it there manually, or call this function and specify the directory where the images can be found, as \fIdir\fR. This is normally the directory called \fCimages\fR in the project's directory.
.SH "bool TQWidgetFactory::supportsWidget ( const TQString & widget )\fC [static]\fR" .SH "bool TQWidgetFactory::supportsWidget ( const TQString & widget )\fC [static]\fR"
Returns TRUE if the widget factory can create the specified \fIwidget\fR; otherwise returns FALSE. Returns TRUE if the widget factory can create the specified \fIwidget\fR; otherwise returns FALSE.
.SH "TQStringList TQWidgetFactory::widgets ()\fC [static]\fR" .SH "TQStringList TQWidgetFactory::widgets ()\fC [static]\fR"

@ -1,5 +1,5 @@
'\" t '\" t
.TH QWindowsMime 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*- .TH TQWindowsMime 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the .\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
.\" license file included in the distribution for a complete license .\" license file included in the distribution for a complete license
.\" statement. .\" statement.
@ -7,17 +7,17 @@
.ad l .ad l
.nh .nh
.SH NAME .SH NAME
QWindowsMime \- Maps open-standard MIME to Window Clipboard formats TQWindowsMime \- Maps open-standard MIME to Window Clipboard formats
.SH SYNOPSIS .SH SYNOPSIS
\fC#include <ntqmime.h>\fR \fC#include <tqmime.h>\fR
.PP .PP
.SS "Public Members" .SS "Public Members"
.in +1c .in +1c
.ti -1c .ti -1c
.BI "\fBQWindowsMime\fR ()" .BI "\fBTQWindowsMime\fR ()"
.br .br
.ti -1c .ti -1c
.BI "virtual \fB~QWindowsMime\fR ()" .BI "virtual \fB~TQWindowsMime\fR ()"
.br .br
.ti -1c .ti -1c
.BI "virtual const char * \fBconvertorName\fR () = 0" .BI "virtual const char * \fBconvertorName\fR () = 0"
@ -50,21 +50,21 @@ QWindowsMime \- Maps open-standard MIME to Window Clipboard formats
.BI "void \fBinitialize\fR ()" .BI "void \fBinitialize\fR ()"
.br .br
.ti -1c .ti -1c
.BI "TQPtrList<QWindowsMime> \fBall\fR ()" .BI "TQPtrList<TQWindowsMime> \fBall\fR ()"
.br .br
.ti -1c .ti -1c
.BI "QWindowsMime * \fBconvertor\fR ( const char * mime, int cf )" .BI "TQWindowsMime * \fBconvertor\fR ( const char * mime, int cf )"
.br .br
.ti -1c .ti -1c
.BI "const char * \fBcfToMime\fR ( int cf )" .BI "const char * \fBcfToMime\fR ( int cf )"
.br .br
.in -1c .in -1c
.SH DESCRIPTION .SH DESCRIPTION
The QWindowsMime class maps open-standard MIME to Window Clipboard formats. The TQWindowsMime class maps open-standard MIME to Window Clipboard formats.
.PP .PP
Qt's drag-and-drop and clipboard facilities use the MIME standard. On X11, this maps trivially to the Xdnd protocol, but on Windows although some applications use MIME types to describe clipboard formats, others use arbitrary non-standardized naming conventions, or unnamed built-in formats of Windows. Qt's drag-and-drop and clipboard facilities use the MIME standard. On X11, this maps trivially to the Xdnd protocol, but on Windows although some applications use MIME types to describe clipboard formats, others use arbitrary non-standardized naming conventions, or unnamed built-in formats of Windows.
.PP .PP
By instantiating subclasses of QWindowsMime that provide conversions between Windows Clipboard and MIME formats, you can convert proprietary clipboard formats to MIME formats. By instantiating subclasses of TQWindowsMime that provide conversions between Windows Clipboard and MIME formats, you can convert proprietary clipboard formats to MIME formats.
.PP .PP
Qt has predefined support for the following Windows Clipboard formats: Qt has predefined support for the following Windows Clipboard formats:
.TP .TP
@ -74,7 +74,7 @@ CF_TEXT - converted to "text/plain;charset=system" or "text/plain" and supported
.TP .TP
CF_DIB - converted to "image/*", where * is a TQt image format, and supported by TQImageDrag. CF_DIB - converted to "image/*", where * is a TQt image format, and supported by TQImageDrag.
.TP .TP
CF_HDROP - converted to "text/uri-list", and supported by QUriDrag. CF_HDROP - converted to "text/uri-list", and supported by TQUriDrag.
.PP .PP
An example use of this class would be to map the Windows Metafile clipboard format (CF_METAFILEPICT) to and from the MIME type "image/x-wmf". This conversion might simply be adding or removing a header, or even just passing on the data. See the Drag-and-Drop documentation for more information on choosing and definition MIME types. An example use of this class would be to map the Windows Metafile clipboard format (CF_METAFILEPICT) to and from the MIME type "image/x-wmf". This conversion might simply be adding or removing a header, or even just passing on the data. See the Drag-and-Drop documentation for more information on choosing and definition MIME types.
.PP .PP
@ -82,57 +82,57 @@ You can check if a MIME type is convertible using canConvert() and can perform c
.PP .PP
See also Drag And Drop Classes, Input/Output and Networking, and Miscellaneous Classes. See also Drag And Drop Classes, Input/Output and Networking, and Miscellaneous Classes.
.SH MEMBER FUNCTION DOCUMENTATION .SH MEMBER FUNCTION DOCUMENTATION
.SH "QWindowsMime::QWindowsMime ()" .SH "TQWindowsMime::TQWindowsMime ()"
Constructs a new conversion object, adding it to the globally accessed list of available convertors. Constructs a new conversion object, adding it to the globally accessed list of available convertors.
.SH "QWindowsMime::~QWindowsMime ()\fC [virtual]\fR" .SH "TQWindowsMime::~TQWindowsMime ()\fC [virtual]\fR"
Destroys a conversion object, removing it from the global list of available convertors. Destroys a conversion object, removing it from the global list of available convertors.
.SH "TQPtrList<QWindowsMime> QWindowsMime::all ()\fC [static]\fR" .SH "TQPtrList<TQWindowsMime> TQWindowsMime::all ()\fC [static]\fR"
Returns a list of all currently defined QWindowsMime objects. Returns a list of all currently defined TQWindowsMime objects.
.SH "bool QWindowsMime::canConvert ( const char * mime, int cf )\fC [pure virtual]\fR" .SH "bool TQWindowsMime::canConvert ( const char * mime, int cf )\fC [pure virtual]\fR"
Returns TRUE if the convertor can convert (both ways) between \fImime\fR and \fIcf\fR; otherwise returns FALSE. Returns TRUE if the convertor can convert (both ways) between \fImime\fR and \fIcf\fR; otherwise returns FALSE.
.PP .PP
All subclasses must reimplement this pure virtual function. All subclasses must reimplement this pure virtual function.
.SH "int QWindowsMime::cf ( int index )\fC [pure virtual]\fR" .SH "int TQWindowsMime::cf ( int index )\fC [pure virtual]\fR"
Returns the Windows Clipboard format supported by this convertor that is ordinarily at position \fIindex\fR. This means that cf(0) returns the first Windows Clipboard format supported, and cf(countCf()-1) returns the last. If \fIindex\fR is out of range the return value is undefined. Returns the Windows Clipboard format supported by this convertor that is ordinarily at position \fIindex\fR. This means that cf(0) returns the first Windows Clipboard format supported, and cf(countCf()-1) returns the last. If \fIindex\fR is out of range the return value is undefined.
.PP .PP
All subclasses must reimplement this pure virtual function. All subclasses must reimplement this pure virtual function.
.SH "int QWindowsMime::cfFor ( const char * mime )\fC [pure virtual]\fR" .SH "int TQWindowsMime::cfFor ( const char * mime )\fC [pure virtual]\fR"
Returns the Windows Clipboard type used for MIME type \fImime\fR, or 0 if this convertor does not support \fImime\fR. Returns the Windows Clipboard type used for MIME type \fImime\fR, or 0 if this convertor does not support \fImime\fR.
.PP .PP
All subclasses must reimplement this pure virtual function. All subclasses must reimplement this pure virtual function.
.SH "const char * QWindowsMime::cfToMime ( int cf )\fC [static]\fR" .SH "const char * TQWindowsMime::cfToMime ( int cf )\fC [static]\fR"
Returns a MIME type for \fIcf\fR, or 0 if none exists. Returns a MIME type for \fIcf\fR, or 0 if none exists.
.SH "QByteArray QWindowsMime::convertFromMime ( QByteArray data, const char * mime, int cf )\fC [pure virtual]\fR" .SH "QByteArray TQWindowsMime::convertFromMime ( QByteArray data, const char * mime, int cf )\fC [pure virtual]\fR"
Returns \fIdata\fR converted from MIME type \fImime\fR to Windows Clipboard format \fIcf\fR. Returns \fIdata\fR converted from MIME type \fImime\fR to Windows Clipboard format \fIcf\fR.
.PP .PP
Note that Windows Clipboard formats must all be self-terminating. The return value may contain trailing data. Note that Windows Clipboard formats must all be self-terminating. The return value may contain trailing data.
.PP .PP
All subclasses must reimplement this pure virtual function. All subclasses must reimplement this pure virtual function.
.SH "QByteArray QWindowsMime::convertToMime ( QByteArray data, const char * mime, int cf )\fC [pure virtual]\fR" .SH "QByteArray TQWindowsMime::convertToMime ( QByteArray data, const char * mime, int cf )\fC [pure virtual]\fR"
Returns \fIdata\fR converted from Windows Clipboard format \fIcf\fR to MIME type \fImime\fR. Returns \fIdata\fR converted from Windows Clipboard format \fIcf\fR to MIME type \fImime\fR.
.PP .PP
Note that Windows Clipboard formats must all be self-terminating. The input \fIdata\fR may contain trailing data. Note that Windows Clipboard formats must all be self-terminating. The input \fIdata\fR may contain trailing data.
.PP .PP
All subclasses must reimplement this pure virtual function. All subclasses must reimplement this pure virtual function.
.SH "QWindowsMime * QWindowsMime::convertor ( const char * mime, int cf )\fC [static]\fR" .SH "TQWindowsMime * TQWindowsMime::convertor ( const char * mime, int cf )\fC [static]\fR"
Returns the most-recently created QWindowsMime that can convert between the \fImime\fR and \fIcf\fR formats. Returns 0 if no such convertor exists. Returns the most-recently created TQWindowsMime that can convert between the \fImime\fR and \fIcf\fR formats. Returns 0 if no such convertor exists.
.SH "const char * QWindowsMime::convertorName ()\fC [pure virtual]\fR" .SH "const char * TQWindowsMime::convertorName ()\fC [pure virtual]\fR"
Returns a name for the convertor. Returns a name for the convertor.
.PP .PP
All subclasses must reimplement this pure virtual function. All subclasses must reimplement this pure virtual function.
.SH "int QWindowsMime::countCf ()\fC [pure virtual]\fR" .SH "int TQWindowsMime::countCf ()\fC [pure virtual]\fR"
Returns the number of Windows Clipboard formats supported by this convertor. Returns the number of Windows Clipboard formats supported by this convertor.
.PP .PP
All subclasses must reimplement this pure virtual function. All subclasses must reimplement this pure virtual function.
.SH "void QWindowsMime::initialize ()\fC [static]\fR" .SH "void TQWindowsMime::initialize ()\fC [static]\fR"
This is an internal function. This is an internal function.
.SH "const char * QWindowsMime::mimeFor ( int cf )\fC [pure virtual]\fR" .SH "const char * TQWindowsMime::mimeFor ( int cf )\fC [pure virtual]\fR"
Returns the MIME type used for Windows Clipboard format \fIcf\fR, or 0 if this convertor does not support \fIcf\fR. Returns the MIME type used for Windows Clipboard format \fIcf\fR, or 0 if this convertor does not support \fIcf\fR.
.PP .PP
All subclasses must reimplement this pure virtual function. All subclasses must reimplement this pure virtual function.
.SH "SEE ALSO" .SH "SEE ALSO"
.BR http://doc.trolltech.com/qwindowsmime.html .BR http://doc.trolltech.com/tqwindowsmime.html
.BR http://www.trolltech.com/faq/tech.html .BR http://www.trolltech.com/faq/tech.html
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the

@ -335,7 +335,7 @@ new code.
\i QTranslator::find( const char *context, const char *sourceText, const char *comment = 0 ) const \i QTranslator::find( const char *context, const char *sourceText, const char *comment = 0 ) const
\i QTranslator::insert( const char *context, const char *sourceText, const TQString \& translation ) \i QTranslator::insert( const char *context, const char *sourceText, const TQString \& translation )
\i QTranslator::remove( const char *context, const char *sourceText ) \i QTranslator::remove( const char *context, const char *sourceText )
\i QUriDrag::setFilenames( const TQStringList \& fnames ) \i TQUriDrag::setFilenames( const TQStringList \& fnames )
\i TQWidget::backgroundColor() const \i TQWidget::backgroundColor() const
\i TQWidget::backgroundPixmap() const \i TQWidget::backgroundPixmap() const
\i TQWidget::iconify() \i TQWidget::iconify()

@ -1,5 +1,5 @@
#include <tqiconview.h> #include <tqiconview.h>
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <ntqlayout.h> #include <ntqlayout.h>
#include <ntqmultilineedit.h> #include <ntqmultilineedit.h>

@ -1,4 +1,4 @@
#include <ntqdragobject.h> #include <tqdragobject.h>
#include "dnd.h" #include "dnd.h"
#include "iconview.h" #include "iconview.h"

@ -1,4 +1,4 @@
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <ntqapplication.h> #include <ntqapplication.h>
#include "listview.h" #include "listview.h"
#include "dnd.h" #include "dnd.h"

@ -40,7 +40,7 @@
#include <tqimage.h> #include <tqimage.h>
#include <ntqpixmap.h> #include <ntqpixmap.h>
#include <ntqapplication.h> #include <ntqapplication.h>
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <tqstyle.h> #include <tqstyle.h>
StyledButton::StyledButton(TQWidget* parent, const char* name) StyledButton::StyledButton(TQWidget* parent, const char* name)

@ -11,8 +11,8 @@
#include <ntqbitmap.h> #include <ntqbitmap.h>
#include <ntqpainter.h> #include <ntqpainter.h>
#include <ntqapplication.h> #include <ntqapplication.h>
#include <ntqdropsite.h> #include <tqdropsite.h>
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <stdio.h> #include <stdio.h>

@ -16,8 +16,8 @@
#include <ntqevent.h> #include <ntqevent.h>
#include <ntqpoint.h> #include <ntqpoint.h>
#include <ntqmessagebox.h> #include <ntqmessagebox.h>
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <ntqmime.h> #include <tqmime.h>
#include <tqstrlist.h> #include <tqstrlist.h>
#include <tqstringlist.h> #include <tqstringlist.h>
#include <ntqapplication.h> #include <ntqapplication.h>

@ -15,7 +15,7 @@
#include "secret.h" #include "secret.h"
#include <ntqevent.h> #include <ntqevent.h>
#include <ntqpixmap.h> #include <ntqpixmap.h>
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <tqimage.h> #include <tqimage.h>
#include <ntqdir.h> #include <ntqdir.h>

@ -16,7 +16,7 @@
#include <ntqlabel.h> #include <ntqlabel.h>
#include <ntqmovie.h> #include <ntqmovie.h>
#include "ntqdropsite.h" #include "tqdropsite.h"
class TQDragObject; class TQDragObject;

@ -14,7 +14,7 @@
#ifndef SECRETDRAG_H #ifndef SECRETDRAG_H
#define SECRETDRAG_H #define SECRETDRAG_H
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <ntqlabel.h> #include <ntqlabel.h>
class SecretDrag: public TQStoredDrag { class SecretDrag: public TQStoredDrag {

@ -11,9 +11,9 @@
#include <ntqpainter.h> #include <ntqpainter.h>
#include <tqstringlist.h> #include <tqstringlist.h>
#include <ntqpixmap.h> #include <ntqpixmap.h>
#include <ntqmime.h> #include <tqmime.h>
#include <tqstrlist.h> #include <tqstrlist.h>
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <ntqmessagebox.h> #include <ntqmessagebox.h>
#include <ntqevent.h> #include <ntqevent.h>
#include <tqpopupmenu.h> #include <tqpopupmenu.h>

@ -9,11 +9,11 @@
#include <tqiconview.h> #include <tqiconview.h>
#include <ntqapplication.h> #include <ntqapplication.h>
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <ntqpixmap.h> #include <ntqpixmap.h>
#include <tqiconset.h> #include <tqiconset.h>
#include <ntqmime.h> #include <tqmime.h>
#include <stdio.h> #include <stdio.h>
class ListenDND : public TQObject class ListenDND : public TQObject

@ -22,7 +22,7 @@ Enjoy!
P.S. Tetrix has later been updated to show new versions of Qt. P.S. Tetrix has later been updated to show new versions of Qt.
P.P.S The tetrix program uses a special application object called P.P.S The tetrix program uses a special application object called
QDragApplication. Try to guess what it does. TQDragApplication. Try to guess what it does.
Hint: Try pressing the right mouse button somewhere in the Hint: Try pressing the right mouse button somewhere in the
tetrix window and start dragging.... tetrix window and start dragging....

@ -8,7 +8,7 @@
*****************************************************************************/ *****************************************************************************/
#include "qtetrix.h" #include "qtetrix.h"
#include "qdragapp.h" #include "tqdragapp.h"
#include "ntqfont.h" #include "ntqfont.h"
int main( int argc, char **argv ) int main( int argc, char **argv )

@ -7,12 +7,12 @@ DEPENDPATH = ../../include
REQUIRES = small-config REQUIRES = small-config
HEADERS = gtetrix.h \ HEADERS = gtetrix.h \
qdragapp.h \ tqdragapp.h \
qtetrix.h \ qtetrix.h \
qtetrixb.h \ qtetrixb.h \
tpiece.h tpiece.h
SOURCES = gtetrix.cpp \ SOURCES = gtetrix.cpp \
qdragapp.cpp \ tqdragapp.cpp \
qtetrix.cpp \ qtetrix.cpp \
qtetrixb.cpp \ qtetrixb.cpp \
tetrix.cpp \ tetrix.cpp \

@ -7,7 +7,7 @@
** **
*****************************************************************************/ *****************************************************************************/
#include "qdragapp.h" #include "tqdragapp.h"
#include "tqptrlist.h" #include "tqptrlist.h"
#include "ntqintdict.h" #include "ntqintdict.h"
#include "tqpopupmenu.h" #include "tqpopupmenu.h"
@ -499,4 +499,4 @@ TQWidget *cursorWidget( TQPoint *p )
} }
#include "qdragapp.moc" #include "tqdragapp.moc"

@ -1 +0,0 @@
../src/kernel/ntqdragobject.h

@ -1 +0,0 @@
../src/kernel/ntqdropsite.h

@ -1 +0,0 @@
../src/kernel/ntqmime.h

@ -0,0 +1 @@
../src/kernel/tqdragobject.h

@ -0,0 +1 @@
../src/kernel/tqdropsite.h

@ -0,0 +1 @@
../src/kernel/tqmime.h

@ -51,7 +51,7 @@
#include "ntqpixmap.h" #include "ntqpixmap.h"
#include "ntqdrawutil.h" #include "ntqdrawutil.h"
#include "ntqvalidator.h" #include "ntqvalidator.h"
#include "ntqdragobject.h" #include "tqdragobject.h"
#include "ntqgridview.h" #include "ntqgridview.h"
#include "ntqapplication.h" #include "ntqapplication.h"
#include "tqstyle.h" #include "tqstyle.h"

@ -63,7 +63,7 @@
#include "ntqcombobox.h" #include "ntqcombobox.h"
#include "ntqcstring.h" #include "ntqcstring.h"
#include "ntqcursor.h" #include "ntqcursor.h"
#include "ntqdragobject.h" #include "tqdragobject.h"
#include "ntqfile.h" #include "ntqfile.h"
#include "ntqguardedptr.h" #include "ntqguardedptr.h"
#include "ntqhbox.h" #include "ntqhbox.h"
@ -76,7 +76,7 @@
#include "ntqlistview.h" #include "ntqlistview.h"
#include "tqmap.h" #include "tqmap.h"
#include "ntqmessagebox.h" #include "ntqmessagebox.h"
#include "ntqmime.h" #include "tqmime.h"
#include "ntqnetworkprotocol.h" #include "ntqnetworkprotocol.h"
#include "tqobjectlist.h" #include "tqobjectlist.h"
#include "ntqpainter.h" #include "ntqpainter.h"

@ -45,7 +45,7 @@
#include "ntqwindowdefs.h" #include "ntqwindowdefs.h"
#include "ntqregion.h" #include "ntqregion.h"
#include "ntqnamespace.h" #include "ntqnamespace.h"
#include "ntqmime.h" #include "tqmime.h"
#include "tqpair.h" #include "tqpair.h"
#endif // QT_H #endif // QT_H

@ -49,7 +49,7 @@
#include "tqvaluelist.h" #include "tqvaluelist.h"
#include "tqmap.h" #include "tqmap.h"
#include "tqdatetime.h" #include "tqdatetime.h"
#include "ntqmime.h" #include "tqmime.h"
#include "ntqasciidict.h" #include "ntqasciidict.h"
#include "ntqpaintdevice.h" #include "ntqpaintdevice.h"
#include "ntqfontmetrics.h" #include "ntqfontmetrics.h"
@ -90,7 +90,7 @@
#include <ntqgif.h> #include <ntqgif.h>
#include <ntqglcolormap.h> #include <ntqglcolormap.h>
#include <ntqcache.h> #include <ntqcache.h>
#include <ntqdropsite.h> #include <tqdropsite.h>
#include "ntqgplugin.h" #include "ntqgplugin.h"
#include <ntqgrid.h> #include <ntqgrid.h>
#include "ntqrangecontrol.h" #include "ntqrangecontrol.h"
@ -150,7 +150,7 @@
#include "tqmenudata.h" #include "tqmenudata.h"
#include <ntqlistview.h> #include <ntqlistview.h>
#include "ntqpen.h" #include "ntqpen.h"
#include "ntqdragobject.h" #include "tqdragobject.h"
#include <tqiconview.h> #include <tqiconview.h>
#include <ntqpixmapcache.h> #include <ntqpixmapcache.h>
#include <ntqplatinumstyle.h> #include <ntqplatinumstyle.h>

@ -51,7 +51,7 @@
#include "ntqtranslator.h" #include "ntqtranslator.h"
#include "tqtextcodec.h" #include "tqtextcodec.h"
#include "tqsessionmanager.h" #include "tqsessionmanager.h"
#include "ntqdragobject.h" #include "tqdragobject.h"
#include "ntqclipboard.h" #include "ntqclipboard.h"
#include "ntqcursor.h" #include "ntqcursor.h"
#include "tqstyle.h" #include "tqstyle.h"

@ -44,7 +44,7 @@
#include "ntqapplication.h" #include "ntqapplication.h"
#include "qapplication_p.h" #include "qapplication_p.h"
#include "ntqdragobject.h" #include "tqdragobject.h"
#include "ntqpixmap.h" #include "ntqpixmap.h"
/*! /*!

@ -68,7 +68,7 @@
#include "ntqeventloop.h" #include "ntqeventloop.h"
#include "ntqbitmap.h" #include "ntqbitmap.h"
#include "tqdatetime.h" #include "tqdatetime.h"
#include "ntqdragobject.h" #include "tqdragobject.h"
#include "ntqbuffer.h" #include "ntqbuffer.h"
#include "tqtextcodec.h" #include "tqtextcodec.h"
#include "tqvaluelist.h" #include "tqvaluelist.h"

@ -49,7 +49,7 @@
#include "tqdatetime.h" #include "tqdatetime.h"
#include "ntqdict.h" #include "ntqdict.h"
#include "ntqguardedptr.h" #include "ntqguardedptr.h"
#include "ntqdragobject.h" #include "tqdragobject.h"
#include "tqobjectlist.h" #include "tqobjectlist.h"
#include "ntqcursor.h" #include "ntqcursor.h"
#include "ntqbitmap.h" #include "ntqbitmap.h"

@ -49,8 +49,8 @@
#include "tqobjectlist.h" #include "tqobjectlist.h"
#include "ntqapplication.h" #include "ntqapplication.h"
#include <private/qinternal_p.h> #include <private/qinternal_p.h>
#include "ntqmime.h" #include "tqmime.h"
#include "ntqdragobject.h" #include "tqdragobject.h"
#include "ntqfile.h" #include "ntqfile.h"
/*! /*!

@ -51,9 +51,9 @@
#include "tqmap.h" #include "tqmap.h"
#include "ntqfileinfo.h" #include "ntqfileinfo.h"
#include "tqstylesheet.h" #include "tqstylesheet.h"
#include "ntqmime.h" #include "tqmime.h"
#include "tqimage.h" #include "tqimage.h"
#include "ntqdragobject.h" #include "tqdragobject.h"
#include "ntqpaintdevicemetrics.h" #include "ntqpaintdevicemetrics.h"
#include "ntqpainter.h" #include "ntqpainter.h"
#include "ntqdrawutil.h" #include "ntqdrawutil.h"

@ -17,9 +17,9 @@ kernel {
$$KERNEL_H/ntqconnection.h \ $$KERNEL_H/ntqconnection.h \
$$KERNEL_H/ntqcursor.h \ $$KERNEL_H/ntqcursor.h \
$$KERNEL_H/ntqdesktopwidget.h \ $$KERNEL_H/ntqdesktopwidget.h \
$$KERNEL_H/ntqdragobject.h \ $$KERNEL_H/tqdragobject.h \
$$KERNEL_H/ntqdrawutil.h \ $$KERNEL_H/ntqdrawutil.h \
$$KERNEL_H/ntqdropsite.h \ $$KERNEL_H/tqdropsite.h \
$$KERNEL_H/ntqevent.h \ $$KERNEL_H/ntqevent.h \
$$KERNEL_H/ntqeventloop.h \ $$KERNEL_H/ntqeventloop.h \
$$KERNEL_P/qeventloop_p.h \ $$KERNEL_P/qeventloop_p.h \
@ -41,7 +41,7 @@ kernel {
$$KERNEL_P/qlayoutengine_p.h \ $$KERNEL_P/qlayoutengine_p.h \
$$KERNEL_H/ntqtranslator.h \ $$KERNEL_H/ntqtranslator.h \
$$KERNEL_H/ntqmetaobject.h \ $$KERNEL_H/ntqmetaobject.h \
$$KERNEL_H/ntqmime.h \ $$KERNEL_H/tqmime.h \
$$KERNEL_H/ntqmovie.h \ $$KERNEL_H/ntqmovie.h \
$$KERNEL_H/ntqnamespace.h \ $$KERNEL_H/ntqnamespace.h \
$$KERNEL_H/ntqnetworkprotocol.h \ $$KERNEL_H/ntqnetworkprotocol.h \
@ -119,7 +119,7 @@ kernel {
$$KERNEL_CPP/qeventloop_win.cpp \ $$KERNEL_CPP/qeventloop_win.cpp \
$$KERNEL_CPP/qfont_win.cpp \ $$KERNEL_CPP/qfont_win.cpp \
$$KERNEL_CPP/qinputcontext_win.cpp \ $$KERNEL_CPP/qinputcontext_win.cpp \
$$KERNEL_CPP/qmime_win.cpp \ $$KERNEL_CPP/tqmime_win.cpp \
$$KERNEL_CPP/qpixmap_win.cpp \ $$KERNEL_CPP/qpixmap_win.cpp \
$$KERNEL_CPP/qprinter_win.cpp \ $$KERNEL_CPP/qprinter_win.cpp \
$$KERNEL_CPP/qprocess_win.cpp \ $$KERNEL_CPP/qprocess_win.cpp \
@ -167,7 +167,7 @@ kernel {
$$KERNEL_CPP/qclipboard_mac.cpp \ $$KERNEL_CPP/qclipboard_mac.cpp \
$$KERNEL_CPP/qcolor_mac.cpp \ $$KERNEL_CPP/qcolor_mac.cpp \
$$KERNEL_CPP/qcursor_mac.cpp \ $$KERNEL_CPP/qcursor_mac.cpp \
$$KERNEL_CPP/qmime_mac.cpp \ $$KERNEL_CPP/tqmime_mac.cpp \
$$KERNEL_CPP/qdnd_mac.cpp \ $$KERNEL_CPP/qdnd_mac.cpp \
$$KERNEL_CPP/qdesktopwidget_mac.cpp \ $$KERNEL_CPP/qdesktopwidget_mac.cpp \
$$KERNEL_CPP/qpixmap_mac.cpp \ $$KERNEL_CPP/qpixmap_mac.cpp \
@ -205,9 +205,9 @@ kernel {
$$KERNEL_CPP/qcolor_p.cpp \ $$KERNEL_CPP/qcolor_p.cpp \
$$KERNEL_CPP/qconnection.cpp \ $$KERNEL_CPP/qconnection.cpp \
$$KERNEL_CPP/qcursor.cpp \ $$KERNEL_CPP/qcursor.cpp \
$$KERNEL_CPP/qdragobject.cpp \ $$KERNEL_CPP/tqdragobject.cpp \
$$KERNEL_CPP/qdrawutil.cpp \ $$KERNEL_CPP/qdrawutil.cpp \
$$KERNEL_CPP/qdropsite.cpp \ $$KERNEL_CPP/tqdropsite.cpp \
$$KERNEL_CPP/qevent.cpp \ $$KERNEL_CPP/qevent.cpp \
$$KERNEL_CPP/qeventloop.cpp \ $$KERNEL_CPP/qeventloop.cpp \
$$KERNEL_CPP/qfocusdata.cpp \ $$KERNEL_CPP/qfocusdata.cpp \
@ -222,7 +222,7 @@ kernel {
$$KERNEL_CPP/qlayoutengine.cpp \ $$KERNEL_CPP/qlayoutengine.cpp \
$$KERNEL_CPP/qtranslator.cpp \ $$KERNEL_CPP/qtranslator.cpp \
$$KERNEL_CPP/qmetaobject.cpp \ $$KERNEL_CPP/qmetaobject.cpp \
$$KERNEL_CPP/qmime.cpp \ $$KERNEL_CPP/tqmime.cpp \
$$KERNEL_CPP/qmovie.cpp \ $$KERNEL_CPP/qmovie.cpp \
$$KERNEL_CPP/qnetworkprotocol.cpp \ $$KERNEL_CPP/qnetworkprotocol.cpp \
$$KERNEL_CPP/tqobject.cpp \ $$KERNEL_CPP/tqobject.cpp \

@ -45,7 +45,7 @@
#ifndef TQT_NO_MIME #ifndef TQT_NO_MIME
#include "ntqdragobject.h" #include "tqdragobject.h"
#include "tqtextcodec.h" #include "tqtextcodec.h"
#include "ntqapplication.h" #include "ntqapplication.h"
#include "ntqpoint.h" #include "ntqpoint.h"
@ -569,7 +569,7 @@ TQWidget * TQDragObject::source()
/*! /*!
\class TQDragObject ntqdragobject.h \class TQDragObject tqdragobject.h
\brief The TQDragObject class encapsulates MIME-based data \brief The TQDragObject class encapsulates MIME-based data
transfer. transfer.
@ -674,7 +674,7 @@ void TQTextDrag::setSubtype( const TQCString & st)
} }
/*! /*!
\class TQTextDrag ntqdragobject.h \class TQTextDrag tqdragobject.h
\brief The TQTextDrag class is a drag and drop object for \brief The TQTextDrag class is a drag and drop object for
transferring plain and Unicode text. transferring plain and Unicode text.
@ -989,7 +989,7 @@ public:
/*! /*!
\class TQImageDrag ntqdragobject.h \class TQImageDrag tqdragobject.h
\brief The TQImageDrag class provides a drag and drop object for \brief The TQImageDrag class provides a drag and drop object for
transferring images. transferring images.
@ -1210,7 +1210,7 @@ bool TQImageDrag::decode( const TQMimeSource* e, TQPixmap& pm )
/*! /*!
\class TQStoredDrag ntqdragobject.h \class TQStoredDrag tqdragobject.h
\brief The TQStoredDrag class provides a simple stored-value drag object for arbitrary MIME data. \brief The TQStoredDrag class provides a simple stored-value drag object for arbitrary MIME data.
\ingroup draganddrop \ingroup draganddrop
@ -1286,7 +1286,7 @@ TQByteArray TQStoredDrag::encodedData(const char* m) const
/*! /*!
\class TQUriDrag ntqdragobject.h \class TQUriDrag tqdragobject.h
\brief The TQUriDrag class provides a drag object for a list of URI references. \brief The TQUriDrag class provides a drag object for a list of URI references.
\ingroup draganddrop \ingroup draganddrop
@ -1703,7 +1703,7 @@ TQWidget* TQDropEvent::source() const
#endif #endif
/*! /*!
\class TQColorDrag ntqdragobject.h \class TQColorDrag tqdragobject.h
\brief The TQColorDrag class provides a drag and drop object for \brief The TQColorDrag class provides a drag and drop object for
transferring colors. transferring colors.

@ -36,7 +36,7 @@
** **
**********************************************************************/ **********************************************************************/
#include "ntqdropsite.h" #include "tqdropsite.h"
#ifndef TQT_NO_DRAGANDDROP #ifndef TQT_NO_DRAGANDDROP
@ -45,7 +45,7 @@
// NOT REVISED // NOT REVISED
/*! /*!
\class TQDropSite ntqdropsite.h \class TQDropSite tqdropsite.h
\brief The TQDropSite class provides nothing and does nothing. \brief The TQDropSite class provides nothing and does nothing.
\obsolete \obsolete

@ -54,8 +54,8 @@
#include "tqimageformatinterface_p.h" #include "tqimageformatinterface_p.h"
#include "ntqwmatrix.h" #include "ntqwmatrix.h"
#include "ntqapplication.h" #include "ntqapplication.h"
#include "ntqmime.h" #include "tqmime.h"
#include "ntqdragobject.h" #include "tqdragobject.h"
#include <ctype.h> #include <ctype.h>
#include <stdlib.h> #include <stdlib.h>

@ -36,7 +36,7 @@
** **
**********************************************************************/ **********************************************************************/
#include "ntqmime.h" #include "tqmime.h"
#ifndef TQT_NO_MIME #ifndef TQT_NO_MIME
@ -44,13 +44,13 @@
#include "tqstringlist.h" #include "tqstringlist.h"
#include "ntqfileinfo.h" #include "ntqfileinfo.h"
#include "ntqdir.h" #include "ntqdir.h"
#include "ntqdragobject.h" #include "tqdragobject.h"
#include "ntqcleanuphandler.h" #include "ntqcleanuphandler.h"
#include "ntqapplication.h" // ### for now #include "ntqapplication.h" // ### for now
#include "ntqclipboard.h" // ### for now #include "ntqclipboard.h" // ### for now
/*! /*!
\class TQMimeSource ntqmime.h \class TQMimeSource tqmime.h
\brief The TQMimeSource class is an abstraction of objects which provide formatted data of a certain MIME type. \brief The TQMimeSource class is an abstraction of objects which provide formatted data of a certain MIME type.
\ingroup io \ingroup io
@ -66,7 +66,7 @@
static int qt_mime_serial_number = 0; static int qt_mime_serial_number = 0;
static TQMimeSourceFactory* defaultfactory = 0; static TQMimeSourceFactory* defaultfactory = 0;
static TQSingleCleanupHandler<TQMimeSourceFactory> qmime_cleanup_factory; static TQSingleCleanupHandler<TQMimeSourceFactory> tqmime_cleanup_factory;
/*! /*!
Constructs a mime source and assigns a globally unique serial Constructs a mime source and assigns a globally unique serial
@ -181,7 +181,7 @@ public:
/*! /*!
\class TQMimeSourceFactory ntqmime.h \class TQMimeSourceFactory tqmime.h
\brief The TQMimeSourceFactory class is an extensible provider of mime-typed data. \brief The TQMimeSourceFactory class is an extensible provider of mime-typed data.
\ingroup io \ingroup io
@ -558,7 +558,7 @@ TQMimeSourceFactory* TQMimeSourceFactory::defaultFactory()
if (!defaultfactory) if (!defaultfactory)
{ {
defaultfactory = new TQMimeSourceFactory(); defaultfactory = new TQMimeSourceFactory();
qmime_cleanup_factory.set( &defaultfactory ); tqmime_cleanup_factory.set( &defaultfactory );
} }
return defaultfactory; return defaultfactory;
} }
@ -573,7 +573,7 @@ TQMimeSourceFactory* TQMimeSourceFactory::defaultFactory()
void TQMimeSourceFactory::setDefaultFactory( TQMimeSourceFactory* factory) void TQMimeSourceFactory::setDefaultFactory( TQMimeSourceFactory* factory)
{ {
if ( !defaultfactory ) if ( !defaultfactory )
qmime_cleanup_factory.set( &defaultfactory ); tqmime_cleanup_factory.set( &defaultfactory );
else if ( defaultfactory != factory ) else if ( defaultfactory != factory )
delete defaultfactory; delete defaultfactory;
defaultfactory = factory; defaultfactory = factory;

@ -57,7 +57,7 @@
#include <tqiconset.h> #include <tqiconset.h>
#include <ntqcombobox.h> #include <ntqcombobox.h>
#include <ntqcheckbox.h> #include <ntqcheckbox.h>
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <ntqevent.h> #include <ntqevent.h>
#include <ntqlistbox.h> #include <ntqlistbox.h>
#include <tqstyle.h> #include <tqstyle.h>

@ -53,7 +53,7 @@
#include "ntqclipboard.h" #include "ntqclipboard.h"
#include "ntqapplication.h" #include "ntqapplication.h"
#include "ntqvalidator.h" #include "ntqvalidator.h"
#include "ntqdragobject.h" #include "tqdragobject.h"
#include "tqtimer.h" #include "tqtimer.h"
#include "tqpopupmenu.h" #include "tqpopupmenu.h"
#include "tqstringlist.h" #include "tqstringlist.h"

@ -57,7 +57,7 @@
#include "ntqpixmapcache.h" #include "ntqpixmapcache.h"
#include "tqpopupmenu.h" #include "tqpopupmenu.h"
#include "ntqtl.h" #include "ntqtl.h"
#include "ntqdragobject.h" #include "tqdragobject.h"
#include "ntqlineedit.h" #include "ntqlineedit.h"
#include "ntqvbox.h" #include "ntqvbox.h"
#include "tqtooltip.h" #include "tqtooltip.h"

@ -47,7 +47,7 @@
#include "ntqpixmap.h" #include "ntqpixmap.h"
#include "ntqregexp.h" #include "ntqregexp.h"
#include "ntqapplication.h" #include "ntqapplication.h"
#include "ntqdragobject.h" #include "tqdragobject.h"
#include "tqpopupmenu.h" #include "tqpopupmenu.h"
#include "tqtimer.h" #include "tqtimer.h"
#include "ntqdict.h" #include "ntqdict.h"

@ -52,7 +52,7 @@
#include "ntqpainter.h" #include "ntqpainter.h"
#include "ntqevent.h" #include "ntqevent.h"
#include "ntqpalette.h" #include "ntqpalette.h"
#include "ntqmime.h" #include "tqmime.h"
#include "tqimage.h" #include "tqimage.h"
#include "ntqpen.h" #include "ntqpen.h"
#include "ntqbrush.h" #include "ntqbrush.h"

@ -48,7 +48,7 @@
#include "ntqpoint.h" #include "ntqpoint.h"
#include "tqsize.h" #include "tqsize.h"
#include "ntqfont.h" // TQString->TQFont conversion #include "ntqfont.h" // TQString->TQFont conversion
#include "ntqdragobject.h" #include "tqdragobject.h"
#include "ntqbitmap.h" #include "ntqbitmap.h"
#include "ntqpicture.h" #include "ntqpicture.h"
#endif // QT_H #endif // QT_H

@ -55,7 +55,7 @@
#include "tqtimer.h" #include "tqtimer.h"
#include "tqimage.h" #include "tqimage.h"
#include "ntqsimplerichtext.h" #include "ntqsimplerichtext.h"
#include "ntqdragobject.h" #include "tqdragobject.h"
#include "ntqurl.h" #include "ntqurl.h"
#include "ntqcursor.h" #include "ntqcursor.h"

@ -66,7 +66,7 @@
#include "ntqcolordialog.h" #include "ntqcolordialog.h"
#include "ntqfontdialog.h" #include "ntqfontdialog.h"
#include "tqstylesheet.h" #include "tqstylesheet.h"
#include "ntqdragobject.h" #include "tqdragobject.h"
#include "ntqurl.h" #include "ntqurl.h"
#include "ntqcursor.h" #include "ntqcursor.h"
#include "ntqregexp.h" #include "ntqregexp.h"

@ -582,7 +582,7 @@
<include location="global" impldecl="in implementation">tqtextstream.h</include> <include location="global" impldecl="in implementation">tqtextstream.h</include>
<include location="global" impldecl="in implementation">ntqdockwindow.h</include> <include location="global" impldecl="in implementation">ntqdockwindow.h</include>
<include location="global" impldecl="in implementation">stdlib.h</include> <include location="global" impldecl="in implementation">stdlib.h</include>
<include location="global" impldecl="in implementation">ntqmime.h</include> <include location="global" impldecl="in implementation">tqmime.h</include>
<include location="local" impldecl="in implementation">helpwindow.h</include> <include location="local" impldecl="in implementation">helpwindow.h</include>
<include location="global" impldecl="in implementation">tqstylesheet.h</include> <include location="global" impldecl="in implementation">tqstylesheet.h</include>
<include location="global" impldecl="in implementation">ntqapplication.h</include> <include location="global" impldecl="in implementation">ntqapplication.h</include>

@ -38,7 +38,7 @@
#include <ntqaccel.h> #include <ntqaccel.h>
#include <tqobjectlist.h> #include <tqobjectlist.h>
#include <tqtimer.h> #include <tqtimer.h>
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <ntqfontinfo.h> #include <ntqfontinfo.h>
#include <ntqaccel.h> #include <ntqaccel.h>
#include <ntqmetaobject.h> #include <ntqmetaobject.h>

@ -82,7 +82,7 @@
<include location="local" impldecl="in implementation">helpwindow.h</include> <include location="local" impldecl="in implementation">helpwindow.h</include>
<include location="local" impldecl="in implementation">mainwindow.h</include> <include location="local" impldecl="in implementation">mainwindow.h</include>
<include location="global" impldecl="in implementation">tqstylesheet.h</include> <include location="global" impldecl="in implementation">tqstylesheet.h</include>
<include location="global" impldecl="in implementation">ntqmime.h</include> <include location="global" impldecl="in implementation">tqmime.h</include>
<include location="local" impldecl="in implementation">tabbedbrowser.ui.h</include> <include location="local" impldecl="in implementation">tabbedbrowser.ui.h</include>
</includes> </includes>
<forwards> <forwards>

@ -43,7 +43,7 @@
#include <tqaction.h> #include <tqaction.h>
#include <ntqapplication.h> #include <ntqapplication.h>
#include <ntqbitmap.h> #include <ntqbitmap.h>
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <ntqinputdialog.h> #include <ntqinputdialog.h>
#include <ntqlayout.h> #include <ntqlayout.h>
#include <tqmainwindow.h> #include <tqmainwindow.h>

@ -35,7 +35,7 @@
#define ACTIONDND_H #define ACTIONDND_H
#include <tqaction.h> #include <tqaction.h>
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <tqmap.h> #include <tqmap.h>
#include <tqmenubar.h> #include <tqmenubar.h>
#include <ntqpixmap.h> #include <ntqpixmap.h>

@ -35,7 +35,7 @@
#include <tqwidget.h> #include <tqwidget.h>
#include <ntqheader.h> #include <ntqheader.h>
#include <ntqpainter.h> #include <ntqpainter.h>
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <tqvaluelist.h> #include <tqvaluelist.h>
// The Dragobject Declaration --------------------------------------- // The Dragobject Declaration ---------------------------------------

@ -35,7 +35,7 @@
#include <tqwidget.h> #include <tqwidget.h>
#include <ntqheader.h> #include <ntqheader.h>
#include <ntqpainter.h> #include <ntqpainter.h>
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <tqvaluelist.h> #include <tqvaluelist.h>
// The Dragobject Declaration --------------------------------------- // The Dragobject Declaration ---------------------------------------

@ -34,7 +34,7 @@
#include <tqaction.h> #include <tqaction.h>
#include <ntqapplication.h> #include <ntqapplication.h>
#include <ntqbitmap.h> #include <ntqbitmap.h>
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <ntqlineedit.h> #include <ntqlineedit.h>
#include <tqmainwindow.h> #include <tqmainwindow.h>
#include <ntqpainter.h> #include <ntqpainter.h>

@ -34,7 +34,7 @@
#include "pixmapcollection.h" #include "pixmapcollection.h"
#include "project.h" #include "project.h"
#include "mainwindow.h" #include "mainwindow.h"
#include <ntqmime.h> #include <tqmime.h>
#include <ntqdir.h> #include <ntqdir.h>
#include <ntqfileinfo.h> #include <ntqfileinfo.h>
#include <tqtextstream.h> #include <tqtextstream.h>

@ -34,7 +34,7 @@
#include <ntqapplication.h> #include <ntqapplication.h>
#include <ntqcstring.h> #include <ntqcstring.h>
#include <ntqdatastream.h> #include <ntqdatastream.h>
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <ntqlineedit.h> #include <ntqlineedit.h>
#include <tqobjectlist.h> #include <tqobjectlist.h>
#include <ntqpainter.h> #include <ntqpainter.h>

@ -78,7 +78,7 @@
#include <ntqaccel.h> #include <ntqaccel.h>
#include <tqworkspace.h> #include <tqworkspace.h>
#include <tqtimer.h> #include <tqtimer.h>
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <tqdom.h> #include <tqdom.h>
#include <ntqprocess.h> #include <ntqprocess.h>
#include <tqstyle.h> #include <tqstyle.h>

@ -42,7 +42,7 @@
#include <tqimage.h> #include <tqimage.h>
#include <ntqpixmap.h> #include <ntqpixmap.h>
#include <ntqapplication.h> #include <ntqapplication.h>
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <tqstyle.h> #include <tqstyle.h>
StyledButton::StyledButton(TQWidget* parent, const char* name) StyledButton::StyledButton(TQWidget* parent, const char* name)

@ -44,7 +44,7 @@
#include "propertyeditor.h" #include "propertyeditor.h"
#include <ntqheader.h> #include <ntqheader.h>
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <ntqfileinfo.h> #include <ntqfileinfo.h>
#include <ntqapplication.h> #include <ntqapplication.h>
#include <ntqpainter.h> #include <ntqpainter.h>

@ -13,8 +13,8 @@
#include <ntqpushbutton.h> #include <ntqpushbutton.h>
#include <ntqradiobutton.h> #include <ntqradiobutton.h>
#include <ntqspinbox.h> #include <ntqspinbox.h>
#include <ntqmime.h> #include <tqmime.h>
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <ntqlayout.h> #include <ntqlayout.h>
#include <tqtooltip.h> #include <tqtooltip.h>
#include <ntqwhatsthis.h> #include <ntqwhatsthis.h>

@ -138,8 +138,8 @@ void Uic::embed( TQTextStream& out, const char* project, const TQStringList& ima
out << "#include <tqimage.h>\n"; out << "#include <tqimage.h>\n";
out << "#include <ntqdict.h>\n"; out << "#include <ntqdict.h>\n";
out << "#include <ntqmime.h>\n"; out << "#include <tqmime.h>\n";
out << "#include <ntqdragobject.h>\n"; out << "#include <tqdragobject.h>\n";
out << "\n"; out << "\n";
TQPtrList<EmbedImage> list_image; TQPtrList<EmbedImage> list_image;

@ -49,8 +49,8 @@
#include <ntqwhatsthis.h> #include <ntqwhatsthis.h>
#include <tqobjectlist.h> #include <tqobjectlist.h>
#include <private/qpluginmanager_p.h> #include <private/qpluginmanager_p.h>
#include <ntqmime.h> #include <tqmime.h>
#include <ntqdragobject.h> #include <tqdragobject.h>
#ifndef TQT_NO_SQL #ifndef TQT_NO_SQL
#include <tqsqlrecord.h> #include <tqsqlrecord.h>

@ -36,7 +36,7 @@
#include <ntqapplication.h> #include <ntqapplication.h>
#include <ntqcolordialog.h> #include <ntqcolordialog.h>
#include <ntqpainter.h> #include <ntqpainter.h>
#include <ntqdragobject.h> #include <tqdragobject.h>
#include <tqstyle.h> #include <tqstyle.h>

Loading…
Cancel
Save