ReactOS 0.4.15-dev-7931-gfd331f1
QMyDialog Class Reference

#include <qtewin.h>

Inheritance diagram for QMyDialog:
Collaboration diagram for QMyDialog:

Public Slots

void ComboChanged (int)
 
void OKClicked ()
 
void CancelClicked ()
 
void AddClicked ()
 
void EditClicked ()
 
void SaveClicked ()
 
void RemoveClicked ()
 
void ListBoxChanged ()
 
void ListBoxSelected (int)
 

Public Member Functions

 QMyDialog (QWidget *)
 
 ~QMyDialog ()
 

Public Attributes

QListBox * ListBox
 
QPushButton * OKButton
 
QPushButton * CancelButton
 
QLabel * Label1
 
QLineEdit * ServerNameEdit
 
QLabel * Label2
 
QLineEdit * UserNameEdit
 
QLabel * Label3
 
QLineEdit * IPEdit
 
QLineEdit * WidthEdit
 
QLineEdit * HeightEdit
 
QComboBox * WidthHeightBox
 
QPushButton * AddButton
 
QPushButton * EditButton
 
QPushButton * SaveButton
 
QPushButton * RemoveButton
 
QCheckBox * FullScreenCheckBox
 
QString ServerName
 
QString UserName
 
QString ServerIP
 
int Width
 
int Height
 
int FullScreen
 
QMyConnectionItemConnectionList [10]
 

Detailed Description

Definition at line 23 of file qtewin.h.

Constructor & Destructor Documentation

◆ QMyDialog()

QMyDialog::QMyDialog ( QWidget *  parent)

Definition at line 159 of file qtewin.cpp.

