如何在Pyglet的ScrollableTextLayout中向上滚动文本,而不是向下滚动? .view_y似乎没有在文档中列出的效果

时间:2012-09-23 19:46:11

标签: python pyglet

我正在试图弄清楚如何在Pyglet的ScrollableTextLayout中向上滚动文本,而不是向下滚动。为了清楚起见,这里有一个快速快照,以显示我的意思“向上”。 (以防万一)

How it currently behaves

我希望它如何表现:

enter image description here

根据文档,这种行为可以通过view_y属性实现,但我尝试了各种不同的值,但都没有明显的变化。

代码:

import pyglet

class LoadDialog(pyglet.sprite.Sprite):
    def __init__(self):
        self.lbatch = pyglet.graphics.Batch()

        self.loading_window = pyglet.image.load('..\\resources\\loading_base.png')
        super(LoadDialog, self).__init__(self.loading_window, batch=self.lbatch)


        self.doc = pyglet.text.decode_text('Hello world!'.ljust(40))
        self.doc.set_style(0,12, dict(font_name='Arial', font_size=12,
                                    color=(0,0,0,255)))

        self.layout = pyglet.text.layout.ScrollableTextLayout(self.doc, 
                                            width=self.load_animation.width, 
                                            height=100, multiline=True, batch=self.lbatch)
        self.layout.x = 220
        self.layout.y = 160
        self.layout.view_y = -80

    def update(self, dx):
        self.doc.insert_text(0, "New line".ljust(40))






sprite = LoadDialog()
window = pyglet.window.Window(width=640, height=480)

pyglet.gl.glClearColor(1, 1, 1, 1)

@window.event
def on_draw():
    window.clear()
    sprite.lbatch.draw()
    sprite.layout.draw()

@window.event
def update(dx):
    sprite.update(dx)

pyglet.clock.schedule_interval(update, 1.0)
pyglet.app.run()

我已经尝试了layout.view_y的大量值,从-1到荒谬的值-3000500只是为了看看 >改变。但它总是给出第一张图像中显示的确切行为。

我做错了什么?

1 个答案:

答案 0 :(得分:1)

首先,您的示例取决于图片文件及其宽度(未提供),这会使测试变得复杂。

第二次,您正在通过调用UnformattedDocument创建pyglet.text.decode_text,然后重复在{0}位置显示UnformattedDocument文本(开头)在这一行:

def update(self, dx):
    self.doc.insert_text(0, "New line".ljust(40))

如果您希望文本显示在最后,正如您在图形中所暗示的那样,请将其插入到最后!

def update(self, dx):
    # Fix the implied bug
    self.doc.insert_text(-1, "New line".ljust(40))

第三次,让我们回答您实际陈述的问题。如果您阅读了属性ScrollableTextLayout.view_y的API文档,您会发现......

  

超出范围[height - content_height,0]的值会自动在范围内剪切。

...所以当content_height为0时将view_y设置为-80会导致view_y被剪切为0然后再也不会尝试设置view_y。滚动问题的解决方案是每次内容高度更改时设置view_y。对于一个简单的修复,您只需设置view_y,使内容的底部始终向上滚动到框架的底部:

def update(self, dx):
    # Fix the implied bug
    self.doc.insert_text(-1, "New line".ljust(40))
    # The answer to the stated question
    self.layout.view_y = -self.layout.content_height