當前位置: 首頁>>代碼示例>>Python>>正文


Python tuiobject.TUIObject類代碼示例

本文整理匯總了Python中pyanaconda.ui.tui.tuiobject.TUIObject的典型用法代碼示例。如果您正苦於以下問題:Python TUIObject類的具體用法?Python TUIObject怎麽用?Python TUIObject使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了TUIObject類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

    def __init__(self, app, data, storage, payload, instclass):
        TUIObject.__init__(self, app, data)
        common.Hub.__init__(self, storage, payload, instclass)

        self._spokes = {}     # holds spokes referenced by their class name
        self._keys = {}       # holds spokes referenced by their user input key
        self._spoke_count = 0
開發者ID:KosiehBarter,項目名稱:anaconda,代碼行數:7,代碼來源:__init__.py

示例2: __init__

    def __init__(self, app, data, storage, payload, instclass):
        if self.__class__ is TUISpoke:
            raise TypeError("TUISpoke is an abstract class")

        TUIObject.__init__(self, app, data)
        tui.Widget.__init__(self)
        Spoke.__init__(self, storage, payload, instclass)
開發者ID:cyclefusion,項目名稱:anaconda,代碼行數:7,代碼來源:__init__.py

示例3: __init__

    def __init__(self, data, storage, payload, instclass):
        if self.__class__ is TUISpoke:
            raise TypeError("TUISpoke is an abstract class")

        TUIObject.__init__(self, data)
        Widget.__init__(self)
        Spoke.__init__(self, storage, payload, instclass)

        self.input_required = True
        self.title = N_("Default spoke title")
開發者ID:jaymzh,項目名稱:anaconda,代碼行數:10,代碼來源:__init__.py

示例4: refresh

    def refresh(self, args=None):
        """This methods fills the self.window list by all the objects
        we want shown on this screen. Title and Spokes mostly."""
        TUIObject.refresh(self, args)

        self._container = ListRowContainer(2, columns_width=39, spacing=2)

        for w in self._spokes_map:
            self._container.add(w, callback=self._item_called, data=w)

        self.window.add_with_separator(self._container)
開發者ID:jaymzh,項目名稱:anaconda,代碼行數:11,代碼來源:__init__.py

示例5: refresh

    def refresh(self, args=None):
        """This methods fills the self._window list by all the objects
        we want shown on this screen. Title and Spokes mostly."""
        TUIObject.refresh(self, args)

        def _prep(i, w):
            number = tui.TextWidget("%2d)" % i)
            return tui.ColumnWidget([(3, [number]), (None, [w])], 1)

        # split spokes to two columns
        left = [_prep(i, w) for i, w in self._keys.items() if i % 2 == 1]
        right = [_prep(i, w) for i, w in self._keys.items() if i % 2 == 0]

        c = tui.ColumnWidget([(39, left), (39, right)], 2)
        self._window.append(c)

        return True
開發者ID:KosiehBarter,項目名稱:anaconda,代碼行數:17,代碼來源:__init__.py

示例6: setup

    def setup(self, args="anaconda"):
        TUIObject.setup(self, args)
        environment = args
        cats_and_spokes = self._collectCategoriesAndSpokes()
        categories = cats_and_spokes.keys()

        for c in sorted(categories, key=lambda i: i.title):

            hub_spokes = []
            for spoke_class in cats_and_spokes[c]:
                # Do the checks for the spoke and create the spoke
                if spoke_class.should_run(environment, self.data):
                    spoke = spoke_class(self.data, self.storage, self.payload, self.instclass)

                    if spoke.showable:
                        spoke.initialize()
                    else:
                        log.warning("Spoke %s initialization failure!", spoke.__class__.__name__)
                        del spoke
                        continue

                    if spoke.indirect:
                        continue

                    hub_spokes.append(spoke)

            # sort created spokes and add them to result structures
            for spoke in sorted(hub_spokes, key=lambda s: s.title):

                self._spoke_count += 1
                self._spokes_map.append(spoke)
                self._spokes[spoke.__class__.__name__] = spoke

        if self._spoke_count:
            # initialization of all expected spokes has been started, so notify the controller
            hub_controller = lifecycle.get_controller_by_name(self.__class__.__name__)
            if hub_controller:
                hub_controller.all_modules_added()
            else:
                log.error("Initialization controller for hub %s expected but missing.", self.__class__.__name__)

        # only schedule the hub if it has some spokes
        return self._spoke_count != 0
開發者ID:jaymzh,項目名稱:anaconda,代碼行數:43,代碼來源:__init__.py

示例7: refresh

 def refresh(self, args=None):
     TUIObject.refresh(self, args)
     return True
開發者ID:cyclefusion,項目名稱:anaconda,代碼行數:3,代碼來源:__init__.py

示例8: __init__

 def __init__(self, app, data, storage, payload, instclass):
     TUIObject.__init__(self, app, data)
     tui.Widget.__init__(self)
     Spoke.__init__(self, data, storage, payload, instclass)
開發者ID:cs2c-zhangchao,項目名稱:nkwin1.0-anaconda,代碼行數:4,代碼來源:__init__.py


注:本文中的pyanaconda.ui.tui.tuiobject.TUIObject類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。