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.
警告
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.
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.
构造 PySide.QtGui.QMacStyle 对象。
This type is used to signify a widget's focus rectangle policy.
| 常量 | 描述 |
|---|---|
| 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. |
| 常量 | 描述 |
|---|---|
| QMacStyle.SizeSmall | |
| QMacStyle.SizeLarge | |
| QMacStyle.SizeMini | |
| QMacStyle.SizeDefault |
| 参数: | w – PySide.QtGui.QWidget |
|---|---|
| 返回类型: | 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 .
| 参数: |
|---|
Sets the focus rectangle policy of w 。 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.
| 参数: |
|---|
调用 QWidget.setAttribute() with Qt.WA_MacMiniSize , Qt.WA_MacSmallSize ,或 Qt.WA_MacNormalSize 代替。
| 参数: | w – PySide.QtGui.QWidget |
|---|---|
| 返回类型: | PySide.QtGui.QMacStyle.WidgetSizePolicy |
调用 QWidget.testAttribute() with Qt.WA_MacMiniSize , Qt.WA_MacSmallSize ,或 Qt.WA_MacNormalSize 代替。