From 04913ce7a46fd027856e83a96205fdc388742a19 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 23 May 2024 14:04:45 +0900 Subject: Rename ntqobject*.h and qobject*.cpp to tqobject* Signed-off-by: Michele Calgaro --- doc/html/fileiconview-example.html | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'doc/html/fileiconview-example.html') diff --git a/doc/html/fileiconview-example.html b/doc/html/fileiconview-example.html index ca8f672ca..f21c94483 100644 --- a/doc/html/fileiconview-example.html +++ b/doc/html/fileiconview-example.html @@ -544,7 +544,7 @@ static void cleanup() checkSetText = TRUE; - TQObject::connect( &timer, TQ_SIGNAL( timeout() ), + TQObject::connect( &timer, TQ_SIGNAL( timeout() ), iconView(), TQ_SLOT( openFolder() ) ); } @@ -716,13 +716,13 @@ TQtFileIconViewItem::~TQtFileIconViewItem() setResizeMode( Adjust ); setWordWrapIconText( FALSE ); - connect( this, TQ_SIGNAL( doubleClicked( TQIconViewItem * ) ), + connect( this, TQ_SIGNAL( doubleClicked( TQIconViewItem * ) ), this, TQ_SLOT( itemDoubleClicked( TQIconViewItem * ) ) ); - connect( this, TQ_SIGNAL( returnPressed( TQIconViewItem * ) ), + connect( this, TQ_SIGNAL( returnPressed( TQIconViewItem * ) ), this, TQ_SLOT( itemDoubleClicked( TQIconViewItem * ) ) ); - connect( this, TQ_SIGNAL( dropped( TQDropEvent *, const TQValueList<TQIconDragItem> & ) ), + connect( this, TQ_SIGNAL( dropped( TQDropEvent *, const TQValueList<TQIconDragItem> & ) ), this, TQ_SLOT( slotDropped( TQDropEvent *, const TQValueList<TQIconDragItem> & ) ) ); - connect( this, TQ_SIGNAL( contextMenuRequested( TQIconViewItem *, const TQPoint & ) ), + connect( this, TQ_SIGNAL( contextMenuRequested( TQIconViewItem *, const TQPoint & ) ), this, TQ_SLOT( slotRightPressed( TQIconViewItem * ) ) ); setHScrollBarMode( AlwaysOff ); @@ -1215,12 +1215,12 @@ void FileMainWindow::setup() TQToolBar *toolbar = new TQToolBar( this, "toolbar" ); setRightJustification( TRUE ); - (void)new TQLabel( tr( " Path: " ), toolbar ); + (void)new TQLabel( tr( " Path: " ), toolbar ); pathCombo = new TQComboBox( TRUE, toolbar ); pathCombo->setAutoCompletion( TRUE ); toolbar->setStretchableWidget( pathCombo ); - connect( pathCombo, TQ_SIGNAL( activated( const TQString & ) ), + connect( pathCombo, TQ_SIGNAL( activated( const TQString & ) ), this, TQ_SLOT ( changePath( const TQString & ) ) ); toolbar->addSeparator(); @@ -1235,15 +1235,15 @@ void FileMainWindow::setup() mkdirButton = new TQToolButton( pix, "New Folder", TQString::null, this, TQ_SLOT( newFolder() ), toolbar, "new folder" ); - connect( dirlist, TQ_SIGNAL( folderSelected( const TQString & ) ), + connect( dirlist, TQ_SIGNAL( folderSelected( const TQString & ) ), fileview, TQ_SLOT ( setDirectory( const TQString & ) ) ); - connect( fileview, TQ_SIGNAL( directoryChanged( const TQString & ) ), + connect( fileview, TQ_SIGNAL( directoryChanged( const TQString & ) ), this, TQ_SLOT( directoryChanged( const TQString & ) ) ); - connect( fileview, TQ_SIGNAL( startReadDir( int ) ), + connect( fileview, TQ_SIGNAL( startReadDir( int ) ), this, TQ_SLOT( slotStartReadDir( int ) ) ); - connect( fileview, TQ_SIGNAL( readNextDir() ), + connect( fileview, TQ_SIGNAL( readNextDir() ), this, TQ_SLOT( slotReadNextDir() ) ); - connect( fileview, TQ_SIGNAL( readDirDone() ), + connect( fileview, TQ_SIGNAL( readDirDone() ), this, TQ_SLOT( slotReadDirDone() ) ); setDockEnabled( DockLeft, FALSE ); @@ -1254,13 +1254,13 @@ void FileMainWindow::setup() progress = new TQProgressBar( statusBar() ); statusBar()->addWidget( progress, 1, TRUE ); - connect( fileview, TQ_SIGNAL( enableUp() ), + connect( fileview, TQ_SIGNAL( enableUp() ), this, TQ_SLOT( enableUp() ) ); - connect( fileview, TQ_SIGNAL( disableUp() ), + connect( fileview, TQ_SIGNAL( disableUp() ), this, TQ_SLOT( disableUp() ) ); - connect( fileview, TQ_SIGNAL( enableMkdir() ), + connect( fileview, TQ_SIGNAL( enableMkdir() ), this, TQ_SLOT( enableMkdir() ) ); - connect( fileview, TQ_SIGNAL( disableMkdir() ), + connect( fileview, TQ_SIGNAL( disableMkdir() ), this, TQ_SLOT( disableMkdir() ) ); } @@ -1293,7 +1293,7 @@ void FileMainWindow::directoryChanged( const FileMainWindow::slotStartReadDir( int dirs ) { - label->setText( tr( " Reading Directory..." ) ); + label->setText( tr( " Reading Directory..." ) ); progress->reset(); progress->setTotalSteps( dirs ); } @@ -1306,7 +1306,7 @@ void FileMainWindow::slotReadNextDir() void FileMainWindow::slotReadDirDone() { - label->setText( tr( " Reading Directory Done." ) ); + label->setText( tr( " Reading Directory Done." ) ); progress->setProgress( progress->totalSteps() ); } -- cgit v1.2.1