summaryrefslogtreecommitdiffhomepage
path: root/StarsEx/ConfirmDlg.cpp
blob: a3ad6a9a446893c58e351c98aa448b87d89d4680 (plain)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/*  Starshatter: The Open Source Project
    Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
    Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
    Copyright (c) 1997-2006, Destroyer Studios LLC.

    AUTHOR:       John DiCamillo


    OVERVIEW
    ========
    General-purpose confirmation dialog class
*/

#include "ConfirmDlg.h"
#include "MenuScreen.h"
#include "FormatUtil.h"

#include "Game.h"
#include "Keyboard.h"
#include "Button.h"

// +--------------------------------------------------------------------+
// DECLARE MAPPING FUNCTIONS:

DEF_MAP_CLIENT(ConfirmDlg, OnApply);
DEF_MAP_CLIENT(ConfirmDlg, OnCancel);

// +--------------------------------------------------------------------+

ConfirmDlg::ConfirmDlg(Screen* s, FormDef& def, MenuScreen* mgr)
: FormWindow(s,  0,  0, s->Width(), s->Height()), manager(mgr),
parent_control(0), btn_apply(0), btn_cancel(0)
{
    Init(def);
}

ConfirmDlg::~ConfirmDlg()
{
}

void
ConfirmDlg::RegisterControls()
{
    if (btn_apply)
    return;

    btn_apply   = (Button*) FindControl(1);
    REGISTER_CLIENT(EID_CLICK, btn_apply,  ConfirmDlg, OnApply);

    btn_cancel  = (Button*) FindControl(2);
    REGISTER_CLIENT(EID_CLICK, btn_cancel, ConfirmDlg, OnCancel);

    lbl_title   = FindControl(100);
    lbl_message = FindControl(101);
}

// +--------------------------------------------------------------------+

ActiveWindow*
ConfirmDlg::GetParentControl()
{
    return parent_control;
}

void
ConfirmDlg::SetParentControl(ActiveWindow* p)
{
    parent_control = p;
}

Text
ConfirmDlg::GetTitle()
{
    if (lbl_title)
    return lbl_title->GetText();

    return "";
}

void
ConfirmDlg::SetTitle(const char* t)
{
    if (lbl_title)
    lbl_title->SetText(t);
}

Text
ConfirmDlg::GetMessage()
{
    if (lbl_message)
    return lbl_message->GetText();

    return "";
}

void
ConfirmDlg::SetMessage(const char* m)
{
    if (lbl_message)
    lbl_message->SetText(m);
}

// +--------------------------------------------------------------------+

void
ConfirmDlg::ExecFrame()
{
    if (Keyboard::KeyDown(VK_RETURN)) {
        OnApply(0);
    }

    if (Keyboard::KeyDown(VK_ESCAPE)) {
        OnCancel(0);
    }
}

// +--------------------------------------------------------------------+

void
ConfirmDlg::Show()
{
    if (!IsShown()) {
        Button::PlaySound(Button::SND_CONFIRM);
    }

    FormWindow::Show();
    SetFocus();
}

// +--------------------------------------------------------------------+

void
ConfirmDlg::OnApply(AWEvent* event)
{
    manager->HideConfirmDlg();

    if (parent_control)
    parent_control->ClientEvent(EID_USER_1);
}

void
ConfirmDlg::OnCancel(AWEvent* event)
{
    manager->HideConfirmDlg();
}

// +--------------------------------------------------------------------+