Lines Matching refs:fn

533 Raphael.fn.tabtype = 0;  // 0 = none, 1 = tab & chord, 2 = chord, 3 = tab
534 Raphael.fn.has_chord = false;
535 Raphael.fn.has_tab = false;
537 Raphael.fn.debug = false;
538 Raphael.fn.scale = 1;
539 Raphael.fn.margin_top = 36;
540 Raphael.fn.margin_bottom = 10;
541 Raphael.fn.margin_left = 16;
542 Raphael.fn.margin_right = 10;
544 Raphael.fn.current_offset = Raphael.fn.margin_left;
546 Raphael.fn.string_spacing = 16;
547 Raphael.fn.strings_drawn = 6;
548 Raphael.fn.fret_spacing = 16;
549 Raphael.fn.frets_drawn = 4;
550 Raphael.fn.note_radius = 7;
552 Raphael.fn.fret_width = Raphael.fn.string_spacing * (Raphael.fn.strings_drawn - 1);
553 Raphael.fn.fret_height = Raphael.fn.fret_spacing * (Raphael.fn.frets_drawn + 0.5);
554 Raphael.fn.chord_width = Raphael.fn.margin_left + Raphael.fn.fret_width + Raphael.fn.string_spacing…
555 Raphael.fn.chord_height = Raphael.fn.margin_top + Raphael.fn.fret_height + Raphael.fn.margin_bottom;
557 Raphael.fn.tab_current_string = 0; // 1,2,3,4,5,6 or 0 = not set
558 Raphael.fn.tab_margin_top = 10;
559 Raphael.fn.tab_top = Raphael.fn.chord_height + Raphael.fn.tab_margin_top;
560 Raphael.fn.tab_spacing = Raphael.fn.fret_spacing;
561 Raphael.fn.tab_height = Raphael.fn.tab_spacing * 5;
562 Raphael.fn.tab_char_width = 8;
564 Raphael.fn.total_height = Raphael.fn.tab_top + Raphael.fn.tab_height + Raphael.fn.margin_bottom;
566 Raphael.fn.color = "#000";
567 Raphael.fn.fingering_text_color = "#fff";
568 Raphael.fn.tab_text_color = "#000";
572 Raphael.fn.debug_grid = function (width) {
587 Raphael.fn.increment_offset = function (width) {
594 Raphael.fn.svg_params = function (x, y, l1, l2) {
601 Raphael.fn.chord_fretboard = function (position, chord_name) {
638 Raphael.fn.stroke = function () {
661 Raphael.fn.bar = function () {
681 Raphael.fn.doublebar = function () {
705 Raphael.fn.chord_note = function (position, string_number, note) {
735 Raphael.fn.tab_extend = function (width) {
744 Raphael.fn.tab_start = function () {
763 Raphael.fn.draw_tab_note = function (string_number, token, left_offset) {
771 Raphael.fn.get_string_number = function (token) {
786 Raphael.fn.get_fullchord_notes = function (token) {
803 Raphael.fn.tab_note = function (token) {
850 Raphael.fn.render_token = function (token) {
902 Raphael.fn.current_offset = Raphael.fn.margin_left;
905 Raphael.fn.has_chord = true;
906 Raphael.fn.has_tab = true;
907 Raphael.fn.tab_top = Raphael.fn.chord_height + Raphael.fn.tab_margin_top;
908 Raphael.fn.total_height = Raphael.fn.tab_top + Raphael.fn.tab_height + Raphael.fn.margin_bottom;
911 Raphael.fn.has_chord = true;
912 Raphael.fn.has_tab = false;
913 Raphael.fn.tab_top = Raphael.fn.chord_height + Raphael.fn.tab_margin_top;
914 Raphael.fn.total_height = Raphael.fn.chord_height;
917 Raphael.fn.has_chord = false;
918 Raphael.fn.has_tab = true;
919 Raphael.fn.tab_top = Raphael.fn.tab_margin_top;
920 Raphael.fn.total_height = Raphael.fn.tab_top + Raphael.fn.tab_height + Raphael.fn.margin_bottom;
922 Raphael.fn.tabtype = tabtype;
946 Raphael.fn.color = fgColor;
947 Raphael.fn.tab_text_color = fgColor;
953 Raphael.fn.fingering_text_color = bgColor;
970 …var canvas_holder = jQuery('<div id="' + rndID + '"></div>').css({ height: Raphael.fn.total_height…
974 canvas = Raphael(rndID, 80, Raphael.fn.total_height);