File: checkbox.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 (70 lines) | stat: -rw-r--r-- 1,775 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
62
63
64
65
66
67
68
69
70
#include "tpi-image-builder.h"

#include <QObject>
#include <QRect>

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

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

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

    Tui::ZDialog dialog(&root);
    dialog.setGeometry({0, 0, 20, 10});
    dialog.setFocus();
    dialog.setBorderEdges({});

    // default
    {
        Tui::ZCheckBox checkbox(&dialog);
        checkbox.setGeometry({0, 1, 14, 1});
        checkbox.setMarkup("C<m>h</m>eckBox");

        export_tpi(&terminal, "checkbox", 0, 0, 14, 3);
    }

    // focus
    {
        Tui::ZCheckBox checkbox(&dialog);
        checkbox.setGeometry({0, 1, 14, 1});
        checkbox.setMarkup("C<m>h</m>eckBox");
        checkbox.setFocus();

        export_tpi(&terminal, "checkbox-focus", 0, 0, 14, 3);
    }

    // checked
    {
        Tui::ZCheckBox checkbox(&dialog);
        checkbox.setGeometry({0, 1, 14, 1});
        checkbox.setMarkup("C<m>h</m>eckBox");
        checkbox.setCheckState(Tui::CheckState::Checked);

        export_tpi(&terminal, "checkbox-checked", 0, 0, 14, 3);
    }

    // partially checked
    {
        Tui::ZCheckBox checkbox(&dialog);
        checkbox.setGeometry({0, 1, 14, 1});
        checkbox.setMarkup("C<m>h</m>eckBox");
        checkbox.setCheckState(Tui::CheckState::PartiallyChecked);

        export_tpi(&terminal, "checkbox-partially-checked", 0, 0, 14, 3);
    }

    // disabled
    {
        Tui::ZCheckBox checkbox(&dialog);
        checkbox.setGeometry({0, 1, 14, 1});
        checkbox.setMarkup("C<m>h</m>eckBox");
        checkbox.setEnabled(false);

        export_tpi(&terminal, "checkbox-disabled", 0, 0, 14, 3);
    }
}