forked from dalefarnsworth-dmr/editcp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuttonDefinitions.go
153 lines (122 loc) · 3.73 KB
/
buttonDefinitions.go
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
// Copyright 2019-2021 Dale Farnsworth. All rights reserved.
// Dale Farnsworth
// 1007 W Mendoza Ave
// Mesa, AZ 85210
// USA
//
// dale@farnsworth.org
// This file is part of Editcp.
//
// Editcp is free software: you can redistribute it and/or modify
// it under the terms of version 3 of the GNU General Public License
// as published by the Free Software Foundation.
//
// Editcp 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 Editcp. If not, see <http://www.gnu.org/licenses/>.
package main
import (
"fmt"
"github.com/dalefarnsworth-dmr/codeplug"
"github.com/dalefarnsworth-dmr/ui"
)
func buttonDefinitions(edt *editor) {
writable := true
edt.newRecordWindow(codeplug.RtButtonDefinitions, writable, bdRecord)
}
func fieldTypeWidget(w *ui.Window, r *codeplug.Record, fType codeplug.FieldType) *ui.FieldWidget {
return w.NewFieldWidget("", r.Field(fType))
}
func stack(w *ui.Window, r *codeplug.Record, fTypes ...codeplug.FieldType) *ui.StackedWidget {
sw := ui.NewStackedWidget(w)
for _, fType := range fTypes {
field := r.Field(fType)
widget := w.NewFieldWidget("", field)
sw.AddWidget(widget)
}
return sw
}
func bdRecord(edt *editor, recordBox *ui.HBox) {
cp := edt.codeplug
r := currentRecord(recordBox.Window())
mainColumn := recordBox.AddVbox()
row := mainColumn.AddHbox()
row.SetFixedHeight()
column := row.AddVbox()
column.SetFixedWidth()
form := column.AddForm()
form.AddFieldTypeRows(r, codeplug.FtBdLongPressDuration)
row.AddFiller()
mainColumn.AddSpace(1)
mainRow := mainColumn.AddHbox()
column1 := mainRow.AddVbox()
column1.SetFixedWidth()
groupBox := column1.AddGroupbox("Radio Buttons")
form = groupBox.AddForm()
column1.AddFiller()
records := cp.Records(codeplug.RtRadioButtons)
for _, r := range records {
form.AddFieldTypeRows(r, codeplug.FtRbButton)
}
if cp.HasRecordType(codeplug.RtRadioButtons2) {
records = cp.Records(codeplug.RtRadioButtons2)
for _, r := range records {
form.AddFieldTypeRows(r, codeplug.FtRbButton)
}
}
column2 := mainRow.AddVbox()
row = column2.AddHbox()
column = row.AddVbox()
row.AddFiller()
column.SetFixedWidth()
groupBox = column.AddGroupbox("One Touch Access")
table := groupBox.AddTable()
w := edt.recordWindow(r.Type())
records = w.Records(codeplug.RtOneTouch)
labels := make([]string, 0)
for _, r := range records {
table.AddRow(
fieldTypeWidget(w, r, codeplug.FtOtMode),
fieldTypeWidget(w, r, codeplug.FtOtCall),
stack(w, r, codeplug.FtOtCallType, codeplug.FtOtDTMF),
stack(w, r, codeplug.FtOtTextMessage, codeplug.FtOtEncode),
)
labels = append(labels, fmt.Sprintf("%d", r.Index()+1))
}
table.AddLeftLabels(labels)
r = records[0]
labels = []string{
r.Field(codeplug.FtOtMode).TypeName(),
r.Field(codeplug.FtOtCall).TypeName(),
"Call Type",
"Message/Encode",
}
table.AddTopLabels(labels)
table.ResizeToContents()
column2.AddSpace(1)
row = column2.AddHbox()
column = row.AddVbox()
column.SetFixedWidth()
row.AddFiller()
groupBox = column.AddGroupbox("Number Key Quick Contact Access")
table = groupBox.AddTable()
records = w.Records(codeplug.RtNumberKey)
labels = make([]string, 0)
for _, r := range records {
table.AddRow(
fieldTypeWidget(w, r, codeplug.FtNkContact),
)
labels = append(labels, fmt.Sprintf(" Number key %d", r.Index()))
}
table.AddLeftLabels(labels)
r = records[0]
labels = []string{r.Field(codeplug.FtNkContact).TypeName()}
table.AddTopLabels(labels)
table.ResizeToContents()
column.SetFixedWidth()
column2.AddFiller()
}