]> git.cworth.org Git - scherzo/blob - score.c
Start drawing something
[scherzo] / score.c
1 /* scherzo - Music notation training
2  *
3  *      score - Utilities for drawing (simple) musical scores
4  *
5  * Copyright © 2010 Carl Worth
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see http://www.gnu.org/licenses/ .
19  */
20
21 #include "score.h"
22
23 void
24 score_init (score_t *score)
25 {
26     score->space_height = 6;
27 }
28
29 void
30 _draw_staff (score_t *score, cairo_t *cr)
31 {
32     int i;
33
34     cairo_save (cr);
35
36     for (i = 0; i < 5; i++) {
37         cairo_move_to (cr, 0, i * score->space_height + 0.5);
38         cairo_rel_line_to (cr, score->width, 0);
39     }
40
41     cairo_set_line_width (cr, 1.0);
42
43     cairo_set_source_rgb (cr, 0.0, 0.0, 0.0); /* black */
44     cairo_stroke (cr);
45
46     cairo_restore (cr);
47 }
48
49 void
50 score_set_width (score_t *score, int width)
51 {
52     score->width = width;
53 }
54
55 void
56 score_draw (score_t *score, cairo_t *cr)
57 {
58     _draw_staff (score, cr);
59 }