summaryrefslogtreecommitdiff
path: root/notehead.hh
diff options
context:
space:
mode:
authorHan-Wen Nienhuys <hanwen@xs4all.nl>1996-11-28 12:02:01 +0100
committerHan-Wen Nienhuys <hanwen@xs4all.nl>1996-11-28 12:02:01 +0100
commitfc22f69328fd2d5030bb1feff8d0f6da37e8217d (patch)
tree9e9c59c8c0c104cf4388f728b19f0e9be7b6991d /notehead.hh
parentc3fe80ddeb9acfcf5d569fcef1caaef6ef7a01fb (diff)
release: 0.0.8
Diffstat (limited to 'notehead.hh')
-rw-r--r--notehead.hh38
1 files changed, 38 insertions, 0 deletions
diff --git a/notehead.hh b/notehead.hh
new file mode 100644
index 0000000000..b694e95af8
--- /dev/null
+++ b/notehead.hh
@@ -0,0 +1,38 @@
+/*
+ notehead.hh -- part of LilyPond
+
+ (c) 1996 Han-Wen Nienhuys
+*/
+
+#ifndef NOTEHEAD_HH
+#define NOTEHEAD_HH
+#include "item.hh"
+
+/// ball at the end of the stem
+struct Notehead : public Item
+{
+ int position;
+ int staff_size;
+ int dots;
+ int balltype;
+
+ /****************/
+ void preprocess();
+
+ Notehead(int staff_size);
+ /**
+ position of top line (5 linestaff: 8)
+ */
+ void print()const;
+private:
+ void brew_molecole();
+};
+/**
+ takes care of:
+
+ * help lines
+ * proper placing of dots
+
+ */
+#endif // NOTEHEAD_HH
+