]> sigrok.org Git - pulseview.git/blobdiff - pv/data/decode/row.hpp
DecodeTrace: Highlight row expand markers when a class is hidden
[pulseview.git] / pv / data / decode / row.hpp
index 3a163fb38a5f16741c735bf4b487807289fac0dc..b877b58b85b4ca25300dad8d45e12042ad30a7a8 100644 (file)
  * 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_H
-#define PULSEVIEW_PV_DATA_DECODE_ROW_H
+#ifndef PULSEVIEW_PV_DATA_DECODE_ROW_HPP
+#define PULSEVIEW_PV_DATA_DECODE_ROW_HPP
 
 #include <vector>
 
-#include "annotation.hpp"
+#include <pv/data/decode/annotation.hpp>
+#include <pv/data/decode/decoder.hpp>
 
 struct srd_decoder;
 struct srd_decoder_annotation_row;
@@ -32,28 +32,42 @@ namespace pv {
 namespace data {
 namespace decode {
 
+struct AnnotationClass;
+class Decoder;
+
 class Row
 {
 public:
        Row();
 
-       Row(const srd_decoder *decoder,
-               const srd_decoder_annotation_row *row = NULL);
+       Row(uint32_t index, Decoder* decoder,
+               const srd_decoder_annotation_row* srd_row = nullptr);
 
-       const srd_decoder* decoder() const;
-       const srd_decoder_annotation_row* row() const;
+       const Decoder* decoder() const;
+       const srd_decoder_annotation_row* get_srd_row() const;
 
        const QString title() const;
+       const QString description() const;
+       vector<AnnotationClass*> ann_classes() const;
+       uint32_t index() const;
+
+       bool visible() const;
+       void set_visible(bool visible);
+
+       bool has_hidden_classes() const;
 
-       bool operator<(const Row &other) const;
+       bool operator<(const Row& other) const;
+       bool operator==(const Row& other) const;
 
 private:
-       const srd_decoder *decoder_;
-       const srd_decoder_annotation_row *row_;
+       uint32_t index_;
+       Decoder* decoder_;
+       const srd_decoder_annotation_row* srd_row_;
+       bool visible_;
 };
 
-} // decode
-} // data
-} // pv
+}  // namespace decode
+}  // namespace data
+}  // namespace pv
 
-#endif // PULSEVIEW_PV_DATA_DECODE_ROW_H
+#endif // PULSEVIEW_PV_DATA_DECODE_ROW_HPP