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
|
//-----------------------------------------------------------------------------
// Copyright 2007 Jonathan Westhues
//
// This file is part of LDmicro.
//
// LDmicro is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// LDmicro is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with LDmicro. If not, see <http://www.gnu.org/licenses/>.
//------
//
// Dialog for setting the properties of a set of contacts: negated or not,
// plus the name
// Jonathan Westhues, Oct 2004
//-----------------------------------------------------------------------------
#include <linuxUI.h>
#include <stdio.h>
//#include <commctrl.h>
#include "ldmicro.h"
static QDialog* ContactsDialog;
static QCheckBox* NegatedCheckbox;
static QRadioButton* SourceInternalRelayRadio;
static QRadioButton* SourceInputPinRadio;
static QRadioButton* SourceOutputPinRadio;
static QLineEdit* NameTextbox;
static LONG_PTR PrevNameProc;
static QGridLayout* ContactsGrid;
char* tmpname;
BOOL* tmpnegated;
static void MakeControls(void)
{
QGroupBox* grouper = new QGroupBox(_("Source"));
QGridLayout *SourceGrid = new QGridLayout();
QGridLayout *NameGrid = new QGridLayout();
QDialogButtonBox *ButtonBox = new QDialogButtonBox(QDialogButtonBox::Ok
| QDialogButtonBox::Cancel, Qt::Vertical,
ContactsDialog);
NiceFont(ContactsDialog);
ContactsGrid->setSpacing(3);
SourceGrid->setSpacing(3);
SourceInternalRelayRadio = new QRadioButton(_("Internal Relay"), ContactsDialog);
SourceInputPinRadio = new QRadioButton(_("Input pin"), ContactsDialog);
SourceOutputPinRadio = new QRadioButton(_("Output pin"), ContactsDialog);
SourceGrid->addWidget(SourceInternalRelayRadio,0,0);
SourceGrid->addWidget(SourceInputPinRadio,1,0);
SourceGrid->addWidget(SourceOutputPinRadio,2,0);
/*SourceGrid->addItem(
new QSpacerItem(SetOnlyRadio->width(),
SetOnlyRadio->height()), 2, 0);*/
QLabel* textLabel = new QLabel(_("Name:"));
NameTextbox = new QLineEdit();
NegatedCheckbox = new QCheckBox(_("|/| Negated"), ContactsDialog);
FixedFont(NameTextbox);
NameTextbox->setFixedWidth(155);
NameGrid->addWidget(textLabel,0,0);
NameGrid->addWidget(NameTextbox,0,1);
NameGrid->addWidget(NegatedCheckbox, 1,0);
grouper->setLayout(SourceGrid);
ContactsGrid->addWidget(grouper,0,0);
ContactsGrid->addLayout(NameGrid,0,1);
ContactsGrid->addWidget(ButtonBox,0,2);
QObject::connect(ButtonBox, SIGNAL(accepted()), ContactsDialog, SLOT(accept()));
QObject::connect(ButtonBox, SIGNAL(rejected()), ContactsDialog, SLOT(reject()));
}
inline void DestroyWindow (){
delete NegatedCheckbox;
delete SourceInternalRelayRadio;
delete SourceInputPinRadio;
delete SourceOutputPinRadio;
delete NameTextbox;
delete ContactsDialog;
ProgramChanged();
}
void ShowContactsDialog(BOOL *negated, char *name)
{
ContactsDialog = CreateWindowClient(_("Contacts"),
100, 100, 359, 115, MainWindow);
ContactsGrid = new QGridLayout(ContactsDialog);
ContactsDialog->setWindowTitle("Contacts");
// CoilDialog->setFixedSize(359,115);
MakeControls();
NameTextbox->setValidator(
new QRegExpValidator(
QRegExp("[a-zA-Z0-9_]+")));
if(name[0] == 'R') {
SourceInternalRelayRadio->setChecked(TRUE);
} else if (name[0] == 'Y'){
SourceOutputPinRadio->setChecked(TRUE);
}
else
{
SourceInputPinRadio->setChecked(TRUE);
}
NameTextbox->setText(name + 1);
if(*negated) {
NegatedCheckbox->setChecked(TRUE);
} else{
NegatedCheckbox->setChecked(FALSE);
}
int ret = ContactsDialog->exec();
switch(ret)
{
case QDialog::Accepted:
{
if(SourceInternalRelayRadio->isChecked())
{
name[0] = 'R';
}else if(SourceInputPinRadio->isChecked()){
name[0] = 'X';
} else {
name[0] = 'Y';
}
strncpy(name +1, NameTextbox->text().toStdString().c_str(),16);
if(NegatedCheckbox->isChecked()) {
*negated = TRUE;
} else {
*negated = FALSE;
}
}
break;
case QDialog::Rejected:
break;
}
DestroyWindow();
}
|