Committed by
Gerrit Code Review
Fault Management App: alarm clock glyph.
Change-Id: I0ab14c605ed6799540f9a96717d70f2ba69589f3
Showing
1 changed file
with
18 additions
and
1 deletions
... | @@ -11,17 +11,34 @@ | ... | @@ -11,17 +11,34 @@ |
11 | 11 | ||
12 | // internal state should be kept in the service module (not here) | 12 | // internal state should be kept in the service module (not here) |
13 | 13 | ||
14 | + // alarm clock glyph (vbox 110x110) | ||
15 | + var clock = 'M92.9,61.3a39,39,0,1,1-39-39,39,39,0,0,1,39,39h0Z' + | ||
16 | + 'M44,19.3c-4.4-7.4-14.8-9.3-23.2-4.2S9.1,30.2,13.5,37.6m80.8,0' + | ||
17 | + 'c4.4-7.4,1.2-17.5-7.3-22.5s-18.8-3.2-23.3,4.2m-8.4,1.8V16.5h4.4' + | ||
18 | + 'V11.9H48.2v4.6h4.6v4.6M51.6,56.4H51.5' + | ||
19 | + 'a5.4,5.4,0,0,0,2.4,10.3,4.7,4.7,0,0,0,4.9-3.1H74.5' + | ||
20 | + 'a2.2,2.2,0,0,0,2.4-2.2,2.4,2.4,0,0,0-2.4-2.3H58.8' + | ||
21 | + 'a5.3,5.3,0,0,0-2.5-2.6H56.2V32.9' + | ||
22 | + 'a2.3,2.3,0,0,0-.6-1.7,2.2,2.2,0,0,0-1.6-.7,2.4,2.4,0,0,0-2.4,2.4' + | ||
23 | + 'h0V56.4M82.2,91.1l-7.1,5.3-0.2.2-1.2,2.1a0.6,0.6,0,0,0,.2.8' + | ||
24 | + 'h0.2c2.6,0.4,10.7.9,10.3-1.2m-60.8,0c-0.4,2.1,7.7,1.6,10.3,1.2' + | ||
25 | + 'h0.2a0.6,0.6,0,0,0,.2-0.8l-1.2-2.1-0.2-.2-7.1-5.3'; | ||
26 | + | ||
14 | // our overlay definition | 27 | // our overlay definition |
15 | var overlay = { | 28 | var overlay = { |
16 | // NOTE: this must match the ID defined in AppUiTopovOverlay | 29 | // NOTE: this must match the ID defined in AppUiTopovOverlay |
17 | overlayId: 'alarmsTopo-overlay', | 30 | overlayId: 'alarmsTopo-overlay', |
18 | - glyphId: '*star4', | 31 | + glyphId: '*clock', |
19 | tooltip: 'Alarms Overlay', | 32 | tooltip: 'Alarms Overlay', |
20 | // These glyphs get installed using the overlayId as a prefix. | 33 | // These glyphs get installed using the overlayId as a prefix. |
21 | // e.g. 'star4' is installed as 'alarmsTopo-overlay-star4' | 34 | // e.g. 'star4' is installed as 'alarmsTopo-overlay-star4' |
22 | // They can be referenced (from this overlay) as '*star4' | 35 | // They can be referenced (from this overlay) as '*star4' |
23 | // That is, the '*' prefix stands in for 'alarmsTopo-overlay-' | 36 | // That is, the '*' prefix stands in for 'alarmsTopo-overlay-' |
24 | glyphs: { | 37 | glyphs: { |
38 | + clock: { | ||
39 | + vb: '0 0 110 110', | ||
40 | + d: clock | ||
41 | + }, | ||
25 | star4: { | 42 | star4: { |
26 | vb: '0 0 8 8', | 43 | vb: '0 0 8 8', |
27 | // TODO new icon needed | 44 | // TODO new icon needed | ... | ... |
-
Please register or login to post a comment