summaryrefslogtreecommitdiff
path: root/support/dktools/WxdkdrawDlgLineCap.cpp
blob: 9e4c68c76e3420ea4a49f0b693fd074215cf6e9d (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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
/*
Copyright (C) 2019-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: WxdkdrawDlgLineCap.wxc
*/

/**	@file WxdkdrawDlgLineCap.cpp The WxdkdrawDlgLineCap module.
*/


#line 146 "WxdkdrawDlgLineCap.wxc"

#ifndef	WXDKDRAWDLGLINECAP_H_INCLUDED
#include "WxdkdrawDlgLineCap.h"
#endif




#line 153 "WxdkdrawDlgLineCap.wxc"



/**	Assign functions to events.
*/
#if	wxCHECK_VERSION(3,0,0)
wxBEGIN_EVENT_TABLE(WxdkdrawDlgLineCap,wxDialog)
#else
BEGIN_EVENT_TABLE(WxdkdrawDlgLineCap,wxDialog)
#endif
	EVT_BUTTON(\
		WxdkdrawDlgLineCap::WXD_ID_LC_BUTTED,\
		WxdkdrawDlgLineCap::OnLineCap\
	)
	EVT_BUTTON(\
		WxdkdrawDlgLineCap::WXD_ID_LC_ROUNDED,\
		WxdkdrawDlgLineCap::OnLineCap\
	)
	EVT_BUTTON(\
		WxdkdrawDlgLineCap::WXD_ID_LC_PROJECTING,\
		WxdkdrawDlgLineCap::OnLineCap\
	)
	EVT_BUTTON(\
		wxID_CANCEL,\
		WxdkdrawDlgLineCap::OnCancel\
	)
#if	wxCHECK_VERSION(3,0,0)
wxEND_EVENT_TABLE()
#else
END_EVENT_TABLE()
#endif




#line 188 "WxdkdrawDlgLineCap.wxc"
WxdkdrawDlgLineCap::WxdkdrawDlgLineCap(
	WxdkdrawFrame			*pParent,
	Wxd_object_t			*pObject,
	wxChar const * const	*pTexts,
	const char ** const		*pImages,
	bool					 bDrwElem
) : wxDialog(
	pParent, wxID_ANY, pTexts[245],
	wxDefaultPosition, wxDefaultSize,
	(
		(wxDEFAULT_DIALOG_STYLE)
		& (~(wxRESIZE_BORDER))
		& (~(wxCLOSE_BOX))
		& (~(wxSYSTEM_MENU))
	)
)
{
	m_pParent = pParent;
	m_pObject = pObject;
	m_bDrwElem = bDrwElem;
	m_uLineCapOriginal = pObject->cs;
	if (WXD_LC_PROJECTING < m_uLineCapOriginal) {
		m_uLineCapOriginal = WXD_LC_PROJECTING;
	}
	m_uLineCapCurrent = m_uLineCapOriginal;
  dkctGUILayoutOK = false;
  sizerHorizontal = NULL;
  sizerVertical = NULL;
  sizerButtons = NULL;
  buttonCancel = NULL;
  buttonButted = NULL;
  buttonRounded = NULL;
  buttonProjecting = NULL;
  sizerHorizontal = new wxBoxSizer(
    wxHORIZONTAL
  );
  if(!(sizerHorizontal)) {
    goto dkctGUILayoutFinished;
  }
  sizerHorizontal->Add(10, 10, 0);
  sizerVertical = new wxBoxSizer(
    wxVERTICAL
  );
  if(!(sizerVertical)) {
    goto dkctGUILayoutFinished;
  }
  sizerVertical->Add(10, 10, 0);
  sizerButtons = new wxBoxSizer(
    wxHORIZONTAL
  );
  if(!(sizerButtons)) {
    goto dkctGUILayoutFinished;
  }
  buttonButted = new wxBitmapButton(
    this,
    WXD_ID_LC_BUTTED,
    pImages[0]
  );
  if(!(buttonButted)) {
    goto dkctGUILayoutFinished;
  }
  buttonButted->SetToolTip(pTexts[246]);
  sizerButtons->Add(
    buttonButted,
    0,
    wxALIGN_CENTER_VERTICAL
  );
  sizerButtons->Add(10, 10, 0);
  buttonRounded = new wxBitmapButton(
    this,
    WXD_ID_LC_ROUNDED,
    pImages[1]
  );
  if(!(buttonRounded)) {
    goto dkctGUILayoutFinished;
  }
  buttonRounded->SetToolTip(pTexts[247]);
  sizerButtons->Add(
    buttonRounded,
    0,
    wxALIGN_CENTER_VERTICAL
  );
  sizerButtons->Add(10, 10, 0);
  buttonProjecting = new wxBitmapButton(
    this,
    WXD_ID_LC_PROJECTING,
    pImages[2]
  );
  if(!(buttonProjecting)) {
    goto dkctGUILayoutFinished;
  }
  buttonProjecting->SetToolTip(pTexts[248]);
  sizerButtons->Add(
    buttonProjecting,
    0,
    wxALIGN_CENTER_VERTICAL
  );
  sizerVertical->Add(
    sizerButtons,
    0,
    wxALIGN_CENTER_HORIZONTAL
  );
  sizerVertical->Add(10, 10, 0);
  buttonCancel = new wxButton(
    this,
    wxID_CANCEL,
    pTexts[249]
  );
  if(!(buttonCancel)) {
    goto dkctGUILayoutFinished;
  }
  buttonCancel->SetToolTip(pTexts[250]);
  sizerVertical->Add(
    buttonCancel,
    0,
    wxALIGN_CENTER_HORIZONTAL
  );
  sizerVertical->Add(10, 10, 0);
  sizerHorizontal->Add(
    sizerVertical
  );
  sizerHorizontal->Add(10, 10, 0);
  SetSizer(sizerHorizontal);
  dkctGUILayoutOK = true;
  dkctGUILayoutFinished:
  if(dkctGUILayoutOK) {
    sizerHorizontal->Fit(this);
    sizerHorizontal->SetSizeHints(this);
  }

#line 214 "WxdkdrawDlgLineCap.wxc"
	if (dkctGUILayoutOK) {
		wxSize	minsize = GetMinSize();
		SetMaxSize(minsize);
	}
}




#line 223 "WxdkdrawDlgLineCap.wxc"


void
WxdkdrawDlgLineCap::OnLineCap(wxCommandEvent & event)
{
	bool	bDoRefresh = false;
	switch (event.GetId()) {
		case WXD_ID_LC_ROUNDED : {
			m_uLineCapCurrent =	WXD_LC_ROUNDED;
		} break;
		case WXD_ID_LC_PROJECTING : {
			m_uLineCapCurrent = WXD_LC_PROJECTING;
		} break;
		default : {
			m_uLineCapCurrent = WXD_LC_BUTTED;
		} break;
	}
	if ((m_bDrwElem) && (m_uLineCapCurrent != m_uLineCapOriginal)) {
		bDoRefresh = true;
	}
	m_pObject->cs = m_uLineCapCurrent;
	if (bDoRefresh) {
		m_pParent->RequireRedraw(WXD_REFRESH_DRAWING);
	}
	if(IsModal()) {
		EndModal(wxID_OK);
	}
	else {
		SetReturnCode(wxID_OK);
		Show(false);
	}
}



void
WxdkdrawDlgLineCap::OnCancel(wxCommandEvent & WXUNUSED(event))
{
	if(IsModal()) {
		EndModal(wxID_CANCEL);
	}
	else {
		SetReturnCode(wxID_CANCEL);
		Show(false);
	}
}



/* vim: set ai sw=4 ts=4 : */