GrooveView.h 470 B

123456789101112131415161718192021222324252627282930313233343536
  1. #ifndef GROOVEVIEW_H
  2. #define GROOVEVIEW_H
  3. #include <QWidget>
  4. #include <QVBoxLayout>
  5. #include <QComboBox>
  6. #include "Groove.h"
  7. #include "SerializingObject.h"
  8. class GrooveView : public QWidget
  9. {
  10. Q_OBJECT
  11. public:
  12. GrooveView(QWidget * parent);
  13. virtual ~GrooveView();
  14. void clear();
  15. signals:
  16. public slots:
  17. void update();
  18. void grooveChanged();
  19. private:
  20. void setView(Groove * groove);
  21. QVBoxLayout * m_layout;
  22. QComboBox * m_comboBox;
  23. };
  24. #endif // GROOVEVIEW_H