[longomatch] Add new graphics for the buttons links
- From: Andoni Morales Alastruey <amorales src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [longomatch] Add new graphics for the buttons links
- Date: Thu, 23 Apr 2015 15:21:03 +0000 (UTC)
commit e5252ce8c6ac965c4575f0fafb9647b63bbd9430
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date: Tue Apr 21 18:22:38 2015 +0200
Add new graphics for the buttons links
LongoMatch.Core/StyleConf.cs | 8 ++
.../CanvasObjects/Dashboard/ActionLinkObject.cs | 23 +++---
.../CanvasObjects/Dashboard/CategoryObject.cs | 2 +-
.../CanvasObjects/Dashboard/LinkAnchorObject.cs | 78 ++++++++++++++++----
data/icons/Makefile.am | 4 +
.../scalable/actions/longomatch-link-active.svg | 22 ++++--
.../scalable/actions/longomatch-link-disabled.svg | 22 ++++--
.../actions/longomatch-link-in-prelight.svg | 15 ++++
.../scalable/actions/longomatch-link-in.svg | 15 ++++
.../actions/longomatch-link-out-prelight.svg | 15 ++++
.../scalable/actions/longomatch-link-out.svg | 15 ++++
11 files changed, 176 insertions(+), 43 deletions(-)
---
diff --git a/LongoMatch.Core/StyleConf.cs b/LongoMatch.Core/StyleConf.cs
index 1eef4e4..ae1889e 100644
--- a/LongoMatch.Core/StyleConf.cs
+++ b/LongoMatch.Core/StyleConf.cs
@@ -135,6 +135,14 @@ namespace LongoMatch.Core.Common
public int BenchLineWidth = 2;
public int TeamTaggerBenchBorder = 10;
+ public static Color ActionLinkNormal = Color.Parse ("#808080");
+ public static Color ActionLinkPrelight = Color.Parse ("#B3B3B3");
+ public static Color ActionLinkSelected = Color.Parse ("#ABD05C");
+ public const string LinkIn = "hicolor/scalable/actions/longomatch-link-in.svg";
+ public const string LinkInPrelight =
"hicolor/scalable/actions/longomatch-link-in-prelight.svg";
+ public const string LinkOut = "hicolor/scalable/actions/longomatch-link-out.svg";
+ public const string LinkOutPrelight =
"hicolor/scalable/actions/longomatch-link-out-prelight.svg";
+
public string Font = "Ubuntu";
public Color HomeTeamColor { get; set; }
diff --git a/LongoMatch.Drawing/CanvasObjects/Dashboard/ActionLinkObject.cs
b/LongoMatch.Drawing/CanvasObjects/Dashboard/ActionLinkObject.cs
index 4893cde..bca77ea 100644
--- a/LongoMatch.Drawing/CanvasObjects/Dashboard/ActionLinkObject.cs
+++ b/LongoMatch.Drawing/CanvasObjects/Dashboard/ActionLinkObject.cs
@@ -41,12 +41,12 @@ namespace LongoMatch.Drawing.CanvasObjects.Dashboard
Source = source;
Destination = destination;
if (destination == null) {
- stop = source.Center;
+ stop = source.Out;
} else {
- stop = destination.Center;
+ stop = destination.In;
}
line = new Line ();
- line.Start = source.Center;
+ line.Start = source.Out;
line.Stop = stop;
}
@@ -67,11 +67,11 @@ namespace LongoMatch.Drawing.CanvasObjects.Dashboard
public virtual Area Area {
get {
- line.Start = Source.Center;
+ line.Start = Source.Out;
if (Destination != null) {
- line.Stop = Destination.Center;
+ line.Stop = Destination.In;
} else {
- line.Stop = this.stop;
+ line.Stop = stop;
}
Area area = line.Area;
area.Start.X -= selectionSize + 2;
@@ -106,12 +106,12 @@ namespace LongoMatch.Drawing.CanvasObjects.Dashboard
return;
}
- if (Highlighted) {
- lineColor = Config.Style.PaletteActive;
- } else if (Selected) {
- lineColor = Config.Style.PaletteSelected;
+ if (Selected) {
+ lineColor = StyleConf.ActionLinkSelected;
+ } else if (Highlighted) {
+ lineColor = StyleConf.ActionLinkPrelight;
} else {
- lineColor = Color.Yellow;
+ lineColor = StyleConf.ActionLinkNormal;
}
tk.Begin ();
@@ -120,7 +120,6 @@ namespace LongoMatch.Drawing.CanvasObjects.Dashboard
tk.LineWidth = lineWidth;
tk.LineStyle = LineStyle.Normal;
tk.DrawLine (line.Start, line.Stop);
- tk.DrawArrow (line.Start, line.Stop, 2, 0.3, true);
tk.End ();
}
}
diff --git a/LongoMatch.Drawing/CanvasObjects/Dashboard/CategoryObject.cs
b/LongoMatch.Drawing/CanvasObjects/Dashboard/CategoryObject.cs
index 785edf0..7688d5f 100644
--- a/LongoMatch.Drawing/CanvasObjects/Dashboard/CategoryObject.cs
+++ b/LongoMatch.Drawing/CanvasObjects/Dashboard/CategoryObject.cs
@@ -570,7 +570,7 @@ namespace LongoMatch.Drawing.CanvasObjects.Dashboard
Point pos, bpos;
double width, height;
- if (Button.TagMode != TagMode.Free) {
+ if (Button.TagMode != TagMode.Free || ShowLinks) {
return;
}
diff --git a/LongoMatch.Drawing/CanvasObjects/Dashboard/LinkAnchorObject.cs
b/LongoMatch.Drawing/CanvasObjects/Dashboard/LinkAnchorObject.cs
index 08af72a..c78c0cb 100644
--- a/LongoMatch.Drawing/CanvasObjects/Dashboard/LinkAnchorObject.cs
+++ b/LongoMatch.Drawing/CanvasObjects/Dashboard/LinkAnchorObject.cs
@@ -21,13 +21,21 @@ using LongoMatch.Core.Common;
using LongoMatch.Core.Interfaces.Drawing;
using LongoMatch.Core.Store;
using LongoMatch.Core.Store.Drawables;
+using System.IO;
namespace LongoMatch.Drawing.CanvasObjects.Dashboard
{
public class LinkAnchorObject: CanvasObject, ICanvasSelectableObject
{
- readonly Circle circle;
+ static ISurface OutIcon;
+ static ISurface OutPrelightIcon;
+ static ISurface InIcon;
+ static ISurface InPrelightIcon;
+ static bool surfacesCached = false;
+
+ readonly int iconWidth;
+ readonly int iconHeight;
const int radius = 5;
public LinkAnchorObject (DashboardButtonObject button, List<Tag> tags, Point relPos)
@@ -36,10 +44,12 @@ namespace LongoMatch.Drawing.CanvasObjects.Dashboard
Width = button.Width;
Height = button.Height;
Button = button;
- circle = new Circle (Center, radius);
if (tags == null)
tags = new List<Tag> ();
Tags = tags;
+ LoadSurfaces ();
+ iconHeight = InIcon.Height;
+ iconWidth = InIcon.Width;
}
public DashboardButtonObject Button {
@@ -73,12 +83,27 @@ namespace LongoMatch.Drawing.CanvasObjects.Dashboard
}
}
- public Point Center {
+ public Point Out {
+ get {
+ Rectangle rect = SelectionArea;
+ return new Point (rect.TopLeft.X + iconWidth + 2 + iconWidth / 2,
+ rect.TopLeft.Y + iconHeight / 2);
+ }
+ }
+
+ public Point In {
get {
- Point pos = Position;
- pos.X += Width / 2;
- pos.Y += Height / 2;
- return pos;
+ Rectangle rect = SelectionArea;
+ return new Point (rect.TopLeft.X + iconWidth / 2,
+ rect.TopLeft.Y + iconHeight / 2);
+ }
+ }
+
+ public Rectangle SelectionArea {
+ get {
+ return new Rectangle (
+ new Point (Position.X + Width - (iconWidth * 2 + 2), Position.Y),
+ (iconWidth * 2) + 2, iconHeight);
}
}
@@ -103,8 +128,7 @@ namespace LongoMatch.Drawing.CanvasObjects.Dashboard
{
Selection sel;
- circle.Center = Center;
- sel = circle.GetSelection (point, precision, inMotion);
+ sel = SelectionArea.GetSelection (point, precision, inMotion);
if (sel != null) {
sel.Drawable = this;
sel.Position = SelectionPosition.All;
@@ -118,18 +142,40 @@ namespace LongoMatch.Drawing.CanvasObjects.Dashboard
public override void Draw (IDrawingToolkit tk, Area area)
{
- Color color = Color.Red1;
+ ISurface linkIn, linkOut;
+
if (Highlighted) {
- color = Config.Style.PaletteActive;
+ linkIn = InPrelightIcon;
+ linkOut = OutPrelightIcon;
+ } else {
+ linkIn = InIcon;
+ linkOut = OutIcon;
}
tk.Begin ();
- tk.LineWidth = 2;
- tk.FillColor = color;
- tk.StrokeColor = color;
- tk.DrawCircle (Center, 5);
+ tk.DrawSurface (linkIn, new Point (In.X - iconWidth / 2,
+ In.Y - iconHeight / 2));
+ tk.DrawSurface (linkOut, new Point (Out.X - iconWidth / 2,
+ In.Y - iconHeight / 2));
tk.End ();
}
+
+ void LoadSurfaces ()
+ {
+ if (!surfacesCached) {
+ InIcon = CreateSurface (StyleConf.LinkIn);
+ InPrelightIcon = CreateSurface (StyleConf.LinkInPrelight);
+ OutIcon = CreateSurface (StyleConf.LinkOut);
+ OutPrelightIcon = CreateSurface (StyleConf.LinkOutPrelight);
+ surfacesCached = true;
+ }
+ }
+
+ ISurface CreateSurface (string name)
+ {
+ return Config.DrawingToolkit.CreateSurface (
+ Path.Combine (Config.IconsDir, name), false);
+ }
+
}
}
-
diff --git a/data/icons/Makefile.am b/data/icons/Makefile.am
index 11817f4..3a66f87 100644
--- a/data/icons/Makefile.am
+++ b/data/icons/Makefile.am
@@ -46,6 +46,10 @@ nobase_dist_icons_DATA = Makefile.am \
hicolor/scalable/actions/longomatch-field-half.svg \
hicolor/scalable/actions/longomatch-link-active.svg \
hicolor/scalable/actions/longomatch-link-disabled.svg \
+ hicolor/scalable/actions/longomatch-link-in-prelight.svg \
+ hicolor/scalable/actions/longomatch-link-in.svg \
+ hicolor/scalable/actions/longomatch-link-out-prelight.svg \
+ hicolor/scalable/actions/longomatch-link-out.svg \
hicolor/scalable/actions/longomatch-live.svg \
hicolor/scalable/actions/longomatch-mark.svg \
hicolor/scalable/actions/longomatch-pause-clock.svg \
diff --git a/data/icons/hicolor/scalable/actions/longomatch-link-active.svg
b/data/icons/hicolor/scalable/actions/longomatch-link-active.svg
old mode 100644
new mode 100755
index cfe509d..4b9531b
--- a/data/icons/hicolor/scalable/actions/longomatch-link-active.svg
+++ b/data/icons/hicolor/scalable/actions/longomatch-link-active.svg
@@ -2,11 +2,19 @@
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px" y="0px"
- width="36px" height="36px" viewBox="0 0 36 36" enable-background="new 0 0 36 36"
xml:space="preserve">
-<path fill="#50B149" d="M29.447,14.632l-0.248-0.642c-1.547-4.009-5.16-6.711-9.371-7.095l-0.002,2.869
-
c4.105,0.496,7.297,4.001,7.297,8.236c0,2.217-0.863,4.3-2.43,5.866c-1.33,1.329-3.029,2.152-4.865,2.37l-0.002,2.868
-
c2.588-0.236,4.988-1.359,6.848-3.219c1.107-1.106,1.955-2.402,2.518-3.854l0.246-0.638H35v-6.764H29.447z"/>
-<path fill="#6A6A6A"
d="M16.784,11.705V6.893c-2.601,0.229-5.017,1.354-6.885,3.222c-1.106,1.106-1.953,2.403-2.516,3.854
-
l-0.247,0.638H1.001L1,21.37l6.128,0.001l0.247,0.641c1.526,3.958,5.23,6.714,9.409,7.096v-4.81h1c1.683,0,3.263-0.655,4.452-1.845
- s1.844-2.77,1.844-4.452c0-3.471-2.824-6.295-6.296-6.296H16.784z"/>
+ width="20px" height="20px" viewBox="0 0 20 20" enable-background="new 0 0 20 20"
xml:space="preserve">
+<g>
+ <g>
+ <path fill="#6E921C"
d="M13.016,8.452c0-1.216-0.474-2.356-1.33-3.216c-0.855-0.858-1.996-1.33-3.208-1.33
+
c-0.361,0-0.725,0.043-1.074,0.13L7.057,4.12L4.034,1.091c0,0-1.363-0.433-2.392,0.599c-1.03,1.033-0.51,2.312-0.51,2.312
+
l3.023,3.026L4.071,7.376c-0.377,1.56,0.07,3.161,1.199,4.292c0.856,0.857,1.996,1.334,3.209,1.334
+ c1.211,0,2.351-0.477,3.207-1.334C12.542,10.807,13.016,9.667,13.016,8.452z"/>
+ </g>
+ <g>
+ <path fill="#ABD05C"
d="M15.596,18.826c0,0,1.559,0.639,2.729-0.537c1.172-1.175,0.465-2.665,0.465-2.665l-3.519-3.556
+
l0.191-0.438c1.168-2.637,0.74-5.634-1.068-7.823l-0.803,0.807c1.993,2.502,1.834,6.173-0.477,8.486
+
c-1.202,1.202-2.799,1.868-4.5,1.868c-1.461,0-2.846-0.489-3.969-1.392l-0.804,0.805c1.339,1.11,3.009,1.715,4.769,1.715
+ c1.051,0,2.07-0.215,3.026-0.639l0.436-0.188L15.596,18.826z"/>
+ </g>
+</g>
</svg>
diff --git a/data/icons/hicolor/scalable/actions/longomatch-link-disabled.svg
b/data/icons/hicolor/scalable/actions/longomatch-link-disabled.svg
old mode 100644
new mode 100755
index b4cf078..68cfa61
--- a/data/icons/hicolor/scalable/actions/longomatch-link-disabled.svg
+++ b/data/icons/hicolor/scalable/actions/longomatch-link-disabled.svg
@@ -2,11 +2,19 @@
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px" y="0px"
- width="36px" height="36px" viewBox="0 0 36 36" enable-background="new 0 0 36 36"
xml:space="preserve">
-<path fill="#333333" d="M29.447,14.632l-0.248-0.642c-1.547-4.009-5.16-6.711-9.371-7.095l-0.002,2.869
-
c4.105,0.496,7.297,4.001,7.297,8.236c0,2.217-0.863,4.3-2.43,5.866c-1.33,1.329-3.029,2.152-4.865,2.37l-0.002,2.868
-
c2.588-0.236,4.988-1.359,6.848-3.219c1.107-1.106,1.955-2.402,2.518-3.854l0.246-0.638H35v-6.764H29.447z"/>
-<path fill="#252627"
d="M16.784,11.705V6.893c-2.601,0.229-5.017,1.354-6.885,3.222c-1.106,1.106-1.953,2.403-2.516,3.854
-
l-0.247,0.638H1.001L1,21.37l6.128,0.001l0.247,0.641c1.526,3.958,5.23,6.714,9.409,7.096v-4.81h1c1.683,0,3.263-0.655,4.452-1.845
- s1.844-2.77,1.844-4.452c0-3.471-2.824-6.295-6.296-6.296H16.784z"/>
+ width="20px" height="20px" viewBox="0 0 20 20" enable-background="new 0 0 20 20"
xml:space="preserve">
+<g>
+ <g>
+ <path fill="#CCCCCC"
d="M13.014,8.451c0-1.215-0.473-2.356-1.328-3.215C10.828,4.377,9.69,3.905,8.477,3.905
+
c-0.362,0-0.725,0.043-1.075,0.13L7.057,4.119L4.033,1.09c0,0-1.363-0.433-2.392,0.599c-1.03,1.032-0.51,2.31-0.51,2.31
+
l3.024,3.028L4.071,7.373c-0.378,1.558,0.07,3.161,1.199,4.292c0.856,0.858,1.996,1.334,3.208,1.334
+ c1.211,0,2.35-0.476,3.208-1.334C12.541,10.806,13.014,9.666,13.014,8.451z"/>
+ </g>
+ <g>
+ <path fill="#999999"
d="M15.594,18.826c0,0,1.559,0.639,2.73-0.537c1.172-1.175,0.465-2.665,0.465-2.665l-3.518-3.555l0.191-0.438
+
c1.168-2.638,0.74-5.635-1.068-7.824l-0.803,0.806c1.994,2.502,1.834,6.173-0.477,8.486c-1.201,1.204-2.799,1.87-4.499,1.87
+
c-1.46,0-2.846-0.49-3.968-1.392l-0.803,0.805c1.338,1.11,3.007,1.714,4.767,1.714c1.051,0,2.07-0.214,3.025-0.638l0.436-0.189
+ L15.594,18.826z"/>
+ </g>
+</g>
</svg>
diff --git a/data/icons/hicolor/scalable/actions/longomatch-link-in-prelight.svg
b/data/icons/hicolor/scalable/actions/longomatch-link-in-prelight.svg
new file mode 100644
index 0000000..185378c
--- /dev/null
+++ b/data/icons/hicolor/scalable/actions/longomatch-link-in-prelight.svg
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="14px" height="14px" viewBox="0 0 14 14" enable-background="new 0 0 14 14"
xml:space="preserve">
+<g>
+ <circle fill="#6A6A6A" cx="7" cy="7" r="7"/>
+ <g>
+ <path fill="#CCCCCC"
d="M11.47,8.312c0,0,0.884-0.37,0.883-1.315c0-0.944-0.887-1.26-0.887-1.26L8.62,5.722L8.521,5.468
+
c-0.593-1.533-1.971-2.566-3.58-2.72v0.647C6.751,3.6,8.166,5.143,8.166,7.003c0.001,0.969-0.373,1.879-1.059,2.564
+
c-0.588,0.588-1.342,0.95-2.157,1.037l0.001,0.648c0.986-0.091,1.9-0.521,2.608-1.229C7.982,9.602,8.307,9.104,8.522,8.55
+ L8.62,8.297L11.47,8.312z"/>
+ </g>
+</g>
+</svg>
diff --git a/data/icons/hicolor/scalable/actions/longomatch-link-in.svg
b/data/icons/hicolor/scalable/actions/longomatch-link-in.svg
new file mode 100644
index 0000000..4e638e2
--- /dev/null
+++ b/data/icons/hicolor/scalable/actions/longomatch-link-in.svg
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="14px" height="14px" viewBox="0 0 14 14" enable-background="new 0 0 14 14"
xml:space="preserve">
+<g>
+ <circle fill="#6A6A6A" cx="7" cy="7" r="7"/>
+ <g>
+ <path fill="#333333"
d="M11.47,8.312c0,0,0.884-0.37,0.883-1.315c0-0.944-0.887-1.26-0.887-1.26L8.62,5.722L8.521,5.468
+
C7.929,3.935,6.55,2.902,4.941,2.748l0.001,0.647C6.751,3.6,8.166,5.143,8.166,7.003c0.001,0.969-0.374,1.879-1.058,2.564
+
c-0.588,0.588-1.343,0.95-2.158,1.037l0.001,0.648c0.986-0.091,1.9-0.521,2.608-1.229C7.982,9.602,8.307,9.104,8.522,8.55
+ L8.62,8.297L11.47,8.312z"/>
+ </g>
+</g>
+</svg>
diff --git a/data/icons/hicolor/scalable/actions/longomatch-link-out-prelight.svg
b/data/icons/hicolor/scalable/actions/longomatch-link-out-prelight.svg
new file mode 100644
index 0000000..865e204
--- /dev/null
+++ b/data/icons/hicolor/scalable/actions/longomatch-link-out-prelight.svg
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="14px" height="14px" viewBox="0 0 14 14" enable-background="new 0 0 14 14"
xml:space="preserve">
+<g>
+ <circle fill="#6A6A6A" cx="7" cy="7" r="7"/>
+ <g>
+ <path fill="#CCCCCC"
d="M9.774,5.291c-0.449-0.45-1.046-0.699-1.683-0.699C7.457,4.59,6.861,4.838,6.412,5.288
+
C6.279,5.421,6.16,5.571,6.062,5.733L5.965,5.892L3.724,5.89c0,0-0.665,0.346-0.664,1.107C3.062,7.76,3.727,8.041,3.727,8.041
+
l2.241,0.003l0.098,0.157c0.437,0.718,1.196,1.144,2.032,1.146C8.731,9.348,9.331,9.102,9.78,8.653
+ c0.447-0.448,0.692-1.045,0.692-1.681C10.471,6.337,10.225,5.74,9.774,5.291z"/>
+ </g>
+</g>
+</svg>
diff --git a/data/icons/hicolor/scalable/actions/longomatch-link-out.svg
b/data/icons/hicolor/scalable/actions/longomatch-link-out.svg
new file mode 100644
index 0000000..2b93e53
--- /dev/null
+++ b/data/icons/hicolor/scalable/actions/longomatch-link-out.svg
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="14px" height="14px" viewBox="0 0 14 14" enable-background="new 0 0 14 14"
xml:space="preserve">
+<g>
+ <circle fill="#6A6A6A" cx="7" cy="7" r="7"/>
+ <g>
+ <path fill="#333333"
d="M9.774,5.291c-0.449-0.45-1.046-0.699-1.683-0.699C7.457,4.59,6.861,4.838,6.412,5.288
+
C6.279,5.421,6.16,5.571,6.062,5.733L5.965,5.892L3.724,5.89c0,0-0.665,0.346-0.664,1.107C3.062,7.76,3.727,8.041,3.727,8.041
+
l2.241,0.003l0.098,0.157c0.437,0.718,1.196,1.144,2.032,1.146C8.731,9.348,9.331,9.102,9.78,8.653
+ c0.447-0.448,0.692-1.045,0.692-1.681C10.471,6.337,10.225,5.74,9.774,5.291z"/>
+ </g>
+</g>
+</svg>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]