コード例 #1
0
ファイル: __init__.py プロジェクト: kynikos/outspline
    def __init__(self):
        self.items = {}
        self.itemicons = {}

        ViewMenu(self)

        wxgui_api.bind_to_creating_tree(self._handle_creating_tree)
        wxgui_api.bind_to_close_database(self._handle_close_database)
        wxgui_api.bind_to_open_editor(self._handle_open_editor)
        wxgui_api.bind_to_close_editor(self._handle_close_editor)
コード例 #2
0
ファイル: __init__.py プロジェクト: xguse/outspline
    def __init__(self):
        self.items = {}
        self.itemicons = {}

        ViewMenu(self)

        wxgui_api.bind_to_creating_tree(self._handle_creating_tree)
        wxgui_api.bind_to_close_database(self._handle_close_database)
        wxgui_api.bind_to_open_editor(self._handle_open_editor)
        wxgui_api.bind_to_close_editor(self._handle_close_editor)
コード例 #3
0
ファイル: __init__.py プロジェクト: xguse/outspline
    def __init__(self):
        self.items = {}
        self.itemicons = {}

        wxgui_api.install_bundled_icon("wxlinks", '@links',
                                                    ("Tango", "links16.png"))

        ViewMenu(self)

        wxgui_api.bind_to_creating_tree(self._handle_creating_tree)
        wxgui_api.bind_to_close_database(self._handle_close_database)
        wxgui_api.bind_to_open_editor(self._handle_open_editor)
        wxgui_api.bind_to_close_editor(self._handle_close_editor)
コード例 #4
0
ファイル: __init__.py プロジェクト: xguse/outspline
    def __init__(self):
        self.items = {}
        self.itemicons = {}

        wxgui_api.install_bundled_icon("wxlinks", '@links',
                                       ("Tango", "links16.png"))

        ViewMenu(self)

        wxgui_api.bind_to_creating_tree(self._handle_creating_tree)
        wxgui_api.bind_to_close_database(self._handle_close_database)
        wxgui_api.bind_to_open_editor(self._handle_open_editor)
        wxgui_api.bind_to_close_editor(self._handle_close_editor)
コード例 #5
0
ファイル: __init__.py プロジェクト: mikpim01/outspline
    def __init__(self):
        self.config = coreaux_api.get_plugin_configuration('wxtexthistory')
        self.areas = {}
        Menu(self)

        wxgui_api.bind_to_open_editor(self._handle_open_editor)
コード例 #6
0
ファイル: __init__.py プロジェクト: kynikos/outspline
    def __init__(self):
        self.config = coreaux_api.get_plugin_configuration('wxtexthistory')
        self.areas = {}
        Menu(self)

        wxgui_api.bind_to_open_editor(self._handle_open_editor)