]> sigrok.org Git - pulseview.git/blobdiff - pv/data/decode/annotation.hpp
TabularDecView: Implement "hide hidden rows/classes" checkbox
[pulseview.git] / pv / data / decode / annotation.hpp
index 071f292a8c2fa1a687295590a94b9cb5d67b3bb4..edc27bee4dfa52947477980622e137863aaa14f2 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_VIEW_DECODE_ANNOTATION_HPP
 #define PULSEVIEW_PV_VIEW_DECODE_ANNOTATION_HPP
 
-#include <stdint.h>
+#include <cstdint>
+#include <vector>
 
+#include <QColor>
 #include <QString>
 
+using std::vector;
+
 struct srd_proto_data;
 
 namespace pv {
 namespace data {
 namespace decode {
 
+class Row;
+class RowData;
+
 class Annotation
 {
 public:
-       Annotation(const srd_proto_data *const pdata);
+       typedef uint32_t Class;
+
+public:
+       Annotation(uint64_t start_sample, uint64_t end_sample,
+               const vector<QString>* texts, Class ann_class_id, const RowData *data);
+       Annotation(Annotation&& a);
+       Annotation& operator=(Annotation&& a);
+
+       const RowData* row_data() const;
+       const Row* row() const;
 
        uint64_t start_sample() const;
        uint64_t end_sample() const;
-       int format() const;
-       const std::vector<QString>& annotations() const;
+       uint64_t length() const;
+
+       Class ann_class_id() const;
+       const QString ann_class_name() const;
+       const QString ann_class_description() const;
+
+       const vector<QString>* annotations() const;
+       const QString longest_annotation() const;
+
+       bool visible() const;
+
+       const QColor color() const;
+       const QColor bright_color() const;
+       const QColor dark_color() const;
+
+       bool operator<(const Annotation &other) const;
 
 private:
        uint64_t start_sample_;
        uint64_t end_sample_;
-       int format_;
-       std::vector<QString> annotations_;
+       const vector<QString>* texts_;
+       Class ann_class_id_;
+       const RowData* data_;
 };
 
 } // namespace decode