X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fstencil.hh;h=820771ef7fe4d772ac072410b50d3bbe4f8e807e;hb=982ef89a307690204cf7e0b4e02cc879fe86c4a8;hp=8e0d1bcf91d1a0c9278dd77bcbebdac6f25e71af;hpb=2c22efe5a46a37065b10c3f51c5d7db00d07d318;p=lilypond.git diff --git a/lily/include/stencil.hh b/lily/include/stencil.hh index 8e0d1bcf91..820771ef7f 100644 --- a/lily/include/stencil.hh +++ b/lily/include/stencil.hh @@ -3,12 +3,13 @@ source file of the GNU LilyPond music typesetter - (c) 1997--2005 Han-Wen Nienhuys + (c) 1997--2007 Han-Wen Nienhuys */ #ifndef STENCIL_HH #define STENCIL_HH #include // size_t +using namespace std; #include "lily-proto.hh" #include "box.hh" @@ -45,35 +46,25 @@ */ class Stencil { - friend SCM ly_stencil_set_extent_x (SCM, SCM, SCM); - - /* - This provides the reference point of the symbol, for example with - characters, it is on the base line of the character. Usually, - ORIGIN is inside DIM_ - */ - Offset origin_; Box dim_; SCM expr_; - DECLARE_SIMPLE_SMOBS (Stencil,); + DECLARE_SIMPLE_SMOBS (Stencil); public: Stencil (Box, SCM s); Stencil (); - Offset origin () const; SCM expr () const; /** Set dimensions to empty, or to (Interval (0, 0), Interval (0, 0) */ void set_empty (bool); - Stencil moved_to_edge (Axis a, Direction d, const Stencil &m, Real padding, - Real minimum) const; - - void add_at_edge (Axis a, Direction d, const Stencil &m, Real padding, - Real minimum); + void add_at_edge (Axis a, Direction d, const Stencil &m, Real padding); void add_stencil (Stencil const &m); void translate (Offset); + Stencil translated (Offset) const; + void rotate (Real, Offset); + void rotate_degrees (Real, Offset); void align_to (Axis a, Real x); void translate_axis (Real, Axis); @@ -81,10 +72,6 @@ public: Box extent_box () const; bool is_empty () const; Stencil in_color (Real r, Real g, Real b) const; - - static SCM ly_get_stencil_extent (SCM mol, SCM axis); - static SCM ly_set_stencil_extent_x (SCM, SCM, SCM); - static SCM ly_stencil_combined_at_edge (SCM, SCM, SCM, SCM, SCM); }; DECLARE_UNSMOB (Stencil, stencil); @@ -99,4 +86,5 @@ void register_stencil_head (SCM symbol); bool is_stencil_head (SCM symbol); SCM all_stencil_heads (); + #endif /* STENCIL_HH */