[QtCore module]

该QHistoryState类提供返回到一个以前的活动子状态的手段。More…

继承QAbstractState

Types

  • enum HistoryType { ShallowHistory, DeepHistory }

Methods

  • __init__ (self, QState parent = None)
  • __init__ (self, HistoryType type, QState parent = None)
  • QAbstractState defaultState (self)
  • bool event (self, QEvent e)
  • HistoryType historyType (self)
  • onEntry (self, QEvent event)
  • onExit (self, QEvent event)
  • setDefaultState (self, QAbstractState state)
  • setHistoryType (self, HistoryType type)

Detailed Description

该QHistoryState类提供返回到一个以前的活动子状态的手段。

史状态是一个伪状态,代表该子状态的父状态是在最后时刻父状态中退出。与历史状态为目标的过渡实际上是在父状态的其他子状态的一个过渡。 QHistoryState是一部分The State Machine Framework

使用setDefaultState( )函数来设置,如果父状态从来没有进入应该进入状态。例如:

  1. [QStateMachine](docs_qstatemachine.html) machine;
  2. [QState](docs_qstate.html) *s1 = new [QState](docs_qstate.html)();
  3. [QState](docs_qstate.html) *s11 = new [QState](docs_qstate.html)(s1);
  4. [QState](docs_qstate.html) *s12 = new [QState](docs_qstate.html)(s1);
  5. QHistoryState *s1h = new QHistoryState(s1);
  6. s1h->setDefaultState(s11);
  7. machine.addState(s1);
  8. [QState](docs_qstate.html) *s2 = new [QState](docs_qstate.html)();
  9. machine.addState(s2);
  10. [QPushButton](docs_qpushbutton.html) *button = new [QPushButton](docs_qpushbutton.html)();
  11. // Clicking the button will cause the state machine to enter the child state
  12. // that s1 was in the last time s1 was exited, or the history state's default
  13. // state if s1 has never been entered.
  14. s1->addTransition(button, SIGNAL(clicked()), s1h);

默认情况下,历史状态很浅,这意味着它不会记得嵌套状态。这可以通过配置historyType属性。


Type Documentation

  1. QHistoryState.HistoryType

此枚举指定的历史类型,一个QHistoryState记录。

Constant Value Description
QHistoryState.ShallowHistory 0 只有父状态的直接子状态被记录下来。在这种情况下,与历史状态为目标的过渡最终会在父是在上一次被退出的直接子状态。这是默认的。
QHistoryState.DeepHistory 1 嵌套状态被记录下来。在这种情况下,与历史状态为目标的过渡将结束在最深层的后代状态母公司是在上次被退出。

Method Documentation

  1. QHistoryState.__init__ (self, QState parent = None)

parent的说法,如果不是没有,原因self通过Qt的,而不是PyQt的拥有。

构造一个新的浅历史状态与给定parent状态。

  1. QHistoryState.__init__ (self, HistoryType type, QState parent = None)

parent的说法,如果不是没有,原因self通过Qt的,而不是PyQt的拥有。

构造的赋予了新的历史状态type用给定的parent状态。

  1. QAbstractState QHistoryState.defaultState (self)

[

  1. bool QHistoryState.event (self, QEvent e)

](docs_qabstractstate.html)

从重新实现QObject.event( ) 。

  1. HistoryType QHistoryState.historyType (self)

[

  1. QHistoryState.onEntry (self, QEvent event)

](docs_qhistorystate.html#HistoryType-enum)

从重新实现QAbstractState.onEntry( ) 。

  1. QHistoryState.onExit (self, QEvent event)

从重新实现QAbstractState.onExit( ) 。

  1. QHistoryState.setDefaultState (self, QAbstractState state)
  1. QHistoryState.setHistoryType (self, HistoryType type)