Skip to content

Commit

Permalink
New template
Browse files Browse the repository at this point in the history
  • Loading branch information
jflaloux committed Sep 15, 2014
1 parent cf92807 commit 0073507
Show file tree
Hide file tree
Showing 34 changed files with 2,847 additions and 0 deletions.
Binary file added new/favicon.ico
Binary file not shown.
8 changes: 8 additions & 0 deletions new/flash/Options.as
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// This file configures the Flash options for sIFR.

class Options {
// Set the options for sIFR inside this function.
public static function apply() {
sIFR.domains = ['*'];
}
}
78 changes: 78 additions & 0 deletions new/flash/SifrStyleSheet.as
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
/*=:project
scalable Inman Flash Replacement (sIFR) version 3.
=:file
Copyright: 2006 Mark Wubben.
Author: Mark Wubben, <http://novemberborn.net/>
=:history
* IFR: Shaun Inman
* sIFR 1: Mike Davidson, Shaun Inman and Tomas Jogin
* sIFR 2: Mike Davidson, Shaun Inman, Tomas Jogin and Mark Wubben
=:license
This software is licensed and provided under the CC-GNU LGPL.
See <http://creativecommons.org/licenses/LGPL/2.1/>
*/

import TextField.StyleSheet;

class SifrStyleSheet extends TextField.StyleSheet {
public var fontSize;
public var latestLeading = 0;

public function parseCSS(cssText:String) {
var native = new TextField.StyleSheet();
var parsed = native.parseCSS(cssText);

if(!parsed) return false;

var selectors = native.getStyleNames();
for(var i = selectors.length - 1; i >= 0; i--) {
var selector = selectors[i];
var nativeStyle = native.getStyle(selector);
var style = this.getStyle(selector) || nativeStyle;
if(style != nativeStyle) {
for(var property in nativeStyle) style[property] = nativeStyle[property];
}
this.setStyle(selector, style);
}

return true;
}

// Apply leading to the textFormat. Much thanks to <http://www.blog.lessrain.com/?p=98>.
private function applyLeading(format, leading) {
this.latestLeading = leading;

// Fix leading internally
leading = parseInt(leading, 10) + sIFR.LEADING_REMAINDER;

if(leading >= 0) {
format.leading = leading;
return format;
}

// Workaround for negative leading, which is ignored otherwise.
var newFormat = new TextFormat(null, null, null, null, null, null, null, null, null, null, null, null, leading);
for(var property in format) if(property != 'leading') newFormat[property] = format[property];

return newFormat;
}

public function transform(style) {
var format = super.transform(style);
if(style.leading) format = applyLeading(format, style.leading);
if(style.letterSpacing) format.letterSpacing = style.letterSpacing;
if(style.fontSize) {
// Support font sizes relative to the size of .sIFR-root.
if (this.fontSize && style.fontSize.indexOf('%') > 0) {
format.size = this.fontSize * parseInt(style.fontSize, 10) / 100;
} else {
format.size = parseInt(style.fontSize, 10);
}
}
format.kerning = _root.kerning == 'true' || !(_root.kerning == 'false') || sIFR.defaultKerning;
return format;
}
}
Binary file added new/flash/avenir.swf
Binary file not shown.
Binary file added new/flash/museo.swf
Binary file not shown.
Loading

0 comments on commit 0073507

Please sign in to comment.