Make sure PD row colors remain constant by adding a row index
[pulseview.git] / pv / data / decode / row.cpp
index 70a060938aedb11642ae2eb8e7526ac8054d295c..5b1b25ee8ec56043f736b2d82938d9d1ea1ef0fd 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/>.
  */
 
 #include "row.hpp"
@@ -32,7 +31,8 @@ Row::Row() :
 {
 }
 
-Row::Row(const srd_decoder *decoder, const srd_decoder_annotation_row *row) :
+Row::Row(int index, const srd_decoder *decoder, const srd_decoder_annotation_row *row) :
+       index_(index),
        decoder_(decoder),
        row_(row)
 {
@@ -52,8 +52,8 @@ const QString Row::title() const
 {
        if (decoder_ && decoder_->name && row_ && row_->desc)
                return QString("%1: %2")
-                       .arg(QString::fromUtf8(decoder_->name))
-                       .arg(QString::fromUtf8(row_->desc));
+                       .arg(QString::fromUtf8(decoder_->name),
+                            QString::fromUtf8(row_->desc));
        if (decoder_ && decoder_->name)
                return QString::fromUtf8(decoder_->name);
        if (row_ && row_->desc)
@@ -61,12 +61,17 @@ const QString Row::title() const
        return QString();
 }
 
+int Row::index() const
+{
+       return index_;
+}
+
 bool Row::operator<(const Row &other) const
 {
        return (decoder_ < other.decoder_) ||
                (decoder_ == other.decoder_ && row_ < other.row_);
 }
 
-} // decode
-} // data
-} // pv
+}  // namespace decode
+}  // namespace data
+}  // namespace pv