本文整理匯總了Python中horizons.messaging.TabWidgetChanged.subscribe方法的典型用法代碼示例。如果您正苦於以下問題:Python TabWidgetChanged.subscribe方法的具體用法?Python TabWidgetChanged.subscribe怎麽用?Python TabWidgetChanged.subscribe使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類horizons.messaging.TabWidgetChanged
的用法示例。
在下文中一共展示了TabWidgetChanged.subscribe方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __init__
# 需要導入模塊: from horizons.messaging import TabWidgetChanged [as 別名]
# 或者: from horizons.messaging.TabWidgetChanged import subscribe [as 別名]
def __init__(self, session):
from horizons.session import Session
assert isinstance(session, Session)
self.session = session
# special slot because of special properties
self.gold_gui = load_uh_widget(self.__class__.GOLD_ENTRY_GUI_FILE, style=self.__class__.STYLE)
self.gold_gui.balance_visible = False
self.gold_gui.child_finder = PychanChildFinder(self.gold_gui)
gold_icon = self.gold_gui.child_finder("res_icon")
gold_icon.image = get_res_icon_path(RES.GOLD)
gold_icon.max_size = gold_icon.min_size = gold_icon.size = (32, 32)
self.gold_gui.mapEvents({
"resbar_gold_container/mouseClicked/stats" : self._toggle_stats,
})
self.gold_gui.helptext = _("Click to show statistics")
self.stats_gui = None
self.gui = [] # list of slots
self.resource_configurations = weakref.WeakKeyDictionary()
self.current_instance = weakref.ref(self) # can't weakref to None
self.construction_mode = False
self._last_build_costs = None
self._do_show_dummy = False
self._update_default_configuration()
NewPlayerSettlementHovered.subscribe(self._on_different_settlement)
TabWidgetChanged.subscribe(self._on_tab_widget_changed)
# set now and then every few sec
ExtScheduler().add_new_object(self._update_balance_display, self, run_in=0)
ExtScheduler().add_new_object(self._update_balance_display, self, run_in=Player.STATS_UPDATE_INTERVAL, loops=-1)
示例2: __init__
# 需要導入模塊: from horizons.messaging import TabWidgetChanged [as 別名]
# 或者: from horizons.messaging.TabWidgetChanged import subscribe [as 別名]
def __init__(self, session):
from horizons.session import Session
assert isinstance(session, Session)
self.session = session
# special slot because of special properties
self.gold_gui = load_uh_widget(self.__class__.GOLD_ENTRY_GUI_FILE, style=self.__class__.STYLE)
self.gold_gui.balance_visible = False
self.gold_gui.child_finder = PychanChildFinder(self.gold_gui)
self.gold_gui.child_finder("res_icon").image = get_res_icon_path(RES.GOLD, 32)
self.gui = [] # list of slots
self.resource_configurations = weakref.WeakKeyDictionary()
self.current_instance = weakref.ref(self) # can't weakref to None
self.construction_mode = False
self._last_build_costs = None
self._do_show_dummy = False
self._update_default_configuration()
NewPlayerSettlementHovered.subscribe(self._on_different_settlement)
TabWidgetChanged.subscribe(self._on_tab_widget_changed)
# set now and then every 2 sec
ExtScheduler().add_new_object(self._update_balance_display, self, run_in=0)
ExtScheduler().add_new_object(self._update_balance_display, self, run_in=2, loops=-1)