File: test_mouse_callback.py

package info (click to toggle)
qtile 0.34.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,004 kB
  • sloc: python: 49,959; ansic: 4,371; xml: 324; sh: 260; makefile: 218
file content (27 lines) | stat: -rw-r--r-- 794 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import libqtile.bar
import libqtile.config
import libqtile.confreader
import libqtile.layout
from libqtile import widget
from libqtile.lazy import lazy


def test_lazy_callback(manager_nospawn, minimal_conf_noscreen):
    """Test widgets accept lazy calls"""
    textbox = widget.TextBox(
        text="Testing",
        mouse_callbacks={
            "Button1": lazy.widget["textbox"].update("LazyCall"),
        },
    )

    config = minimal_conf_noscreen
    config.screens = [libqtile.config.Screen(top=libqtile.bar.Bar([textbox], 10))]

    manager_nospawn.start(config)

    topbar = manager_nospawn.c.bar["top"]
    assert topbar.widget["textbox"].info()["text"] == "Testing"

    topbar.fake_button_press(0, 0, button=1)
    assert topbar.widget["textbox"].info()["text"] == "LazyCall"