• PySide 模块
  • PySide.QtGui
  • 内容表

    上一话题

    QPlastiqueStyle

    下一话题

    QCleanlooksStyle

    QMacStyle

    概要

    静态函数

    详细描述

    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.

    • 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

    构造 PySide.QtGui.QMacStyle 对象。

    PySide.QtGui.QMacStyle. FocusRectPolicy

    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.
    PySide.QtGui.QMacStyle. WidgetSizePolicy
    常量 描述
    QMacStyle.SizeSmall  
    QMacStyle.SizeLarge  
    QMacStyle.SizeMini  
    QMacStyle.SizeDefault  
    static PySide.QtGui.QMacStyle. focusRectPolicy ( w )
    参数: 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 .

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

    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.

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

    调用 QWidget.setAttribute() with Qt.WA_MacMiniSize , Qt.WA_MacSmallSize ,或 Qt.WA_MacNormalSize 代替。

    static PySide.QtGui.QMacStyle. widgetSizePolicy ( w )
    参数: w PySide.QtGui.QWidget
    返回类型: PySide.QtGui.QMacStyle.WidgetSizePolicy

    调用 QWidget.testAttribute() with Qt.WA_MacMiniSize , Qt.WA_MacSmallSize ,或 Qt.WA_MacNormalSize 代替。