File: dialog.cpp

package info (click to toggle)
tuiwidgets 0.2-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 14,940 kB
  • sloc: cpp: 54,583; python: 495; sh: 83; makefile: 8
file content (61 lines) | stat: -rw-r--r-- 1,504 bytes parent folder | download | duplicates (3)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#include "tpi-image-builder.h"

#include <QObject>
#include <QRect>

#include <Tui/ZDialog.h>
#include <Tui/ZRoot.h>
#include <Tui/ZTerminal.h>
#include <Tui/ZTest.h>

void dialog() {
    Tui::ZTerminal terminal (Tui::ZTerminal::OffScreen(40, 40));

    Tui::ZRoot root;
    terminal.setMainWidget(&root);

    // default
    {
        Tui::ZDialog dialog(&root);
        dialog.setGeometry({1, 1, 18, 4});

        export_tpi(&terminal, "dialog", 0, 0, 20, 6);
    }

    // focus
    {
        Tui::ZDialog dialog(&root);
        dialog.setGeometry({1, 1, 18, 4});
        dialog.setFocus();

        export_tpi(&terminal, "dialog-focus", 0, 0, 20, 6);
    }

    // WindowTitle
    {
        Tui::ZDialog dialog(&root);
        dialog.setGeometry({1, 1, 18, 4});
        dialog.setFocus();
        dialog.setWindowTitle("WindowTitle");

        export_tpi(&terminal, "dialog-windowtitle", 0, 0, 20, 6);
    }

    // options
    {
        Tui::ZDialog dialog(&root);
        dialog.setGeometry({1, 1, 18, 4});
        dialog.setFocus();
        dialog.setWindowTitle("Title");
        dialog.setOptions({Tui::ZWindow::MoveOption |
                           Tui::ZWindow::ResizeOption |
                           Tui::ZWindow::CloseOption |
                           Tui::ZWindow::AutomaticOption |
                           Tui::ZWindow::ContainerOptions });

        Tui::ZTest::sendText(&terminal, "-", Tui::AltModifier);

        export_tpi(&terminal, "dialog-options", 0, 0, 24, 10);
    }

}