Table Of Contents

Previous topic

QPlastiqueStyle

Next topic

QCleanlooksStyle

QMacStyle

Synopsis

Static functions

Detailed Description

The PySide.QtGui.QMacStyle class provides a Mac OS X style using the Apple Appearance Manager.

This class is implemented as a wrapper to the HITheme APIs, allowing applications to be styled according to the current theme in use on Mac OS X. This is done by having primitives in PySide.QtGui.QStyle implemented in terms of what Mac OS X would normally theme.

Warning

This style is only available on Mac OS X because it relies on the HITheme APIs.

There are additional issues that should be taken into consideration to make an application compatible with the Apple Human Interface Guidelines. Some of these issues are outlined below.

  • Layout - The restrictions on window layout are such that some aspects of layout that are style-dependent cannot be achieved using PySide.QtGui.QLayout . Changes are being considered (and feedback would be appreciated) to make layouts PySide.QtGui.QStyle -able. Some of the restrictions involve horizontal and vertical widget alignment and widget size (covered below).
  • Widget size - Mac OS X allows widgets to have specific fixed sizes. Qt does not fully implement this behavior so as to maintain cross-platform compatibility. As a result some widgets sizes may be inappropriate (and subsequently not rendered correctly by the HITheme APIs).The QWidget.sizeHint() will return the appropriate size for many managed widgets (widgets enumerated in QStyle.ContentsType ).
  • Effects - PySide.QtGui.QMacStyle uses HITheme for performing most of the drawing, but also uses emulation in a few cases where HITheme does not provide the required functionality (for example, tab bars on Panther, the toolbar separator, etc). We tried to make the emulation as close to the original as possible. Please report any issues you see in effects or non-standard widgets.

There are other issues that need to be considered in the feel of your application (including the general color scheme to match the Aqua colors). The Guidelines mentioned above will remain current with new advances and design suggestions for Mac OS X.

Note that the functions provided by PySide.QtGui.QMacStyle are reimplementations of PySide.QtGui.QStyle functions; see PySide.QtGui.QStyle for their documentation.

../../_images/qmacstyle.png
class PySide.QtGui.QMacStyle

Constructs a PySide.QtGui.QMacStyle object.

PySide.QtGui.QMacStyle.FocusRectPolicy

This type is used to signify a widget’s focus rectangle policy.

Constant Description
QMacStyle.FocusEnabled show a focus rectangle when the widget has focus.
QMacStyle.FocusDisabled never show a focus rectangle for the widget.
QMacStyle.FocusDefault show a focus rectangle when the widget has focus and the widget is a QSpinWidget, PySide.QtGui.QDateTimeEdit , PySide.QtGui.QLineEdit , QListBox , PySide.QtGui.QListView , editable PySide.QtGui.QTextEdit , or one of their subclasses.
PySide.QtGui.QMacStyle.WidgetSizePolicy
Constant Description
QMacStyle.SizeSmall  
QMacStyle.SizeLarge  
QMacStyle.SizeMini  
QMacStyle.SizeDefault  
static PySide.QtGui.QMacStyle.focusRectPolicy(w)
Parameters:wPySide.QtGui.QWidget
Return type:PySide.QtGui.QMacStyle.FocusRectPolicy

Returns the focus rectangle policy for the widget w .

The focus rectangle policy can be one of QMacStyle.FocusRectPolicy .

In 4.3 and up this function will simply test for the Qt.WA_MacShowFocusRect attribute and will never return QMacStyle.FocusDefault .

static PySide.QtGui.QMacStyle.setFocusRectPolicy(w, policy)
Parameters:

Sets the focus rectangle policy of w . The policy can be one of QMacStyle.FocusRectPolicy .

This is now simply an interface to the Qt.WA_MacShowFocusRect attribute and the FocusDefault value does nothing anymore. If you want to set a widget back to its default value, you must save the old value of the attribute before you change it.

static PySide.QtGui.QMacStyle.setWidgetSizePolicy(w, policy)
Parameters:

Call QWidget.setAttribute() with Qt.WA_MacMiniSize , Qt.WA_MacSmallSize , or Qt.WA_MacNormalSize instead.

static PySide.QtGui.QMacStyle.widgetSizePolicy(w)
Parameters:wPySide.QtGui.QWidget
Return type:PySide.QtGui.QMacStyle.WidgetSizePolicy

Call QWidget.testAttribute() with Qt.WA_MacMiniSize , Qt.WA_MacSmallSize , or Qt.WA_MacNormalSize instead.