blob: c9ab5d36ef4a3fc4d6092df3eff749c6017fe645 (
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
28
|
/*
bar.hh -- part of GNU LilyPond
(c) 1996--2000 Han-Wen Nienhuys
*/
#ifndef BAR_HH
#define BAR_HH
#include "lily-guile.hh"
#include "lily-proto.hh"
/**
A vertical bar.
*/
class Bar
{
public:
static bool has_interface (Score_element*);
static void set_interface (Score_element*);
static Molecule compound_barline (Score_element*, String, Real height) ;
static Molecule simple_barline (Score_element*, Real wid, Real height) ;
static SCM get_staff_bar_size (SCM);
static SCM brew_molecule (SCM);
static SCM before_line_breaking (SCM);
};
#endif // BAR_HH
|