summaryrefslogtreecommitdiff
path: root/support/dktools/WxdkdrawDlgOptionsNewObjects.h
blob: 8e4fac52d54c5791a7a8ca5447b455b569de8196 (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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/*
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: WxdkdrawDlgOptionsNewObjects.wxc
*/

/**	@file WxdkdrawDlgOptionsNewObjects.h Header file for the WxdkdrawDlgOptionsNewObjects module.
*/

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


#line 75 "WxdkdrawDlgOptionsNewObjects.wxc"

#ifndef	WXDKDRAW_H_INCLUDED
#include "wxdkdraw.h"
#endif

#ifndef	WXDKDRAWFRAME_H_INCLUDED
#include "WxdkdrawFrame.h"
#endif


#line 85 "WxdkdrawDlgOptionsNewObjects.wxc"

/**	Dialog to change dot details.
*/
class WxdkdrawDlgOptionsNewObjects : public wxDialog
{
	private:

		/** Events to process.
		*/
#if	wxCHECK_VERSION(3,0,0)
		wxDECLARE_EVENT_TABLE();
#else
		DECLARE_EVENT_TABLE()
#endif

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

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

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

    /**	GUI element sizerContents.
    */
#line 25 "WxdkdrawDlgOptionsNewObjects.wxc"
    wxGridBagSizer *sizerContents;

    /**	GUI element sizerButtons.
    */
#line 59 "WxdkdrawDlgOptionsNewObjects.wxc"
    wxStdDialogButtonSizer *sizerButtons;

    /**	GUI element lGroupDotFilled.
    */
#line 36 "WxdkdrawDlgOptionsNewObjects.wxc"
    wxStaticText *lGroupDotFilled;

    /**	GUI element lDiameterFilled.
    */
#line 39 "WxdkdrawDlgOptionsNewObjects.wxc"
    wxStaticText *lDiameterFilled;

    /**	GUI element spDiameterFilled.
    */
#line 42 "WxdkdrawDlgOptionsNewObjects.wxc"
    wxSpinCtrl *spDiameterFilled;

    /**	GUI element lGroupDotWhite.
    */
#line 47 "WxdkdrawDlgOptionsNewObjects.wxc"
    wxStaticText *lGroupDotWhite;

    /**	GUI element lDiameterWhite.
    */
#line 50 "WxdkdrawDlgOptionsNewObjects.wxc"
    wxStaticText *lDiameterWhite;

    /**	GUI element spDiameterWhite.
    */
#line 53 "WxdkdrawDlgOptionsNewObjects.wxc"
    wxSpinCtrl *spDiameterWhite;

    /**	GUI element buttonOK.
    */
#line 64 "WxdkdrawDlgOptionsNewObjects.wxc"
    wxButton *buttonOK;

    /**	GUI element buttonCancel.
    */
#line 69 "WxdkdrawDlgOptionsNewObjects.wxc"
    wxButton *buttonCancel;


#line 101 "WxdkdrawDlgOptionsNewObjects.wxc"

	protected:

		wxColour					 m_oColourRed;

		/**	Parent frame.
		*/
		WxdkdrawFrame				*m_pParent;

		/**	Localized text fragments.
		*/
		wxChar const * const		*m_sTexts;

		/**	Address of filled dot diameter variable.
		*/
		int							*m_pFilled;

		/**	Address of white dot diameter variable.
		*/
		int							*m_pWhite;

		/**	Diameter of filled dots.
		*/
		int							 m_iDiameterFilled;

		/**	Diameter of white filled dots.
		*/
		int							 m_iDiameterWhite;

	public:

		/**	Constructor.
			@param	pParent		Parent frame (programs main window).
			@param	pFilled		Address of filled dot diameter variable.
			@param	pWhite		Address of white filled dot diameter variable.
			@param	pTexts		Localized text fragments.
		*/
		WxdkdrawDlgOptionsNewObjects(
			WxdkdrawFrame			*pParent,
			int						*pFilled,
			int						*pWhite,
			wxChar const * const	*pTexts
		);

		/**	OK button handler.
			@param	event	Event to process.
		*/
		void
		OnOK(wxCommandEvent & event);

		/**	Cancel button handler.
			@param	event	Event to process.
		*/
		void
		OnCancel(wxCommandEvent & event);

		/**	Retrieve diameter for filled dots.
			@return Diameter for filled dots.
		*/
		int
		GetFilledDotDiameter(void);

		/**	Retrieve diameter for white filled dots.
			@return	Diameter for white filled dots.
		*/
		int
		GetWhiteDotDiameter(void);

};



#line 173 "WxdkdrawDlgOptionsNewObjects.wxc"



#endif