159 : QDialog(parent, "Settings", true)
160{
161 int i, j;
162 char * home;
163 char Text[256];
164 QString Line;
165 QString ItemName;
166 QString ItemValue;
167
168 // resize dialog
169 resize(230, 270);
170 // main list box
171 ListBox = new QListBox(this);
172 ListBox->move(10, 10);
173 ListBox->resize(200, 100);
174 connect(ListBox, SIGNAL(selectionChanged()), this, SLOT(ListBoxChanged()));
175 connect(ListBox, SIGNAL(selected(int)), this, SLOT(ListBoxSelected(int)));
176 // server
177 Label1 = new QLabel(this);
178 Label1->setText("Server Desc");
179 Label1->move(10, 120);
180 Label1->resize(100, 20);
181 ServerNameEdit = new QLineEdit(this);
182 ServerNameEdit->move(75, 120);
183 ServerNameEdit->resize(100, 20);
184 // username
185 Label2 = new QLabel(this);
186 Label2->setText("User Name");
187 Label2->move(10, 150);
188 Label2->resize(100, 20);
189 UserNameEdit = new QLineEdit(this);
190 UserNameEdit->move(75, 150);
191 UserNameEdit->resize(100, 20);
192 // ip
193 Label3 = new QLabel(this);
194 Label3->setText("Server IP");
195 Label3->move(10, 180);
196 Label3->resize(100, 20);
197 IPEdit = new QLineEdit(this);
198 IPEdit->move(75, 180);
199 IPEdit->resize(100, 20);
200 // width and height
201 WidthHeightBox = new QComboBox(this);
202 WidthHeightBox->move(10, 210);
203 WidthHeightBox->resize(100, 20);
204 WidthHeightBox->insertItem("240x320");
205 WidthHeightBox->insertItem("640x480");
206 WidthHeightBox->insertItem("800x600");
207 connect(WidthHeightBox, SIGNAL(activated(int)), this, SLOT(ComboChanged(int)));
208 WidthHeightBox->setCurrentItem(1);
209 WidthEdit = new QLineEdit(this);
210 WidthEdit->move(110, 210);
211 WidthEdit->resize(30, 20);
212 WidthEdit->setText("800");
213 HeightEdit = new QLineEdit(this);
214 HeightEdit->move(140, 210);
215 HeightEdit->resize(30, 20);
216 HeightEdit->setText("600");
217 // add to list button
218 AddButton = new QPushButton(this);
219 AddButton->move(180, 120);
220 AddButton->resize(50, 20);
221 AddButton->setText("Add");
222 connect(AddButton, SIGNAL(clicked()), this, SLOT(AddClicked()));
223 // change list item button
224 EditButton = new QPushButton(this);
225 EditButton->move(180, 140);
226 EditButton->resize(50, 20);
227 EditButton->setText("Edit");
228 connect(EditButton, SIGNAL(clicked()), this, SLOT(EditClicked()));
229 // save to file button
230 SaveButton = new QPushButton(this);
231 SaveButton->move(180, 160);
232 SaveButton->resize(50, 20);
233 SaveButton->setText("Save");
234 connect(SaveButton, SIGNAL(clicked()), this, SLOT(SaveClicked()));
235 // remove an item button
236 RemoveButton = new QPushButton(this);
237 RemoveButton->move(180, 180);
238 RemoveButton->resize(50, 20);
239 RemoveButton->setText("Remove");
240 connect(RemoveButton, SIGNAL(clicked()), this, SLOT(RemoveClicked()));
241 // full screen check box
242 FullScreenCheckBox = new QCheckBox(this, "Full Screen");
243 FullScreenCheckBox->setText("Full Screen");
244 FullScreenCheckBox->move(10, 230);
245 // ok button
246 OKButton = new QPushButton(this);
247 OKButton->setText("OK");
248 OKButton->move(100, 240);
249 OKButton->resize(50, 20);
250 connect(OKButton, SIGNAL(clicked()), this, SLOT(OKClicked()));
251 // cancel button
252 CancelButton = new QPushButton(this);
253 CancelButton->setText("Cancel");
254 CancelButton->move(160, 240);
255 CancelButton->resize(50, 20);
256 connect(CancelButton, SIGNAL(clicked()), this, SLOT(CancelClicked()));
257
258 for (i = 0; i < 10; i++)
259 {
264 ConnectionList[i]->Width = 0;
265 ConnectionList[i]->Height = 0;
267 }
268 home = getenv("HOME");
269 if (home != NULL)
270 {
271 sprintf(Text, "%s/rdesktop.ini", home);
272 QFile * File = new QFile(Text);
273 if (File->open(IO_ReadOnly))
274 {
275 i = -1;
276 while (!File->atEnd())
277 {
278 File->readLine(Line, 255);
279 j = Line.find("=");
280 if (j > 0)
281 {
282 ItemName = Line.mid(0, j);
283 CleanString(&ItemName);
284 ItemValue = Line.mid(j + 1);
285 CleanString(&ItemValue);
286 if (ItemName == "Server")
287 {
288 i++;
289 ConnectionList[i]->ServerName = ItemValue;
290 ListBox->insertItem(ItemValue);
291 }
292 else if (ItemName == "UserName")
293 ConnectionList[i]->UserName = ItemValue;
294 else if (ItemName == "Width")
295 ConnectionList[i]->Width = ItemValue.toInt();
296 else if (ItemName == "Height")
297 ConnectionList[i]->Height = ItemValue.toInt();
298 else if (ItemName == "IP")
299 ConnectionList[i]->ServerIP = ItemValue;
300 else if (ItemName == "FullScreen")
301 ConnectionList[i]->FullScreen = (ItemValue != "0");
302 }
303 }
304 }
305 delete File;
306 }
307}
Definition: File.h:16
bool open(const char *filename, const char *mode)
Definition: File.cpp:10
QString ServerIP
Definition: qtewin.h:17
QString UserName
Definition: qtewin.h:16
QString ServerName
Definition: qtewin.h:15
QPushButton * CancelButton
Definition: qtewin.h:32
QPushButton * EditButton
Definition: qtewin.h:43
QListBox * ListBox
Definition: qtewin.h:30
void EditClicked()
Definition: qtewin.cpp:381
QPushButton * AddButton
Definition: qtewin.h:42
void AddClicked()
Definition: qtewin.cpp:361
void OKClicked()
Definition: qtewin.cpp:343
QLineEdit * HeightEdit
Definition: qtewin.h:40
void ComboChanged(int)
Definition: qtewin.cpp:323
void ListBoxSelected(int)
Definition: qtewin.cpp:513
QPushButton * OKButton
Definition: qtewin.h:31
QCheckBox * FullScreenCheckBox
Definition: qtewin.h:46
QLabel * Label3
Definition: qtewin.h:37
QLineEdit * IPEdit
Definition: qtewin.h:38
QPushButton * RemoveButton
Definition: qtewin.h:45
QPushButton * SaveButton
Definition: qtewin.h:44
QLabel * Label1
Definition: qtewin.h:33
void CancelClicked()
Definition: qtewin.cpp:355
QLabel * Label2
Definition: qtewin.h:35
void RemoveClicked()
Definition: qtewin.cpp:465
QMyConnectionItem * ConnectionList[10]
Definition: qtewin.h:64
QLineEdit * ServerNameEdit
Definition: qtewin.h:34
void ListBoxChanged()
Definition: qtewin.cpp:491
QLineEdit * WidthEdit
Definition: qtewin.h:39
QComboBox * WidthHeightBox
Definition: qtewin.h:41
void SaveClicked()
Definition: qtewin.cpp:407
QLineEdit * UserNameEdit
Definition: qtewin.h:36
char * Text
Definition: combotst.c:136
static char selected[MAX_PATH+1]
Definition: dirdlg.c:7
#define NULL
Definition: types.h:112
r parent
Definition: btrfs.c:3010
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint GLint GLint j
Definition: glfuncs.h:250
_Check_return_ char *__cdecl getenv(_In_z_ const char *_VarName)
#define sprintf(buf, format,...)
Definition: sprintf.c:55
static UINT activated
Definition: msctf.c:70
void CleanString(QString *Item)
Definition: qtewin.cpp:143
Definition: ncftp.h:79
Definition: tftpd.h:38

