summaryrefslogtreecommitdiffstats
path: root/examples/dialogs/button_dialog.py
blob: 7a99b9ad0bf87a4925927c6a82f8726660aceca2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
"""
Example of button dialog window.
"""
from prompt_toolkit.shortcuts import button_dialog


def main():
    result = button_dialog(
        title="Button dialog example",
        text="Are you sure?",
        buttons=[("Yes", True), ("No", False), ("Maybe...", None)],
    ).run()

    print(f"Result = {result}")


if __name__ == "__main__":
    main()