summaryrefslogtreecommitdiff
path: root/ldmicro/coildialog.cpp
blob: f6677b9e2e77b476bb0da05fb1b2debede7355c0 (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
//-----------------------------------------------------------------------------
// 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 relay coils: negated or not,
// plus the name, plus set-only or reset-only
// Jonathan Westhues, Oct 2004
//-----------------------------------------------------------------------------
#include <linuxUI.h>
#include <stdio.h>
//#include <commctrl.h>

#include "ldmicro.h"

static QDialog* CoilDialog;

static QRadioButton* SourceInternalRelayRadio;
static QRadioButton* SourceMcuPinRadio;
static QRadioButton* NegatedRadio;
static QRadioButton* NormalRadio;
static QRadioButton* SetOnlyRadio;
static QRadioButton* ResetOnlyRadio;
static QLineEdit*    NameTextbox;

static LONG_PTR PrevNameProc;

static QGridLayout* CoilGrid;

static void MakeControls(void)
{
    QGroupBox* grouper = new QGroupBox(_("Type"));
    QGroupBox* grouper2 = new QGroupBox(_("Source"));
    QGridLayout *TypeGrid = new QGridLayout();
    QGridLayout *SourceGrid = new QGridLayout();
    QGridLayout *NameGrid = new QGridLayout();
    QDialogButtonBox *ButtonBox = new QDialogButtonBox(QDialogButtonBox::Ok
        | QDialogButtonBox::Cancel, Qt::Vertical,
        CoilDialog);
    NormalRadio = new QRadioButton(_("( ) Normal"), CoilDialog);
    NegatedRadio = new QRadioButton(_("(/) Negated"), CoilDialog);
    SetOnlyRadio = new QRadioButton(_("(S) Set-Only"), CoilDialog);
    ResetOnlyRadio = new QRadioButton(_("(R) Reset-Only"), CoilDialog);
    NiceFont(CoilDialog);
    TypeGrid->addWidget(NormalRadio,0,0);
    TypeGrid->addWidget(NegatedRadio,1,0);
    TypeGrid->addWidget(SetOnlyRadio,2,0);
    TypeGrid->addWidget(ResetOnlyRadio,3,0);

    CoilGrid->setSpacing(3);
    TypeGrid->setSpacing(3);
    SourceGrid->setSpacing(3);

    SourceInternalRelayRadio = new QRadioButton(_("Internal Relay"), CoilDialog);
    SourceMcuPinRadio = new QRadioButton(_("Pin on MCU"), CoilDialog);
    SourceGrid->addWidget(SourceInternalRelayRadio,0,0);
    SourceGrid->addWidget(SourceMcuPinRadio,1,0);
    SourceGrid->addItem(
        new QSpacerItem(SetOnlyRadio->width(),
            SetOnlyRadio->height()), 2, 0);
    QLabel* textLabel = new QLabel(_("Name:"));
    NameTextbox = new QLineEdit();
    FixedFont(NameTextbox);
    NameTextbox->setFixedWidth(155);
    NameGrid->addWidget(textLabel,0,0);
    NameGrid->addWidget(NameTextbox,0,1);
    SourceGrid->addLayout(NameGrid,3,0);

    grouper->setLayout(TypeGrid);
    grouper2->setLayout(SourceGrid);
    CoilGrid->addWidget(grouper,0,0);
    CoilGrid->addWidget(grouper2,0,1);
    CoilGrid->addWidget(ButtonBox,0,2);
    QObject::connect(ButtonBox, SIGNAL(accepted()), CoilDialog, SLOT(accept()));
    QObject::connect(ButtonBox, SIGNAL(rejected()), CoilDialog, SLOT(reject()));
}

static inline void DestroyWindow()
{
    delete SourceInternalRelayRadio;
    delete SourceMcuPinRadio;
    delete NormalRadio;
    delete NegatedRadio;
    delete SetOnlyRadio;
    delete ResetOnlyRadio;
    delete NameTextbox;
    delete CoilGrid;
    ProgramChanged();
}

void ShowCoilDialog(BOOL *negated, BOOL *setOnly, BOOL *resetOnly, char *name)
{
    CoilDialog = CreateWindowClient(_("Coil"),
        100, 100, 359, 115, MainWindow);
    CoilGrid = new QGridLayout(CoilDialog);
    CoilDialog->setWindowTitle("Coil");
    // CoilDialog->setFixedSize(359,115);
    MakeControls();
    NameTextbox->setValidator(
        new QRegExpValidator(QRegExp("[a-zA-Z0-9_]+")));

    if(name[0] == 'R') {
        SourceInternalRelayRadio->setChecked(TRUE);
    } else {
        SourceMcuPinRadio->setChecked(TRUE);
    }
    NameTextbox->setText(name + 1);
    if(*negated) {
        NegatedRadio->setChecked(TRUE);
    } else if(*setOnly) {
        SetOnlyRadio->setChecked(TRUE);
    } else if(*resetOnly) {
        ResetOnlyRadio->setChecked(TRUE);
    } else {
        NormalRadio->setChecked(TRUE);
    }
    int ret = CoilDialog->exec();
    switch(ret)
    {
        case QDialog::Accepted:
        {
            if(SourceInternalRelayRadio->isChecked())
            {
                name[0] = 'R';
            } else {
                name[0] = 'Y';
            }
            strncpy(name +1, NameTextbox->text().toStdString().c_str(),16);
            if(NormalRadio->isChecked()) {
            *negated = FALSE;
            *setOnly = FALSE;
            *resetOnly = FALSE;
        } else if(NegatedRadio->isChecked()) {
            *negated = TRUE;
            *setOnly = FALSE;
            *resetOnly = FALSE;
        } else if(SetOnlyRadio->isChecked()) {
            *negated = FALSE;
            *setOnly = TRUE;
            *resetOnly = FALSE;
        } else if(ResetOnlyRadio->isChecked())
        {
            *negated = FALSE;
            *setOnly = FALSE;
            *resetOnly = TRUE;
        }
        }
        break;
        case QDialog::Rejected:
        break;
    }
    DestroyWindow();
    return;
}