1 | /**************************************************************************** |
2 | ** |
3 | ** Copyright (C) 2017 The Qt Company Ltd. |
4 | ** Contact: https://www.qt.io/licensing/ |
5 | ** |
6 | ** This file is part of the examples of the QtSerialBus module. |
7 | ** |
8 | ** $QT_BEGIN_LICENSE:BSD$ |
9 | ** Commercial License Usage |
10 | ** Licensees holding valid commercial Qt licenses may use this file in |
11 | ** accordance with the commercial license agreement provided with the |
12 | ** Software or, alternatively, in accordance with the terms contained in |
13 | ** a written agreement between you and The Qt Company. For licensing terms |
14 | ** and conditions see https://www.qt.io/terms-conditions. For further |
15 | ** information use the contact form at https://www.qt.io/contact-us. |
16 | ** |
17 | ** BSD License Usage |
18 | ** Alternatively, you may use this file under the terms of the BSD license |
19 | ** as follows: |
20 | ** |
21 | ** "Redistribution and use in source and binary forms, with or without |
22 | ** modification, are permitted provided that the following conditions are |
23 | ** met: |
24 | ** * Redistributions of source code must retain the above copyright |
25 | ** notice, this list of conditions and the following disclaimer. |
26 | ** * Redistributions in binary form must reproduce the above copyright |
27 | ** notice, this list of conditions and the following disclaimer in |
28 | ** the documentation and/or other materials provided with the |
29 | ** distribution. |
30 | ** * Neither the name of The Qt Company Ltd nor the names of its |
31 | ** contributors may be used to endorse or promote products derived |
32 | ** from this software without specific prior written permission. |
33 | ** |
34 | ** |
35 | ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
36 | ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
37 | ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
38 | ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
39 | ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
40 | ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
41 | ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
42 | ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
43 | ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
44 | ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
45 | ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." |
46 | ** |
47 | ** $QT_END_LICENSE$ |
48 | ** |
49 | ****************************************************************************/ |
50 | |
51 | #include "writeregistermodel.h" |
52 | |
53 | enum { NumColumn = 0, CoilsColumn = 1, HoldingColumn = 2, ColumnCount = 3, RowCount = 10 }; |
54 | |
55 | WriteRegisterModel::WriteRegisterModel(QObject *parent) |
56 | : QAbstractTableModel(parent), |
57 | m_coils(RowCount, false), m_holdingRegisters(RowCount, 0u) |
58 | { |
59 | } |
60 | |
61 | int WriteRegisterModel::rowCount(const QModelIndex &/*parent*/) const |
62 | { |
63 | return RowCount; |
64 | } |
65 | |
66 | int WriteRegisterModel::columnCount(const QModelIndex &/*parent*/) const |
67 | { |
68 | return ColumnCount; |
69 | } |
70 | |
71 | QVariant WriteRegisterModel::data(const QModelIndex &index, int role) const |
72 | { |
73 | if (!index.isValid() || index.row() >= RowCount || index.column() >= ColumnCount) |
74 | return QVariant(); |
75 | |
76 | Q_ASSERT(m_coils.count() == RowCount); |
77 | Q_ASSERT(m_holdingRegisters.count() == RowCount); |
78 | |
79 | if (index.column() == NumColumn && role == Qt::DisplayRole) |
80 | return QString::number(index.row()); |
81 | |
82 | if (index.column() == CoilsColumn && role == Qt::CheckStateRole) // coils |
83 | return m_coils.at(i: index.row()) ? Qt::Checked : Qt::Unchecked; |
84 | |
85 | if (index.column() == HoldingColumn && role == Qt::DisplayRole) // holding registers |
86 | return QString("0x%1" ).arg(a: QString::number(m_holdingRegisters.at(i: index.row()), base: 16)); |
87 | |
88 | return QVariant(); |
89 | |
90 | } |
91 | |
92 | QVariant WriteRegisterModel::(int section, Qt::Orientation orientation, int role) const |
93 | { |
94 | if (role != Qt::DisplayRole) |
95 | return QVariant(); |
96 | |
97 | if (orientation == Qt::Horizontal) { |
98 | switch (section) { |
99 | case NumColumn: |
100 | return QStringLiteral("#" ); |
101 | case CoilsColumn: |
102 | return QStringLiteral("Coils " ); |
103 | case HoldingColumn: |
104 | return QStringLiteral("Holding Registers" ); |
105 | default: |
106 | break; |
107 | } |
108 | } |
109 | return QVariant(); |
110 | } |
111 | |
112 | bool WriteRegisterModel::setData(const QModelIndex &index, const QVariant &value, int role) |
113 | { |
114 | if (!index.isValid() || index.row() >= RowCount || index.column() >= ColumnCount) |
115 | return false; |
116 | |
117 | Q_ASSERT(m_coils.count() == RowCount); |
118 | Q_ASSERT(m_holdingRegisters.count() == RowCount); |
119 | |
120 | if (index.column() == CoilsColumn && role == Qt::CheckStateRole) { // coils |
121 | auto s = static_cast<Qt::CheckState>(value.toUInt()); |
122 | s == Qt::Checked ? m_coils.setBit(index.row()) : m_coils.clearBit(i: index.row()); |
123 | emit dataChanged(topLeft: index, bottomRight: index); |
124 | return true; |
125 | } |
126 | |
127 | if (index.column() == HoldingColumn && role == Qt::EditRole) { // holding registers |
128 | bool result = false; |
129 | quint16 newValue = value.toString().toUShort(ok: &result, base: 16); |
130 | if (result) |
131 | m_holdingRegisters[index.row()] = newValue; |
132 | |
133 | emit dataChanged(topLeft: index, bottomRight: index); |
134 | return result; |
135 | } |
136 | |
137 | return false; |
138 | } |
139 | |
140 | Qt::ItemFlags WriteRegisterModel::flags(const QModelIndex &index) const |
141 | { |
142 | if (!index.isValid() || index.row() >= RowCount || index.column() >= ColumnCount) |
143 | return QAbstractTableModel::flags(index); |
144 | |
145 | Qt::ItemFlags flags = QAbstractTableModel::flags(index); |
146 | if ((index.row() < m_address) || (index.row() >= (m_address + m_number))) |
147 | flags &= ~Qt::ItemIsEnabled; |
148 | |
149 | if (index.column() == CoilsColumn) // coils |
150 | return flags | Qt::ItemIsUserCheckable; |
151 | if (index.column() == HoldingColumn) // holding registers |
152 | return flags | Qt::ItemIsEditable; |
153 | |
154 | return flags; |
155 | } |
156 | |
157 | void WriteRegisterModel::setStartAddress(int address) |
158 | { |
159 | m_address = address; |
160 | emit updateViewport(); |
161 | } |
162 | |
163 | void WriteRegisterModel::setNumberOfValues(const QString &number) |
164 | { |
165 | m_number = number.toInt(); |
166 | emit updateViewport(); |
167 | } |
168 | |