From d796c9dd933ab96ec83b9a634feedd5d32e1ba3f Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Tue, 8 Nov 2011 12:31:36 -0600 Subject: Test conversion to TQt3 from Qt3 8c6fc1f8e35fd264dd01c582ca5e7549b32ab731 --- doc/html/qstyleoption.html | 297 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 297 insertions(+) create mode 100644 doc/html/qstyleoption.html (limited to 'doc/html/qstyleoption.html') diff --git a/doc/html/qstyleoption.html b/doc/html/qstyleoption.html new file mode 100644 index 000000000..151078689 --- /dev/null +++ b/doc/html/qstyleoption.html @@ -0,0 +1,297 @@ + + + + + +TQStyleOption Class + + + + + + + +
+ +Home + | +All Classes + | +Main Classes + | +Annotated + | +Grouped Classes + | +Functions +

TQStyleOption Class Reference

+ +

The TQStyleOption class specifies optional parameters for TQStyle functions. +More... +

#include <qstyle.h> +

List of all member functions. +

Public Members

+ +

Detailed Description

+ + +The TQStyleOption class specifies optional parameters for TQStyle functions. + +

Some TQStyle functions take an optional argument specifying extra +information that is retquired for a paritical primitive or control. +So that the TQStyle class can be extended, TQStyleOption is used to +provide a variable-argument for these options. +

The TQStyleOption class has constructors for each type of optional +argument, and this set of constructors may be extended in future +TQt releases. There are also corresponding access functions that +return the optional arguments: these too may be extended. +

For each constructor, you should refer to the documentation of the +TQStyle functions to see the meaning of the arguments. +

When calling TQStyle functions from your own widgets, you must only +pass the default TQStyleOption or the argument that TQStyle is +documented to accept. For example, if the function expects +TQStyleOption(TQMenuItem *, int), passing TQStyleOption(TQMenuItem *) +leaves the optional integer argument uninitialized. +

When subclassing TQStyle, you must similarly only expect the +default or documented arguments. The other arguments will have +uninitialized values. +

If you make your own TQStyle subclasses and your own widgets, you +can make a subclass of TQStyleOption to pass additional arguments +to your TQStyle subclass. You will need to cast the "const +TQStyleOption&" argument to your subclass, so be sure your style +has been called from your widget. +

See also Widget Appearance and Style. + +


Member Type Documentation

+

TQStyleOption::StyleOptionDefault

+ +

This enum value can be passed as the optional argument to any +TQStyle function. +

+

Member Function Documentation

+

TQStyleOption::TQStyleOption ( StyleOptionDefault = Default ) +

+ +

The default option. This can always be passed as the optional +argument to TQStyle functions. + +

TQStyleOption::TQStyleOption ( int in1 ) +

+ +

Pass one integer, in1. For example, headerSection. + +

TQStyleOption::TQStyleOption ( int in1, int in2 ) +

+ +

Pass two integers, in1 and in2. For example, linewidth and +midlinewidth. + +

TQStyleOption::TQStyleOption ( int in1, int in2, int in3, int in4 ) +

+ +

Pass four integers, in1, in2, in3 and in4. + +

TQStyleOption::TQStyleOption ( TQMenuItem * m ) +

+ +

Pass a menu item, m. + +

TQStyleOption::TQStyleOption ( TQMenuItem * m, int in1 ) +

+ +

Pass a menu item and an integer, m and in1. + +

TQStyleOption::TQStyleOption ( TQMenuItem * m, int in1, int in2 ) +

+ +

Pass a menu item and two integers, m, in1 and in2. + +

TQStyleOption::TQStyleOption ( const TQColor & c ) +

+ +

Pass a color, c. + +

TQStyleOption::TQStyleOption ( TQTab * t ) +

+ +

Pass a TQTab, t. + +

TQStyleOption::TQStyleOption ( TQListViewItem * i ) +

+ +

Pass a TQListViewItem, i. + +

TQStyleOption::TQStyleOption ( TQCheckListItem * i ) +

+ +

Pass a TQCheckListItem, i. + +

TQStyleOption::TQStyleOption ( TQt::ArrowType a ) +

+ +

Pass an TQt::ArrowType, a. + +

TQStyleOption::TQStyleOption ( const TQRect & r ) +

+ +

Pass a TQRect, r. + +

TQStyleOption::TQStyleOption ( TQWidget * w ) +

+ +

Pass a TQWidget, w. + +

TQt::ArrowType TQStyleOption::arrowType () const +

+ +

Returns an arrow type if the appropriate constructor was called; +otherwise the return value is undefined. + +

TQCheckListItem * TQStyleOption::checkListItem () const +

+ +

Returns a check list item if the appropriate constructor was +called; otherwise the return value is undefined. + +

const TQColor & TQStyleOption::color () const +

+ +

Returns a color if the appropriate constructor was called; +otherwise the return value is undefined. + +

int TQStyleOption::day () const +

+ +

Returns the index of the day in the month if the appropriate +constructor was called; otherwise the return value is undefined. + +

int TQStyleOption::frameShadow () const +

+ +

Returns a TQFrame::Shadow value if the appropriate constructor was +called; otherwise the return value is undefined. + +

int TQStyleOption::frameShape () const +

+ +

Returns a TQFrame::Shape value if the appropriate constructor was +called; otherwise the return value is undefined. + +

int TQStyleOption::headerSection () const +

+ +

Returns the header section if the appropriate constructor was +called; otherwise the return value is undefined. + +

bool TQStyleOption::isDefault () const +

+ +

Returns TRUE if the option was constructed with the default +constructor; otherwise returns FALSE. + +

int TQStyleOption::lineWidth () const +

+ +

Returns the line width if the appropriate constructor was called; +otherwise the return value is undefined. + +

TQListViewItem * TQStyleOption::listViewItem () const +

+ +

Returns a TQListView item if the appropriate constructor was +called; otherwise the return value is undefined. + +

int TQStyleOption::maxIconWidth () const +

+ +

Returns the maximum width of the menu item check area if the +appropriate constructor was called; otherwise the return value is +undefined. + +

TQMenuItem * TQStyleOption::menuItem () const +

+ +

Returns a menu item if the appropriate constructor was called; +otherwise the return value is undefined. + +

int TQStyleOption::midLineWidth () const +

+ +

Returns the mid-line width if the appropriate constructor was +called; otherwise the return value is undefined. + +

TQRect TQStyleOption::rect () const +

+ +

Returns a rectangle if the appropriate constructor was called; +otherwise the return value is undefined. + +

TQTab * TQStyleOption::tab () const +

+ +

Returns a TQTabBar tab if the appropriate constructor was called; +otherwise the return value is undefined. + +

int TQStyleOption::tabWidth () const +

+ +

Returns the tab indent width if the appropriate constructor was +called; otherwise the return value is undefined. + +

TQWidget * TQStyleOption::widget () const +

+ +

Returns a pointer to a widget if the appropriate constructor was called; +otherwise the return value is undefined. + + +


+This file is part of the TQt toolkit. +Copyright © 1995-2007 +Trolltech. All Rights Reserved.


+ +
Copyright © 2007 +TrolltechTrademarks +
TQt 3.3.8
+
+ -- cgit v1.2.1