◆ ~QMyDialog()

QMyDialog::~QMyDialog ( )

Definition at line 310 of file qtewin.cpp.

311{
313 int i;
314
315 for (i = 0; i < 10; i++)
316 {
318 delete Item;
319 }
320}
_In_ WDFCOLLECTION _In_ WDFOBJECT Item

Member Function Documentation

◆ AddClicked

void QMyDialog::AddClicked ( )
slot

Definition at line 361 of file qtewin.cpp.

362{
363 int i;
365
366 i = ListBox->count();
367 if (i < 10)
368 {
369 ListBox->insertItem(ServerNameEdit->text());
371 Item->ServerName = ServerNameEdit->text();
372 Item->UserName = UserNameEdit->text();
373 Item->Width = WidthEdit->text().toInt();
374 Item->Height = HeightEdit->text().toInt();
375 Item->ServerIP = IPEdit->text();
376 Item->FullScreen = FullScreenCheckBox->isChecked();
377 }
378}

Referenced by QMyDialog().

◆ CancelClicked

void QMyDialog::CancelClicked ( )
slot

Definition at line 355 of file qtewin.cpp.

356{
357 done(0);
358}

Referenced by QMyDialog().

◆ ComboChanged

void QMyDialog::ComboChanged ( int  index)
slot

Definition at line 323 of file qtewin.cpp.

324{
325 if (index == 0)
326 {
327 WidthEdit->setText("240");
328 HeightEdit->setText("320");
329 }
330 if (index == 1)
331 {
332 WidthEdit->setText("640");
333 HeightEdit->setText("480");
334 }
335 else if (index == 2)
336 {
337 WidthEdit->setText("800");
338 HeightEdit->setText("600");
339 }
340}
GLuint index
Definition: glext.h:6031

Referenced by QMyDialog().

◆ EditClicked

void QMyDialog::EditClicked ( )
slot

Definition at line 381 of file qtewin.cpp.

382{
383 int i;
385
386 i = ListBox->currentItem();
387 if (i >= 0)
388 {
390 Item->ServerName = ServerNameEdit->text();
391 Item->UserName = UserNameEdit->text();
392 Item->Width = WidthEdit->text().toInt();
393 Item->Height = HeightEdit->text().toInt();
394 Item->ServerIP = IPEdit->text();
395 Item->FullScreen = FullScreenCheckBox->isChecked();
396 ListBox->changeItem(ServerNameEdit->text(), i);
397 }
398}

Referenced by QMyDialog().

◆ ListBoxChanged

