Qyoto  4.0.5
Qyoto is a C# language binding for Qt
 All Classes Namespaces Functions Variables Typedefs Enumerations Properties
QtGui.QStyleHintReturn Class Reference

The QStyleHintReturn class provides style hints that return more than basic data types. More...

Inheritance diagram for QtGui.QStyleHintReturn:
Collaboration diagram for QtGui.QStyleHintReturn:

Public Types

enum  HintReturnType { SH_Default = 61440, SH_Mask = 61441, SH_Variant = 61442 }
 
enum  StyleOptionType { Type = 61440 }
  More...
 
enum  StyleOptionVersion { Version = 1 }
  More...
 

Public Member Functions

 QStyleHintReturn (QStyleHintReturn copy)
 
 
 QStyleHintReturn (int version=(int) QStyleOption.StyleOptionVersion.Version, int type=(int) QStyleHintReturn.HintReturnType.SH_Default)
 
 
virtual void CreateProxy ()
 
new void Dispose ()
 

Protected Member Functions

 QStyleHintReturn (System.Type dummy)
 

Protected Attributes

SmokeInvocation interceptor
 

Properties

virtual System.IntPtr SmokeObject [get, set]
 
new int Type [get, set]
 
 
new int Version [get, set]
 
 

Detailed Description

The QStyleHintReturn class provides style hints that return more than basic data types.

QStyleHintReturn and its subclasses are used to pass information from a style back to the querying widget. This is most useful when the return value from QStyle::styleHint() does not provide enough detail; for example, when a mask is to be returned.

Member Enumeration Documentation

Enumerator:
SH_Default 

QStyleHintReturn

SH_Mask 

QStyle::SH_RubberBand_Mask QStyle::SH_FocusFrame_Mask

SH_Variant 

QStyle::SH_TextControl_FocusIndicatorTextCharFormat

This enum is used to hold information about the type of the style option, and is defined for each QStyleHintReturn subclass.

The type is used internally by QStyleHintReturn, its subclasses, and qstyleoption_cast() to determine the type of style option. In general you do not need to worry about this unless you want to create your own QStyleHintReturn subclass and your own styles.

See also StyleOptionVersion.

Enumerator:
Type 

The type of style option provided (SH_Default for this class).

This enum is used to hold information about the version of the style option, and is defined for each QStyleHintReturn subclass.

The version is used by QStyleHintReturn subclasses to implement extensions without breaking compatibility. If you use qstyleoption_cast(), you normally do not need to check it.

See also StyleOptionType.

Enumerator:
Version 

1

Constructor & Destructor Documentation

QtGui.QStyleHintReturn.QStyleHintReturn ( System.Type  dummy)
protected
QtGui.QStyleHintReturn.QStyleHintReturn ( QStyleHintReturn  copy)

Constructs a QStyleHintReturn with version version and type type.

The version has no special meaning for QStyleHintReturn; it can be used by subclasses to distinguish between different version of the same hint type.

See also QStyleOption::version and QStyleOption::type.

QtGui.QStyleHintReturn.QStyleHintReturn ( int  version = (int) QStyleOption.StyleOptionVersion.Version,
int  type = (int) QStyleHintReturn.HintReturnType.SH_Default 
)

Constructs a QStyleHintReturn with version version and type type.

The version has no special meaning for QStyleHintReturn; it can be used by subclasses to distinguish between different version of the same hint type.

See also QStyleOption::version and QStyleOption::type.

Member Function Documentation

virtual void QtGui.QStyleHintReturn.CreateProxy ( )
virtual
new void QtGui.QStyleHintReturn.Dispose ( )

Member Data Documentation

SmokeInvocation QtGui.QStyleHintReturn.interceptor
protected

Property Documentation

virtual System.IntPtr QtGui.QStyleHintReturn.SmokeObject
getset
new int QtGui.QStyleHintReturn.Type
getset

This variable holds the type of the style hint container.

See also HintReturnType.

new int QtGui.QStyleHintReturn.Version
getset

This variable holds the version of the style hint return container.

This value can be used by subclasses to implement extensions without breaking compatibility. If you use qstyleoption_cast<T>(), you normally do not need to check it.