当前位置: 首页>>代码示例>>Python>>正文


Python Graphics.add_button_and_label方法代码示例

本文整理汇总了Python中graphics.Graphics.add_button_and_label方法的典型用法代码示例。如果您正苦于以下问题:Python Graphics.add_button_and_label方法的具体用法?Python Graphics.add_button_and_label怎么用?Python Graphics.add_button_and_label使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在graphics.Graphics的用法示例。


在下文中一共展示了Graphics.add_button_and_label方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: get_graphics

# 需要导入模块: from graphics import Graphics [as 别名]
# 或者: from graphics.Graphics import add_button_and_label [as 别名]
    def get_graphics(self):
        self._in_progress = False

        graphics = Graphics()
        url = os.path.join(self._task_master.get_bundle_path(), 'html-content',
                           self._uri[0])
        graphics.add_uri('file://' + url, height=self._height)
        graphics.set_zoom_level(self._zoom_level)

        error_report = self._task_master.read_task_data(ERROR_REPORT)
        self._entry = graphics.add_text_view()
        if error_report is not None:
            text_buffer = self._entry.get_buffer()
            text_buffer.set_text(error_report)
        self._task_master.activity.set_copy_widget(text_entry=self._entry)
        self._task_master.activity.set_paste_widget(text_entry=self._entry)

        for i in range(3):
            button, label = graphics.add_button_and_label()
            button.connect('clicked', self._upload_cb, i)
            label.set_use_markup(True)
            self._buttons.append(button)
            self._labels.append(label)
            self._files.append(None)
            self._mimetypes.append(None)

        url = os.path.join(self._task_master.get_bundle_path(), 'html-content',
                           self._uri[1])
        graphics.add_uri('file://' + url, height=self._height)
        graphics.set_zoom_level(self._zoom_level)

        return graphics, self._prompt
开发者ID:cottonpaul,项目名称:OneSupport,代码行数:34,代码来源:tasks.py


注:本文中的graphics.Graphics.add_button_and_label方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。