diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-24 19:37:05 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-24 19:37:05 +0900 |
commit | 0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc (patch) | |
tree | be5eda50c23980aa4b44de1e8b2e209c6c02d2d1 /doc/html/popup-example.html | |
parent | 1e9fa8e06de5da7fcc268e9cccb2d6b21c5f53a3 (diff) | |
download | tqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.tar.gz tqt3-0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc.zip |
Rename text class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/popup-example.html')
-rw-r--r-- | doc/html/popup-example.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/popup-example.html b/doc/html/popup-example.html index 949f29a33..7d7c14d32 100644 --- a/doc/html/popup-example.html +++ b/doc/html/popup-example.html @@ -53,11 +53,11 @@ pop up. #ifndef POPUP_H #define POPUP_H -#include <<a href="qlabel-h.html">ntqlabel.h</a>> +#include <<a href="tqlabel-h.html">tqlabel.h</a>> #include <<a href="qpushbutton-h.html">ntqpushbutton.h</a>> #include <<a href="qlineedit-h.html">ntqlineedit.h</a>> -class FancyPopup : public <a href="ntqlabel.html">TQLabel</a> +class FancyPopup : public <a href="tqlabel.html">TQLabel</a> { <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> public: @@ -115,9 +115,9 @@ private: #include <<a href="qlayout-h.html">ntqlayout.h</a>> <a name="f468"></a>FancyPopup::FancyPopup( <a href="tqwidget.html">TQWidget</a>* parent, const char* name ): - <a href="ntqlabel.html">TQLabel</a>( parent, name, WType_Popup ){ + <a href="tqlabel.html">TQLabel</a>( parent, name, WType_Popup ){ <a href="ntqframe.html#setFrameStyle">setFrameStyle</a>( WinPanel|Raised ); - <a href="ntqlabel.html#setAlignment">setAlignment</a>( AlignCenter ); + <a href="tqlabel.html#setAlignment">setAlignment</a>( AlignCenter ); <a href="tqwidget.html#resize">resize</a>(150,100); moves = 0; <a href="tqwidget.html#setMouseTracking">setMouseTracking</a>( TRUE ); @@ -129,7 +129,7 @@ private: <a name="x1611"></a> s.<a href="tqstring.html#sprintf">sprintf</a>("%d/%d", e-><a href="qmouseevent.html#pos">pos</a>().x(), e-><a href="qmouseevent.html#pos">pos</a>().y()); <a name="x1612"></a> if (e-><a href="qmouseevent.html#state">state</a>() & TQMouseEvent::LeftButton) s += " (down)"; - <a href="ntqlabel.html#setText">setText</a>(s); + <a href="tqlabel.html#setText">setText</a>(s); } <a name="x1621"></a>void FancyPopup::<a href="tqwidget.html#mouseReleaseEvent">mouseReleaseEvent</a>( <a href="qmouseevent.html">TQMouseEvent</a> * e){ |