diff options
Diffstat (limited to 'doc/html/tqlabel.html')
-rw-r--r-- | doc/html/tqlabel.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/tqlabel.html b/doc/html/tqlabel.html index 4284b03f4..bfbc52ffa 100644 --- a/doc/html/tqlabel.html +++ b/doc/html/tqlabel.html @@ -134,15 +134,15 @@ this use TQLabel provides a useful mechanism for adding an accelerator key (see <a href="ntqaccel.html">TQAccel</a>) that will set the <a href="focus.html#keyboard-focus">keyboard focus</a> to the other widget (called the TQLabel's "buddy"). For example: <pre> - <a href="ntqlineedit.html">TQLineEdit</a>* phoneEdit = new <a href="ntqlineedit.html">TQLineEdit</a>( this, "phoneEdit" ); + <a href="tqlineedit.html">TQLineEdit</a>* phoneEdit = new <a href="tqlineedit.html">TQLineEdit</a>( this, "phoneEdit" ); TQLabel* phoneLabel = new TQLabel( 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 Alt+P. You can +buddy (the <a href="tqlineedit.html">TQLineEdit</a>) when the user presses Alt+P. You can also use the <a href="#setBuddy">setBuddy</a>() function to accomplish the same thing. <p> <img src=tqlabel-m.png> <img src=tqlabel-w.png> -<p> <p>See also <a href="ntqlineedit.html">TQLineEdit</a>, <a href="tqtextedit.html">TQTextEdit</a>, <a href="tqpixmap.html">TQPixmap</a>, <a href="tqmovie.html">TQMovie</a>, <a href="guibooks.html#fowler">GUI Design Handbook: Label</a>, <a href="basic.html">Basic Widgets</a>, and <a href="text.html">Text Related Classes</a>. +<p> <p>See also <a href="tqlineedit.html">TQLineEdit</a>, <a href="tqtextedit.html">TQTextEdit</a>, <a href="tqpixmap.html">TQPixmap</a>, <a href="tqmovie.html">TQMovie</a>, <a href="guibooks.html#fowler">GUI Design Handbook: Label</a>, <a href="basic.html">Basic Widgets</a>, and <a href="text.html">Text Related Classes</a>. <hr><h2>Member Function Documentation</h2> <h3 class=fn><a name="TQLabel"></a>TQLabel::TQLabel ( <a href="tqwidget.html">TQWidget</a> * parent, const char * name = 0, WFlags f = 0 ) @@ -249,10 +249,10 @@ alignment flag is turned on; see <a href="#setAlignment">setAlignment</a>()). for each, and set up the geometry layout so each label is just to the left of its data entry widget (its "buddy"), for example: <pre> - <a href="ntqlineedit.html">TQLineEdit</a> *nameEd = new <a href="ntqlineedit.html">TQLineEdit</a>( this ); + <a href="tqlineedit.html">TQLineEdit</a> *nameEd = new <a href="tqlineedit.html">TQLineEdit</a>( this ); TQLabel *nameLb = new TQLabel( "&Name:", this ); nameLb-><a href="#setBuddy">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 ); TQLabel *phoneLb = new TQLabel( "&Phone:", this ); phoneLb-><a href="#setBuddy">setBuddy</a>( phoneEd ); // ( layout setup not shown ) |