summaryrefslogtreecommitdiff
path: root/attic/muse2-oom/muse2/muse/widgets/pitchedit.h
diff options
context:
space:
mode:
Diffstat (limited to 'attic/muse2-oom/muse2/muse/widgets/pitchedit.h')
-rw-r--r--attic/muse2-oom/muse2/muse/widgets/pitchedit.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/attic/muse2-oom/muse2/muse/widgets/pitchedit.h b/attic/muse2-oom/muse2/muse/widgets/pitchedit.h
deleted file mode 100644
index 8d2c8789..00000000
--- a/attic/muse2-oom/muse2/muse/widgets/pitchedit.h
+++ /dev/null
@@ -1,33 +0,0 @@
-//=========================================================
-// MusE
-// Linux Music Editor
-// $Id: pitchedit.h,v 1.2 2004/01/09 17:12:54 wschweer Exp $
-// (C) Copyright 2001 Werner Schweer (ws@seh.de)
-//=========================================================
-
-#ifndef __PITCHEDIT_H__
-#define __PITCHEDIT_H__
-
-#include <QSpinBox>
-
-//---------------------------------------------------------
-// PitchEdit
-//---------------------------------------------------------
-
-class PitchEdit : public QSpinBox {
- Q_OBJECT
-
- bool deltaMode;
-
- protected:
- virtual QString mapValueToText(int v);
- virtual int mapTextToValue(bool* ok);
-
- public:
- PitchEdit(QWidget* parent=0);
- void setDeltaMode(bool);
- };
-
-extern QString pitch2string(int v);
-
-#endif