Changes to Sencha Touch 2.2 Theming Part 1: Using Iconography

source:http://druckit.wordpress.com/2013/04/04/changes-to-sencha-touch-2-2-theming-part-1-using-iconography/

Changes to Sencha Touch 2.2 Theming Part 1: Using Iconography


Sencha Touch 2.2 handles iconography very differently than its predecessors. Whereas Touch 1.x-2.1 base-64 encoded PNG files into your app’s stylesheet, Touch 2.2 instead uses a web font from http://pictos.cc/font/ to render iconography in your app’s buttons. This new methodology should significantly improve the performance of your app, particularly with respect to memory consumption. Unfortunately, you will likely need to spend a small bit of time refactoring your code as the strings used to identify icons do not match up to the icon library that had been available in previous versions of Touch. More importantly, the procedure for incorporating your own custom iconography has changed as you will now need to encode your custom icons into a web font (covered in part 2 of this blog entry).

Reviewing the Out of the Box Icons

I’ve catalogued the new iconography and their corresponding string identifiers below:

anchor box c d e  f g i
anchor box upload forbidden lightning rss  team info
 k  l m  n  o  p  q  r
heart list list table folder pencil chat2 retweet
t u v w  x  y A B
time switch camera chat settings2 settings  attach
ment2
bird
D  E  F  G  H  I  J  K
 delete_
black1
eye  file  browser home inbox  network key
N  P  Q  R  S  T  U
 V
news photos power action favorites plane user video
truck  Z  expand  refresh  check  check2  play  pause
truck chart expand refresh check check2 play pause
forward  rewind  play2 refresh2  minus battery left right
forward rewind play2 refresh2 minus battery left right
 wireless spedometer  more  print  download  warning_black  locate  trash
wireless spedo
meter
more print down
load
warning
_black
locate trash
 bank flag  add  delete  lock unlock  minus2  up
bank flag add delete lock unlock minus2 up
 screens bell quote volume_mute volume help  arrow_left  arrow_right
screens bell quote volume
_mute
volume help arrow
_left
arrow
_right
 arrow_down  organize    star  maps  reply  attachment  s
arrow
_down
organize book
marks
star maps reply attach
ment
search
 C  W
M stop shuffle cart down arrow_up
cloud compose mail stop shuffle cart down arrow
_up

Behind the scenes, the SCSS mixin icon-character-for-name maps the iconCls icon identifier to a specific character in the pictos font. This mixin is located at the following location:

touch-2-2-0/resources/themes/stylesheets/sencha-touch/base/mixins/_Class.scss

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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
@ function icon-character- for -name($name) {
 
     // Row 1
     @ if ($name == "anchor" ) { @ return "a" ; }
     @ else if ($name == "box" ) { @ return "b" ; }
     @ else if ($name == "upload" ) { @ return "c" ; }
     @ else if ($name == "forbidden" ) { @ return "d" ; }
     @ else if ($name == "lightning" ) { @ return "e" ; }
     @ else if ($name == "rss" ) { @ return "f" ; }
     @ else if ($name == "team" ) { @ return "g" ; }
//    @else if ($name == "h") { @return "h"; }
     @ else if ($name == "info" ) { @ return "i" ; }
     @ else if ($name == "attachment" ) { @ return "j" ; }
     @ else if ($name == "heart" ) { @ return "k" ; }
     @ else if ($name == "list" ) { @ return "l" ; }
     @ else if ($name == "music" ) { @ return "m" ; }
     @ else if ($name == "table" ) { @ return "n" ; }
     @ else if ($name == "folder" ) { @ return "o" ; }
     @ else if ($name == "pencil" ) { @ return "p" ; }
     @ else if ($name == "chat2" ) { @ return "q" ; }
     @ else if ($name == "retweet" ) { @ return "r" ; }
     @ else if ($name == "search" ) { @ return "s" ; }
     @ else if ($name == "time" ) { @ return "t" ; }
     @ else if ($name == "switch" ) { @ return "u" ; }
     @ else if ($name == "camera" ) { @ return "v" ; }
     @ else if ($name == "chat" ) { @ return "w" ; }
     @ else if ($name == "settings2" ) { @ return "x" ; }
     @ else if ($name == "settings" ) { @ return "y" ; }
 
     // Row 2
     @ else if ($name == "attachment2" ) { @ return "A" ; }
     @ else if ($name == "bird" ) { @ return "B" ; }
     @ else if ($name == "cloud" ) { @ return "C" ; }
     @ else if ($name == "delete_black1" ) { @ return "D" ; }
     @ else if ($name == "eye" ) { @ return "E" ; }
     @ else if ($name == "file" ) { @ return "F" ; }
     @ else if ($name == "browser" ) { @ return "G" ; }
     @ else if ($name == "home" ) { @ return "H" ; }
     @ else if ($name == "inbox" ) { @ return "I" ; }
     @ else if ($name == "network" ) { @ return "J" ; }
     @ else if ($name == "key" ) { @ return "K" ; }
//    @else if ($name == "") { @return "L"; }
     @ else if ($name == "mail" ) { @ return "M" ; }
     @ else if ($name == "news" ) { @ return "N" ; }
//    @else if ($name == "") { @return "O"; }
     @ else if ($name == "photos" ) { @ return "P" ; }
     @ else if ($name == "power" ) { @ return "Q" ; }
     @ else if ($name == "action" ) { @ return "R" ; }
     @ else if ($name == "favorites" ) { @ return "S" ; }
     @ else if ($name == "plane" ) { @ return "T" ; }
     @ else if ($name == "user" ) { @ return "U" ; }
     @ else if ($name == "video" ) { @ return "V" ; }
     @ else if ($name == "compose" ) { @ return "W" ; }
     @ else if ($name == "truck" ) { @ return "X" ; }
//    @else if ($name == "") { @return "Y"; }
     @ else if ($name == "chart" ) { @ return "Z" ; }
 
     // Row 3
     @ else if ($name == "expand" ) { @ return "`" ; }
     @ else if ($name == "refresh" ) { @ return "1" ; }
     @ else if ($name == "check" ) { @ return "2" ; }
     @ else if ($name == "check2" ) { @ return "3" ; }
     @ else if ($name == "play" ) { @ return "4" ; }
     @ else if ($name == "pause" ) { @ return "5" ; }
     @ else if ($name == "stop" ) { @ return "6" ; }
     @ else if ($name == "forward" ) { @ return "7" ; }
     @ else if ($name == "rewind" ) { @ return "8" ; }
     @ else if ($name == "play2" ) { @ return "9" ; }
     @ else if ($name == "refresh2" ) { @ return "0" ; }
     @ else if ($name == "minus" ) { @ return "-" ; }
     @ else if ($name == "battery" ) { @ return "=" ; }
     @ else if ($name == "left" ) { @ return "[" ; }
     @ else if ($name == "right" ) { @ return "]" ; }
     @ else if ($name == "shuffle" ) { @ return ";" ; }
     @ else if ($name == "wireless" ) { @ return "'" ; }
     @ else if ($name == "speedometer" ) { @ return "," ; }
     @ else if ($name == "more" ) { @ return "." ; }
     @ else if ($name == "print" ) { @ return "/" ; }
 
     // Row 4
     @ else if ($name == "download" ) { @ return "~" ; }
     @ else if ($name == "warning_black" ) { @ return "!" ; }
     @ else if ($name == "locate" ) { @ return "@" ; }
     @ else if ($name == "trash" ) { @ return "#" ; }
     @ else if ($name == "cart" ) { @ return "$" ; }
     @ else if ($name == "bank" ) { @ return "%" ; }
     @ else if ($name == "flag" ) { @ return "^" ; }
     @ else if ($name == "add" ) { @ return "&" ; }
     @ else if ($name == "delete" ) { @ return "*" ; }
     @ else if ($name == "lock" ) { @ return "(" ; }
     @ else if ($name == "unlock" ) { @ return ")" ; }
     @ else if ($name == "minus2" ) { @ return "_" ; }
     @ else if ($name == "add2" ) { @ return "+" ; }
     @ else if ($name == "up" ) { @ return "{" ; }
     @ else if ($name == "down" ) { @ return "}" ; }
     @ else if ($name == "screens" ) { @ return "|" ; }
     @ else if ($name == "bell" ) { @ return ":" ; }
     @ else if ($name == "quote" ) { @ return "\"" ; }
     @ else if ($name == "volume_mute" ) { @ return "<" ; }     @ else if ($name == "volume" ) { @ return ">" ; }
     @ else if ($name == "help" ) { @ return "?" ; }
 
     // Backwards compat; icons that are not in the font
     @ else if ($name == "arrow_left" ) { @ return "[" ; }
     @ else if ($name == "arrow_right" ) { @ return "]" ; }
     @ else if ($name == "arrow_up" ) { @ return "{" ; }
     @ else if ($name == "arrow_down" ) { @ return "}" ; }
     @ else if ($name == "organize" ) { @ return "I" ; }
     @ else if ($name == "bookmarks" ) { @ return "I" ; }
     @ else if ($name == "star" ) { @ return "S" ; }
     @ else if ($name == "maps" ) { @ return "@" ; }
     @ else if ($name == "reply" ) { @ return "R" ; }
 
     @ else {
         // @debug "#icon: icon with name '#{$name}' not found.";
         @ return false ;
     }
}

Using the Out of the Box Icons

In prior versions of Sencha Touch you would use the SASS pictos-iconmask() mixin to encode a png file and add appropriate style references into your generated CSS file. In Touch 2.2, however, you’ll need to use the new icon() mixin  that generates a style class referencing the new pictos webfont. The sourcecode for the new icon() mixin is listed below:

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
/**
  * Includes an icon to be used on Button or Tab components. The $name is the name of the icon, or the character
  * of the font being used.
  *
  *     @include icon('attachment');
  *
  * @param {string} $name The name of the icon to be included.
  * @param {string} $font-family The `font-family` used for this icon. Defaults to the `Pictos` font.
  */
