summaryrefslogtreecommitdiff
path: root/support/dktools/Dk4WxYesNoDialog.h
blob: 40bc472cf432a4e847957f284b9c87ab3653d621 (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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*
Copyright (C) 2020-2020, Dirk Krause
SPDX-License-Identifier: BSD-3-Clause
*/

/*
	WARNING: This file was generated by the dkct program (see
	http://dktools.sourceforge.net/ for details).
	Changes you make here will be lost if dkct is run again!
	You should modify the original source and run dkct on it.
	Original source: Dk4WxYesNoDialog.wxc
*/

#ifndef DK4WXYESNODIALOG_H_INCLUDED
/** Avoid multiple inclusions. */
#define DK4WXYESNODIALOG_H_INCLUDED 1


#line 50 "Dk4WxYesNoDialog.wxc"

/**	@file	Dk4WxYesNoDialog.h	Message box dialog for yes/no decisions.
*/

#ifndef DK4CONF_H_INCLUDED
#if DK4_BUILDING_DKTOOLS4
#include "dk4conf.h"
#else
#include <dktools-4/dk4conf.h>
#endif
#endif

#ifndef DK4TYPES_H_INCLUDED
#if DK4_BUILDING_DKTOOLS4
#include "dk4types.h"
#else
#include <dktools-4/dk4types.h>
#endif
#endif

#ifndef WX_WXPREC_H_INCLUDED
#include <wx/wxprec.h>
#define	WX_WXPREC_H_INCLUDED 1
#endif
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#ifndef WX_WX_H_INCLUDED
#include <wx/wx.h>
#define	WX_WX_H_INCLUDED 1
#endif
#endif

#ifndef DK4WXAPPLICATIONHELPER_H_INCLUDED
#if DK4_BUILDING_DKTOOLS4
#include "Dk4WxApplicationHelper.h"
#else
#include <dktools-4/Dk4WxApplicationHelper.h>
#endif
#endif


#line 93 "Dk4WxYesNoDialog.wxc"

/**	Message box dialog for simples yes or no decisions.
*/
class	Dk4WxYesNoDialog : public wxDialog
{

	private:

    /**	Event table.
    */
#if	wxCHECK_VERSION(3,0,0)
    wxDECLARE_EVENT_TABLE();
#else
    DECLARE_EVENT_TABLE()
#endif

	protected:

	/**	Bitmap containing the question mark.
	*/
	wxBitmap		bm_question;

	public:

	/**	Constructor.
		@param	parent			Parent frame.
		@param	pAppHelp		Application helper for localized texts.
		@param	tMessage		Message to show.
		@param	tTitle			Dialog box title.
	*/
	Dk4WxYesNoDialog(
		wxFrame					*parent,
		Dk4WxApplicationHelper	*pAppHelp,
		wxChar const			*tMessage,
		wxChar const			*tTitle
	);

	/**	Event handler for Yes button.
		@param	event	Event to process (ignored).
	*/
	void
	OnYes(wxCommandEvent & event);

	/**	Event handler for No button.
		@param	event	Event to process (ignored).
	*/
	void
	OnNo(wxCommandEvent & event);

    /**	Flag: GUI ok.
    */
    bool dkctGUILayoutOK;

    /**	GUI element sizerHorizontal.
    */
#line 11 "Dk4WxYesNoDialog.wxc"
    wxBoxSizer *sizerHorizontal;

    /**	GUI element sizerVertical.
    */
#line 17 "Dk4WxYesNoDialog.wxc"
    wxBoxSizer *sizerVertical;

    /**	GUI element sizerContents.
    */
#line 25 "Dk4WxYesNoDialog.wxc"
    wxBoxSizer *sizerContents;

    /**	GUI element sizerButtons.
    */
#line 37 "Dk4WxYesNoDialog.wxc"
    wxStdDialogButtonSizer *sizerButtons;

    /**	GUI element bitmapIcon.
    */
#line 31 "Dk4WxYesNoDialog.wxc"
    wxStaticBitmap *bitmapIcon;

    /**	GUI element lText.
    */
#line 34 "Dk4WxYesNoDialog.wxc"
    wxStaticText *lText;

    /**	GUI element bYes.
    */
#line 41 "Dk4WxYesNoDialog.wxc"
    wxButton *bYes;

    /**	GUI element bNo.
    */
#line 45 "Dk4WxYesNoDialog.wxc"
    wxButton *bNo;


#line 143 "Dk4WxYesNoDialog.wxc"
};


#line 146 "Dk4WxYesNoDialog.wxc"


#endif