diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-24 20:19:50 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-29 22:23:35 +0900 |
commit | d35eedcd87d59e716c6d49bbb6b634ef1a7660c5 (patch) | |
tree | 204d752457acf6403c99f3928f02b612ff14d178 /doc/html/customstyles.html | |
parent | ddce1c91f8582885497b463b24bac59f6fdfdf63 (diff) | |
download | tqt3-d35eedcd87d59e716c6d49bbb6b634ef1a7660c5.tar.gz tqt3-d35eedcd87d59e716c6d49bbb6b634ef1a7660c5.zip |
Rename style nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/customstyles.html')
-rw-r--r-- | doc/html/customstyles.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/customstyles.html b/doc/html/customstyles.html index da5f4d49b..9bca441c7 100644 --- a/doc/html/customstyles.html +++ b/doc/html/customstyles.html @@ -54,9 +54,9 @@ applications. <a name="1-1"></a><p> The first step is to pick one of the base styles provided with TQt to build your custom style from. The choice will depend on what look and feel you are trying to achieve. We recommend that you choose from the -<a href="ntqwindowsstyle.html">TQWindowsStyle</a> derived classes or the <a href="ntqmotifstyle.html">TQMotifStyle</a> derived classes. +<a href="tqwindowsstyle.html">TQWindowsStyle</a> derived classes or the <a href="tqmotifstyle.html">TQMotifStyle</a> derived classes. These are the two base look and feel classes in the TQt style engine. -Inheriting directly from <a href="ntqcommonstyle.html">TQCommonStyle</a> is also an option if you want to +Inheriting directly from <a href="tqcommonstyle.html">TQCommonStyle</a> is also an option if you want to start almost from scratch when implementing your style. In this simple example we will inherit from TQWindowsStyle. <p> <h3> 2. Re-implement the necessary functions in your derived class. @@ -71,9 +71,9 @@ PrimitiveElements that are drawn by the drawPrimitive() function, so we need to re-implement that function. We need the following class declaration: <p> <pre> -#include <<a href="qwindowsstyle-h.html">ntqwindowsstyle.h</a>> +#include <<a href="tqwindowsstyle-h.html">tqwindowsstyle.h</a>> -class CustomStyle : public <a href="ntqwindowsstyle.html">TQWindowsStyle</a> { +class CustomStyle : public <a href="tqwindowsstyle.html">TQWindowsStyle</a> { <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> public: CustomStyle(); |