@mixin icon($name, $font-family: false ) {
     .x-tab .x-button-icon. #{$name},
     .x-button .x-button-icon. #{$name} {
         $character: icon-character- for -name($name);
 
         &:before {
             @include absolute-position;
             text-align: center;
 
             @ if $font-family {
                 font-family: $font-family;
             }
 
             @ if $character {
                 content: "#{$character}" ;
             } @ else {
                 content: "#{$name}" ;
             }
         }
     }
}

Therefore, if you wanted to include a button that used the “network” icon, you would have to add the following to your .SCSS file:

1
@include icon('network');

Inside of your application’s source files, you would reference the icon name as an iconCls configuration property for a button component or tab as illustrated by the following snippet.

1
2
3
4
5
6
{
  xtype: 'button' ,
 iconCls:'network',
  iconAlign: 'top' ,
  text: 'Net'
}

Note: The iconMask configuration property is no longer required on a button torender the icon.

==================================================================================================

source:http://bruno.tavares.me/sencha-touch/adding-custom-font-icons-to-sencha-touch-2-2/

Adding custom font icon to sencha touch 2.2

Adding Custom Font Icons to Sencha Touch 2.2

In Sencha Touch 2.2 instead of using icons with the -webkit-mask trick, Touch is moving to a more cross-browser solution with icon fonts. You can read more about this at Steve Drucker blog Changes to Sencha Touch 2.2 Theming Part 1: Using Iconography.

As Steve mentions on his blog, Touch SDK ships with the Pictos Font, and it already loads some basic icons for you to use directly on buttons with iconCls.

1
2
3
4
{
  xtype: 'button' ,
  iconCls: 'home'
}

If you want to define more icons from the same Pictos fonts, you just have to use the mixin icon():

1
@include icon ( 'network' );
1
2
3
4
5
6
{
  xtype: 'button' ,
  iconCls: 'network' ,
  iconAlign: 'top' ,
  text: 'Net'
}

Touch Theming Layer already has a big object on SASS mapping keys into characters. So when you inform the key “network”, the theme knows that it has to use the key “J”.

Adding Custom Icons

To add more icons you’ll need to generate your own font! You might be question yourself – How do I create a new font? Sounds complicated but it’s fairly easy.

There’s a few tools, but my favorite is IcoMoon. With this tool you can select from dozens of fonts and create your own font package, or even import your own SVG vectors.

All you need to do is select your icons, click generate font, and download!

Select your icons…

..and download the font!

..and download the font!

After you have your font, it’s time to add to your project. Add the font into {touch_app}/resources/fonts/, and add this path to your config.rb:

1
2
3
4
# Compass configurations
sass_path = dir
css_path = File .join(dir, ".." , "css" )
fonts_path = File .join(dir, ".." , "fonts" )

Hint: Because we’re defining the fonts_path I had an error like “Pictos fonts not found”. It’s also good to copy the pictos folder from touch/resources/themes/fonts to this new fonts/ directory.

For the last step you just need to include the font and use the icons on your app.scss, like this:

1
2
3
4
5
6
7
8
9
@include icon-font( 'SenchaConIcons' , inline-font-files(
   'senchacon-icons/senchacon-icons.woff' , woff,
   'senchacon-icons/senchacon-icons.ttf' , truetype,
   'senchacon-icons/senchacon-icons.svg' , svg
));
 
@include icon ( "menu"  , "\e009" );
@include icon ( "search" , "\e000" );
@include icon ( "star"  , "\e001" );

Updated June/5: In 2.2.1 you have to specify your font along with icon() mixin. Otherwise it will fallback to ‘Pictos’

1
2
3
@include icon ( "menu"  , "\e009" , "SenchaConIcons" );
@include icon ( "search" , "\e000" , "SenchaConIcons" );
@include icon ( "star"  , "\e001" , "SenchaConIcons" );

Recap

  • Use a tool to pick icons and generate the font (IcoMoonFontello)
  • Add font into new directory {your_app}/resources/fonts
  • Copy Pictos font from Touch directory to the same {your_app}/resources/fonts to avoid errors
  • Add fonts_path into config.rb so Compass finds your font
  • Import the font icon in your app.scss

What about PNG?

PNG is bitmap based, while Fonts are vectorial based. The above mentioned tools provide hundreds of icons, so it’s pretty easy to find an existent font icon pre-built. If that’s not the case, you can convert PNG to SVG and then import into IcoMoon. There are tools for that, like VectorMagicOnline Image Converter or Inkscape. I haven’t try any of these but If you have, please let us know via comment.

- See more at: http://bruno.tavares.me/sencha-touch/adding-custom-font-icons-to-sencha-touch-2-2/#sthash.Dz643eCv.dpuf

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值