~ubuntu-branches/ubuntu/precise/lilypond/precise

« back to all changes in this revision

Viewing changes to lily/include/text-item.hh

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Bushnell, BSG
  • Date: 2006-12-19 10:18:12 UTC
  • mfrom: (3.1.4 feisty)
  • Revision ID: james.westby@ubuntu.com-20061219101812-7awtjkp0i393wxty
Tags: 2.8.7-3
scripts/midi2ly.py: When setting DATADIR, find Lilypond python files
in the @TOPLEVEL_VERSION@ directory, not 'current'.  Patch thanks to
Chris Lamb (chris@chris-lamb.co.uk).  (Closes: #400550)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*   
2
 
  text-item.hh -- declare markup functions
3
 
 
4
 
  source file of the GNU LilyPond music typesetter
5
 
  
6
 
  (c) 1998--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
 
  Jan Nieuwenhuizen <janneke@gnu.org>
8
 
 */
9
 
 
10
 
#ifndef TEXT_ITEM
11
 
#define TEXT_ITEM
12
 
 
13
 
 
14
 
#include "lily-proto.hh"
15
 
#include "lily-guile.hh"
16
 
#include "stencil.hh"
17
 
 
18
 
class Text_item
19
 
{
20
 
public:
21
 
  DECLARE_SCHEME_CALLBACK (print, (SCM));
22
 
  DECLARE_SCHEME_CALLBACK (interpret_markup, (SCM, SCM, SCM));
23
 
  static bool has_interface (Grob*);
24
 
  static bool markup_p (SCM) ;
25
 
 
26
 
};
27
 
 
28
 
 
29
 
  
30
 
 
31
 
 
32
 
#endif /* TEXT_ITEM */