diff options
author | Michele Calgaro <[email protected]> | 2024-05-23 14:04:45 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-05-27 16:08:54 +0900 |
commit | 04913ce7a46fd027856e83a96205fdc388742a19 (patch) | |
tree | a04a117317c14854a6b91072658ba0eb3ad8b3fc /doc/html/themes-example.html | |
parent | c11c0f228b65f7471a26513ef8dbde413e75f8fa (diff) | |
download | tqt3-04913ce7a46fd027856e83a96205fdc388742a19.tar.gz tqt3-04913ce7a46fd027856e83a96205fdc388742a19.zip |
Rename ntqobject*.h and qobject*.cpp to tqobject*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/html/themes-example.html')
-rw-r--r-- | doc/html/themes-example.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/html/themes-example.html b/doc/html/themes-example.html index 9d0f20900..0c4d0c11e 100644 --- a/doc/html/themes-example.html +++ b/doc/html/themes-example.html @@ -1026,9 +1026,9 @@ void NorwegianWoodStyle::<a href="ntqstyle.html#polish">polish</a>( <a href="ntq // benefit from the nice pixmaps in the color group. <a name="x253"></a> if ( !w-><a href="ntqwidget.html#isTopLevel">isTopLevel</a>() ) { -<a name="x211"></a> if ( w-><a href="ntqobject.html#inherits">inherits</a>("TQPushButton") - || w-><a href="ntqobject.html#inherits">inherits</a>("TQToolButton") - || w-><a href="ntqobject.html#inherits">inherits</a>("TQComboBox") ) { +<a name="x211"></a> if ( w-><a href="tqobject.html#inherits">inherits</a>("TQPushButton") + || w-><a href="tqobject.html#inherits">inherits</a>("TQToolButton") + || w-><a href="tqobject.html#inherits">inherits</a>("TQComboBox") ) { <a name="x255"></a> w-><a href="ntqwidget.html#setAutoMask">setAutoMask</a>( TRUE ); return; } @@ -1043,9 +1043,9 @@ void NorwegianWoodStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href= // some to translate background mode in order to get the full // benefit from the nice pixmaps in the color group. if ( !w-><a href="ntqwidget.html#isTopLevel">isTopLevel</a>() ) { - if ( w-><a href="ntqobject.html#inherits">inherits</a>("TQPushButton") - || w-><a href="ntqobject.html#inherits">inherits</a>("TQToolButton") - || w-><a href="ntqobject.html#inherits">inherits</a>("TQComboBox") ) { + if ( w-><a href="tqobject.html#inherits">inherits</a>("TQPushButton") + || w-><a href="tqobject.html#inherits">inherits</a>("TQToolButton") + || w-><a href="tqobject.html#inherits">inherits</a>("TQComboBox") ) { w-><a href="ntqwidget.html#setAutoMask">setAutoMask</a>( FALSE ); return; } @@ -1750,7 +1750,7 @@ void MetalStyle::<a href="ntqstyle.html#polish">polish</a>( <a href="ntqwidget.h // some to translate background mode in order to get the full // benefit from the nice pixmaps in the color group. -<a name="x282"></a> if (w-><a href="ntqobject.html#inherits">inherits</a>("TQPushButton")){ +<a name="x282"></a> if (w-><a href="tqobject.html#inherits">inherits</a>("TQPushButton")){ <a name="x308"></a> w-><a href="ntqwidget.html#setBackgroundMode">setBackgroundMode</a>( TQWidget::NoBackground ); return; } @@ -1768,7 +1768,7 @@ void MetalStyle::<a href="ntqstyle.html#unPolish">unPolish</a>( <a href="ntqwidg // some to translate background mode in order to get the full // benefit from the nice pixmaps in the color group. - if (w-><a href="ntqobject.html#inherits">inherits</a>("TQPushButton")){ + if (w-><a href="tqobject.html#inherits">inherits</a>("TQPushButton")){ w-><a href="ntqwidget.html#setBackgroundMode">setBackgroundMode</a>( TQWidget::PaletteButton ); return; } @@ -2224,7 +2224,7 @@ private: <a href="qactiongroup.html">TQActionGroup</a> *ag = new <a href="qactiongroup.html">TQActionGroup</a>( this, 0 ); <a name="x320"></a> ag-><a href="qactiongroup.html#setExclusive">setExclusive</a>( TRUE ); <a href="ntqsignalmapper.html">TQSignalMapper</a> *styleMapper = new <a href="ntqsignalmapper.html">TQSignalMapper</a>( this ); -<a name="x335"></a> <a href="ntqobject.html#connect">connect</a>( styleMapper, TQ_SIGNAL( <a href="ntqsignalmapper.html#mapped">mapped</a>( const <a href="ntqstring.html">TQString</a>& ) ), this, TQ_SLOT( makeStyle( const <a href="ntqstring.html">TQString</a>& ) ) ); +<a name="x335"></a> <a href="tqobject.html#connect">connect</a>( styleMapper, TQ_SIGNAL( <a href="ntqsignalmapper.html#mapped">mapped</a>( const <a href="ntqstring.html">TQString</a>& ) ), this, TQ_SLOT( makeStyle( const <a href="ntqstring.html">TQString</a>& ) ) ); <a name="x342"></a> <a href="ntqstringlist.html">TQStringList</a> list = TQStyleFactory::<a href="ntqstylefactory.html#keys">keys</a>(); <a name="x341"></a> list.<a href="ntqstringlist.html#sort">sort</a>(); #ifndef TQT_NO_STYLE_WINDOWS @@ -2248,7 +2248,7 @@ private: styleAccel = "&"+styleAccel; } <a name="x319"></a> <a href="ntqaction.html">TQAction</a> *a = new <a href="ntqaction.html">TQAction</a>( styleStr, TQIconSet(), styleAccel, 0, ag, 0, ag-><a href="qactiongroup.html#isExclusive">isExclusive</a>() ); -<a name="x334"></a><a name="x316"></a> <a href="ntqobject.html#connect">connect</a>( a, TQ_SIGNAL( <a href="ntqaction.html#activated">activated</a>() ), styleMapper, TQ_SLOT(<a href="ntqsignalmapper.html#map">map</a>()) ); +<a name="x334"></a><a name="x316"></a> <a href="tqobject.html#connect">connect</a>( a, TQ_SIGNAL( <a href="ntqaction.html#activated">activated</a>() ), styleMapper, TQ_SLOT(<a href="ntqsignalmapper.html#map">map</a>()) ); <a name="x336"></a><a name="x317"></a> styleMapper-><a href="ntqsignalmapper.html#setMapping">setMapping</a>( a, a-><a href="ntqaction.html#text">text</a>() ); } <a name="x318"></a> ag-><a href="qactiongroup.html#addTo">addTo</a>(style); |