-DOCFILES=CodingStyle algorithms Makefile breaking
+DOCFILES=commands CodingStyle algorithms Makefile breaking
dist:
ln $(DOCFILES) $(DDIR)/Documentation/
\ No newline at end of file
--- /dev/null
+This table decribes the proper order for the different commands:
+
+
+interpret
+ which priority
+ ========================
+
+ key 200
+ clef 190
+ meter 180
+ bar 170
+
+typeset
+
+ which priority
+ ========================
+
+ bar 100
+ clef 90
+ currentclef 80
+ key 70
+ currentkey 60
+ meter 40
+
\ No newline at end of file
void set_default_stemlen();
void set_default_extents();
void postprocess();
+ void preprocess();
Stem(int center);
void print() const;
Interval width() const;
if (!print_flag || ABS(flag) <= 4)
return Interval(0,0); // TODO!
Paperdef*p= paper();
- return p->lookup_->flag(flag).dim.x;
+ Interval r(p->lookup_->flag(flag).dim.x);
+ r+= stem_xoffset;
+ return r;
}
void
{
return pcol_->hpos + stem_xoffset;
}
+
+
+void
+Stem::preprocess()
+{
+
+}