summaryrefslogtreecommitdiffstats
path: root/doc/html/simple_dd-example.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:07:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-02 23:22:42 +0900
commit8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch)
treeb95884617b9a37accc843676d5d42be4116a3f54 /doc/html/simple_dd-example.html
parent68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff)
downloadtqt3-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/simple_dd-example.html')
-rw-r--r--doc/html/simple_dd-example.html22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/html/simple_dd-example.html b/doc/html/simple_dd-example.html
index 4d15302d..a80df70c 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-&gt;<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-&gt;<a href="ntqwidget.html#resize">resize</a>( 600, 400 );
- split-&gt;<a href="ntqwidget.html#show">show</a>();
+ split-&gt;<a href="tqwidget.html#resize">resize</a>( 600, 400 );
+ split-&gt;<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>(