void QMyDialog::ListBoxChanged ( )
slot

Definition at line 491 of file qtewin.cpp.

492{
493 int i;
495 char Text[100];
496
497 i = ListBox->currentItem();
498 if (i >= 0 && i < 10)
499 {
501 ServerNameEdit->setText(Item->ServerName);
502 UserNameEdit->setText(Item->UserName);
503 sprintf(Text, "%d", Item->Width);
504 WidthEdit->setText(Text);
505 sprintf(Text, "%d", Item->Height);
506 HeightEdit->setText(Text);
507 IPEdit->setText(Item->ServerIP);
508 FullScreenCheckBox->setChecked(Item->FullScreen != 0);
509 }
510}

Referenced by QMyDialog().

◆ ListBoxSelected

void QMyDialog::ListBoxSelected ( int  )
slot

Definition at line 513 of file qtewin.cpp.

514{
515}

Referenced by QMyDialog().

◆ OKClicked

void QMyDialog::OKClicked ( )
slot

Definition at line 343 of file qtewin.cpp.

344{
345 ServerName = ServerNameEdit->text();
346 UserName = UserNameEdit->text();
347 Width = WidthEdit->text().toInt();
348 Height = HeightEdit->text().toInt();
349 ServerIP = IPEdit->text();
350 FullScreen = FullScreenCheckBox->isChecked();
351 done(1);
352}
QString UserName
Definition: qtewin.h:59
int Width
Definition: qtewin.h:61
QString ServerName
Definition: qtewin.h:58
int Height
Definition: qtewin.h:62
QString ServerIP
Definition: qtewin.h:60
int FullScreen
Definition: qtewin.h:63

Referenced by QMyDialog().

◆ RemoveClicked

void QMyDialog::RemoveClicked ( )
slot

Definition at line 465 of file qtewin.cpp.

466{
467 int i, j, c;
468 QMyConnectionItem * Item1;
469 QMyConnectionItem * Item2;
470
471 i = ListBox->currentItem();
472 if (i >= 0)
473 {
474 c = ListBox->count();
475 for (j = i; j < c - 1; j++)
476 {
477 Item1 = ConnectionList[i];
478 Item2 = ConnectionList[i + 1];
479 Item1->ServerName = Item2->ServerName;
480 Item1->UserName = Item2->UserName;
481 Item1->Width = Item2->Width;
482 Item1->Height = Item2->Height;
483 Item1->ServerIP = Item2->ServerIP;
484 Item1->FullScreen = Item2->FullScreen;
485 }
486 ListBox->removeItem(i);
487 }
488}
const GLubyte * c
Definition: glext.h:8905
#define c
Definition: ke_i.h:80

Referenced by QMyDialog().

◆ SaveClicked

void QMyDialog::SaveClicked ( )
slot

Definition at line 407 of file qtewin.cpp.

408{
409 int i, j;
411 QString Line;
412 char * home;
413 char Text[256];
414 QFile* File;
415
416 home = getenv("HOME");
417 if (home != NULL)
418 {
419 sprintf(Text, "%s/rdesktop.ini", home);
420 File = new QFile(Text);
421 if (File->open(IO_Truncate | IO_ReadWrite))
422 {
423 i = ListBox->count();
424 for (j = 0; j < i; j++)
425 {
427 Line = "Server=";
428 Line += Item->ServerName;
429 Line += (char)10;
431 Line = "UserName=";
432 Line += Item->UserName;
433 Line += (char)10;
435 Line = "Width=";
436 sprintf(Text, "%d", Item->Width);
437 Line += Text;
438 Line += (char)10;
440 Line = "Height=";
441 sprintf(Text, "%d", Item->Height);
442 Line += Text;
443 Line += (char)10;
445 Line = "IP=";
446 Line += Item->ServerIP;
447 Line += (char)10;
449 Line = "FullScreen=";
450 if (Item->FullScreen)
451 Line += "1";
452 else
453 Line += "0";
454 Line += (char)10;
456 }
457 }
458 File->flush();
459 File->close();
460 delete File;
461 }
462}
void close()
Definition: File.cpp:99
unsigned char
Definition: typeof.h:29
void WriteString(QFile *File, QString *Line)
Definition: qtewin.cpp:401

