diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-29 12:43:23 +0900 | 
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-29 12:43:23 +0900 | 
| commit | fef846914f8db6dc117e206ef913d519bf6bb33e (patch) | |
| tree | d6567b31f7f22d0c8c66eec947dff1960efa25ac /examples/demo/textdrawing | |
| parent | 8ef4ea451dd81dd66b34ed31aaa631f6df24a192 (diff) | |
| download | tqt-fef84691.tar.gz tqt-fef84691.zip | |
Rename basic widget nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'examples/demo/textdrawing')
| -rw-r--r-- | examples/demo/textdrawing/example.html | 10 | ||||
| -rw-r--r-- | examples/demo/textdrawing/helpwindow.cpp | 4 | ||||
| -rw-r--r-- | examples/demo/textdrawing/textedit.cpp | 4 | 
3 files changed, 9 insertions, 9 deletions
| diff --git a/examples/demo/textdrawing/example.html b/examples/demo/textdrawing/example.html index a4fe80929..fc48cca7b 100644 --- a/examples/demo/textdrawing/example.html +++ b/examples/demo/textdrawing/example.html @@ -96,14 +96,14 @@ corner (both lines being flush with the right side of the label):  widget. For this use, TQLabel provides a handy mechanism for adding  an accelerator key (see <a href="ntqaccel.html">TQAccel</a>) that will set the keyboard focus to  the other widget (called the TQLabel's "buddy"). Example: -<p><pre>     <a href="ntqlineedit.html">TQLineEdit</a>* phoneEdit = new <a href="ntqlineedit.html">TQLineEdit</a>( this, "phoneEdit" ); +<p><pre>     <a href="tqlineedit.html">TQLineEdit</a>* phoneEdit = new <a href="tqlineedit.html">TQLineEdit</a>( this, "phoneEdit" );       <a href="tqlabel.html">TQLabel</a>* phoneLabel = new <a href="tqlabel.html">TQLabel</a>( phoneEdit, "&Phone:", this, "phoneLabel" );  </pre>  <p>In this example, keyboard focus is transferred to the label's buddy -(the <a href="ntqlineedit.html">TQLineEdit</a>) when the user presses <dfn>Alt-P.</dfn> You can also +(the <a href="tqlineedit.html">TQLineEdit</a>) when the user presses <dfn>Alt-P.</dfn> You can also  use the <a href="#191701">setBuddy</a>() function to accomplish the same.  <p> -<p>See also  <a href="ntqlineedit.html">TQLineEdit</a>, <a href="tqtextview.html">TQTextView</a>, <a href="tqpixmap.html">TQPixmap</a>, <a href="tqmovie.html">TQMovie</a> and <a href="guibooks.html#fowler">GUI Design Handbook: Label</a> +<p>See also  <a href="tqlineedit.html">TQLineEdit</a>, <a href="tqtextview.html">TQTextView</a>, <a href="tqpixmap.html">TQPixmap</a>, <a href="tqmovie.html">TQMovie</a> and <a href="guibooks.html#fowler">GUI Design Handbook: Label</a>  <p>Examples:   <a href="cursor-cursor-cpp.html#TQLabel">cursor/cursor.cpp</a>   <a href="layout-layout-cpp.html#TQLabel">layout/layout.cpp</a> @@ -223,10 +223,10 @@ alignment flag is turned on; see <a href="#1f406e">setAlignment</a>()).  <p>In a dialog, you might create two data entry widgets and a label for  each, and set up the geometry layout so each label is just to the  left of its data entry widget (its "buddy"), somewhat like this: -<p><pre>    <a href="ntqlineedit.html">TQLineEdit</a> *nameEd  = new <a href="ntqlineedit.html">TQLineEdit</a>( this ); +<p><pre>    <a href="tqlineedit.html">TQLineEdit</a> *nameEd  = new <a href="tqlineedit.html">TQLineEdit</a>( this );      <a href="tqlabel.html">TQLabel</a>    *nameLb  = new <a href="tqlabel.html">TQLabel</a>( "&Name:", this );      nameLb-><a href="#191701">setBuddy</a>( nameEd ); -    <a href="ntqlineedit.html">TQLineEdit</a> *phoneEd = new <a href="ntqlineedit.html">TQLineEdit</a>( this ); +    <a href="tqlineedit.html">TQLineEdit</a> *phoneEd = new <a href="tqlineedit.html">TQLineEdit</a>( this );      <a href="tqlabel.html">TQLabel</a>    *phoneLb = new <a href="tqlabel.html">TQLabel</a>( "&Phone:", this );      phoneLb-><a href="#191701">setBuddy</a>( phoneEd );      // ( layout setup not shown ) diff --git a/examples/demo/textdrawing/helpwindow.cpp b/examples/demo/textdrawing/helpwindow.cpp index 8cab2ddda..099b5dde0 100644 --- a/examples/demo/textdrawing/helpwindow.cpp +++ b/examples/demo/textdrawing/helpwindow.cpp @@ -21,9 +21,9 @@  #include <ntqmessagebox.h>  #include <tqfiledialog.h>  #include <ntqapplication.h> -#include <ntqcombobox.h> +#include <tqcombobox.h>  #include <tqevent.h> -#include <ntqlineedit.h> +#include <tqlineedit.h>  #include <tqobjectlist.h>  #include <tqfileinfo.h>  #include <tqfile.h> diff --git a/examples/demo/textdrawing/textedit.cpp b/examples/demo/textdrawing/textedit.cpp index f2017762f..091fb9eb5 100644 --- a/examples/demo/textdrawing/textedit.cpp +++ b/examples/demo/textdrawing/textedit.cpp @@ -17,8 +17,8 @@  #include <ntqtabwidget.h>  #include <ntqapplication.h>  #include <tqfontdatabase.h> -#include <ntqcombobox.h> -#include <ntqlineedit.h> +#include <tqcombobox.h> +#include <tqlineedit.h>  #include <tqfileinfo.h>  #include <tqfile.h>  #include <tqfiledialog.h> | 
