diff --git a/doc/classchart.doc b/doc/classchart.doc index bec0eb03..e9dad385 100644 --- a/doc/classchart.doc +++ b/doc/classchart.doc @@ -165,7 +165,7 @@ - + @@ -202,7 +202,7 @@ - + @@ -259,7 +259,7 @@ - + diff --git a/doc/features.doc b/doc/features.doc index f1d89df1..8af5d3e3 100644 --- a/doc/features.doc +++ b/doc/features.doc @@ -204,7 +204,7 @@ The available options are: \i HTML document browsing (\l TQTextBrowser) \i TQT_NO_TEXTVIEW \row \i TQT_NO_ICONVIEW - \i Labelled icons (\l QIconView) + \i Labelled icons (\l TQIconView) \i TQT_NO_WIDGETS, TQT_NO_DRAGANDDROP \row \i TQT_NO_LISTVIEW \i Lists of information (\l QListView) diff --git a/doc/html/advanced.html b/doc/html/advanced.html index 56b63c6b..2a020154 100644 --- a/doc/html/advanced.html +++ b/doc/html/advanced.html @@ -42,9 +42,9 @@ body { background: #ffffff; color: black; } TQDateTimeEditCombines a TQDateEdit and TQTimeEdit widget into a single widget for editing datetimes TQDesktopWidgetAccess to screen information on multi-head systems TQHeaderHeader row or column, e.g. for tables and listviews -TQIconFactoryUsed to create pixmaps for a TQIconSet -TQIconViewArea with movable labelled icons -TQIconViewItemSingle item in a TQIconView +TQIconFactoryUsed to create pixmaps for a TQIconSet +TQIconViewArea with movable labelled icons +TQIconViewItemSingle item in a TQIconView TQListBoxList of selectable, read-only items TQListBoxPixmapList box items with a pixmap and optional text TQListBoxTextList box items that display text diff --git a/doc/html/annotated.html b/doc/html/annotated.html index 3a362ca5..231fe7f2 100644 --- a/doc/html/annotated.html +++ b/doc/html/annotated.html @@ -200,13 +200,13 @@ body { background: #ffffff; color: black; } TQHttpResponseHeaderResponse header information for HTTP TQIMEventParameters for input method events TQIODeviceThe base class of I/O devices -TQIconDragSupports drag and drop operations within a TQIconView -TQIconDragEventSignals that a main icon drag has begun -TQIconDragItemEncapsulates a drag item -TQIconFactoryUsed to create pixmaps for a TQIconSet -TQIconSetSet of icons with different styles and sizes -TQIconViewArea with movable labelled icons -TQIconViewItemSingle item in a TQIconView +TQIconDragSupports drag and drop operations within a TQIconView +TQIconDragEventSignals that a main icon drag has begun +TQIconDragItemEncapsulates a drag item +TQIconFactoryUsed to create pixmaps for a TQIconSet +TQIconSetSet of icons with different styles and sizes +TQIconViewArea with movable labelled icons +TQIconViewItemSingle item in a TQIconView TQImageHardware-independent pixmap representation with direct access to the pixel data TQImageConsumerAbstraction used by TQImageDecoder TQImageDecoderIncremental image decoder for all supported image formats diff --git a/doc/html/classchart.html b/doc/html/classchart.html index e56ad71a..ede41237 100644 --- a/doc/html/classchart.html +++ b/doc/html/classchart.html @@ -155,7 +155,7 @@ body { background: #ffffff; color: black; } - + @@ -192,7 +192,7 @@ body { background: #ffffff; color: black; } - + @@ -249,7 +249,7 @@ body { background: #ffffff; color: black; } - + diff --git a/doc/html/classes.html b/doc/html/classes.html index 49869779..e2626d7a 100644 --- a/doc/html/classes.html +++ b/doc/html/classes.html @@ -42,7 +42,7 @@ classes, see TQt's Main Classes. TQDict -TQIconView +TQIconView TQPixmapCache @@ -53,7 +53,7 @@ classes, see TQt's Main Classes. TQDictIterator -TQIconViewItem +TQIconViewItem TQPlatinumStyle @@ -909,7 +909,7 @@ classes, see TQt's Main Classes. TQDateTimeEditBase I -TQIconDrag +TQIconDrag TQPair @@ -920,7 +920,7 @@ classes, see TQt's Main Classes. TQDeepCopy -TQIconDragEvent +TQIconDragEvent TQPalette @@ -931,7 +931,7 @@ classes, see TQt's Main Classes. TQDesktopWidget -TQIconDragItem +TQIconDragItem TQPen @@ -942,7 +942,7 @@ classes, see TQt's Main Classes. TQDial -TQIconFactory +TQIconFactory TQPicture T @@ -953,7 +953,7 @@ classes, see TQt's Main Classes. TQDialog -TQIconSet +TQIconSet TQPixmap diff --git a/doc/html/designer-manual-3.html b/doc/html/designer-manual-3.html index a4da7992..e0dd2b3f 100644 --- a/doc/html/designer-manual-3.html +++ b/doc/html/designer-manual-3.html @@ -415,7 +415,7 @@ body { background: #ffffff; color: black; } TQMap<TQString,TQColor>::ConstIterator it; for ( it = m_colors.constBegin(); it != m_colors.constEnd(); ++it ) - (void) new TQIconViewItem( colorIconView, it.key(), + (void) new TQIconViewItem( colorIconView, it.key(), colorSwatch( it.data() ) ); m_icons_dirty = FALSE; } @@ -426,7 +426,7 @@ body { background: #ffffff; color: black; }

If the user wants to see if which colors are web colors we create a TQCheckTableItem, and check it if it is a web color. (We'll cover isWebColor() shortly.) We then insert this TQCheckTableItem into the "Web" column.

Having populated the table we call adjustColumn() to ensure that each column is just wide enough to show its widest entry, and show or hide the "Web" column depending on the user's preference.

Finally we set m_table_dirty to FALSE, since it is now up-to-date.

-

If the icon view is "dirty" we clear() it of any existing data. We then iterate over each color in our colors map. For each color we create a new TQIconViewItem; we label the item with the user's color name and provide a pixmap (generated by colorSwatch(), covered shortly) in the relevant color. Finally we set m_icons_dirty to "FALSE", since it is now up-to-date.

+

If the icon view is "dirty" we clear() it of any existing data. We then iterate over each color in our colors map. For each color we create a new TQIconViewItem; we label the item with the user's color name and provide a pixmap (generated by colorSwatch(), covered shortly) in the relevant color. Finally we set m_icons_dirty to "FALSE", since it is now up-to-date.

isWebColor()

    bool MainForm::isWebColor( TQColor color )
     {
@@ -516,12 +516,12 @@ body { background: #ffffff; color: black; }
 

We connected to this slot so that we'd know whenever the user moved or clicked in the table view. We call the changedColor() function (which we'll see in a moment) with the name of the current color. Note that we don't care about the column argument, so we could have left it out. Don't forget to name the changedTableColor parameter to "int row".

changedIconColor()

-
    void MainForm::changedIconColor( TQIconViewItem *item )
+
    void MainForm::changedIconColor( TQIconViewItem *item )
     {
         changedColor( item->text() );
     }
 
-

This slot is connected for the same purpose as changedTableColor(), above. It also calls changedColor() with the name of the current color. (If you're cutting and pasting the code don't forget to name the TQIconViewItem parameter "item".)

+

This slot is connected for the same purpose as changedTableColor(), above. It also calls changedColor() with the name of the current color. (If you're cutting and pasting the code don't forget to name the TQIconViewItem parameter "item".)

changedColor()

This is a function that we need to write from scratch. Simply enter its code into TQt Designer's code editor and it will automatically appear in Object Explorer's Members tab (under Functions, public).

By default any function that it typed directly into the code editor becomes a public function. To change this, right click the function's name in Object Explorer's Members list, and click Properties to invoke the Edit Functions dialog. This dialog can be used to change various attributes of the function, including changing it into a slot.

@@ -781,14 +781,14 @@ Captures: cap(1) cap(2) cap(3) cap(4) m_icons_dirty = TRUE; } else if ( visible == iconsPage && colorIconView->currentItem() ) { - TQIconViewItem *item = colorIconView->currentItem(); + TQIconViewItem *item = colorIconView->currentItem(); name = item->text(); if ( colorIconView->count() == 1 ) colorIconView->clear(); else { - TQIconViewItem *current = item->nextItem(); + TQIconViewItem *current = item->nextItem(); if ( ! current ) - current = item->prevItem(); + current = item->prevItem(); delete item; if ( current ) colorIconView->setCurrentItem( current ); @@ -818,7 +818,7 @@ Captures: cap(1) cap(2) cap(3) cap(4) text = colorTable->text( row, 0 ); } else if ( visible == iconsPage && colorIconView->currentItem() ) { - TQIconViewItem *item = colorIconView->currentItem(); + TQIconViewItem *item = colorIconView->currentItem(); text = item->text(); } if ( ! text.isNull() ) { diff --git a/doc/html/designer-manual-4.html b/doc/html/designer-manual-4.html index 97b182bd..b76c29e9 100644 --- a/doc/html/designer-manual-4.html +++ b/doc/html/designer-manual-4.html @@ -194,7 +194,7 @@ body { background: #ffffff; color: black; } } colorTable->setCurrentCell( row, 0 ); - (void) new TQIconViewItem( colorIconView, name, + (void) new TQIconViewItem( colorIconView, name, colorSwatch( color ) ); m_changed = TRUE; } @@ -302,8 +302,8 @@ body { background: #ffffff; color: black; } } else if ( visible == iconsPage ) { - TQIconViewItem *start = colorIconView->currentItem(); - for ( TQIconViewItem *item = start->nextItem(); item; item = item->nextItem() ) + TQIconViewItem *start = colorIconView->currentItem(); + for ( TQIconViewItem *item = start->nextItem(); item; item = item->nextItem() ) if ( item->text().lower().contains( ltext ) ) { colorIconView->setCurrentItem( item ); colorIconView->ensureItemVisible( item ); diff --git a/doc/html/designer-manual-7.html b/doc/html/designer-manual-7.html index 9da32ad6..293fa190 100644 --- a/doc/html/designer-manual-7.html +++ b/doc/html/designer-manual-7.html @@ -262,7 +262,7 @@ DEFINES += FILECHOOSER_IS_WIDGET TQStringList keys() const; TQWidget* create( const TQString &classname, TQWidget* parent = 0, const char* name = 0 ); TQString group( const TQString& ) const; - TQIconSet iconSet( const TQString& ) const; + TQIconSet iconSet( const TQString& ) const; TQString includeFile( const TQString& ) const; TQString toolTip( const TQString& ) const; TQString whatsThis( const TQString& ) const; diff --git a/doc/html/draganddrop.html b/doc/html/draganddrop.html index eacda92b..bb6bc439 100644 --- a/doc/html/draganddrop.html +++ b/doc/html/draganddrop.html @@ -43,8 +43,8 @@ TQt. TQDragMoveEventEvent which is sent while a drag and drop is in progress TQDragObjectEncapsulates MIME-based data transfer TQDropEventEvent which is sent when a drag and drop is completed -TQIconDragSupports drag and drop operations within a TQIconView -TQIconDragItemEncapsulates a drag item +TQIconDragSupports drag and drop operations within a TQIconView +TQIconDragItemEncapsulates a drag item TQImageDragDrag and drop object for transferring images TQMacMimeMaps open-standard MIME to Mac flavors TQMimeSourceAbstraction of objects which provide formatted data of a certain MIME type diff --git a/doc/html/emb-features.html b/doc/html/emb-features.html index a35244be..7c778ab1 100644 --- a/doc/html/emb-features.html +++ b/doc/html/emb-features.html @@ -181,7 +181,7 @@ translation (TQWMatrix) HTML document browsing (TQTextBrowser) TQT_NO_TEXTVIEW TQT_NO_ICONVIEW -Labelled icons (TQIconView) +Labelled icons (TQIconView) TQT_NO_WIDGETS, TQT_NO_DRAGANDDROP TQT_NO_LISTVIEW Lists of information (TQListView) diff --git a/doc/html/emb-performance.html b/doc/html/emb-performance.html index ba9c60d7..9aa59f5d 100644 --- a/doc/html/emb-performance.html +++ b/doc/html/emb-performance.html @@ -75,7 +75,7 @@ you run configure.

To build your application suite as an all-in-one application, design each application as a stand-alone widget or set of widgets, with only minimal code in the main() function. Then, write an application that gives -some way to switch between the applications (e.g. a TQIconView). +some way to switch between the applications (e.g. a TQIconView). TQtopia is an example of this. It can be built either as a set of dynamically linked executables, or as a single static application.

Note that you should generally still link dynamically against the diff --git a/doc/html/events.html b/doc/html/events.html index c173994b..7dd353d4 100644 --- a/doc/html/events.html +++ b/doc/html/events.html @@ -49,7 +49,7 @@ and Signals and Slots. TQEventLoopManages the event queue TQFocusEventEvent parameters for widget focus events TQHideEventEvent which is sent after a widget is hidden -TQIconDragEventSignals that a main icon drag has begun +TQIconDragEventSignals that a main icon drag has begun TQIMEventParameters for input method events TQKeyEventDescribes a key event TQMouseEventParameters that describe a mouse event diff --git a/doc/html/fileiconview-example.html b/doc/html/fileiconview-example.html index c2e69747..23ec5149 100644 --- a/doc/html/fileiconview-example.html +++ b/doc/html/fileiconview-example.html @@ -34,7 +34,7 @@ body { background: #ffffff; color: black; }

This example implements a simple and not fully functional file manager using -a widget derived from TQIconView to display the current directory. +a widget derived from TQIconView to display the current directory. To display the directory tree the widget written in the dirview example is used. @@ -54,12 +54,12 @@ used. #define TQTFILEICONVIEW_H -#include <ntqiconset.h> +#include <tqiconset.h> #include <tqstring.h> #include <ntqfileinfo.h> #include <ntqdir.h> #include <ntqtimer.h> -#include <ntqiconview.h> +#include <tqiconview.h> class TQtFileIconView; class TQDragObject; @@ -71,7 +71,7 @@ class TQResizeEvent; * *****************************************************************************/ -class TQtFileIconDrag : public TQIconDrag +class TQtFileIconDrag : public TQIconDrag { TQ_OBJECT @@ -81,7 +81,7 @@ public: const char* format( int i ) const; TQByteArray encodedData( const char* mime ) const; static bool canDecode( TQMimeSource* e ); - void append( const TQIconDragItem &item, const TQRect &pr, const TQRect &tr, const TQString &url ); + void append( const TQIconDragItem &item, const TQRect &pr, const TQRect &tr, const TQString &url ); private: TQStringList urls; @@ -94,7 +94,7 @@ private: * *****************************************************************************/ class TQtFileIconViewItem; -class TQtFileIconView : public TQIconView +class TQtFileIconView : public TQIconView { TQ_OBJECT @@ -126,7 +126,7 @@ signals: void disableMkdir(); protected slots: - void itemDoubleClicked( TQIconViewItem *i ); + void itemDoubleClicked( TQIconViewItem *i ); void slotDropped( TQDropEvent *e, const TQValueList<TQIconDragItem> & ); void viewLarge(); @@ -140,10 +140,10 @@ protected slots: void sortAscending(); void sortDescending(); void arrangeItemsInGrid() { - TQIconView::arrangeItemsInGrid( TRUE ); + TQIconView::arrangeItemsInGrid( TRUE ); } - void slotRightPressed( TQIconViewItem *item ); + void slotRightPressed( TQIconViewItem *item ); void openFolder(); protected: @@ -167,7 +167,7 @@ protected: * *****************************************************************************/ -class TQtFileIconViewItem : public TQIconViewItem +class TQtFileIconViewItem : public TQIconViewItem { friend class TQtFileIconView; @@ -470,7 +470,7 @@ static void cleanup() *****************************************************************************/ TQtFileIconDrag::TQtFileIconDrag( TQWidget * dragSource, const char* name ) - : TQIconDrag( dragSource, name ) + : TQIconDrag( dragSource, name ) { } @@ -484,11 +484,11 @@ static void cleanup() return 0; } -TQByteArray TQtFileIconDrag::encodedData( const char* mime ) const +TQByteArray TQtFileIconDrag::encodedData( const char* mime ) const { TQByteArray a; if ( TQString( mime ) == "application/x-qiconlist" ) { - a = TQIconDrag::encodedData( mime ); + a = TQIconDrag::encodedData( mime ); } else if ( TQString( mime ) == "text/uri-list" ) { TQString s = urls.join( "\r\n" ); a.resize( s.length() ); @@ -497,16 +497,16 @@ static void cleanup() return a; } -bool TQtFileIconDrag::canDecode( TQMimeSource* e ) +bool TQtFileIconDrag::canDecode( TQMimeSource* e ) { return e->provides( "application/x-qiconlist" ) || e->provides( "text/uri-list" ); } -void TQtFileIconDrag::append( const TQIconDragItem &item, const TQRect &pr, +void TQtFileIconDrag::append( const TQIconDragItem &item, const TQRect &pr, const TQRect &tr, const TQString &url ) { - TQIconDrag::append( item, pr, tr ); + TQIconDrag::append( item, pr, tr ); TQString ourUrl = url; #ifdef TQ_WS_WIN if (ourUrl.length() > 2 && ourUrl[1] != ':') { @@ -524,7 +524,7 @@ static void cleanup() *****************************************************************************/ TQtFileIconViewItem::TQtFileIconViewItem( TQtFileIconView *parent, TQFileInfo *fi ) - : TQIconViewItem( parent, fi->fileName() ), itemFileName( fi->filePath() ), + : TQIconViewItem( parent, fi->fileName() ), itemFileName( fi->filePath() ), itemFileInfo( fi ), checkSetText( FALSE ) { vm = TQtFileIconView::Large; @@ -536,19 +536,19 @@ static void cleanup() if ( itemFileInfo->isSymLink() ) itemType = Link; - viewModeChanged( ( (TQtFileIconView*)iconView() )->viewMode() ); + viewModeChanged( ( (TQtFileIconView*)iconView() )->viewMode() ); if ( itemFileInfo->fileName() == "." || itemFileInfo->fileName() == ".." ) - setRenameEnabled( FALSE ); + setRenameEnabled( FALSE ); checkSetText = TRUE; TQObject::connect( &timer, TQ_SIGNAL( timeout() ), - iconView(), TQ_SLOT( openFolder() ) ); + iconView(), TQ_SLOT( openFolder() ) ); } -void TQtFileIconViewItem::paintItem( TQPainter *p, const TQColorGroup &cg ) +void TQtFileIconViewItem::paintItem( TQPainter *p, const TQColorGroup &cg ) { if ( itemFileInfo->isSymLink() ) { TQFont f( p->font() ); @@ -556,17 +556,17 @@ static void cleanup() p->setFont( f ); } - TQIconViewItem::paintItem( p, cg ); + TQIconViewItem::paintItem( p, cg ); } void TQtFileIconViewItem::viewModeChanged( TQtFileIconView::ViewMode m ) { vm = m; - setDropEnabled( itemType == Dir && TQDir( itemFileName ).isReadable() ); - calcRect(); + setDropEnabled( itemType == Dir && TQDir( itemFileName ).isReadable() ); + calcRect(); } -TQPixmap *TQtFileIconViewItem::pixmap() const +TQPixmap *TQtFileIconViewItem::pixmap() const { switch ( itemType ) { case Dir: @@ -605,7 +605,7 @@ TQtFileIconViewItem::~TQtFileIconViewItem() delete itemFileInfo; } -void TQtFileIconViewItem::setText( const TQString &text ) +void TQtFileIconViewItem::setText( const TQString &text ) { if ( checkSetText ) { if ( text == "." || text == "." || text.isEmpty() ) @@ -615,14 +615,14 @@ TQtFileIconViewItem::~TQtFileIconViewItem() itemFileName = itemFileInfo->dirPath( TRUE ) + "/" + text; delete itemFileInfo; itemFileInfo = new TQFileInfo( itemFileName ); - TQIconViewItem::setText( text ); + TQIconViewItem::setText( text ); } } else { - TQIconViewItem::setText( text ); + TQIconViewItem::setText( text ); } } -bool TQtFileIconViewItem::acceptDrop( const TQMimeSource *e ) const +bool TQtFileIconViewItem::acceptDrop( const TQMimeSource *e ) const { if ( type() == Dir && e->provides( "text/uri-list" ) && dropEnabled() ) @@ -631,7 +631,7 @@ TQtFileIconViewItem::~TQtFileIconViewItem() return FALSE; } -void TQtFileIconViewItem::dropped( TQDropEvent *e, const TQValueList<TQIconDragItem> & ) +void TQtFileIconViewItem::dropped( TQDropEvent *e, const TQValueList<TQIconDragItem> & ) { timer.stop(); @@ -660,7 +660,7 @@ TQtFileIconViewItem::~TQtFileIconViewItem() e->acceptAction(); } -void TQtFileIconViewItem::dragEntered() +void TQtFileIconViewItem::dragEntered() { if ( type() != Dir || type() == Dir && !TQDir( itemFileName ).isReadable() ) @@ -670,7 +670,7 @@ TQtFileIconViewItem::~TQtFileIconViewItem() timer.start( 1500 ); } -void TQtFileIconViewItem::dragLeft() +void TQtFileIconViewItem::dragLeft() { if ( type() != Dir || type() == Dir && !TQDir( itemFileName ).isReadable() ) @@ -686,7 +686,7 @@ TQtFileIconViewItem::~TQtFileIconViewItem() *****************************************************************************/ TQtFileIconView::TQtFileIconView( const TQString &dir, TQWidget *parent, const char *name ) - : TQIconView( parent, name ), viewDir( dir ), newFolderNum( 0 ) + : TQIconView( parent, name ), viewDir( dir ), newFolderNum( 0 ) { if ( !iconFolderLockedLarge ) { tqAddPostRoutine( cleanup ); @@ -712,24 +712,24 @@ TQtFileIconViewItem::~TQtFileIconViewItem() vm = Large; - setGridX( 75 ); - setResizeMode( Adjust ); - setWordWrapIconText( FALSE ); + setGridX( 75 ); + setResizeMode( Adjust ); + setWordWrapIconText( FALSE ); - connect( this, TQ_SIGNAL( doubleClicked( TQIconViewItem * ) ), - this, TQ_SLOT( itemDoubleClicked( 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( doubleClicked( TQIconViewItem * ) ), + this, TQ_SLOT( itemDoubleClicked( TQIconViewItem * ) ) ); + connect( this, TQ_SIGNAL( returnPressed( TQIconViewItem * ) ), + this, TQ_SLOT( itemDoubleClicked( TQIconViewItem * ) ) ); + 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 & ) ), - this, TQ_SLOT( slotRightPressed( TQIconViewItem * ) ) ); + connect( this, TQ_SIGNAL( contextMenuRequested( TQIconViewItem *, const TQPoint & ) ), + this, TQ_SLOT( slotRightPressed( TQIconViewItem * ) ) ); setHScrollBarMode( AlwaysOff ); setVScrollBarMode( Auto ); - setAutoArrange( TRUE ); - setSorting( TRUE ); + setAutoArrange( TRUE ); + setSorting( TRUE ); openItem = 0; } @@ -760,22 +760,22 @@ void TQtFileIconView::setDirectory( const TQDir &d void TQtFileIconView::newDirectory() { - setAutoArrange( FALSE ); - selectAll( FALSE ); + setAutoArrange( FALSE ); + selectAll( FALSE ); if ( viewDir.mkdir( TQString( "New Folder %1" ).arg( ++newFolderNum ) ) ) { TQFileInfo *fi = new TQFileInfo( viewDir, TQString( "New Folder %1" ).arg( newFolderNum ) ); TQtFileIconViewItem *item = new TQtFileIconViewItem( this, new TQFileInfo( *fi ) ); - item->setKey( TQString( "000000%1" ).arg( fi->fileName() ) ); + item->setKey( TQString( "000000%1" ).arg( fi->fileName() ) ); delete fi; repaintContents( contentsX(), contentsY(), contentsWidth(), contentsHeight(), FALSE ); - ensureItemVisible( item ); - item->setSelected( TRUE, TRUE ); - setCurrentItem( item ); - repaintItem( item ); + ensureItemVisible( item ); + item->setSelected( TRUE, TRUE ); + setCurrentItem( item ); + repaintItem( item ); tqApp->processEvents(); - item->rename(); + item->rename(); } - setAutoArrange( TRUE ); + setAutoArrange( TRUE ); } TQDir TQtFileIconView::currentDir() @@ -815,7 +815,7 @@ void TQtFileIconView::readDir( const TQ else emit enableUp(); - clear(); + clear(); emit directoryChanged( dir.absPath() ); @@ -833,21 +833,21 @@ void TQtFileIconView::readDir( const TQ emit readNextDir(); TQtFileIconViewItem *item = new TQtFileIconViewItem( this, new TQFileInfo( *fi ) ); if ( fi->isDir() ) - item->setKey( TQString( "000000%1" ).arg( fi->fileName() ) ); + item->setKey( TQString( "000000%1" ).arg( fi->fileName() ) ); else - item->setKey( fi->fileName() ); + item->setKey( fi->fileName() ); if ( !allowRenameSet ) { if ( !TQFileInfo( fi->absFilePath() ).isWritable() || - item->text() == "." || item->text() == ".." ) + item->text() == "." || item->text() == ".." ) allowRename = FALSE; else allowRename = TRUE; - if ( item->text() == "." || item->text() == ".." ) + if ( item->text() == "." || item->text() == ".." ) allowRenameSet = FALSE; else allowRenameSet = TRUE; } - item->setRenameEnabled( allowRename ); + item->setRenameEnabled( allowRename ); } if ( !TQFileInfo( dir.absPath() ).isWritable() ) @@ -858,7 +858,7 @@ void TQtFileIconView::readDir( const TQ emit readDirDone(); } -void TQtFileIconView::itemDoubleClicked( TQIconViewItem *i ) +void TQtFileIconView::itemDoubleClicked( TQIconViewItem *i ) { TQtFileIconViewItem *item = ( TQtFileIconViewItem* )i; @@ -872,7 +872,7 @@ void TQtFileIconView::itemDoubleClicked( TQDragObject *TQtFileIconView::dragObject() +TQDragObject *TQtFileIconView::dragObject() { if ( !currentItem() ) return 0; @@ -880,19 +880,19 @@ void TQtFileIconView::itemDoubleClicked( TQPoint orig = viewportToContents( viewport()->mapFromGlobal( TQCursor::pos() ) ); TQtFileIconDrag *drag = new TQtFileIconDrag( viewport() ); drag->setPixmap( *currentItem()->pixmap(), - TQPoint( currentItem()->pixmapRect().width() / 2, currentItem()->pixmapRect().height() / 2 ) ); - for ( TQtFileIconViewItem *item = (TQtFileIconViewItem*)firstItem(); item; - item = (TQtFileIconViewItem*)item->nextItem() ) { - if ( item->isSelected() ) { - TQIconDragItem id; - id.setData( TQCString( item->filename() ) ); - drag->append( id, - TQRect( item->pixmapRect( FALSE ).x() - orig.x(), - item->pixmapRect( FALSE ).y() - orig.y(), - item->pixmapRect().width(), item->pixmapRect().height() ), - TQRect( item->textRect( FALSE ).x() - orig.x(), - item->textRect( FALSE ).y() - orig.y(), - item->textRect().width(), item->textRect().height() ), + TQPoint( currentItem()->pixmapRect().width() / 2, currentItem()->pixmapRect().height() / 2 ) ); + for ( TQtFileIconViewItem *item = (TQtFileIconViewItem*)firstItem(); item; + item = (TQtFileIconViewItem*)item->nextItem() ) { + if ( item->isSelected() ) { + TQIconDragItem id; + id.setData( TQCString( item->filename() ) ); + drag->append( id, + TQRect( item->pixmapRect( FALSE ).x() - orig.x(), + item->pixmapRect( FALSE ).y() - orig.y(), + item->pixmapRect().width(), item->pixmapRect().height() ), + TQRect( item->textRect( FALSE ).x() - orig.x(), + item->textRect( FALSE ).y() - orig.y(), + item->textRect().width(), item->textRect().height() ), TQString( item->filename() ) ); } } @@ -951,49 +951,49 @@ void TQtFileIconView::viewSmall() void TQtFileIconView::viewBottom() { - setItemTextPos( Bottom ); + setItemTextPos( Bottom ); } void TQtFileIconView::viewRight() { - setItemTextPos( Right ); + setItemTextPos( Right ); } void TQtFileIconView::flowEast() { setHScrollBarMode( AlwaysOff ); setVScrollBarMode( Auto ); - setArrangement( LeftToRight ); + setArrangement( LeftToRight ); } void TQtFileIconView::flowSouth() { setVScrollBarMode( AlwaysOff ); setHScrollBarMode( Auto ); - setArrangement( TopToBottom ); + setArrangement( TopToBottom ); } void TQtFileIconView::sortAscending() { - sort( TRUE ); + sort( TRUE ); } void TQtFileIconView::sortDescending() { - sort( FALSE ); + sort( FALSE ); } void TQtFileIconView::itemTextTruncate() { - setWordWrapIconText( FALSE ); + setWordWrapIconText( FALSE ); } void TQtFileIconView::itemTextWordWrap() { - setWordWrapIconText( TRUE ); + setWordWrapIconText( TRUE ); } -void TQtFileIconView::slotRightPressed( TQIconViewItem *item ) +void TQtFileIconView::slotRightPressed( TQIconViewItem *item ) { if ( !item ) { // right pressed on viewport TQPopupMenu menu( this ); @@ -1010,7 +1010,7 @@ void TQtFileIconView::slotRightPressed( insertItem( "&Truncate item text", this, TQ_SLOT( itemTextTruncate() ) ); menu.insertItem( "&Wordwrap item text", this, TQ_SLOT( itemTextWordWrap() ) ); menu.insertSeparator(); - menu.insertItem( "Arrange items in &grid", this, TQ_SLOT( arrangeItemsInGrid() ) ); + menu.insertItem( "Arrange items in &grid", this, TQ_SLOT( arrangeItemsInGrid() ) ); menu.insertSeparator(); menu.insertItem( "Sort &ascending", this, TQ_SLOT( sortAscending() ) ); menu.insertItem( "Sort &descending", this, TQ_SLOT( sortDescending() ) ); @@ -1029,8 +1029,8 @@ void TQtFileIconView::slotRightPressed( if ( id == RENAME_ITEM && item->renameEnabled() ) { - item->rename(); + if ( id == RENAME_ITEM && item->renameEnabled() ) { + item->rename(); } else if ( id == REMOVE_ITEM ) { delete item; TQMessageBox::information( this, "Not implemented!", "Deleting files not implemented yet,\n" @@ -1045,11 +1045,11 @@ void TQtFileIconView::setViewMode( ViewMode m ) return; vm = m; - TQtFileIconViewItem *item = (TQtFileIconViewItem*)firstItem(); - for ( ; item; item = (TQtFileIconViewItem*)item->nextItem() ) + TQtFileIconViewItem *item = (TQtFileIconViewItem*)firstItem(); + for ( ; item; item = (TQtFileIconViewItem*)item->nextItem() ) item->viewModeChanged( vm ); - arrangeItemsInGrid(); + arrangeItemsInGrid(); }

@@ -1208,7 +1208,7 @@ void FileMainWindow::setup() splitter->setResizeMode( dirlist, TQSplitter::KeepSize ); fileview = new TQtFileIconView( "/", splitter ); - fileview->setSelectionMode( TQIconView::Extended ); + fileview->setSelectionMode( TQIconView::Extended ); setCentralWidget( splitter ); diff --git a/doc/html/functions.html b/doc/html/functions.html index 9dac6979..54888907 100644 --- a/doc/html/functions.html +++ b/doc/html/functions.html @@ -54,10 +54,10 @@ abort: TQDir TQFileInfo
  • absPath: TQDir
  • accel: TQAction TQButton TQCheckBox TQMenuData TQPopupMenu TQPushButton TQRadioButton
  • accept: - TQCloseEvent TQContextMenuEvent TQDialog TQDragMoveEvent TQDropEvent TQIMEvent TQIconDragEvent TQKeyEvent TQMouseEvent TQSocketDevice TQTabletEvent TQWheelEvent
  • acceptAction: + TQCloseEvent TQContextMenuEvent TQDialog TQDragMoveEvent TQDropEvent TQIMEvent TQIconDragEvent TQKeyEvent TQMouseEvent TQSocketDevice TQTabletEvent TQWheelEvent
  • acceptAction: TQDropEvent
  • acceptCallback: TQMotifDialog
  • acceptDrop: - TQIconViewItem TQListViewItem
  • acceptDrops: + TQIconViewItem TQListViewItem
  • acceptDrops: TQWidget
  • accum: TQGLFormat
  • action: TQDropEvent
  • activate: @@ -126,7 +126,7 @@ abort: TQDns
  • adjustColumn: TQDataTable TQListView TQTable
  • adjustHeaderSize: TQHeader
  • adjustItems: - TQIconView
  • adjustPos: + TQIconView
  • adjustPos: TQSplitter
  • adjustRow: TQTable
  • adjustSize: TQMessageBox TQSimpleRichText TQWidget
  • advance: @@ -155,7 +155,7 @@ abort: TQCanvasItem
  • answerRect: TQDragMoveEvent
  • appID: TQAxFactory
  • append: - TQCString TQIconDrag TQPtrList TQSqlCursor TQSqlIndex TQSqlRecord TQString TQTextEdit TQValueList TQValueVector TQXmlAttributes
  • appendChild: + TQCString TQIconDrag TQPtrList TQSqlCursor TQSqlIndex TQSqlRecord TQString TQTextEdit TQValueList TQValueVector TQXmlAttributes
  • appendChild: TQDomNode
  • appendData: TQDomCharacterData
  • applicationContext: TQMotif
  • applicationDirPath: @@ -171,8 +171,8 @@ abort: TQNPInstance
  • arguments: TQProcess
  • argv: TQApplication TQNPInstance
  • arrangeItemsInGrid: - TQIconView
  • arrangement: - TQIconView
  • arrowType: + TQIconView
  • arrangement: + TQIconView
  • arrowType: TQStyleOption
  • asBitArray: TQVariant
  • asBitmap: TQVariant
  • asBool: @@ -227,12 +227,12 @@ abort: TQDomElement TQDomNode
  • autoAdd: TQLayout
  • autoAdvance: TQDateEdit TQDateTimeEdit TQTimeEdit
  • autoArrange: - TQIconView
  • autoBufferSwap: + TQIconView
  • autoBufferSwap: TQGLWidget
  • autoClose: TQProgressDialog
  • autoCompletion: TQComboBox
  • autoDefault: TQPushButton
  • autoDelete: - TQAsciiDict TQCache TQDataTable TQDict TQIconFactory TQIntDict TQNetworkProtocol TQPtrCollection TQPtrDict TQPtrList TQPtrQueue TQPtrStack TQPtrVector
  • autoEdit: + TQAsciiDict TQCache TQDataTable TQDict TQIconFactory TQIntDict TQNetworkProtocol TQPtrCollection TQPtrDict TQPtrList TQPtrQueue TQPtrStack TQPtrVector
  • autoEdit: TQDataBrowser TQDataTable
  • autoFormatting: TQTextEdit
  • autoMask: TQWidget
  • autoRaise: @@ -315,13 +315,13 @@ c: TQScreen
  • cacheLimit: TQPixmapCache
  • caching: TQFileInfo
  • calcRect: - TQIconViewItem
  • calculateField: + TQIconViewItem
  • calculateField: TQSqlCursor
  • calibrate: TQWSMouseHandler
  • call: TQAxScript TQAxScriptManager
  • canCast: TQVariant
  • canConvert: TQMacMime TQWindowsMime
  • canDecode: - TQColorDrag TQIconDrag TQImageDrag TQTextDrag TQUriDrag
  • canDelete: + TQColorDrag TQIconDrag TQImageDrag TQTextDrag TQUriDrag
  • canDelete: TQSqlCursor
  • canEncode: TQTextCodec
  • canInsert: TQSqlCursor
  • canReadLine: @@ -396,7 +396,7 @@ c: TQDir
  • cleanText: TQSpinBox
  • cleanup: TQColor TQCursor TQFontManager
  • clear: - TQAccel TQAsciiCache TQAsciiDict TQAxBase TQCache TQClipboard TQComboBox TQDict TQDomNode TQIconView TQIntCache TQIntDict TQLabel TQLineEdit TQListBox TQListView TQMap TQMenuBar TQMenuData TQObjectCleanupHandler TQPixmapCache TQPopupMenu TQPtrCollection TQPtrDict TQPtrList TQPtrQueue TQPtrStack TQPtrVector TQSplashScreen TQSqlCursor TQSqlField TQSqlForm TQSqlRecord TQStatusBar TQTextEdit TQToolBar TQToolTip TQTranslator TQValueList TQValueVector TQVariant TQXmlAttributes
  • clearArguments: + TQAccel TQAsciiCache TQAsciiDict TQAxBase TQCache TQClipboard TQComboBox TQDict TQDomNode TQIconView TQIntCache TQIntDict TQLabel TQLineEdit TQListBox TQListView TQMap TQMenuBar TQMenuData TQObjectCleanupHandler TQPixmapCache TQPopupMenu TQPtrCollection TQPtrDict TQPtrList TQPtrQueue TQPtrStack TQPtrVector TQSplashScreen TQSqlCursor TQSqlField TQSqlForm TQSqlRecord TQStatusBar TQTextEdit TQToolBar TQToolTip TQTranslator TQValueList TQValueVector TQVariant TQXmlAttributes
  • clearArguments: TQProcess
  • clearBit: TQBitArray
  • clearCalibration: TQWSMouseHandler
  • clearCell: @@ -405,7 +405,7 @@ c: TQComboBox
  • clearEntries: TQUrlOperator
  • clearFocus: TQWidget
  • clearGenerated: - TQIconSet
  • clearMask: + TQIconSet
  • clearMask: TQWidget
  • clearModified: TQLineEdit
  • clearOperationQueue: TQNetworkProtocol
  • clearParagraphBackground: @@ -413,11 +413,11 @@ c: TQFtp
  • clearPendingData: TQSocket
  • clearPendingRequests: TQHttp
  • clearSelection: - TQAccessibleInterface TQIconView TQListBox TQListView TQTable
  • clearValidator: + TQAccessibleInterface TQIconView TQListBox TQListView TQTable
  • clearValidator: TQComboBox TQLineEdit
  • clearValues: TQDataBrowser TQDataView TQSqlForm TQSqlRecord
  • clearWFlags: TQWidget
  • clicked: - TQButton TQButtonGroup TQCheckBox TQHeader TQIconView TQListBox TQListView TQPushButton TQRadioButton TQTable TQTextEdit TQWhatsThis
  • client: + TQButton TQButtonGroup TQCheckBox TQHeader TQIconView TQListBox TQListView TQPushButton TQRadioButton TQTable TQTextEdit TQWhatsThis
  • client: TQWSWindow
  • clientSite: TQAxBindable
  • clientWindows: TQWSServer
  • clipRegion: @@ -483,7 +483,7 @@ c: TQSqlDriver
  • commonPrefix: TQTranslatorMessage
  • communication: TQProcess
  • compare: - TQIconViewItem TQListViewItem TQString
  • compareItems: + TQIconViewItem TQListViewItem TQString
  • compareItems: TQPtrList TQPtrVector
  • complete: TQNPStream
  • compose: TQString
  • confirmCancel: @@ -510,7 +510,7 @@ c: TQWidget
  • constref: TQString
  • consume: TQContextMenuEvent
  • contains: - TQCString TQDomNamedNodeMap TQIconViewItem TQMap TQMemArray TQPtrList TQPtrVector TQRect TQRegion TQSqlDatabase TQSqlRecord TQSqlRecordInfo TQString TQTranslator TQValueList
  • containsRef: + TQCString TQDomNamedNodeMap TQIconViewItem TQMap TQMemArray TQPtrList TQPtrVector TQRect TQRegion TQSqlDatabase TQSqlRecord TQSqlRecordInfo TQString TQTranslator TQValueList
  • containsRef: TQPtrList TQPtrVector
  • contentHandler: TQXmlReader
  • contentLength: TQHttpHeader
  • contentType: @@ -534,7 +534,7 @@ c: TQScrollView
  • context: TQGLWidget TQSimpleRichText TQTextEdit TQTranslatorMessage
  • contextMenuEvent: TQWidget
  • contextMenuRequested: - TQIconView TQListBox TQListView TQTable
  • contexts: + TQIconView TQListBox TQListView TQTable
  • contexts: TQStyleSheetItem
  • control: TQAxBase
  • controlAt: TQAccessibleInterface
  • controlPoints: @@ -558,7 +558,7 @@ c: TQTextEdit
  • copyBlt: TQPixmap
  • cornerWidget: TQScrollView TQTabWidget
  • count: - TQAccel TQAsciiCache TQAsciiCacheIterator TQAsciiDict TQAsciiDictIterator TQButtonGroup TQCache TQCacheIterator TQCanvasPixmapArray TQComboBox TQComboTableItem TQDict TQDictIterator TQDir TQDockArea TQDomNamedNodeMap TQDomNodeList TQFocusData TQHeader TQIconView TQIntCache TQIntCacheIterator TQIntDict TQIntDictIterator TQKeyEvent TQKeySequence TQListBox TQMap TQMemArray TQMenuData TQPtrCollection TQPtrDict TQPtrDictIterator TQPtrList TQPtrListIterator TQPtrQueue TQPtrStack TQPtrVector TQSqlForm TQSqlRecord TQTabBar TQTabWidget TQToolBox TQValueList TQValueVector TQXmlAttributes
  • countCf: + TQAccel TQAsciiCache TQAsciiCacheIterator TQAsciiDict TQAsciiDictIterator TQButtonGroup TQCache TQCacheIterator TQCanvasPixmapArray TQComboBox TQComboTableItem TQDict TQDictIterator TQDir TQDockArea TQDomNamedNodeMap TQDomNodeList TQFocusData TQHeader TQIconView TQIntCache TQIntCacheIterator TQIntDict TQIntDictIterator TQKeyEvent TQKeySequence TQListBox TQMap TQMemArray TQMenuData TQPtrCollection TQPtrDict TQPtrDictIterator TQPtrList TQPtrListIterator TQPtrQueue TQPtrStack TQPtrVector TQSqlForm TQSqlRecord TQTabBar TQTabWidget TQToolBox TQValueList TQValueVector TQXmlAttributes
  • countCf: TQWindowsMime
  • countFlavors: TQMacMime
  • country: TQLocale
  • countryToString: @@ -585,7 +585,7 @@ c: TQAxWidget
  • createObject: TQAxFactory
  • createObjectWrapper: TQAxFactory
  • createPixmap: - TQIconFactory
  • createPopupMenu: + TQIconFactory
  • createPopupMenu: TQLineEdit TQTextEdit
  • createProcessingInstruction: TQDomDocument
  • createQuery: TQSqlDriver
  • createTextNode: @@ -602,7 +602,7 @@ c: TQAsciiCacheIterator TQAsciiDictIterator TQCacheIterator TQDictIterator TQDir TQGLayoutIterator TQIntCacheIterator TQIntDictIterator TQLayoutIterator TQListViewItemIterator TQPtrDictIterator TQPtrList TQPtrListIterator TQPtrQueue TQPtrStack
  • currentAlignmentChanged: TQTextEdit
  • currentAllocContext: TQColor
  • currentChanged: - TQDataBrowser TQDataTable TQIconView TQListBox TQListView TQTabDialog TQTabWidget TQTable TQToolBox
  • currentColorChanged: + TQDataBrowser TQDataTable TQIconView TQListBox TQListView TQTabDialog TQTabWidget TQTable TQToolBox
  • currentColorChanged: TQTextEdit
  • currentColumn: TQTable
  • currentCommand: TQFtp
  • currentContext: @@ -617,7 +617,7 @@ c: TQTextEdit
  • currentId: TQFtp TQHttp
  • currentIndex: TQToolBox
  • currentItem: - TQComboBox TQComboTableItem TQIconView TQListBox TQListView TQToolBox
  • currentKey: + TQComboBox TQComboTableItem TQIconView TQListBox TQListView TQToolBox
  • currentKey: TQAsciiCacheIterator TQAsciiDictIterator TQCacheIterator TQDictIterator TQIntCacheIterator TQIntDictIterator TQPtrDictIterator
  • currentNode: TQPtrList
  • currentPage: TQTabDialog TQTabWidget TQWizard
  • currentPageIndex: @@ -658,7 +658,7 @@ c: TQLineEdit TQTextEdit
  • dark: TQColor TQColorGroup
  • data: - TQClipboard TQCustomEvent TQDomCharacterData TQDomProcessingInstruction TQIconDragItem TQMapConstIterator TQMapIterator TQMemArray TQMimeSourceFactory TQNetworkProtocol TQPicture TQPtrVector TQSqlResult TQUrlOperator TQXmlInputSource
  • dataChanged: + TQClipboard TQCustomEvent TQDomCharacterData TQDomProcessingInstruction TQIconDragItem TQMapConstIterator TQMapIterator TQMemArray TQMimeSourceFactory TQNetworkProtocol TQPicture TQPtrVector TQSqlResult TQUrlOperator TQXmlInputSource
  • dataChanged: TQClipboard
  • dataReadProgress: TQHttp
  • dataSendProgress: TQHttp
  • dataTransferProgress: @@ -688,7 +688,7 @@ dark: TQChar
  • defaultButtonPressed: TQTabDialog
  • defaultDepth: TQPixmap
  • defaultFactory: - TQEditorFactory TQIconFactory TQMimeSourceFactory TQSqlEditorFactory
  • defaultFamily: + TQEditorFactory TQIconFactory TQMimeSourceFactory TQSqlEditorFactory
  • defaultFamily: TQFont
  • defaultFormat: TQGLFormat
  • defaultMap: TQSqlPropertyMap
  • defaultOptimization: @@ -724,7 +724,7 @@ dark: TQColor
  • destroyed: TQObject
  • det: TQWMatrix
  • detach: - TQBitArray TQGLColormap TQIconSet TQImage TQMap TQMemArray TQPicture TQPixmap
  • device: + TQBitArray TQGLColormap TQIconSet TQImage TQMap TQMemArray TQPicture TQPixmap
  • device: TQDataStream TQGLContext TQPainter TQTabletEvent TQTextStream
  • deviceHeight: TQScreen
  • deviceIsPixmap: TQGLContext
  • deviceWidth: @@ -757,7 +757,7 @@ dark: TQLCDNumber TQTimeEdit TQWhatsThis
  • displayMode: TQStyleSheetItem
  • displayText: TQLineEdit
  • doAutoScroll: - TQIconView TQListView
  • doDefaultAction: + TQIconView TQListView
  • doDefaultAction: TQAccessibleInterface
  • doKeyboardAction: TQTextEdit
  • doLayout: TQListBox
  • docName: @@ -776,25 +776,25 @@ dark: TQImage
  • doubleBuffer: TQGLFormat TQGLWidget
  • doubleClickInterval: TQApplication
  • doubleClicked: - TQIconView TQListBox TQListView TQTable TQTextEdit
  • downRect: + TQIconView TQListBox TQListView TQTable TQTextEdit
  • downRect: TQSpinBox
  • drag: TQDragObject
  • dragAutoScroll: TQScrollView
  • dragCopy: TQDragObject
  • dragEnabled: - TQIconViewItem TQLineEdit TQListViewItem TQTable
  • dragEnterEvent: + TQIconViewItem TQLineEdit TQListViewItem TQTable
  • dragEnterEvent: TQWidget
  • dragEntered: - TQIconViewItem TQListViewItem
  • dragLeaveEvent: + TQIconViewItem TQListViewItem
  • dragLeaveEvent: TQWidget
  • dragLeft: - TQIconViewItem TQListViewItem
  • dragLink: + TQIconViewItem TQListViewItem
  • dragLink: TQDragObject
  • dragMove: TQDragObject
  • dragMoveEvent: TQWidget
  • dragObject: - TQIconView TQListView TQTable
  • draggingSlider: + TQIconView TQListView TQTable
  • draggingSlider: TQScrollBar
  • draw: TQCanvasItem TQCanvasPolygonalItem TQCanvasSprite TQCanvasText TQSimpleRichText
  • drawArc: TQPainter
  • drawArea: TQCanvas
  • drawBackground: - TQCanvas TQIconView
  • drawButton: + TQCanvas TQIconView
  • drawButton: TQButton
  • drawButtonLabel: TQButton
  • drawChord: TQPainter
  • drawComplexControl: @@ -824,7 +824,7 @@ dark: TQPainter
  • drawRiffles: TQPlatinumStyle
  • drawRoundRect: TQPainter
  • drawRubber: - TQIconView
  • drawShape: + TQIconView
  • drawShape: TQCanvasEllipse TQCanvasPolygon TQCanvasPolygonalItem TQCanvasRectangle
  • drawText: TQPainter TQWidget
  • drawTiledPixmap: TQPainter
  • drawWinFocusRect: @@ -834,9 +834,9 @@ dark: TQSqlError
  • drivers: TQSqlDatabase
  • drives: TQDir
  • dropEnabled: - TQIconViewItem TQListViewItem
  • dropEvent: + TQIconViewItem TQListViewItem
  • dropEvent: TQWidget
  • dropped: - TQIconView TQIconViewItem TQListView TQListViewItem TQTable
  • dumpObjectInfo: + TQIconView TQIconViewItem TQListView TQListViewItem TQTable
  • dumpObjectInfo: TQObject
  • dumpObjectTree: TQObject
  • duplicate: TQMemArray
  • duplicatesEnabled: @@ -857,7 +857,7 @@ echoMode: TQDomDocument
  • elementsByTagName: TQDomDocument TQDomElement
  • elementsByTagNameNS: TQDomDocument TQDomElement
  • emitSelectionChanged: - TQIconView
  • empty: + TQIconView
  • empty: TQMap TQValueList TQValueVector
  • enableClipper: TQScrollView
  • enablePainting: TQWSServer
  • enableRewind: @@ -866,7 +866,7 @@ echoMode: TQWidget
  • encode: TQUrl
  • encodeName: TQFile
  • encodedData: - TQDropEvent TQIconDrag TQMimeSource TQStoredDrag
  • encodedPathAndQuery: + TQDropEvent TQIconDrag TQMimeSource TQStoredDrag
  • encodedPathAndQuery: TQUrl
  • end: TQImageConsumer TQLineEdit TQMap TQMemArray TQMultiLineEdit TQNPStream TQPainter TQValueList TQValueVector
  • endCDATA: TQXmlLexicalHandler
  • endDTD: @@ -884,7 +884,7 @@ echoMode: TQGridView TQTable
  • ensureCurrentVisible: TQListBox
  • ensureCursorVisible: TQTextEdit
  • ensureItemVisible: - TQIconView TQListView
  • ensureVisible: + TQIconView TQListView
  • ensureVisible: TQScrollView
  • enterAllocContext: TQColor
  • enterEvent: TQWidget
  • enterInstance: @@ -959,11 +959,11 @@ falseText: TQDataBrowser TQDataTable TQDir TQSqlCursor TQWSInputMethod
  • filterSelected: TQFileDialog
  • find: TQAsciiCache TQAsciiDict TQButtonGroup TQCString TQCache TQDataTable TQDict TQGLColormap TQIntCache TQIntDict TQMap TQMemArray TQPixmapCache TQPtrDict TQPtrList TQPtrVector TQSqlRecordInfo TQString TQTextEdit TQValueList TQWidget
  • findFirstVisibleItem: - TQIconView
  • findIndex: + TQIconView
  • findIndex: TQValueList
  • findItem: - TQIconView TQListBox TQListView TQMenuData
  • findKey: + TQIconView TQListBox TQListView TQMenuData
  • findKey: TQAccel
  • findLastVisibleItem: - TQIconView
  • findMessage: + TQIconView
  • findMessage: TQTranslator
  • findNearest: TQGLColormap
  • findNext: TQPtrList
  • findNextRef: @@ -977,7 +977,7 @@ falseText: TQAxScript TQMovie TQNetworkProtocol TQThread TQUrlOperator
  • first: TQDataBrowser TQFocusData TQPtrList TQSqlQuery TQValueList TQValueVector
  • firstChild: TQDomNode TQListView TQListViewItem
  • firstItem: - TQIconView TQListBox
  • firstRecordAvailable: + TQIconView TQListBox
  • firstRecordAvailable: TQDataBrowser
  • fix: TQDateEdit
  • fixedExtent: TQDockWindow
  • fixedPitch: @@ -1106,8 +1106,8 @@ gamma: TQStringList
  • gres: TQStringList
  • gridSize: TQGridView
  • gridX: - TQIconView
  • gridY: - TQIconView
  • group: + TQIconView
  • gridY: + TQIconView
  • group: TQButton TQCheckBox TQFileInfo TQPushButton TQRadioButton TQSettings TQToolTip TQUrlInfo TQWidgetPlugin
  • groupId: TQFileInfo
  • guiThreadAwake: TQApplication
  • @@ -1169,7 +1169,7 @@ hScrollBarMode: TQListView
  • headerSection: TQStyleOption
  • headerWidth: TQHeader
  • height: - TQCanvas TQCanvasEllipse TQCanvasRectangle TQCanvasSprite TQDirectPainter TQFontMetrics TQIconViewItem TQImage TQListBoxItem TQListBoxPixmap TQListBoxText TQListViewItem TQPaintDeviceMetrics TQPixmap TQRect TQScreen TQSimpleRichText TQSize TQWidget
  • heightForWidth: + TQCanvas TQCanvasEllipse TQCanvasRectangle TQCanvasSprite TQDirectPainter TQFontMetrics TQIconViewItem TQImage TQListBoxItem TQListBoxPixmap TQListBoxText TQListViewItem TQPaintDeviceMetrics TQPixmap TQRect TQScreen TQSimpleRichText TQSize TQWidget
  • heightForWidth: TQBoxLayout TQGridLayout TQLayoutItem TQMenuBar TQTextEdit TQWidget
  • heightMM: TQPaintDeviceMetrics
  • help: TQWizard
  • helpButton: @@ -1209,15 +1209,15 @@ icon: TQMessageBox
  • iconProvider: TQFileDialog
  • iconSet: TQAction TQHeader TQMenuData TQPopupMenu TQPushButton TQTab TQToolButton TQWidgetPlugin
  • iconSize: - TQIconSet
  • iconText: + TQIconSet
  • iconText: TQWidget
  • iconView: - TQIconViewItem
  • id: + TQIconViewItem
  • id: TQButtonGroup TQWidgetStack
  • idAfter: TQSplitter
  • idAt: TQMenuData TQPopupMenu
  • identifier: TQTab
  • ignorableWhitespace: TQXmlContentHandler
  • ignore: - TQCloseEvent TQContextMenuEvent TQDragMoveEvent TQDropEvent TQIMEvent TQIconDragEvent TQKeyEvent TQMouseEvent TQTabletEvent TQWheelEvent
  • imComposeEvent: + TQCloseEvent TQContextMenuEvent TQDragMoveEvent TQDropEvent TQIMEvent TQIconDragEvent TQKeyEvent TQMouseEvent TQTabletEvent TQWheelEvent
  • imComposeEvent: TQWidget
  • imEndEvent: TQWidget
  • imStartEvent: TQWidget
  • image: @@ -1233,7 +1233,7 @@ icon: TQPalette
  • includeFile: TQWidgetPlugin
  • indent: TQLabel
  • index: - TQIconView TQIconViewItem TQListBox TQSqlCursor TQXmlAttributes
  • indexChange: + TQIconView TQIconViewItem TQListBox TQSqlCursor TQXmlAttributes
  • indexChange: TQHeader
  • indexOf: TQDataTable TQMenuData TQTabBar TQTabWidget TQTable TQToolBox TQWizard
  • indicatorFollowsStyle: TQProgressBar
  • info: @@ -1262,8 +1262,8 @@ icon: TQTable
  • insertCurrent: TQDataBrowser TQDataTable
  • insertData: TQDomCharacterData
  • insertInGrid: - TQIconView
  • insertItem: - TQAccel TQBoxLayout TQComboBox TQIconView TQListBox TQListView TQListViewItem TQMenuBar TQMenuData TQPopupMenu TQToolBox
  • insertLayout: + TQIconView
  • insertItem: + TQAccel TQBoxLayout TQComboBox TQIconView TQListBox TQListView TQListViewItem TQMenuBar TQMenuData TQPopupMenu TQToolBox
  • insertLayout: TQBoxLayout
  • insertLine: TQMultiLineEdit
  • insertPage: TQWizard
  • insertParagraph: @@ -1284,12 +1284,12 @@ icon: TQComboBox
  • insideMargin: TQGroupBox
  • insideSpacing: TQGroupBox
  • installDefaultFactory: - TQEditorFactory TQIconFactory TQSqlEditorFactory
  • installDefaultMap: + TQEditorFactory TQIconFactory TQSqlEditorFactory
  • installDefaultMap: TQSqlPropertyMap
  • installEditorFactory: TQDataTable
  • installEventFilter: TQObject
  • installIOHandler: TQImageFormatPlugin
  • installIconFactory: - TQIconSet
  • installPropertyMap: + TQIconSet
  • installPropertyMap: TQDataTable TQSqlForm
  • installTranslator: TQApplication
  • instance: TQNPStream TQNPWidget
  • intValue: @@ -1299,16 +1299,16 @@ icon: TQDomDocumentType
  • interpretText: TQSpinBox
  • intersect: TQRect TQRegion
  • intersects: - TQIconViewItem TQRect
  • invalidate: + TQIconViewItem TQRect
  • invalidate: TQBoxLayout TQCanvasPolygonalItem TQGridLayout TQLayout TQLayoutItem
  • invalidateHeight: TQListViewItem
  • inverseWorldMatrix: TQCanvasView
  • invert: TQWMatrix
  • invertPixels: TQImage
  • invertSelection: - TQIconView TQListBox TQListView
  • ioDevice: + TQIconView TQListBox TQListView
  • ioDevice: TQImageIO
  • isA: TQObject
  • isAccepted: - TQCloseEvent TQContextMenuEvent TQDropEvent TQIMEvent TQIconDragEvent TQKeyEvent TQMouseEvent TQTabletEvent TQWheelEvent
  • isActionAccepted: + TQCloseEvent TQContextMenuEvent TQDropEvent TQIMEvent TQIconDragEvent TQKeyEvent TQMouseEvent TQTabletEvent TQWheelEvent
  • isActionAccepted: TQDropEvent
  • isActive: TQAccessible TQCanvasItem TQPainter TQSqlQuery TQSqlResult TQTableSelection TQTimer
  • isActiveWindow: TQWidget TQXtWidget
  • isAnchor: @@ -1378,7 +1378,7 @@ icon: TQSqlQuery TQSqlResult
  • isFullScreen: TQWidget
  • isFullyObscured: TQWSWindow
  • isGenerated: - TQIconSet TQSqlFieldInfo TQSqlRecord
  • isGloballyEnabled: + TQIconSet TQSqlFieldInfo TQSqlRecord
  • isGloballyEnabled: TQToolTip
  • isGrayscale: TQImage
  • isHidden: TQFileInfo TQWidget
  • isHorizontalSliderPressed: @@ -1407,7 +1407,7 @@ icon: TQLineEdit TQTextEdit
  • isMovingEnabled: TQDockWindow TQHeader
  • isNotation: TQDomNode TQDomNotation
  • isNull: - TQAxBase TQCString TQChar TQDate TQDateTime TQDomImplementation TQDomNode TQGuardedPtr TQHostAddress TQIconSet TQImage TQMemArray TQMovie TQPicture TQPixmap TQPoint TQPtrVector TQRect TQRegion TQSize TQSqlCursor TQSqlField TQSqlQuery TQSqlRecord TQSqlResult TQString TQTime TQUuid TQVariant
  • isNumber: + TQAxBase TQCString TQChar TQDate TQDateTime TQDomImplementation TQDomNode TQGuardedPtr TQHostAddress TQIconSet TQImage TQMemArray TQMovie TQPicture TQPixmap TQPoint TQPtrVector TQRect TQRegion TQSize TQSqlCursor TQSqlField TQSqlQuery TQSqlRecord TQSqlResult TQString TQTime TQUuid TQVariant
  • isNumber: TQChar
  • isOn: TQAction TQButton TQCheckBox TQCheckListItem TQPushButton TQRadioButton
  • isOpen: TQAssistantClient TQIODevice TQListView TQListViewItem TQSqlDatabase TQSqlDriver
  • isOpenError: @@ -1432,7 +1432,7 @@ icon: TQDir TQFileInfo
  • isRelativePath: TQDir
  • isRelativeUrl: TQUrl
  • isRenaming: - TQIconView TQListView
  • isReplaceable: + TQIconView TQListView
  • isReplaceable: TQTableItem
  • isRequired: TQSqlFieldInfo
  • isResizeEnabled: TQDockWindow TQHeader
  • isRoot: @@ -1445,8 +1445,8 @@ icon: TQProcess
  • isScalable: TQFontDatabase
  • isSelect: TQSqlQuery TQSqlResult
  • isSelectable: - TQIconViewItem TQListBoxItem TQListViewItem
  • isSelected: - TQCanvasItem TQIconViewItem TQListBox TQListBoxItem TQListView TQListViewItem TQTable
  • isSeparator: + TQIconViewItem TQListBoxItem TQListViewItem
  • isSelected: + TQCanvasItem TQIconViewItem TQListBox TQListBoxItem TQListView TQListViewItem TQTable
  • isSeparator: TQCustomMenuItem
  • isSequentialAccess: TQIODevice
  • isServer: TQAxFactory
  • isService: @@ -1501,12 +1501,12 @@ icon: TQListView TQListViewItem
  • itemRect: TQListBox TQListView TQStyle
  • itemRemoved: TQToolBox
  • itemRenamed: - TQIconView TQListView
  • itemTextBackground: - TQIconView
  • itemTextPos: - TQIconView
  • itemToolTip: + TQIconView TQListView
  • itemTextBackground: + TQIconView
  • itemTextPos: + TQIconView
  • itemToolTip: TQToolBox
  • itemVisible: TQListBox
  • itemsMovable: - TQIconView
  • iterator: + TQIconView
  • iterator: TQLayout TQLayoutItem
  • join: TQStringList
  • joinStyle: @@ -1514,7 +1514,7 @@ join: TQChar
  • jumpTable: TQImage
  • key: - TQAccel TQFont TQIconViewItem TQKeyEvent TQListViewItem TQMapConstIterator TQMapIterator TQTableItem
  • keyMap: + TQAccel TQFont TQIconViewItem TQKeyEvent TQListViewItem TQMapConstIterator TQMapIterator TQTableItem
  • keyMap: TQWSServer
  • keyPressEvent: TQLineEdit TQTextBrowser TQTextEdit TQWidget
  • keyReleaseEvent: TQWidget
  • keyToValue: @@ -1536,7 +1536,7 @@ label: TQDataBrowser TQFocusData TQPtrList TQSqlQuery TQValueList TQValueVector
  • lastChild: TQDomNode
  • lastError: TQSqlDatabase TQSqlDriver TQSqlQuery TQSqlResult
  • lastItem: - TQIconView TQListView
  • lastModified: + TQIconView TQListView
  • lastModified: TQFileInfo TQNPStream TQUrlInfo
  • lastOp: TQScreen
  • lastQuery: TQSqlQuery TQSqlResult
  • lastRead: @@ -1640,7 +1640,7 @@ m11: TQPointArray
  • makeEncoder: TQTextCodec
  • makeOverlayCurrent: TQGLWidget
  • makeRowLayout: - TQIconView
  • manager: + TQIconView
  • manager: TQWSServer
  • manhattanLength: TQPoint
  • map: TQSignalMapper TQWMatrix
  • mapFrom: @@ -1672,8 +1672,8 @@ m11: TQAsciiCache TQCache TQIntCache
  • maxCount: TQComboBox
  • maxIconWidth: TQStyleOption
  • maxItemTextLength: - TQIconView
  • maxItemWidth: - TQIconView TQListBox
  • maxLength: + TQIconView
  • maxItemWidth: + TQIconView TQListBox
  • maxLength: TQLineEdit
  • maxLogLines: TQTextEdit
  • maxPage: TQPrinter
  • maxValue: @@ -1736,8 +1736,8 @@ m11: TQTextEdit
  • month: TQDate
  • motifWidget: TQMotifWidget
  • mouseButtonClicked: - TQIconView TQListBox TQListView
  • mouseButtonPressed: - TQIconView TQListBox TQListView
  • mouseChanged: + TQIconView TQListBox TQListView
  • mouseButtonPressed: + TQIconView TQListBox TQListView
  • mouseChanged: TQWSMouseHandler
  • mouseDoubleClickEvent: TQWidget
  • mouseGrabber: TQWidget
  • mouseHandler: @@ -1745,11 +1745,11 @@ m11: TQSizeGrip TQWidget
  • mousePressEvent: TQSizeGrip TQWidget
  • mouseReleaseEvent: TQWidget
  • move: - TQCanvasItem TQCanvasSprite TQIconViewItem TQWidget
  • moveBottom: + TQCanvasItem TQCanvasSprite TQIconViewItem TQWidget
  • moveBottom: TQRect
  • moveBottomLeft: TQRect
  • moveBottomRight: TQRect
  • moveBy: - TQCanvasItem TQIconViewItem TQRect
  • moveCenter: + TQCanvasItem TQIconViewItem TQRect
  • moveCenter: TQRect
  • moveChild: TQScrollView
  • moveCursor: TQTextEdit
  • moveDockWindow: @@ -1766,7 +1766,7 @@ m11: TQRect
  • moveTopLeft: TQRect
  • moveTopRight: TQRect
  • moved: - TQIconView
  • movie: + TQIconView
  • movie: TQLabel
  • msec: TQTime
  • msecsTo: TQTime
  • msleep: @@ -1795,7 +1795,7 @@ name: TQNPInstance
  • next: TQDataBrowser TQFocusData TQGLayoutIterator TQListBoxItem TQPtrList TQSqlQuery TQWizard TQXmlInputSource
  • nextButton: TQWizard
  • nextItem: - TQIconViewItem
  • nextLine: + TQIconViewItem
  • nextLine: TQScrollBar
  • nextPage: TQScrollBar
  • nextRecordAvailable: TQDataBrowser
  • nextSibling: @@ -1849,8 +1849,8 @@ object: TQResizeEvent
  • onCanvas: TQCanvas
  • onCard: TQScreen
  • onItem: - TQIconView TQListBox TQListView
  • onViewport: - TQIconView TQListBox TQListView
  • opType: + TQIconView TQListBox TQListView
  • onViewport: + TQIconView TQListBox TQListView
  • opType: TQScreen
  • opaqueMoving: TQDockWindow TQMainWindow
  • opaqueResize: TQSplitter
  • open: @@ -1895,7 +1895,7 @@ object: TQCString TQChar TQDate TQDateTime TQString TQTime TQTranslatorMessage TQUuid
  • operator<<: TQBitArray TQBrush TQCString TQColor TQColorGroup TQCursor TQDataStream TQDate TQDateTime TQDockArea TQDomNode TQFont TQImage TQKeySequence TQMainWindow TQMap TQMemArray TQPalette TQPen TQPicture TQPixmap TQPoint TQPointArray TQRect TQRegion TQSize TQSplitter TQString TQTextStream TQTime TQUuid TQValueList TQWMatrix
  • operator<=: TQCString TQChar TQDate TQDateTime TQString TQTime TQTranslatorMessage
  • operator=: - TQAsciiCacheIterator TQAsciiDict TQBitArray TQBitVal TQBitmap TQBrush TQCString TQCacheIterator TQColor TQColorGroup TQCursor TQDeepCopy TQDict TQDir TQDomAttr TQDomCDATASection TQDomCharacterData TQDomComment TQDomDocument TQDomDocumentFragment TQDomDocumentType TQDomElement TQDomEntity TQDomEntityReference TQDomImplementation TQDomNamedNodeMap TQDomNode TQDomNodeList TQDomNotation TQDomProcessingInstruction TQDomText TQFileInfo TQFont TQFontInfo TQFontMetrics TQGLColormap TQGuardedPtr TQHostAddress TQHttpHeader TQIconSet TQImage TQIntCacheIterator TQIntDict fnord TQKeySequence TQLayoutIterator TQListViewItemIterator TQLocale TQMap TQMemArray TQMovie TQObjectList TQObjectListIterator TQPair TQPalette TQPen TQPicture TQPixmap TQPointArray TQPtrDict TQPtrList TQPtrListIterator TQPtrQueue TQPtrStack TQPtrVector TQRegExp TQRegion TQSqlCursor TQSqlError TQSqlField TQSqlFieldInfo TQSqlIndex TQSqlQuery TQSqlRecord TQStrList TQString TQStyleSheetItem TQTranslatorMessage TQUrl TQUrlInfo TQUuid TQValueList TQValueVector TQVariant
  • operator==: + TQAsciiCacheIterator TQAsciiDict TQBitArray TQBitVal TQBitmap TQBrush TQCString TQCacheIterator TQColor TQColorGroup TQCursor TQDeepCopy TQDict TQDir TQDomAttr TQDomCDATASection TQDomCharacterData TQDomComment TQDomDocument TQDomDocumentFragment TQDomDocumentType TQDomElement TQDomEntity TQDomEntityReference TQDomImplementation TQDomNamedNodeMap TQDomNode TQDomNodeList TQDomNotation TQDomProcessingInstruction TQDomText TQFileInfo TQFont TQFontInfo TQFontMetrics TQGLColormap TQGuardedPtr TQHostAddress TQHttpHeader TQIconSet TQImage TQIntCacheIterator TQIntDict fnord TQKeySequence TQLayoutIterator TQListViewItemIterator TQLocale TQMap TQMemArray TQMovie TQObjectList TQObjectListIterator TQPair TQPalette TQPen TQPicture TQPixmap TQPointArray TQPtrDict TQPtrList TQPtrListIterator TQPtrQueue TQPtrStack TQPtrVector TQRegExp TQRegion TQSqlCursor TQSqlError TQSqlField TQSqlFieldInfo TQSqlIndex TQSqlQuery TQSqlRecord TQStrList TQString TQStyleSheetItem TQTranslatorMessage TQUrl TQUrlInfo TQUuid TQValueList TQValueVector TQVariant
  • operator==: TQBrush TQCString TQChar TQColor TQColorGroup TQDate TQDateTime TQDir TQDomImplementation TQDomNamedNodeMap TQDomNode TQDomNodeList TQFont TQGuardedPtr TQHostAddress TQImage TQKeySequence TQMapConstIterator TQMapIterator TQMemArray TQPalette TQPen TQPoint TQPtrList TQPtrVector TQRect TQRegExp TQRegion TQSize TQSizePolicy TQSqlField TQSqlFieldInfo TQString TQTableSelection TQTime TQTranslatorMessage TQUrl TQUrlInfo TQUuid TQValueList TQValueListConstIterator TQValueListIterator TQValueVector TQVariant TQWMatrix
  • operator>: TQCString TQChar TQDate TQDateTime TQString TQTime TQTranslatorMessage TQUuid
  • operator>=: TQCString TQChar TQDate TQDateTime TQString TQTime TQTranslatorMessage
  • operator>>: @@ -1946,9 +1946,9 @@ packImage: TQGridView TQListView TQTable
  • paintEvent: TQButton TQFrame TQGLWidget TQSizeGrip TQStatusBar TQTabBar TQWidget
  • paintField: TQDataTable
  • paintFocus: - TQCheckListItem TQIconViewItem TQListViewItem TQTable
  • paintGL: + TQCheckListItem TQIconViewItem TQListViewItem TQTable
  • paintGL: TQGLWidget
  • paintItem: - TQIconViewItem
  • paintLabel: + TQIconViewItem
  • paintLabel: TQTabBar
  • paintOverlayGL: TQGLWidget
  • paintSection: TQHeader
  • paintSectionLabel: @@ -1986,18 +1986,18 @@ packImage: TQProgressBar
  • permission: TQFileInfo
  • permissions: TQUrlInfo
  • picture: - TQIconViewItem TQLabel
  • pixel: + TQIconViewItem TQLabel
  • pixel: TQColor TQImage
  • pixelIndex: TQImage
  • pixelMetric: TQStyle
  • pixelSize: TQFont TQFontInfo
  • pixelType: TQScreen
  • pixmap: - TQBrush TQButton TQCheckBox TQClipboard TQComboBox TQDragObject TQFileIconProvider TQIconSet TQIconViewItem TQLabel TQListBox TQListBoxItem TQListBoxPixmap TQListViewItem TQMenuData TQPopupMenu TQPushButton TQRadioButton TQSplashScreen TQTable TQTableItem
  • pixmapDepth: + TQBrush TQButton TQCheckBox TQClipboard TQComboBox TQDragObject TQFileIconProvider TQIconSet TQIconViewItem TQLabel TQListBox TQListBoxItem TQListBoxPixmap TQListViewItem TQMenuData TQPopupMenu TQPushButton TQRadioButton TQSplashScreen TQTable TQTableItem
  • pixmapDepth: TQScreen
  • pixmapHotSpot: TQDragObject
  • pixmapLinestepAlignment: TQScreen
  • pixmapOffsetAlignment: TQScreen
  • pixmapRect: - TQIconViewItem
  • pixmapSizeChanged: + TQIconViewItem
  • pixmapSizeChanged: TQMainWindow
  • place: TQDockWindow
  • placeChanged: TQDockWindow
  • placeCursor: @@ -2018,7 +2018,7 @@ packImage: TQComboBox TQPopupMenu TQPushButton TQToolButton
  • popupDelay: TQToolButton
  • port: TQServerSocket TQSocket TQSocketDevice TQSqlDatabase TQUrl
  • pos: - TQContextMenuEvent TQCursor TQDropEvent TQIconViewItem TQMouseEvent TQMoveEvent TQRegExp TQTabletEvent TQWSMouseHandler TQWheelEvent TQWidget
  • position: + TQContextMenuEvent TQCursor TQDropEvent TQIconViewItem TQMouseEvent TQMoveEvent TQRegExp TQTabletEvent TQWSMouseHandler TQWheelEvent TQWidget
  • position: TQSqlRecord
  • positionFromValue: TQRangeControl
  • post: TQHttp
  • postEvent: @@ -2029,10 +2029,10 @@ packImage: TQXmlNamespaceSupport
  • prepare: TQSqlQuery
  • prepend: TQCString TQPtrList TQString TQValueList
  • pressed: - TQButton TQButtonGroup TQCheckBox TQHeader TQIconView TQListBox TQListView TQPushButton TQRadioButton TQTable
  • pressure: + TQButton TQButtonGroup TQCheckBox TQHeader TQIconView TQListBox TQListView TQPushButton TQRadioButton TQTable
  • pressure: TQTabletEvent
  • prev: TQDataBrowser TQFocusData TQListBoxItem TQPtrList TQSqlQuery
  • prevItem: - TQIconViewItem
  • prevLine: + TQIconViewItem
  • prevLine: TQScrollBar
  • prevPage: TQScrollBar
  • prevRecordAvailable: TQDataBrowser
  • prevValue: @@ -2186,7 +2186,7 @@ rBottom: TQDataView TQSqlDatabase TQSqlDriver
  • recordInfo: TQSqlDatabase TQSqlDriver
  • recordType: TQDns
  • rect: - TQAccessibleInterface TQCanvas TQCanvasRectangle TQDirectPainter TQIconViewItem TQImage TQPaintEvent TQPixmap TQRect TQStyleOption TQTab TQWidget
  • rects: + TQAccessibleInterface TQCanvas TQCanvasRectangle TQDirectPainter TQIconViewItem TQImage TQPaintEvent TQPixmap TQRect TQStyleOption TQTab TQWidget
  • rects: TQRegion
  • red: TQColor
  • redirect: TQPainter
  • redo: @@ -2239,7 +2239,7 @@ rBottom: TQTextEdit
  • removePostedEvents: TQApplication
  • removeRef: TQPtrList
  • removeRenameBox: - TQIconViewItem
  • removeRow: + TQIconViewItem
  • removeRow: TQTable
  • removeRows: TQTable
  • removeSearchPath: TQSettings
  • removeSelectedText: @@ -2255,17 +2255,17 @@ rBottom: TQStatusBar TQWidgetStack
  • removed: TQChildEvent TQNetworkProtocol TQUrlOperator
  • removedChannel: TQWSServer
  • rename: - TQDir TQFtp TQIconViewItem TQUrlOperator
  • renameEnabled: - TQIconViewItem TQListViewItem
  • renderPixmap: + TQDir TQFtp TQIconViewItem TQUrlOperator
  • renameEnabled: + TQIconViewItem TQListViewItem
  • renderPixmap: TQGLWidget
  • renderText: TQGLWidget
  • repaint: - TQIconViewItem TQListViewItem TQSplashScreen TQWidget
  • repaintCell: + TQIconViewItem TQListViewItem TQSplashScreen TQWidget
  • repaintCell: TQGridView
  • repaintChanged: TQTextEdit
  • repaintContents: TQScrollView
  • repaintItem: - TQIconView TQListView
  • repaintScreen: + TQIconView TQListView
  • repaintScreen: TQDial
  • repaintSelectedItems: - TQIconView
  • repaintSelections: + TQIconView
  • repaintSelections: TQTable
  • reparent: TQWidget
  • replace: TQAsciiDict TQCString TQDict TQIntDict TQMap TQPtrDict TQPtrList TQString
  • replaceChild: @@ -2282,7 +2282,7 @@ rBottom: TQGLContext
  • rereadDir: TQFileDialog
  • reserve: TQString TQValueVector
  • reset: - TQDataTable TQGLContext TQIODevice TQIconSet TQImage TQMetaProperty TQProgressBar TQProgressDialog TQSqlResult TQTextStream TQUrl TQWMatrix TQWSInputMethod TQXmlInputSource TQXmlNamespaceSupport
  • resetGroup: + TQDataTable TQGLContext TQIODevice TQIconSet TQImage TQMetaProperty TQProgressBar TQProgressDialog TQSqlResult TQTextStream TQUrl TQWMatrix TQWSInputMethod TQXmlInputSource TQXmlNamespaceSupport
  • resetGroup: TQSettings
  • resetInputContext: TQWidget
  • resetRawData: TQMemArray
  • resetReason: @@ -2294,7 +2294,7 @@ rBottom: TQTable
  • resizeEvent: TQFrame TQGLWidget TQListView TQWidget
  • resizeGL: TQGLWidget
  • resizeMode: - TQIconView TQLayout TQListView
  • resizeOverlayGL: + TQIconView TQLayout TQListView
  • resizeOverlayGL: TQGLWidget
  • resizePolicy: TQScrollView
  • resizeSection: TQHeader
  • resized: @@ -2312,7 +2312,7 @@ rBottom: TQDialog TQSqlQuery
  • resultsReady: TQDns
  • retune: TQCanvas
  • returnPressed: - TQIconView TQLineEdit TQListBox TQListView TQTextEdit
  • reverseLayout: + TQIconView TQLineEdit TQListBox TQListView TQTextEdit
  • reverseLayout: TQApplication
  • rewind: TQDataSource TQIODeviceSource
  • rewindable: TQDataSource TQIODeviceSource
  • rgb: @@ -2321,8 +2321,8 @@ rBottom: TQSize
  • right: TQCString TQRect TQString
  • rightBearing: TQFontMetrics
  • rightButtonClicked: - TQIconView TQListBox TQListView
  • rightButtonPressed: - TQIconView TQListBox TQListView
  • rightCol: + TQIconView TQListBox TQListView
  • rightButtonPressed: + TQIconView TQListBox TQListView
  • rightCol: TQTableSelection
  • rightDock: TQMainWindow
  • rightEdge: TQCanvasSprite
  • rightJustify: @@ -2347,7 +2347,7 @@ rBottom: TQGridLayout
  • rowSpan: TQTableItem
  • rowStretch: TQGridLayout
  • rtti: - TQCanvasEllipse TQCanvasItem TQCanvasLine TQCanvasPolygon TQCanvasPolygonalItem TQCanvasRectangle TQCanvasSpline TQCanvasSprite TQCanvasText TQCheckListItem TQCheckTableItem TQComboTableItem TQIconViewItem TQListBoxItem TQListViewItem TQTableItem
  • run: + TQCanvasEllipse TQCanvasItem TQCanvasLine TQCanvasPolygon TQCanvasPolygonalItem TQCanvasRectangle TQCanvasSpline TQCanvasSprite TQCanvasText TQCheckListItem TQCheckTableItem TQComboTableItem TQIconViewItem TQListBoxItem TQListViewItem TQTableItem
  • run: TQThread
  • running: TQMovie TQThread
  • rwidth: TQSize
  • rx: @@ -2398,7 +2398,7 @@ sRect: TQNPStream
  • segmentStyle: TQLCDNumber
  • select: TQSqlCursor
  • selectAll: - TQFileDialog TQIconView TQLineEdit TQListBox TQListView TQSpinBox TQTextEdit
  • selectCells: + TQFileDialog TQIconView TQLineEdit TQListBox TQListView TQSpinBox TQTextEdit
  • selectCells: TQTable
  • selectColumn: TQTable
  • selectRow: TQTable
  • selectTab: @@ -2411,9 +2411,9 @@ sRect: TQListBox TQListView
  • selectedText: TQLineEdit TQTextEdit
  • selection: TQAccessibleInterface TQTable
  • selectionChanged: - TQClipboard TQIconView TQLineEdit TQListBox TQListView TQTable TQTextEdit
  • selectionLength: + TQClipboard TQIconView TQLineEdit TQListBox TQListView TQTable TQTextEdit
  • selectionLength: TQIMEvent
  • selectionMode: - TQIconView TQListBox TQListView TQTable
  • selectionStart: + TQIconView TQListBox TQListView TQTable
  • selectionStart: TQLineEdit
  • selfMask: TQPixmap
  • selfNesting: TQStyleSheetItem
  • send: @@ -2457,7 +2457,7 @@ sRect: TQDirectPainter
  • setArg: TQNetworkOperation
  • setArguments: TQAssistantClient TQProcess
  • setArrangement: - TQIconView
  • setAscii: + TQIconView
  • setAscii: TQString
  • setAt: TQSqlResult
  • setAttribute: TQDomElement
  • setAttributeNS: @@ -2466,12 +2466,12 @@ sRect: TQDomElement
  • setAutoAdd: TQLayout
  • setAutoAdvance: TQDateEdit TQDateTimeEdit TQTimeEdit
  • setAutoArrange: - TQIconView
  • setAutoBufferSwap: + TQIconView
  • setAutoBufferSwap: TQGLWidget
  • setAutoClose: TQProgressDialog
  • setAutoCompletion: TQComboBox
  • setAutoDefault: TQPushButton
  • setAutoDelete: - TQAsciiDict TQCache TQDataTable TQDict TQIconFactory TQIntDict TQNetworkProtocol TQPtrCollection TQPtrDict TQPtrList TQPtrQueue TQPtrStack TQPtrVector
  • setAutoEdit: + TQAsciiDict TQCache TQDataTable TQDict TQIconFactory TQIntDict TQNetworkProtocol TQPtrCollection TQPtrDict TQPtrList TQPtrQueue TQPtrStack TQPtrVector
  • setAutoEdit: TQDataBrowser TQDataTable
  • setAutoFormatting: TQTextEdit
  • setAutoMask: TQWidget
  • setAutoRaise: @@ -2578,7 +2578,7 @@ sRect: TQTable
  • setCurrentFont: TQTextEdit
  • setCurrentIndex: TQToolBox
  • setCurrentItem: - TQComboBox TQComboTableItem TQIconView TQListBox TQListView TQToolBox
  • setCurrentPage: + TQComboBox TQComboTableItem TQIconView TQListBox TQListView TQToolBox
  • setCurrentPage: TQTabWidget
  • setCurrentTab: TQTabBar
  • setCurrentText: TQComboBox
  • setCursor: @@ -2590,7 +2590,7 @@ sRect: TQColorDialog
  • setCustomHighlighting: TQListBoxItem
  • setDTDHandler: TQXmlReader
  • setData: - TQClipboard TQCustomEvent TQDomCharacterData TQDomProcessingInstruction TQIconDragItem TQMimeSourceFactory TQPicture TQXmlInputSource
  • setDatabaseName: + TQClipboard TQCustomEvent TQDomCharacterData TQDomProcessingInstruction TQIconDragItem TQMimeSourceFactory TQPicture TQXmlInputSource
  • setDatabaseName: TQSqlDatabase
  • setDatabaseText: TQSqlError
  • setDate: TQDateEdit TQDateTime
  • setDateFormat: @@ -2640,9 +2640,9 @@ sRect: TQApplication
  • setDown: TQButton TQCheckBox TQPushButton TQRadioButton
  • setDragAutoScroll: TQScrollView
  • setDragEnabled: - TQIconViewItem TQLineEdit TQListViewItem TQTable
  • setDriverText: + TQIconViewItem TQLineEdit TQListViewItem TQTable
  • setDriverText: TQSqlError
  • setDropEnabled: - TQIconViewItem TQListViewItem
  • setDuplicatesEnabled: + TQIconViewItem TQListViewItem
  • setDuplicatesEnabled: TQComboBox
  • setEchoMode: TQLineEdit
  • setEditMode: TQTable
  • setEditText: @@ -2717,8 +2717,8 @@ sRect: TQApplication
  • setGlobalStrut: TQApplication
  • setGloballyEnabled: TQToolTip
  • setGridX: - TQIconView
  • setGridY: - TQIconView
  • setGroup: + TQIconView
  • setGridY: + TQIconView
  • setGroup: TQUrlInfo
  • setHBarGeometry: TQScrollView
  • setHMS: TQTime
  • setHScrollBarMode: @@ -2742,7 +2742,7 @@ sRect: TQMessageBox
  • setIconProvider: TQFileDialog
  • setIconSet: TQAction TQPushButton TQTab TQToolButton
  • setIconSize: - TQIconSet
  • setIconText: + TQIconSet
  • setIconText: TQWidget
  • setId: TQMenuData
  • setIdentifier: TQTab
  • setImage: @@ -2767,14 +2767,14 @@ sRect: TQToolBox
  • setItemMargin: TQListView
  • setItemParameter: TQMenuData TQPopupMenu
  • setItemRect: - TQIconViewItem
  • setItemTextBackground: - TQIconView
  • setItemTextPos: - TQIconView
  • setItemToolTip: + TQIconViewItem
  • setItemTextBackground: + TQIconView
  • setItemTextPos: + TQIconView
  • setItemToolTip: TQToolBox
  • setItemVisible: TQMenuBar TQMenuData TQPopupMenu
  • setItemsMovable: - TQIconView
  • setJoinStyle: + TQIconView
  • setJoinStyle: TQPen
  • setKey: - TQIconViewItem
  • setKeyCompression: + TQIconViewItem
  • setKeyCompression: TQWidget
  • setKeyboardFilter: TQWSServer
  • setKeyboardHandler: TQWSServer
  • setLabel: @@ -2809,8 +2809,8 @@ sRect: TQWMatrix
  • setMaxCost: TQAsciiCache TQCache TQIntCache
  • setMaxCount: TQComboBox
  • setMaxItemTextLength: - TQIconView
  • setMaxItemWidth: - TQIconView
  • setMaxLength: + TQIconView
  • setMaxItemWidth: + TQIconView
  • setMaxLength: TQLineEdit
  • setMaxLogLines: TQTextEdit
  • setMaxValue: TQDateEdit TQDial TQRangeControl TQScrollBar TQSlider TQSpinBox TQTimeEdit
  • setMaxWindowRect: @@ -2899,12 +2899,12 @@ sRect: TQCanvasPolygonalItem TQPainter
  • setPercentageVisible: TQProgressBar
  • setPermissions: TQUrlInfo
  • setPicture: - TQIconViewItem TQLabel
  • setPixel: + TQIconViewItem TQLabel
  • setPixel: TQImage
  • setPixelAlignment: TQPNGImagePacker
  • setPixelSize: TQFont
  • setPixmap: - TQBrush TQButton TQCheckBox TQClipboard TQDragObject TQIconSet TQIconViewItem TQLabel TQListViewItem TQMimeSourceFactory TQPushButton TQRadioButton TQSplashScreen TQTable TQTableItem
  • setPixmapRect: - TQIconViewItem
  • setPlane: + TQBrush TQButton TQCheckBox TQClipboard TQDragObject TQIconSet TQIconViewItem TQLabel TQListViewItem TQMimeSourceFactory TQPushButton TQRadioButton TQSplashScreen TQTable TQTableItem
  • setPixmapRect: + TQIconViewItem
  • setPlane: TQGLFormat
  • setPoint: TQDropEvent TQPointArray
  • setPointSize: TQFont TQTextEdit
  • setPointSizeFloat: @@ -2947,11 +2947,11 @@ sRect: TQRect TQTab
  • setRef: TQUrl
  • setRegExp: TQRegExpValidator
  • setRenameEnabled: - TQIconViewItem TQListViewItem
  • setReplaceable: + TQIconViewItem TQListViewItem
  • setReplaceable: TQTableItem
  • setRequest: TQHttpRequestHeader
  • setResizeEnabled: TQDockWindow TQHeader
  • setResizeMode: - TQIconView TQLayout TQListView TQSplitter
  • setResizePolicy: + TQIconView TQLayout TQListView TQSplitter
  • setResizePolicy: TQScrollView
  • setResolution: TQPrinter
  • setRestartCommand: TQSessionManager
  • setRestartHint: @@ -2979,13 +2979,13 @@ sRect: TQTimeEdit
  • setSegmentStyle: TQLCDNumber
  • setSelect: TQSqlResult
  • setSelectable: - TQIconViewItem TQListBoxItem TQListViewItem
  • setSelected: - TQAccessibleInterface TQCanvasItem TQIconView TQIconViewItem TQListBox TQListView TQListViewItem
  • setSelectedFilter: + TQIconViewItem TQListBoxItem TQListViewItem
  • setSelected: + TQAccessibleInterface TQCanvasItem TQIconView TQIconViewItem TQListBox TQListView TQListViewItem
  • setSelectedFilter: TQFileDialog
  • setSelection: TQFileDialog TQLineEdit TQTextEdit
  • setSelectionAnchor: TQListView
  • setSelectionAttributes: TQTextEdit
  • setSelectionMode: - TQIconView TQListBox TQListView TQTable
  • setSelfNesting: + TQIconView TQListBox TQListView TQTable
  • setSelfNesting: TQStyleSheetItem
  • setSendBufferSize: TQSocketDevice
  • setSeparator: TQDateEdit TQTimeEdit
  • setSequence: @@ -2994,7 +2994,7 @@ sRect: TQTable
  • setShowHiddenFiles: TQFileDialog
  • setShowSortIndicator: TQListView
  • setShowToolTips: - TQIconView TQListView
  • setShown: + TQIconView TQListView
  • setShown: TQWidget
  • setSize: TQCanvasEllipse TQCanvasRectangle TQDataTable TQImageConsumer TQRect TQUrlInfo
  • setSizeGripEnabled: TQDialog TQStatusBar
  • setSizeIncrement: @@ -3010,9 +3010,9 @@ sRect: TQListView
  • setSortIndicator: TQHeader
  • setSortOrder: TQListView
  • setSorting: - TQDir TQIconView TQListView TQTable
  • setSource: + TQDir TQIconView TQListView TQTable
  • setSource: TQTextBrowser
  • setSpacing: - TQGrid TQHBox TQIconView TQLayout
  • setSpan: + TQGrid TQHBox TQIconView TQLayout
  • setSpan: TQTableItem
  • setSpecialValueText: TQSpinBox
  • setSpeed: TQMovie
  • setSqlCursor: @@ -3055,12 +3055,12 @@ sRect: TQPainter
  • setTabToolTip: TQTabWidget
  • setTagName: TQDomElement
  • setText: - TQAccessibleInterface TQAction TQButton TQCanvasText TQCheckBox TQClipboard TQIconViewItem TQImage TQLabel TQLineEdit TQListBoxItem TQListViewItem TQMessageBox TQMimeSourceFactory TQPushButton TQRadioButton TQTab TQTable TQTableItem TQTextDrag TQTextEdit
  • setTextFlags: + TQAccessibleInterface TQAction TQButton TQCanvasText TQCheckBox TQClipboard TQIconViewItem TQImage TQLabel TQLineEdit TQListBoxItem TQListViewItem TQMessageBox TQMimeSourceFactory TQPushButton TQRadioButton TQTab TQTable TQTableItem TQTextDrag TQTextEdit
  • setTextFlags: TQCanvasText
  • setTextFormat: TQLabel TQMessageBox TQTextEdit
  • setTextLabel: TQToolButton
  • setTextPosition: TQToolButton
  • setTextRect: - TQIconViewItem
  • setTickInterval: + TQIconViewItem
  • setTickInterval: TQSlider
  • setTickmarks: TQSlider
  • setTile: TQCanvas
  • setTiles: @@ -3140,7 +3140,7 @@ sRect: TQWidget
  • setWindowState: TQWidget
  • setWordWrap: TQTableItem TQTextEdit
  • setWordWrapIconText: - TQIconView
  • setWorkingDirectory: + TQIconView
  • setWorkingDirectory: TQProcess
  • setWorldMatrix: TQCanvasView TQPainter
  • setWorldXForm: TQPainter
  • setWrapColumnOrWidth: @@ -3179,7 +3179,7 @@ sRect: TQTable
  • showSortIndicator: TQListView
  • showTip: TQToolTipGroup
  • showToolTips: - TQIconView TQListView
  • shutdownDevice: + TQIconView TQListView
  • shutdownDevice: TQScreen
  • signal: TQAxBase
  • signalNames: TQMetaObject
  • signalsBlocked: @@ -3187,7 +3187,7 @@ sRect: TQTextCodec
  • simplifyWhiteSpace: TQCString TQString
  • singleShot: TQTimer
  • size: - TQAsciiCache TQAsciiDict TQBitArray TQCache TQCanvas TQCanvasRectangle TQDict TQDirectPainter TQFile TQFileInfo TQFontMetrics TQGLColormap TQIODevice TQIconViewItem TQImage TQIntCache TQIntDict TQMap TQMemArray TQPicture TQPixmap TQPtrDict TQPtrVector TQRect TQResizeEvent TQSocket TQSqlQuery TQSqlResult TQUrlInfo TQValueList TQValueVector TQWidget
  • sizeChange: + TQAsciiCache TQAsciiDict TQBitArray TQCache TQCanvas TQCanvasRectangle TQDict TQDirectPainter TQFile TQFileInfo TQFontMetrics TQGLColormap TQIODevice TQIconViewItem TQImage TQIntCache TQIntDict TQMap TQMemArray TQPicture TQPixmap TQPtrDict TQPtrVector TQRect TQResizeEvent TQSocket TQSqlQuery TQSqlResult TQUrlInfo TQValueList TQValueVector TQWidget
  • sizeChange: TQHeader
  • sizeFromContents: TQStyle
  • sizeHint: TQBoxLayout TQCanvasView TQCustomMenuItem TQGridLayout TQLayoutItem TQLineEdit TQProgressDialog TQSizeGrip TQSpacerItem TQTableItem TQWidget TQWidgetItem
  • sizeIncrement: @@ -3204,28 +3204,28 @@ sRect: TQScrollBar TQSlider
  • sliderStart: TQScrollBar TQSlider
  • slotNames: TQMetaObject
  • slotUpdate: - TQIconView
  • smallDecimalPoint: + TQIconView
  • smallDecimalPoint: TQLCDNumber
  • smoothScale: TQImage
  • smoothSizes: TQFontDatabase
  • socket: TQServerSocket TQSocket TQSocketDevice TQSocketNotifier
  • socketDevice: TQServerSocket TQSocket
  • sort: - TQDataBrowser TQDataTable TQIconView TQListBox TQListView TQListViewItem TQMemArray TQPtrList TQPtrVector TQSqlCursor TQStringList
  • sortAscending: + TQDataBrowser TQDataTable TQIconView TQListBox TQListView TQListViewItem TQMemArray TQPtrList TQPtrVector TQSqlCursor TQStringList
  • sortAscending: TQDataTable
  • sortChildItems: TQListViewItem
  • sortColumn: TQDataTable TQListView TQTable
  • sortDescending: TQDataTable
  • sortDirection: - TQIconView
  • sortIndicatorOrder: + TQIconView
  • sortIndicatorOrder: TQHeader
  • sortIndicatorSection: TQHeader
  • sortOrder: TQListView
  • sorting: - TQDir TQIconView TQTable
  • source: + TQDir TQIconView TQTable
  • source: TQDragObject TQDropEvent TQTextBrowser
  • sourceChanged: TQTextBrowser
  • sourceText: TQTranslatorMessage
  • spacePressed: TQListView
  • spacerItem: TQLayoutItem
  • spacing: - TQIconView TQLayout
  • specialValueText: + TQIconView TQLayout
  • specialValueText: TQSpinBox
  • specified: TQDomAttr
  • speed: TQMovie
  • split: @@ -3243,7 +3243,7 @@ sRect: TQXmlLexicalHandler
  • startDTD: TQXmlLexicalHandler
  • startDocument: TQXmlContentHandler
  • startDrag: - TQIconView TQListView TQTable
  • startDragDistance: + TQIconView TQListView TQTable
  • startDragDistance: TQApplication
  • startDragTime: TQApplication
  • startElement: TQXmlContentHandler
  • startEntity: @@ -3344,14 +3344,14 @@ tab: TQAsciiCache TQAsciiDict TQCache TQDict TQIntCache TQIntDict TQPtrDict TQPtrList TQPtrVector
  • takeCurrent: TQGLayoutIterator TQLayoutIterator
  • takeDefaultFactory: TQMimeSourceFactory
  • takeItem: - TQIconView TQListBox TQListView TQListViewItem TQTable
  • takeNode: + TQIconView TQListBox TQListView TQListViewItem TQTable
  • takeNode: TQPtrList
  • target: TQDomProcessingInstruction TQDragObject
  • terminate: TQThread
  • testBit: TQBitArray
  • testOption: TQGLFormat
  • testWFlags: TQWidget
  • text: - TQAccessibleInterface TQAction TQButton TQCanvasText TQCheckBox TQCheckListItem TQClipboard TQColorGroup TQComboBox TQComboTableItem TQDataTable TQDomElement TQIMEvent TQIconViewItem TQImage TQKeyEvent TQLabel TQLineEdit TQListBox TQListBoxItem TQListViewItem TQMenuData TQMessageBox TQPopupMenu TQPushButton TQRadioButton TQSpinBox TQSqlError TQTab TQTable TQTableItem TQTextEdit TQWhatsThis
  • textChanged: + TQAccessibleInterface TQAction TQButton TQCanvasText TQCheckBox TQCheckListItem TQClipboard TQColorGroup TQComboBox TQComboTableItem TQDataTable TQDomElement TQIMEvent TQIconViewItem TQImage TQKeyEvent TQLabel TQLineEdit TQListBox TQListBoxItem TQListViewItem TQMenuData TQMessageBox TQPopupMenu TQPushButton TQRadioButton TQSpinBox TQSqlError TQTab TQTable TQTableItem TQTextEdit TQWhatsThis
  • textChanged: TQComboBox TQLineEdit TQSpinBox TQTextEdit
  • textCursor: TQTextEdit
  • textEdit: TQSyntaxHighlighter
  • textFlags: @@ -3364,7 +3364,7 @@ tab: TQMultiLineEdit
  • textList: TQImage
  • textPosition: TQToolButton
  • textRect: - TQIconViewItem
  • texts: + TQIconViewItem
  • texts: TQDns
  • tickInterval: TQSlider
  • tickmarks: TQSlider
  • tile: @@ -3610,7 +3610,7 @@ wait: TQMacStyle
  • widgetToField: TQSqlForm
  • widgets: TQWidgetFactory
  • width: - TQCanvas TQCanvasEllipse TQCanvasRectangle TQCanvasSprite TQDirectPainter TQFontMetrics TQIconViewItem TQImage TQListBoxItem TQListBoxPixmap TQListBoxText TQListViewItem TQPaintDeviceMetrics TQPen TQPixmap TQRect TQScreen TQSimpleRichText TQSize TQTextStream TQWidget
  • widthChanged: + TQCanvas TQCanvasEllipse TQCanvasRectangle TQCanvasSprite TQDirectPainter TQFontMetrics TQIconViewItem TQImage TQListBoxItem TQListBoxPixmap TQListBoxText TQListViewItem TQPaintDeviceMetrics TQPen TQPixmap TQRect TQScreen TQSimpleRichText TQSize TQTextStream TQWidget
  • widthChanged: TQListViewItem
  • widthMM: TQPaintDeviceMetrics
  • widthUsed: TQSimpleRichText
  • wildcard: @@ -3631,7 +3631,7 @@ wait: TQWidget
  • windowState: TQWidget
  • wordWrap: TQTableItem TQTextEdit
  • wordWrapIconText: - TQIconView
  • workingDirectory: + TQIconView
  • workingDirectory: TQProcess
  • worldMatrix: TQCanvasView TQPainter
  • wrapColumnOrWidth: TQTextEdit
  • wrapPolicy: @@ -3649,7 +3649,7 @@ wait: TQProcess
  • wroteToStdin: TQProcess
  • x: - TQCanvasItem TQContextMenuEvent TQIconViewItem TQMouseEvent TQPoint TQRect TQTabletEvent TQWheelEvent TQWidget
  • x11AppCells: + TQCanvasItem TQContextMenuEvent TQIconViewItem TQMouseEvent TQPoint TQRect TQTabletEvent TQWheelEvent TQWidget
  • x11AppCells: TQPaintDevice
  • x11AppColormap: TQPaintDevice
  • x11AppDefaultColormap: TQPaintDevice
  • x11AppDefaultVisual: @@ -3681,7 +3681,7 @@ x: TQCanvasItem
  • xtWidget: TQXtWidget
  • y: - TQCanvasItem TQContextMenuEvent TQIconViewItem TQMouseEvent TQPoint TQRect TQTabletEvent TQWheelEvent TQWidget
  • yOffset: + TQCanvasItem TQContextMenuEvent TQIconViewItem TQMouseEvent TQPoint TQRect TQTabletEvent TQWheelEvent TQWidget
  • yOffset: TQDirectPainter
  • yTilt: TQTabletEvent
  • yVelocity: TQCanvasItem
  • year: diff --git a/doc/html/graphics.html b/doc/html/graphics.html index 7b0fe30e..baba6b33 100644 --- a/doc/html/graphics.html +++ b/doc/html/graphics.html @@ -67,7 +67,7 @@ coordinate system. TQGLContextEncapsulates an OpenGL rendering context TQGLFormatThe display format of an OpenGL rendering context TQGLWidgetWidget for rendering OpenGL graphics -TQIconSetSet of icons with different styles and sizes +TQIconSetSet of icons with different styles and sizes TQImageHardware-independent pixmap representation with direct access to the pixel data TQImageConsumerAbstraction used by TQImageDecoder TQImageDecoderIncremental image decoder for all supported image formats diff --git a/doc/html/headerfilesynonyms b/doc/html/headerfilesynonyms index 6e514593..bc5db6a6 100644 --- a/doc/html/headerfilesynonyms +++ b/doc/html/headerfilesynonyms @@ -65,7 +65,7 @@ qpaintevent.h ntqevent.h qmoveevent.h ntqevent.h qresizeevent.h ntqevent.h qcloseevent.h ntqevent.h -qicondragevent.h ntqevent.h +tqicondragevent.h ntqevent.h qshowevent.h ntqevent.h qhideevent.h ntqevent.h qcontextmenuevent.h ntqevent.h @@ -86,10 +86,10 @@ qglwidget.h ntqgl.h qhttpheader.h ntqhttp.h qhttpresponseheader.h ntqhttp.h qhttprequestheader.h ntqhttp.h -qiconfactory.h ntqiconset.h -qicondragitem.h ntqiconview.h -qicondrag.h ntqiconview.h -qiconviewitem.h ntqiconview.h +tqiconfactory.h tqiconset.h +tqicondragitem.h tqiconview.h +tqicondrag.h tqiconview.h +tqiconviewitem.h tqiconview.h tqimageio.h tqimage.h qintcacheiterator.h ntqintcache.h qintdictiterator.h ntqintdict.h diff --git a/doc/html/headers.html b/doc/html/headers.html index 524c78dd..0b2540ee 100644 --- a/doc/html/headers.html +++ b/doc/html/headers.html @@ -124,8 +124,8 @@ body { background: #ffffff; color: black; }
  • ntqhgroupbox.h
  • ntqhostaddress.h
  • ntqhttp.h -
  • ntqiconset.h -
  • ntqiconview.h +
  • tqiconset.h +
  • tqiconview.h
  • tqimage.h
  • tqimageformatplugin.h
  • ntqinputdialog.h diff --git a/doc/html/helpviewer-example.html b/doc/html/helpviewer-example.html index 52281f18..44bf2de7 100644 --- a/doc/html/helpviewer-example.html +++ b/doc/html/helpviewer-example.html @@ -122,7 +122,7 @@ private: #include <ntqmenubar.h> #include <ntqtoolbar.h> #include <ntqtoolbutton.h> -#include <ntqiconset.h> +#include <tqiconset.h> #include <ntqfile.h> #include <tqtextstream.h> #include <ntqstylesheet.h> @@ -177,9 +177,9 @@ private: file->insertItem( tr("E&xit"), tqApp, TQ_SLOT( closeAllWindows() ), CTRL+Key_X ); // The same three icons are used twice each. - TQIconSet icon_back( TQPixmap("back.xpm") ); - TQIconSet icon_forward( TQPixmap("forward.xpm") ); - TQIconSet icon_home( TQPixmap("home.xpm") ); + TQIconSet icon_back( TQPixmap("back.xpm") ); + TQIconSet icon_forward( TQPixmap("forward.xpm") ); + TQIconSet icon_home( TQPixmap("home.xpm") ); TQPopupMenu* go = new TQPopupMenu( this ); backwardId = go->insertItem( icon_back, diff --git a/doc/html/hierarchy.html b/doc/html/hierarchy.html index eda73d45..7b62374f 100644 --- a/doc/html/hierarchy.html +++ b/doc/html/hierarchy.html @@ -117,9 +117,9 @@ classes in the TQt API.
  • TQHttpRequestHeader
  • TQHttpResponseHeader -
  • TQIconDragItem -
  • TQIconFactory -
  • TQIconSet +
  • TQIconDragItem +
  • TQIconFactory +
  • TQIconSet
  • TQImage
  • TQImageConsumer
  • TQImageDecoder @@ -286,7 +286,7 @@ classes in the TQt API.
  • TQFocusEvent
  • TQHideEvent -
  • TQIconDragEvent +
  • TQIconDragEvent
  • TQIMEvent
  • TQKeyEvent
  • TQMouseEvent @@ -298,7 +298,7 @@ classes in the TQt API.
  • TQTimerEvent
  • TQWheelEvent -
  • TQIconViewItem +
  • TQIconViewItem
  • TQKeySequence
  • TQListViewItem