diff options
Diffstat (limited to 'doc/html/simple_dd-example.html')
-rw-r--r-- | doc/html/simple_dd-example.html | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/simple_dd-example.html b/doc/html/simple_dd-example.html index 4d15302d7..a80df70c7 100644 --- a/doc/html/simple_dd-example.html +++ b/doc/html/simple_dd-example.html @@ -63,7 +63,7 @@ class DDListBox : public <a href="ntqlistbox.html">TQListBox</a> { <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> public: - DDListBox( <a href="ntqwidget.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 void dragEnterEvent( <a href="qdragenterevent.html">TQDragEnterEvent</a> *evt ); void dropEvent( <a href="qdropevent.html">TQDropEvent</a> *evt ); @@ -91,7 +91,7 @@ class DDIconView : public <a href="ntqiconview.html">TQIconView</a> { TQ_OBJECT public: - DDIconView( <a href="ntqwidget.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="ntqiconview.html">TQIconView</a>( parent, name, f ) {} // High-level drag and drop <a href="ntqdragobject.html">TQDragObject</a> *dragObject(); @@ -181,22 +181,22 @@ const char* green_icon[]={ // ListBox -- low level drag and drop -<a name="f589"></a>DDListBox::DDListBox( <a href="ntqwidget.html">TQWidget</a> * parent, const char * name, WFlags f ) : +<a name="f589"></a>DDListBox::DDListBox( <a href="tqwidget.html">TQWidget</a> * parent, const char * name, WFlags f ) : <a href="ntqlistbox.html">TQListBox</a>( parent, name, f ) { - <a href="ntqwidget.html#setAcceptDrops">setAcceptDrops</a>( TRUE ); + <a href="tqwidget.html#setAcceptDrops">setAcceptDrops</a>( TRUE ); dragging = FALSE; } -<a name="x2829"></a>void DDListBox::<a href="ntqwidget.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="qdragenterevent.html">TQDragEnterEvent</a> *evt ) { <a name="x2827"></a> if ( TQTextDrag::<a href="qtextdrag.html#canDecode">canDecode</a>( evt ) ) <a name="x2819"></a> evt-><a href="qdragmoveevent.html#accept">accept</a>(); } -<a name="x2830"></a>void DDListBox::<a href="ntqwidget.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="qdropevent.html">TQDropEvent</a> *evt ) { <a href="ntqstring.html">TQString</a> text; @@ -205,14 +205,14 @@ const char* green_icon[]={ } -<a name="x2832"></a>void DDListBox::<a href="ntqwidget.html#mousePressEvent">mousePressEvent</a>( <a href="qmouseevent.html">TQMouseEvent</a> *evt ) +<a name="x2832"></a>void DDListBox::<a href="tqwidget.html#mousePressEvent">mousePressEvent</a>( <a href="qmouseevent.html">TQMouseEvent</a> *evt ) { - TQListBox::<a href="ntqwidget.html#mousePressEvent">mousePressEvent</a>( evt ); + TQListBox::<a href="tqwidget.html#mousePressEvent">mousePressEvent</a>( evt ); dragging = TRUE; } -<a name="x2831"></a>void DDListBox::<a href="ntqwidget.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 ) { <a href="ntqdragobject.html">TQDragObject</a> *d = new <a href="qtextdrag.html">TQTextDrag</a>( currentText(), this ); @@ -270,8 +270,8 @@ int main( int argc, char *argv[] ) DDIconView *iv = new DDIconView( split ); (void) new DDListBox( split ); app.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>( split ); - split-><a href="ntqwidget.html#resize">resize</a>( 600, 400 ); - split-><a href="ntqwidget.html#show">show</a>(); + split-><a href="tqwidget.html#resize">resize</a>( 600, 400 ); + split-><a href="tqwidget.html#show">show</a>(); // Set up the connection so that we can drop items into the icon view TQObject::<a href="tqobject.html#connect">connect</a>( |