热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

PYGLET–从格式化文档中删除文本

PYGLET–从格式化文档中删除文本原文:https://www

PYGLET–从格式化文档中删除文本

原文:https://www . geesforgeks . org/pyglet-deleting-text-from-format-document/

在本文中,我们将看到如何在 python 的 PYGLET 模块中从格式化的文档中删除文本。Pyglet 是一个易于使用但功能强大的库,用于开发视觉丰富的图形用户界面应用程序,如游戏、多媒体等。窗口是占用操作系统资源的“重量级”对象。窗口可能显示为浮动区域,或者可以设置为充满整个屏幕(全屏)。格式化文档的布局通常是通过添加结构来增强其可读性,例如标题、缩进、字体变化和其他转换纯文本(未格式化)的设备,以便它们具有类似于已发布作品的外观。用户可以随时删除或插入文本,尽管有时需要以编程方式删除文本。

我们可以在下面给出的命令的帮助下创建一个窗口和格式化文档

# creating a window
window = pyglet.window.Window(width, height, title)
# creating document
document = pyglet.text.document.FormattedDocument(text)

为了创建窗口,我们对文档对象使用 delete_text 方法
语法: document.delete_text(开始,结束)
参数:它以两个整数作为参数
返回:它返回 None

下面是实现

Python 3

# importing pyglet module
import pyglet
import pyglet.window.key
# width of window
width = 500
# height of window
height = 500
# caption i.e title of the window
title = "Geeksforgeeks"
# creating a window
window = pyglet.window.Window(width, height, title)
# text
text = "Welcome to GeeksforGeeks Have a nice day"
# batch object
batch = pyglet.graphics.Batch()
# creating a formatted document
document = pyglet.text.document.FormattedDocument(text)
# setting style to the document
document.set_style(0, len(document.text), dict(font_name ='Arial', font_size = 16, color =(255, 255, 255, 255)))
# creating a incremental text layout
layout = pyglet.text.layout.IncrementalTextLayout(document, 400, 350, batch = batch)
# creating a caret
caret = pyglet.text.caret.Caret(layout, color =(150, 255, 150))
# caret to winow push handlers
window.push_handlers(caret)
# setting caret style
caret.set_style(dict(font_name ="Arial"))
# on draw event
@window.event
def on_draw():
    # clear the window
    window.clear()
    # draw the batch
    batch.draw()
    # caret to winow push handlers
    window.push_handlers(caret)
# key press event   
@window.event
def on_key_press(symbol, modifier):
    # key "C" get press
    if symbol == pyglet.window.key.C:
        # closing the window
        # window.close()
        pass
# image for icon
img = image = pyglet.resource.image("logo.png")
# setting image as icon
window.set_icon(img)
# deleting text from the document
document.delete_text(5, 15)
# start running the application
pyglet.app.run()

输出:


推荐阅读
author-avatar
Eminem被注册了
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有