File: slurs.c

package info (click to toggle)
denemo 0.9.2-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 26,724 kB
  • sloc: ansic: 59,006; lisp: 13,874; sh: 11,666; makefile: 2,082; xml: 634; sed: 16
file content (85 lines) | stat: -rw-r--r-- 1,691 bytes parent folder | download
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/* slurs.cpp
 *
 * Functions for drawing slurs
 *
 * for Denemo, a gtk+ frontend to GNU Lilypond
 * (c) 2000-2005 Adam Tee, Matthew Hiller
 */

#include <denemo/denemo.h>
#include "utils.h"		/* Includes <gdk.h> */

GSList *
push_slur_stack (GSList * slur_stack, gint x)
{
  slur_stack = g_slist_prepend (slur_stack, GINT_TO_POINTER (x));
  return slur_stack;
}

gint
top_slur_stack (GSList * slur_stack)
{
  if (slur_stack)
    return GPOINTER_TO_INT (slur_stack->data);
  else
    return -1;
}

GSList *
pop_slur_stack (GSList * slur_stack)
{
  if (slur_stack)
    {
      GSList *head = slur_stack;

      slur_stack = g_slist_remove_link (slur_stack, head);
      g_slist_free_1 (head);
      return slur_stack;
    }
  else
    return NULL;
}

void
draw_slur (cairo_t * cr, GSList ** slur_stack,
	   gint x2, gint y)
{
  gint x1 = top_slur_stack (*slur_stack);
  if (x1 != -1)
    {
      *slur_stack = pop_slur_stack (*slur_stack);

      cairo_set_line_width( cr, 1.0 );
      cairo_move_to( cr, x1, y - 15 );
      cairo_rel_curve_to( cr, (x2-x1)/3, -8, (x2-x1)*2/3, -8, (x2-x1), 0 );
      cairo_stroke( cr );
    } else {
    cairo_set_line_width( cr, 1.0 );
    cairo_move_to( cr, 0, y - 15 );
    cairo_rel_curve_to( cr, (x2)/3, -8, (x2)*2/3, -8, (x2), 0 );
    cairo_stroke( cr );
  }
}

void
draw_slur_start (cairo_t * cr,
	   gint x, gint y)
{

    cairo_set_line_width( cr, 1.0 );
    cairo_move_to( cr, x, y - 15 );
    cairo_rel_line_to( cr, 8, -4 );
    cairo_stroke( cr );
 
}
void
draw_slur_end (cairo_t * cr,
	   gint x, gint y)
{

    cairo_set_line_width( cr, 1.0 );
    cairo_move_to( cr, x, y - 15 );
    cairo_rel_line_to( cr, -8, -4 );
    cairo_stroke( cr );
 
}