summaryrefslogtreecommitdiff
path: root/attic/muse2-oom/muse2/muse/widgets/pitchlabel.h
diff options
context:
space:
mode:
Diffstat (limited to 'attic/muse2-oom/muse2/muse/widgets/pitchlabel.h')
-rw-r--r--attic/muse2-oom/muse2/muse/widgets/pitchlabel.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/attic/muse2-oom/muse2/muse/widgets/pitchlabel.h b/attic/muse2-oom/muse2/muse/widgets/pitchlabel.h
deleted file mode 100644
index 6372f711..00000000
--- a/attic/muse2-oom/muse2/muse/widgets/pitchlabel.h
+++ /dev/null
@@ -1,41 +0,0 @@
-//=========================================================
-// MusE
-// Linux Music Editor
-// $Id: pitchlabel.h,v 1.1.1.1 2003/10/27 18:54:49 wschweer Exp $
-// (C) Copyright 2001 Werner Schweer (ws@seh.de)
-//=========================================================
-
-#ifndef __PITCHLABEL_H__
-#define __PITCHLABEL_H__
-
-#include <QLabel>
-
-//---------------------------------------------------------
-// PitchLabel
-//---------------------------------------------------------
-
-class PitchLabel : public QLabel {
- bool _pitchMode;
- int _value;
- Q_OBJECT
-
- protected:
- QSize sizeHint() const;
-
- public slots:
- void setValue(int);
- void setInt(int);
- void setPitch(int);
-
- public:
- PitchLabel(QWidget* parent, const char* name = 0);
- int value() const { return _value; }
- void setPitchMode(bool val);
- bool pitchMode() const { return _pitchMode; }
- };
-
-
-#endif
-
-
-