blob: 4744aef8554d11561513cd79505dc2f6fbcc3745 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
bar.hh -- part of GNU LilyPond
(c) 1996--2006 Han-Wen Nienhuys
*/
#ifndef BAR_HH
#define BAR_HH
#include "lily-guile.hh"
#include "lily-proto.hh"
/**
A vertical bar.
*/
class Bar_line
{
public:
static bool has_interface (Grob *);
static Stencil compound_barline (Grob *, string, Real height, bool rounded);
static Stencil simple_barline (Grob *, Real wid, Real height, bool rounded);
DECLARE_SCHEME_CALLBACK (calc_bar_size, (SCM));
DECLARE_SCHEME_CALLBACK (print, (SCM));
};
#endif // BAR_HH
|