diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:07:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:22:42 +0900 |
commit | 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch) | |
tree | b95884617b9a37accc843676d5d42be4116a3f54 /doc/html/iconview-simple_dd-main-cpp.html | |
parent | 68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff) | |
download | tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.tar.gz tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.zip |
Rename ntqwidget* related files to equivalent tqwidget*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/iconview-simple_dd-main-cpp.html')
-rw-r--r-- | doc/html/iconview-simple_dd-main-cpp.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/iconview-simple_dd-main-cpp.html b/doc/html/iconview-simple_dd-main-cpp.html index 985145657..8dab1e73c 100644 --- a/doc/html/iconview-simple_dd-main-cpp.html +++ b/doc/html/iconview-simple_dd-main-cpp.html @@ -110,22 +110,22 @@ const char* green_icon[]={ // ListBox -- low level drag and drop -<a name="f2"></a>DDListBox::DDListBox( <a href="ntqwidget.html">TQWidget</a> * parent, const char * name, WFlags f ) : +<a name="f2"></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; @@ -134,14 +134,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 ); @@ -199,8 +199,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>( |