diff --git a/configure b/configure index 23595b42..ff3226ce 100755 --- a/configure +++ b/configure @@ -1758,7 +1758,7 @@ Configure options: * -no-gif ............ Do not compile in GIF reading support. -qt-gif ............ Compile in GIF reading support. - See src/kernel/ntqgif.h + See src/kernel/tqgif.h * -qt-zlib ........... Use the zlib bundled with Qt. -system-zlib ....... Use zlib from the operating system. diff --git a/doc/changes.doc b/doc/changes.doc index b025abdf..d9582dee 100644 --- a/doc/changes.doc +++ b/doc/changes.doc @@ -68,7 +68,7 @@ languages. Many new classes have been added to the TQt Library. Amongst them are classes that provide a docking architecture -(\l{QDockArea}/\l{QDockWindow}), a powerful rich text editor +(\l{TQDockArea}/\l{TQDockWindow}), a powerful rich text editor (TQTextEdit), a class to store and access application settings (TQSettings) and a class to create and communicate with processes (TQProcess). diff --git a/doc/classchart.doc b/doc/classchart.doc index 42c9fde1..754e0bf0 100644 --- a/doc/classchart.doc +++ b/doc/classchart.doc @@ -78,7 +78,7 @@ - + @@ -86,7 +86,7 @@ - + @@ -127,8 +127,8 @@ - - + + @@ -147,7 +147,7 @@ - + @@ -186,7 +186,7 @@ - + @@ -200,7 +200,7 @@ - + diff --git a/doc/features.doc b/doc/features.doc index d2cb189a..721acc55 100644 --- a/doc/features.doc +++ b/doc/features.doc @@ -48,7 +48,7 @@ configure is used to select the configuration. The \c ntqconfig.h definition file simply defines macros to disable features. Some features are dependent on other features and these -dependencies are expressed in \c ntqfeatures.h. +dependencies are expressed in \c tqfeatures.h. The available options are: diff --git a/doc/focus.doc b/doc/focus.doc index 4c5083d7..1bb56292 100644 --- a/doc/focus.doc +++ b/doc/focus.doc @@ -89,8 +89,8 @@ moves focus along the circular list in one direction, Shift+Tab in the other. The order in which Tab presses move from widget to widget is called the tab order. -In Qt, this list is kept in the \l QFocusData class. There is one -QFocusData object per window, and widgets automatically append +In Qt, this list is kept in the \l TQFocusData class. There is one +TQFocusData object per window, and widgets automatically append themselves to the end of it when \l TQWidget::setFocusPolicy() is called with an appropriate \l TQWidget::FocusPolicy. You can customize the tab order using \l TQWidget::setTabOrder(). (If you don't, Tab diff --git a/doc/html/annotated.html b/doc/html/annotated.html index 665e70d7..027153d5 100644 --- a/doc/html/annotated.html +++ b/doc/html/annotated.html @@ -113,8 +113,8 @@ body { background: #ffffff; color: black; }
Next, we will implement the init() function which is called when the dialog is created.
void ConversionForm::init() { - numberLineEdit->setValidator( new TQDoubleValidator( numberLineEdit ) ); + numberLineEdit->setValidator( new TQDoubleValidator( numberLineEdit ) ); numberLineEdit->setText( "10" ); convert(); numberLineEdit->selectAll(); }-
For this function, we set a validator on the numberLineEdit so that the user can only input numbers. To be able to do this, we also need to add #include <ntqvalidator.h> at the top of the "conversionform.ui.h" file, before the init() function. Lastly, we set the initial input.
+For this function, we set a validator on the numberLineEdit so that the user can only input numbers. To be able to do this, we also need to add #include <tqvalidator.h> at the top of the "conversionform.ui.h" file, before the init() function. Lastly, we set the initial input.
We are almost ready to run the application. Before we compile the application, we need a main.cpp file.
Click File|New to open the New File dialog.
Click C++ Main File (main.cpp) then click OK.
diff --git a/doc/html/dialogs.html b/doc/html/dialogs.html index 761fc461..f421fb01 100644 --- a/doc/html/dialogs.html +++ b/doc/html/dialogs.html @@ -38,7 +38,7 @@ boxes, generally.TQColorDialog | Dialog widget for specifying colors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TQDialog | The base class of dialog windows - | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TQErrorMessage | Error message display dialog + | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TQErrorMessage | Error message display dialog | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TQFileDialog | Dialogs that allow users to select files or directories | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TQFontDialog | Dialog widget for selecting a font | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TQInputDialog | Simple convenience dialog to get a single value from the user diff --git a/doc/html/events.html b/doc/html/events.html index 89e3f7f1..e68cb75c 100644 --- a/doc/html/events.html +++ b/doc/html/events.html @@ -47,8 +47,8 @@ and Signals and Slots. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TQDropEvent | Event which is sent when a drag and drop is completed | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TQEvent | The base class of all event classes. Event objects contain event parameters | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TQEventLoop | Manages the event queue - | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TQFocusEvent | Event parameters for widget focus events - | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TQHideEvent | Event which is sent after a widget is hidden + | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TQFocusEvent | Event parameters for widget focus events + | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TQHideEvent | Event which is sent after a widget is hidden | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TQIconDragEvent | Signals that a main icon drag has begun | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TQIMEvent | Parameters for input method events | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TQKeyEvent | Describes a key event
diff --git a/doc/html/focus.html b/doc/html/focus.html
index dbea82ef..14f27ae9 100644
--- a/doc/html/focus.html
+++ b/doc/html/focus.html
@@ -68,8 +68,8 @@ keyboard focus to the next widget in a circular per-window list. Tab
moves focus along the circular list in one direction, Shift+Tab in the
other. The order in which Tab presses move from widget to widget is
called the tab order.
- In TQt, this list is kept in the TQFocusData class. There is one -TQFocusData object per window, and widgets automatically append + In TQt, this list is kept in the TQFocusData class. There is one +TQFocusData object per window, and widgets automatically append themselves to the end of it when TQWidget::setFocusPolicy() is called with an appropriate TQWidget::FocusPolicy. You can customize the tab order using TQWidget::setTabOrder(). (If you don't, Tab diff --git a/doc/html/functions.html b/doc/html/functions.html index 52796500..b99dd291 100644 --- a/doc/html/functions.html +++ b/doc/html/functions.html @@ -160,7 +160,7 @@ abort: TQApplication
TQt supports GIF reading if it is configured that way during -installation (see ntqgif.h). If it is, we are required to state that +installation (see tqgif.h). If it is, we are required to state that "The Graphics Interchange Format(c) is the Copyright property of CompuServe Incorporated. GIF(sm) is a Service Mark property of CompuServe Incorporated." diff --git a/doc/html/life-example.html b/doc/html/life-example.html index 202c82bf..f76cf976 100644 --- a/doc/html/life-example.html +++ b/doc/html/life-example.html @@ -111,7 +111,7 @@ private: #include "life.h" #include <tqpainter.h> -#include <ntqdrawutil.h> +#include <tqdrawutil.h> #include <tqcheckbox.h> #include <tqevent.h> #include <ntqapplication.h> diff --git a/doc/html/lineedits-example.html b/doc/html/lineedits-example.html index c5b728c1..3edfeb7c 100644 --- a/doc/html/lineedits-example.html +++ b/doc/html/lineedits-example.html @@ -94,7 +94,7 @@ protected slots: #include <tqlineedit.h> #include <tqcombobox.h> #include <tqframe.h> -#include <ntqvalidator.h> +#include <tqvalidator.h> #include <tqlabel.h> #include <tqlayout.h> #include <tqhbox.h> @@ -267,7 +267,7 @@ void LineEdits::slotValidatorChanged( int i ) lined2->setValidator( new TQIntValidator( lined2 ) ); break; case 2: - lined2->setValidator( new TQDoubleValidator( -999.0, 999.0, 2, + lined2->setValidator( new TQDoubleValidator( -999.0, 999.0, 2, lined2 ) ); break; } diff --git a/doc/html/mainclasses.html b/doc/html/mainclasses.html index 49e2247e..ae62bb9a 100644 --- a/doc/html/mainclasses.html +++ b/doc/html/mainclasses.html @@ -135,7 +135,7 @@ classes), see TQt's Classes.
| TQSqlForm
| V
- | TQValidator
+ | TQValidator
|
| TQDataTable
@@ -248,7 +248,7 @@ classes), see TQt's Classes.
| TQWorkspace
|
- | TQDockWindow
+ | TQDockWindow
|
| TQMap
|
diff --git a/doc/html/misc.html b/doc/html/misc.html
index e89cd396..b900c1c8 100644
--- a/doc/html/misc.html
+++ b/doc/html/misc.html
@@ -40,11 +40,11 @@ body { background: #ffffff; color: black; }
| TQAccessibleInterface | Defines an interface that exposes information about accessible objects
| TQAccessibleObject | Implements parts of the TQAccessibleInterface for TQObjects
| TQCustomMenuItem | Abstract base class for custom menu items in popup menus
- | TQDoubleValidator | Range checking of floating-point numbers
- | TQErrorMessage | Error message display dialog
+ | TQDoubleValidator | Range checking of floating-point numbers
+ | TQErrorMessage | Error message display dialog
| TQFileIconProvider | Icons for TQFileDialog to use
| TQFilePreview | File previewing in TQFileDialog
- | TQFocusData | Maintains the list of widgets in the focus chain
+ | TQFocusData | Maintains the list of widgets in the focus chain
| TQIntValidator | Validator which ensures that a string contains a valid integer within a specified range
| TQKeySequence | Encapsulates a key sequence as used by accelerators
| TQMacMime | Maps open-standard MIME to Mac flavors
@@ -61,7 +61,7 @@ body { background: #ffffff; color: black; }
| TQUrl | URL parser and simplifies working with URLs
| TQUrlInfo | Stores information about URLs
| TQUrlOperator | Common operations on URLs
- | TQValidator | Validation of input text
+ | TQValidator | Validation of input text
| TQVariant | Acts like a union for the most common TQt data types
| TQWindowsMime | Maps open-standard MIME to Window Clipboard formats
| |
This is the complete list of member functions for -TQDoubleValidator, including inherited members. +TQDoubleValidator, including inherited members.
The TQDoubleValidator class provides range checking of floating-point numbers. More... -
#include <ntqvalidator.h> -
Inherits TQValidator. -
List of all member functions. +
#include <tqvalidator.h> +
Inherits TQValidator. +
TQDoubleValidator provides an upper bound, a lower bound and a limit on the number of digits after the decimal point. It does not -provide a fixup() function. +provide a fixup() function.
You can set the acceptable range in one call with setRange(), or with setBottom() and setTop(). Set the number of decimal places with setDecimals(). The validate() function returns the validation @@ -88,16 +88,16 @@ Destroys the validator, freeing any resources used.
Returns the validator's minimum acceptable value. -See the "bottom" property for details. +See the "bottom" property for details.
Returns the validator's maximum number of digits after the decimal point. -See the "decimals" property for details. +See the "decimals" property for details.
Sets the validator's minimum acceptable value. -See the "bottom" property for details. +See the "bottom" property for details.
Sets the validator's maximum number of digits after the decimal point. -See the "decimals" property for details. +See the "decimals" property for details.
Sets the validator's maximum acceptable value. -See the "top" property for details. +See the "top" property for details.
Returns the validator's maximum acceptable value. -See the "top" property for details. -
Returns Intermediate if input contains a double that is +
Returns Intermediate if input contains a double that is outside the range or is in the wrong format, e.g. with too many digits after the decimal point or is empty. -
Returns Invalid if the input is not a double. +
Returns Invalid if the input is not a double.
Note: If the valid range consists of just positive doubles (e.g. 0.0 - 100.0) and input is a negative double then Invalid is returned. -
Reimplemented from TQValidator. +
Reimplemented from TQValidator.
This property holds the validator's minimum acceptable value. diff --git a/doc/html/qintvalidator-members.html b/doc/html/qintvalidator-members.html index a39096d5..d8b5c544 100644 --- a/doc/html/qintvalidator-members.html +++ b/doc/html/qintvalidator-members.html @@ -1,5 +1,5 @@ - +
@@ -55,7 +55,7 @@ body { background: #ffffff; color: black; }The TQIntValidator class provides a validator which ensures that a string contains a valid integer within a specified range. More... -
#include <ntqvalidator.h> -
Inherits TQValidator. +
#include <tqvalidator.h> +
Inherits TQValidator.
Example of use:
- TQValidator* validator = new TQIntValidator( 100, 999, this ); + TQValidator* validator = new TQIntValidator( 100, 999, this ); TQLineEdit* edit = new TQLineEdit( this ); // the edit lineedit will only accept integers between 100 and 999 @@ -98,7 +98,7 @@ normally be associated with a widget as in the example above.The minimum and maximum values are set in one call with setRange() or individually with setBottom() and setTop(). -
See also TQDoubleValidator, TQRegExpValidator, and Miscellaneous Classes. +
See also TQDoubleValidator, TQRegExpValidator, and Miscellaneous Classes.
Member Function Documentation
TQIntValidator::TQIntValidator ( TQObject * parent, const char * name = 0 ) @@ -131,11 +131,11 @@ See the "top" property for details.
int TQIntValidator::top () const
Returns the validator's highest acceptable value. See the "top" property for details. -
TQValidator::State TQIntValidator::validate ( TQString & input, int & ) const [virtual] +
TQValidator::State TQIntValidator::validate ( TQString & input, int & ) const [virtual]
-Returns Acceptable if the input is an integer within the -valid range, Intermediate if the input is an integer outside -the valid range and Invalid if the input is not an integer. +Returns Acceptable if the input is an integer within the +valid range, Intermediate if the input is an integer outside +the valid range and Invalid if the input is not an integer.Note: If the valid range consists of just positive integers (e.g. 32 - 100) and input is a negative integer then Invalid is returned.
@@ -151,7 +151,7 @@ and input is a negative integer then Invalid is returned.-Reimplemented from TQValidator. +
Reimplemented from TQValidator.
Property Documentation
int bottom
This property holds the validator's lowest acceptable value. diff --git a/doc/html/qkeyevent.html b/doc/html/qkeyevent.html index ca0ef809..cf0111fb 100644 --- a/doc/html/qkeyevent.html +++ b/doc/html/qkeyevent.html @@ -68,7 +68,7 @@ TQKeyEvent::accept() if your widget handles those events. mouse and keyboard events for a widget.
The event handlers TQWidget::keyPressEvent() and TQWidget::keyReleaseEvent() receive key events. -
See also TQFocusEvent, TQWidget::grabKeyboard(), and Event Classes. +
See also TQFocusEvent, TQWidget::grabKeyboard(), and Event Classes.
Member Function Documentation
TQKeyEvent::TQKeyEvent ( Type type, int key, int ascii, int state, const TQString & text = TQString::null, bool autorep = FALSE, ushort count = 1 ) diff --git a/doc/html/qmag-example.html b/doc/html/qmag-example.html index 9353d880..61d9966f 100644 --- a/doc/html/qmag-example.html +++ b/doc/html/qmag-example.html @@ -82,7 +82,7 @@ protected: void mousePressEvent( TQMouseEvent * ); void mouseReleaseEvent( TQMouseEvent * ); void mouseMoveEvent( TQMouseEvent * ); - void focusOutEvent( TQFocusEvent * ); + void focusOutEvent( TQFocusEvent * ); void timerEvent( TQTimerEvent * ); void resizeEvent( TQResizeEvent * ); @@ -390,7 +390,7 @@ void MagWidget::grabAround(TQPoint pos) } -void MagWidget::focusOutEvent( TQFocusEvent * ) +void MagWidget::focusOutEvent( TQFocusEvent * ) { rgb->setText( "" ); } diff --git a/doc/html/qshowevent.html b/doc/html/qshowevent.html index ae4d48ac..224d7a33 100644 --- a/doc/html/qshowevent.html +++ b/doc/html/qshowevent.html @@ -51,7 +51,7 @@ show events are sent just after the window system shows the window, including after a top-level window has been shown (un-iconified) by the user. Internal show events are delivered just before the widget becomes visible. -
See also TQHideEvent and Event Classes. +
See also TQHideEvent and Event Classes.
Member Function Documentation
TQShowEvent::TQShowEvent () diff --git a/doc/html/qt.dcf b/doc/html/qt.dcf index 76dd008e..c4079ee6 100644 --- a/doc/html/qt.dcf +++ b/doc/html/qt.dcf @@ -1796,78 +1796,78 @@ -
- -QDockArea -HandlePosition -count -count -dockWindowList -empty -handlePosition -handlePosition -hasDockWindow -isDockWindowAccepted -isEmpty -lineUp -moveDockWindow -orientation -orientation -removeDockWindow -setAcceptDockWindow -~QDockArea -operator<< -operator>> - - -- QDockWindow -CloseMode -Place -area -boxLayout -closeMode -closeMode -dock -fixedExtent -horizontallyStretchable -isCloseEnabled -isHorizontallyStretchable -isMovingEnabled -isResizeEnabled -isStretchable -isVerticallyStretchable -movingEnabled -newLine -newLine -offset -offset -opaqueMoving -opaqueMoving -orientation -orientationChanged -place -placeChanged -resizeEnabled -setCloseMode -setFixedExtentHeight -setFixedExtentWidth -setHorizontallyStretchable -setMovingEnabled -setNewLine -setOffset -setOpaqueMoving -setOrientation -setResizeEnabled -setVerticallyStretchable -setWidget -stretchable -undock -verticallyStretchable -visibilityChanged -widget - - ++ +TQDockArea +HandlePosition +count +count +dockWindowList +empty +handlePosition +handlePosition +hasDockWindow +isDockWindowAccepted +isEmpty +lineUp +moveDockWindow +orientation +orientation +removeDockWindow +setAcceptDockWindow +~TQDockArea +operator<< +operator>> + + ++ TQDockWindow +CloseMode +Place +area +boxLayout +closeMode +closeMode +dock +fixedExtent +horizontallyStretchable +isCloseEnabled +isHorizontallyStretchable +isMovingEnabled +isResizeEnabled +isStretchable +isVerticallyStretchable +movingEnabled +newLine +newLine +offset +offset +opaqueMoving +opaqueMoving +orientation +orientationChanged +place +placeChanged +resizeEnabled +setCloseMode +setFixedExtentHeight +setFixedExtentWidth +setHorizontallyStretchable +setMovingEnabled +setNewLine +setOffset +setOpaqueMoving +setOrientation +setResizeEnabled +setVerticallyStretchable +setWidget +stretchable +undock +verticallyStretchable +visibilityChanged +widget + +- TQDomAttr @@ -2164,22 +2164,22 @@- QDoubleValidator -bottom -bottom -decimals -decimals -setBottom -setDecimals -setRange -setTop -top -top -validate -~QDoubleValidator - - ++ TQDoubleValidator +bottom +bottom +decimals +decimals +setBottom +setDecimals +setRange +setTop +top +top +validate +~TQDoubleValidator + +- TQDragEnterEvent @@ -2248,13 +2248,13 @@- QErrorMessage -message -qtHandler -~QErrorMessage - - ++ TQErrorMessage +message +qtHandler +~TQErrorMessage + +- TQEucJpCodec @@ -2455,27 +2455,27 @@- -QFocusData -count -first -focusWidget -home -last -next -prev - - -- QFocusEvent -Reason -gotFocus -lostFocus -reason -resetReason -setReason - ++ +TQFocusData +count +first +focusWidget +home +last +next +prev + + ++ TQFocusEvent +Reason +gotFocus +lostFocus +reason +resetReason +setReason +@@ -3045,9 +3045,9 @@ -- QHideEvent - ++ TQHideEvent +@@ -3647,7 +3647,7 @@ validate ~QIntValidator - +TQIODevice @@ -5925,7 +5925,7 @@validate ~TQRegExpValidator - +- TQRegion @@ -8327,14 +8327,14 @@- QValidator -State -fixup -validate -~QValidator - - ++ TQValidator +State +fixup +validate +~TQValidator + +TQValueList diff --git a/doc/html/themes-example.html b/doc/html/themes-example.html index 54540481..3d270718 100644 --- a/doc/html/themes-example.html +++ b/doc/html/themes-example.html @@ -151,7 +151,7 @@ private: #include "ntqapplication.h" #include "tqcombobox.h" #include "tqpainter.h" -#include "ntqdrawutil.h" // for now +#include "tqdrawutil.h" // for now #include "tqpixmap.h" // for now #include "tqpalette.h" // for now #include "tqwidget.h" @@ -1647,7 +1647,7 @@ private: #include "ntqapplication.h" #include "tqcombobox.h" #include "tqpainter.h" -#include "ntqdrawutil.h" // for now +#include "tqdrawutil.h" // for now #include "tqpixmap.h" // for now #include "tqpalette.h" // for now #include "tqwidget.h" diff --git a/doc/html/tictac-example.html b/doc/html/tictac-example.html index f9d37c78..c4627d99 100644 --- a/doc/html/tictac-example.html +++ b/doc/html/tictac-example.html @@ -165,7 +165,7 @@ private: #include "tictac.h" #include <ntqapplication.h> #include <tqpainter.h> -#include <ntqdrawutil.h> +#include <tqdrawutil.h> #include <tqcombobox.h> #include <tqcheckbox.h> #include <tqlabel.h> diff --git a/doc/html/titleindex b/doc/html/titleindex index c7c7ae9f..de487d19 100644 --- a/doc/html/titleindex +++ b/doc/html/titleindex @@ -299,10 +299,10 @@ TQDir Class | tqdir.html TQDir Member List | tqdir-members.html TQDns Class | tqdns.html TQDns Member List | tqdns-members.html -QDockArea Class | ntqdockarea.html -QDockArea Member List | qdockarea-members.html -QDockWindow Class | ntqdockwindow.html -QDockWindow Member List | qdockwindow-members.html +TQDockArea Class | tqdockarea.html +TQDockArea Member List | tqdockarea-members.html +TQDockWindow Class | tqdockwindow.html +TQDockWindow Member List | tqdockwindow-members.html TQDomAttr Class | tqdomattr.html TQDomAttr Member List | tqdomattr-members.html TQDomCDATASection Class | tqdomcdatasection.html @@ -337,8 +337,8 @@ TQDomProcessingInstruction Class | tqdomprocessinginstruction.html TQDomProcessingInstruction Member List | tqdomprocessinginstruction-members.html TQDomText Class | tqdomtext.html TQDomText Member List | tqdomtext-members.html -QDoubleValidator Class | qdoublevalidator.html -QDoubleValidator Member List | qdoublevalidator-members.html +TQDoubleValidator Class | tqdoublevalidator.html +TQDoubleValidator Member List | tqdoublevalidator-members.html TQDragEnterEvent Class | tqdragenterevent.html TQDragEnterEvent Member List | tqdragenterevent-members.html TQDragLeaveEvent Class | tqdragleaveevent.html @@ -354,8 +354,8 @@ TQDropSite Member List | tqdropsite-members.html TQEditorFactory Class | tqeditorfactory.html TQEditorFactory Member List | tqeditorfactory-members.html QEmbed - File and Image Embedder | qembed.html -QErrorMessage Class | ntqerrormessage.html -QErrorMessage Member List | qerrormessage-members.html +TQErrorMessage Class | tqerrormessage.html +TQErrorMessage Member List | tqerrormessage-members.html TQEucJpCodec Class | tqeucjpcodec.html TQEucJpCodec Member List | tqeucjpcodec-members.html TQEucKrCodec Class | tqeuckrcodec.html @@ -374,10 +374,10 @@ TQFileInfo Class | tqfileinfo.html TQFileInfo Member List | tqfileinfo-members.html TQFilePreview Class | tqfilepreview.html TQFilePreview Member List | tqfilepreview-members.html -QFocusData Class | ntqfocusdata.html -QFocusData Member List | qfocusdata-members.html -QFocusEvent Class | qfocusevent.html -QFocusEvent Member List | qfocusevent-members.html +TQFocusData Class | tqfocusdata.html +TQFocusData Member List | tqfocusdata-members.html +TQFocusEvent Class | tqfocusevent.html +TQFocusEvent Member List | tqfocusevent-members.html TQFont Class | tqfont.html TQFont Examples | tqfont-examples.html TQFont Member List | tqfont-members.html @@ -433,8 +433,8 @@ TQHeader Class | tqheader.html TQHeader Member List | tqheader-members.html TQHebrewCodec Class | tqhebrewcodec.html TQHebrewCodec Member List | tqhebrewcodec-members.html -QHideEvent Class | qhideevent.html -QHideEvent Member List | qhideevent-members.html +TQHideEvent Class | tqhideevent.html +TQHideEvent Member List | tqhideevent-members.html TQHostAddress Class | tqhostaddress.html TQHostAddress Member List | tqhostaddress-members.html TQHttp Class | tqhttp.html @@ -868,8 +868,8 @@ TQVButtonGroup Class | tqvbuttongroup.html TQVButtonGroup Member List | tqvbuttongroup-members.html TQVGroupBox Class | tqvgroupbox.html TQVGroupBox Member List | tqvgroupbox-members.html -QValidator Class | ntqvalidator.html -QValidator Member List | qvalidator-members.html +TQValidator Class | tqvalidator.html +TQValidator Member List | tqvalidator-members.html TQValueList Class | tqvaluelist.html TQValueList Member List | tqvaluelist-members.html TQValueListConstIterator Class | tqvaluelistconstiterator.html @@ -1111,14 +1111,14 @@ tqdialog.h Include File | tqdialog-h.html tqdict.h Include File | tqdict-h.html tqdir.h Include File | tqdir-h.html tqdns.h Include File | tqdns-h.html -ntqdockarea.h Include File | qdockarea-h.html -ntqdockwindow.h Include File | qdockwindow-h.html +tqdockarea.h Include File | tqdockarea-h.html +tqdockwindow.h Include File | tqdockwindow-h.html tqdom.h Include File | tqdom-h.html tqdragobject.h Include File | tqdragobject-h.html -ntqdrawutil.h Include File | qdrawutil-h.html +tqdrawutil.h Include File | tqdrawutil-h.html tqdropsite.h Include File | tqdropsite-h.html tqeditorfactory.h Include File | tqeditorfactory-h.html -ntqerrormessage.h Include File | qerrormessage-h.html +tqerrormessage.h Include File | tqerrormessage-h.html tqeucjpcodec.h Include File | tqeucjpcodec-h.html tqeuckrcodec.h Include File | tqeuckrcodec-h.html tqevent.h Include File | tqevent-h.html @@ -1126,7 +1126,7 @@ tqeventloop.h Include File | tqeventloop-h.html tqfile.h Include File | tqfile-h.html tqfiledialog.h Include File | tqfiledialog-h.html tqfileinfo.h Include File | tqfileinfo-h.html -ntqfocusdata.h Include File | qfocusdata-h.html +tqfocusdata.h Include File | tqfocusdata-h.html tqfont.h Include File | tqfont-h.html tqfontdatabase.h Include File | tqfontdatabase-h.html tqfontdialog.h Include File | tqfontdialog-h.html @@ -1290,7 +1290,7 @@ tqurl.h Include File | tqurl-h.html tqurlinfo.h Include File | tqurlinfo-h.html tqurloperator.h Include File | tqurloperator-h.html ntquuid.h Include File | quuid-h.html -ntqvalidator.h Include File | qvalidator-h.html +tqvalidator.h Include File | tqvalidator-h.html tqvaluelist.h Include File | tqvaluelist-h.html tqvaluestack.h Include File | tqvaluestack-h.html tqvaluevector.h Include File | tqvaluevector-h.html diff --git a/doc/html/tqcombobox.html b/doc/html/tqcombobox.html index 579a7f2f..2d5a3914 100644 --- a/doc/html/tqcombobox.html +++ b/doc/html/tqcombobox.html @@ -167,7 +167,7 @@ widget may or may not insert it, and it can insert it in several locations. The default policy is is AtBottom but you can change this using setInsertionPolicy().It is possible to constrain the input to an editable combobox -using TQValidator; see setValidator(). By default, any input is +using TQValidator; see setValidator(). By default, any input is accepted.
If the combobox is not editable then it has a default focusPolicy() of TabFocus, i.e. it will not grab focus if @@ -482,12 +482,12 @@ popup list to palette.
void TQComboBox::setSizeLimit ( int ) [virtual]
Sets the maximum on-screen size of the combobox. See the "sizeLimit" property for details. -
void TQComboBox::setValidator ( const TQValidator * v ) [virtual] +
void TQComboBox::setValidator ( const TQValidator * v ) [virtual]
Applies the validator v to the combobox so that only text which is valid according to v is accepted.This function does nothing if the combobox is not editable. -
See also validator(), clearValidator(), and TQValidator. +
See also validator(), clearValidator(), and TQValidator.
int TQComboBox::sizeLimit () const
Returns the maximum on-screen size of the combobox. @@ -506,11 +506,11 @@ the item is not a string. whenever the contents of the text entry field changes. string contains the new text. -
const TQValidator * TQComboBox::validator () const +
const TQValidator * TQComboBox::validator () const
Returns the validator which constrains editing for this combobox if there is one; otherwise returns 0. -
See also setValidator(), clearValidator(), and TQValidator. +
See also setValidator(), clearValidator(), and TQValidator.
Property Documentation
bool autoCompletion
diff --git a/doc/html/tqdialog.html b/doc/html/tqdialog.html index 5413a2d8..05cb2fbc 100644 --- a/doc/html/tqdialog.html +++ b/doc/html/tqdialog.html @@ -35,7 +35,7 @@ body { background: #ffffff; color: black; } More...#include <tqdialog.h>
Inherits TQWidget. -
Inherited by TQColorDialog, TQErrorMessage, TQFileDialog, TQFontDialog, TQInputDialog, TQMessageBox, TQMotifDialog, TQProgressDialog, TQTabDialog, and TQWizard. +
Inherited by TQColorDialog, TQErrorMessage, TQFileDialog, TQFontDialog, TQInputDialog, TQMessageBox, TQMotifDialog, TQProgressDialog, TQTabDialog, and TQWizard.
Public Members
diff --git a/doc/html/qdockarea-h.html b/doc/html/tqdockarea-h.html similarity index 96% rename from doc/html/qdockarea-h.html rename to doc/html/tqdockarea-h.html index 1f4830f3..d0656018 100644 --- a/doc/html/qdockarea-h.html +++ b/doc/html/tqdockarea-h.html @@ -1,9 +1,9 @@ - + -
ntqdockarea.h Include File +tqdockarea.h Include File