search for: rightmargin

Displaying 9 results from an estimated 9 matches for "rightmargin".

2007 Oct 22
0
12 commits - libswfdec/swfdec_as_strings.c libswfdec/swfdec_html_parser.c libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field.h libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c libswfdec/swfdec_text_field_movie.h test/trace
...an" SIZE="12" COLOR="#000000" LETTERSPACING="0" KERNING="0">a</FONT></P> +0/a: align=left blockIndent=0 bold=false bullet=false color=0 display=block font=Times New Roman indent=0 italic=false kerning= leading=0 leftMargin=0 letterSpacing= rightMargin=0 size=12 tabStops= target= underline=false url= +0: multiline: true condenseWhite: false +a +<P ALIGN="LEFT"><FONT FACE="Times New Roman" SIZE="12" COLOR="#000000" LETTERSPACING="0" KERNING="0">a</FONT></P> +0/a: a...
2007 Oct 25
0
18 commits - libswfdec/swfdec_player_internal.h libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_format.c libswfdec/swfdec_text_format.h libswfdec/swfdec_xml.c libswfdec/swfdec_xml_node.c libswfdec/swfdec_xml_node.h test/trace
..."blockIndent", + "bold", + "bullet"/*, + "color", + "display", + "font", + "indent", + "italic", + "kerning", + "leading", + "leftMargin", + "letterSpacing", + "rightMargin", + "size", + "tabStops", + "target", + "underline", + "url"*/ +]; + +function format_to_string (fmt) { + str = ""; + for (var i = 0; i < properties.length; i++) { + str += " " + properties[i] + "=" +...
2007 Oct 22
0
5 commits - libswfdec/swfdec_html_parser.c libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c test/trace
...644 --- a/test/trace/text-field-html-input-6.swf.trace +++ b/test/trace/text-field-html-input-6.swf.trace @@ -118,3 +118,31 @@ ab c 1/b: align=right blockIndent=0 bold=false bullet=false color=0 display=block font=Times New Roman indent=0 italic=false kerning= leading=0 leftMargin=0 letterSpacing= rightMargin=0 size=12 tabStops= target= underline=false url= 2/ : align=right blockIndent=0 bold=false bullet=false color=0 display=block font=Times New Roman indent=0 italic=false kerning= leading=0 leftMargin=0 letterSpacing= rightMargin=0 size=12 tabStops= target= underline=false url= 3/c: align=left bloc...
2007 Oct 29
0
20 commits - libswfdec/Makefile.am libswfdec/swfdec_as_interpret.c libswfdec/swfdec_html_parser.c libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field.h
...an" SIZE="12" COLOR="#000000" LETTERSPACING="0" KERNING="0">a</FONT></P> 0/a: align=left blockIndent=0 bold=false bullet=false color=0 display=block font=Times New Roman indent=0 italic=false kerning= leading=0 leftMargin=0 letterSpacing= rightMargin=0 size=12 tabStops= target= underline=false url= +8: multiline: false condenseWhite: false +a b cd e +<P ALIGN="LEFT"><FONT FACE="Times New Roman" SIZE="12" COLOR="#000000" LETTERSPACING="0" KERNING="0">a</FONT></P>...
2006 Oct 17
0
[680] trunk/wxruby2/samples/printing/printing.rb: Cleaned up to use the Ruby naming convention, added #! line, now uses Wx default ID''s in standard menu items.
...) </span><span class="cx"> </span><del>- # TESTING </del><ins>+ left_margin = 20 + right_margin = 20 + top_margin = 20 + bottom_margin = 20 </ins><span class="cx"> </span><del>- leftMargin = 20 - rightMargin = 20 - topMargin = 20 - bottomMargin = 20 </del><ins>+ page_width_mm, page_height_mm = get_page_size_mm </ins><span class="cx"> </span><del>- pageWidthMM, pageHeightMM = get_page_size_mm </del><ins>+ left_margin_logical = (lo...
2007 Oct 17
0
6 commits - libswfdec/swfdec_as_strings.c libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field.h libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c
...TER: + return "CENTER"; + case SWFDEC_TEXT_ALIGN_JUSTIFY: + return "JUSTIFY"; + default: + g_assert_not_reached (); + } +} + +/* + * Order of tags: + * TEXTFORMAT / P or LI / FONT / A / B / I / U + * + * Order of attributes: + * TEXTFORMAT: + * LEFTMARGIN / RIGHTMARGIN / INDENT / LEADING / BLOCKINDENT / TABSTOPS + * P: ALIGN + * LI: none + * FONT: FACE / SIZE / COLOR / LETTERSPACING / KERNING + * A: HREF / TARGET + * B: none + * I: none + * U: none + */ +static GString * +swfdec_text_field_movie_html_text_append_paragraph (SwfdecTextFieldMovie *text, + GString...
2006 May 22
2
[vpim] Some small rrule.rb changes
Quoting cosmin at speakeasy.net, on Sat, May 20, 2006 at 11:40:06AM -0700: > I did some changes to the rrule.rb. I needed some getters/setters for > each of the attributes from RRULE. Attached is the diff. If it makes > sense to you to be included in the lib, please do so. If you think > it''s worth to be included, I can add more validation to the setters. I
2007 Sep 29
0
libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h
...e.kerning); + } + + if (style.leading) + format.leading = parseInt (style.leading); + + if (style.marginLeft) + format.leftMargin = parseInt (style.marginLeft); + + if (style.letterSpacing) + format.letterSpacing = parseInt (style.letterSpacing); + + if (style.marginRight) + format.rightMargin = parseInt (style.marginRight); + + if (style.fontSize) { + var tmp = parseInt (style.fontSize); + if (tmp > 0) + format.size = tmp; + } + + if (style.textDecoration == "underline") { + format.underline = true; + } else if (style.textDecoration == "none") {...
2007 Nov 30
0
36 commits - libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_date.c libswfdec/swfdec_as_initialize.as libswfdec/swfdec_as_initialize.h libswfdec/swfdec_as_strings.c libswfdec/swfdec_flash_security.c
...rguments[] = { + SWFDEC_AS_STR_font, + SWFDEC_AS_STR_size, + SWFDEC_AS_STR_color, + SWFDEC_AS_STR_bold, + SWFDEC_AS_STR_italic, + SWFDEC_AS_STR_underline, + SWFDEC_AS_STR_url, + SWFDEC_AS_STR_target, + SWFDEC_AS_STR_align, + SWFDEC_AS_STR_leftMargin, + SWFDEC_AS_STR_rightMargin, + SWFDEC_AS_STR_indent, + SWFDEC_AS_STR_leading, + NULL + }; SwfdecAsFunction *function; SwfdecAsObject *tmp; SwfdecAsValue val; @@ -1172,37 +1188,14 @@ swfdec_text_format_construct (SwfdecAsContext *cx, SwfdecAsObject *object, function = swfdec_as_native_function_new (cx, SW...