Make sure PD row colors remain constant by adding a row index
[pulseview.git] / pv / data / decode / row.hpp
index 6413e78808bb0de907c83a89c5e0e6073a060e89..2411d4f61afaa2344660429fc2b76348f034a269 100644 (file)
@@ -14,8 +14,7 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 #ifndef PULSEVIEW_PV_DATA_DECODE_ROW_HPP
@@ -37,23 +36,25 @@ class Row
 public:
        Row();
 
-       Row(const srd_decoder *decoder,
-               const srd_decoder_annotation_row *row = NULL);
+       Row(int index, const srd_decoder *decoder,
+               const srd_decoder_annotation_row *row = nullptr);
 
        const srd_decoder* decoder() const;
        const srd_decoder_annotation_row* row() const;
 
        const QString title() const;
+       int index() const;
 
        bool operator<(const Row &other) const;
 
 private:
+       int index_;
        const srd_decoder *decoder_;
        const srd_decoder_annotation_row *row_;
 };
 
-} // decode
-} // data
-} // pv
+}  // namespace decode
+}  // namespace data
+}  // namespace pv
 
 #endif // PULSEVIEW_PV_DATA_DECODE_ROW_HPP