source: src/UIElements/Views/Qt4/Plotting/QListWidgetCurveItem.hpp

Candidate_v1.6.1
Last change on this file was 35302b, checked in by Frederik Heber <heber@…>, 11 years ago

Added many files from project Seismolo.

  • Property mode set to 100644
File size: 727 bytes
Line 
1/*
2 * QListWidgetCurveItem.hpp
3 *
4 * Created on: Jan 30, 2011
5 * Author: landvogt
6 */
7
8#ifndef QLISTWIDGETCURVEITEM_HPP
9#define QLISTWIDGETCURVEITEM_HPP
10
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16#include <QtGui/QListWidgetItem>
17
18/**
19 * \class QListWidgetCurveItem
20 *
21 * The class only adds the curveName
22 * property (as std::string) to the
23 * QListWidgetItem class.
24 * The curveName property should contain
25 * the name by which the curve can be
26 * retrieved from the registry.
27 **/
28
29class QListWidgetCurveItem : public QListWidgetItem
30{
31public:
32 QListWidgetCurveItem();
33 ~QListWidgetCurveItem();
34 std::string curveName;
35
36signals:
37
38public slots:
39};
40
41#endif // QLISTWIDGETCURVEITEM_HPP
Note: See TracBrowser for help on using the repository browser.