Referenced by QMyDialog().

Member Data Documentation

◆ AddButton

QPushButton* QMyDialog::AddButton

Definition at line 42 of file qtewin.h.

Referenced by QMyDialog().

◆ CancelButton

QPushButton* QMyDialog::CancelButton

Definition at line 32 of file qtewin.h.

Referenced by QMyDialog().

◆ ConnectionList

QMyConnectionItem* QMyDialog::ConnectionList[10]

◆ EditButton

QPushButton* QMyDialog::EditButton

Definition at line 43 of file qtewin.h.

Referenced by QMyDialog().

◆ FullScreen

int QMyDialog::FullScreen

Definition at line 63 of file qtewin.h.

Referenced by OKClicked().

◆ FullScreenCheckBox

QCheckBox* QMyDialog::FullScreenCheckBox

Definition at line 46 of file qtewin.h.

Referenced by AddClicked(), EditClicked(), ListBoxChanged(), OKClicked(), and QMyDialog().

◆ Height

int QMyDialog::Height

Definition at line 62 of file qtewin.h.

Referenced by OKClicked().

◆ HeightEdit

QLineEdit* QMyDialog::HeightEdit

Definition at line 40 of file qtewin.h.

Referenced by AddClicked(), ComboChanged(), EditClicked(), ListBoxChanged(), OKClicked(), and QMyDialog().

◆ IPEdit

QLineEdit* QMyDialog::IPEdit

Definition at line 38 of file qtewin.h.

Referenced by AddClicked(), EditClicked(), ListBoxChanged(), OKClicked(), and QMyDialog().

◆ Label1

QLabel* QMyDialog::Label1

Definition at line 33 of file qtewin.h.

Referenced by QMyDialog().

◆ Label2

QLabel* QMyDialog::Label2

Definition at line 35 of file qtewin.h.

Referenced by QMyDialog().

◆ Label3

QLabel* QMyDialog::Label3

Definition at line 37 of file qtewin.h.

Referenced by QMyDialog().

◆ ListBox

QListBox* QMyDialog::ListBox

Definition at line 30 of file qtewin.h.

Referenced by AddClicked(), EditClicked(), ListBoxChanged(), QMyDialog(), RemoveClicked(), and SaveClicked().

◆ OKButton

QPushButton* QMyDialog::OKButton

Definition at line 31 of file qtewin.h.

Referenced by QMyDialog().

◆ RemoveButton

QPushButton* QMyDialog::RemoveButton

Definition at line 45 of file qtewin.h.

Referenced by QMyDialog().

◆ SaveButton

QPushButton* QMyDialog::SaveButton

Definition at line 44 of file qtewin.h.

Referenced by QMyDialog().

◆ ServerIP

QString QMyDialog::ServerIP

Definition at line 60 of file qtewin.h.

Referenced by OKClicked().

◆ ServerName

QString QMyDialog::ServerName

Definition at line 58 of file qtewin.h.

Referenced by OKClicked().

◆ ServerNameEdit

QLineEdit* QMyDialog::ServerNameEdit

Definition at line 34 of file qtewin.h.

Referenced by AddClicked(), EditClicked(), ListBoxChanged(), OKClicked(), and QMyDialog().

◆ UserName

QString QMyDialog::UserName

Definition at line 59 of file qtewin.h.

Referenced by OKClicked().

◆ UserNameEdit

QLineEdit* QMyDialog::UserNameEdit

Definition at line 36 of file qtewin.h.

Referenced by AddClicked(), EditClicked(), ListBoxChanged(), OKClicked(), and QMyDialog().

◆ Width

int QMyDialog::Width

Definition at line 61 of file qtewin.h.

Referenced by OKClicked().

◆ WidthEdit

QLineEdit* QMyDialog::WidthEdit

Definition at line 39 of file qtewin.h.

Referenced by AddClicked(), ComboChanged(), EditClicked(), ListBoxChanged(), OKClicked(), and QMyDialog().

◆ WidthHeightBox

QComboBox* QMyDialog::WidthHeightBox

Definition at line 41 of file qtewin.h.

Referenced by QMyDialog().


The documentation for this class was generated from the following files: