+ issue #0002053: Support of themes

This commit is contained in:
wmayer
2015-06-30 13:14:56 +02:00
parent 28a142d94e
commit de7c8fcbbf
28 changed files with 2385 additions and 361 deletions

View File

@@ -484,11 +484,12 @@ DEF_STD_CMD_A(StdCmdRevert);
StdCmdRevert::StdCmdRevert()
:Command("Std_Revert")
{
sGroup = QT_TR_NOOP("File");
sMenuText = QT_TR_NOOP("Revert");
sToolTipText = QT_TR_NOOP("Reverts to the saved version of this file");
sWhatsThis = "Std_Revert";
sStatusTip = QT_TR_NOOP("Reverts to the saved version of this file");
sGroup = QT_TR_NOOP("File");
sMenuText = QT_TR_NOOP("Revert");
sToolTipText = QT_TR_NOOP("Reverts to the saved version of this file");
sWhatsThis = "Std_Revert";
sStatusTip = QT_TR_NOOP("Reverts to the saved version of this file");
//sPixmap = "document-revert";
}
void StdCmdRevert::activated(int iMsg)
@@ -611,6 +612,7 @@ StdCmdPrintPreview::StdCmdPrintPreview()
sToolTipText = QT_TR_NOOP("Print the document");
sWhatsThis = "Std_PrintPreview";
sStatusTip = QT_TR_NOOP("Print preview");
sPixmap = "document-print-preview";
}
void StdCmdPrintPreview::activated(int iMsg)
@@ -668,7 +670,7 @@ StdCmdQuit::StdCmdQuit()
sWhatsThis = "Std_Quit";
sStatusTip = QT_TR_NOOP("Quits the application");
#if QT_VERSION >= 0x040200
sPixmap = "system-log-out";
sPixmap = "application-exit";
#endif
sAccel = "Alt+F4";
}

View File

@@ -49,7 +49,7 @@ StdCmdDlgMacroRecord::StdCmdDlgMacroRecord()
sToolTipText = QT_TR_NOOP("Opens a dialog to record a macro");
sWhatsThis = "Std_DlgMacroRecord";
sStatusTip = QT_TR_NOOP("Opens a dialog to record a macro");
sPixmap = "macro-record";
sPixmap = "media-record";
eType = 0;
}
@@ -77,7 +77,7 @@ StdCmdMacroStopRecord::StdCmdMacroStopRecord()
sToolTipText = QT_TR_NOOP("Stop the macro recording session");
sWhatsThis = "Std_MacroStopRecord";
sStatusTip = QT_TR_NOOP("Stop the macro recording session");
sPixmap = "macro-stop";
sPixmap = "media-playback-stop";
eType = 0;
}
@@ -132,7 +132,7 @@ StdCmdDlgMacroExecuteDirect::StdCmdDlgMacroExecuteDirect()
sToolTipText = QT_TR_NOOP("Execute the macro in the editor");
sWhatsThis = "Std_DlgMacroExecuteDirect";
sStatusTip = QT_TR_NOOP("Execute the macro in the editor");
sPixmap = "macro-execute";
sPixmap = "media-playback-start";
sAccel = "Ctrl+F6";
eType = 0;
}

View File

@@ -678,7 +678,7 @@ StdCmdUnitsCalculator::StdCmdUnitsCalculator()
sToolTipText = QT_TR_NOOP("Start the units calculator");
sWhatsThis = QT_TR_NOOP("Start the units calculator");
sStatusTip = QT_TR_NOOP("Start the units calculator");
//sPixmap = "";
sPixmap = "accessories-calculator";
eType = 0;
}

View File

@@ -1250,25 +1250,25 @@ DEF_STD_CMD_A(StdCmdViewFitAll);
StdCmdViewFitAll::StdCmdViewFitAll()
: Command("Std_ViewFitAll")
{
sGroup = QT_TR_NOOP("Standard-View");
sMenuText = QT_TR_NOOP("Fit all");
sToolTipText = QT_TR_NOOP("Fits the whole content on the screen");
sWhatsThis = "Std_ViewFitAll";
sStatusTip = QT_TR_NOOP("Fits the whole content on the screen");
sPixmap = "view-zoom-all";
eType = Alter3DView;
sGroup = QT_TR_NOOP("Standard-View");
sMenuText = QT_TR_NOOP("Fit all");
sToolTipText = QT_TR_NOOP("Fits the whole content on the screen");
sWhatsThis = "Std_ViewFitAll";
sStatusTip = QT_TR_NOOP("Fits the whole content on the screen");
sPixmap = "zoom-all";
eType = Alter3DView;
}
void StdCmdViewFitAll::activated(int iMsg)
{
//doCommand(Command::Gui,"Gui.activeDocument().activeView().fitAll()");
doCommand(Command::Gui,"Gui.SendMsgToActiveView(\"ViewFit\")");
//doCommand(Command::Gui,"Gui.activeDocument().activeView().fitAll()");
doCommand(Command::Gui,"Gui.SendMsgToActiveView(\"ViewFit\")");
}
bool StdCmdViewFitAll::isActive(void)
{
//return isViewOfType(Gui::View3DInventor::getClassTypeId());
return getGuiApplication()->sendHasMsgToActiveView("ViewFit");
//return isViewOfType(Gui::View3DInventor::getClassTypeId());
return getGuiApplication()->sendHasMsgToActiveView("ViewFit");
}
//===========================================================================
@@ -1285,7 +1285,7 @@ StdCmdViewFitSelection::StdCmdViewFitSelection()
sWhatsThis = "Std_ViewFitSelection";
sStatusTip = QT_TR_NOOP("Fits the selected content on the screen");
#if QT_VERSION >= 0x040200
sPixmap = "view-zoom-selection";
sPixmap = "zoom-selection";
#endif
eType = Alter3DView;
}
@@ -1417,13 +1417,12 @@ DEF_STD_CMD_A(StdCmdViewVR);
StdCmdViewVR::StdCmdViewVR()
: Command("Std_ViewVR")
{
sGroup = QT_TR_NOOP("Standard-View");
sMenuText = QT_TR_NOOP("FreeCAD-VR");
sToolTipText = QT_TR_NOOP("Extend the FreeCAD 3D Window to a Oculus Rift");
sWhatsThis = "Std_ViewVR";
sStatusTip = QT_TR_NOOP("Extend the FreeCAD 3D Window to a Oculus Rift");
sPixmap = "view-zoom-all";
eType = Alter3DView;
sGroup = QT_TR_NOOP("Standard-View");
sMenuText = QT_TR_NOOP("FreeCAD-VR");
sToolTipText = QT_TR_NOOP("Extend the FreeCAD 3D Window to a Oculus Rift");
sWhatsThis = "Std_ViewVR";
sStatusTip = QT_TR_NOOP("Extend the FreeCAD 3D Window to a Oculus Rift");
eType = Alter3DView;
}
void StdCmdViewVR::activated(int iMsg)
@@ -2039,7 +2038,7 @@ StdViewZoomIn::StdViewZoomIn()
sWhatsThis = "Std_ViewZoom";
sStatusTip = QT_TR_NOOP("Zoom In");
#if QT_VERSION >= 0x040200
sPixmap = "view-zoom-in";
sPixmap = "zoom-in";
#endif
sAccel = keySequenceToAccel(QKeySequence::ZoomIn);
eType = Alter3DView;
@@ -2073,7 +2072,7 @@ StdViewZoomOut::StdViewZoomOut()
sWhatsThis = "Std_ViewZoom";
sStatusTip = QT_TR_NOOP("Zoom Out");
#if QT_VERSION >= 0x040200
sPixmap = "view-zoom-out";
sPixmap = "zoom-out";
#endif
sAccel = keySequenceToAccel(QKeySequence::ZoomOut);
eType = Alter3DView;
@@ -2107,7 +2106,7 @@ StdViewBoxZoom::StdViewBoxZoom()
sWhatsThis = "Std_ViewBoxZoom";
sStatusTip = QT_TR_NOOP("Box zoom");
#if QT_VERSION >= 0x040200
sPixmap = "view-zoom-border";
sPixmap = "zoom-border";
#endif
sAccel = "Ctrl+B";
eType = Alter3DView;

View File

@@ -559,7 +559,7 @@ IconFolders::IconFolders(const QStringList& paths, QWidget* parent)
edit->setReadOnly(true);
gridLayout->addWidget(edit, row, 0, 1, 1);
QPushButton* removeButton = new QPushButton(this);
removeButton->setIcon(BitmapFactory().pixmap("edit_remove"));
removeButton->setIcon(BitmapFactory().iconFromTheme("list-remove"));
gridLayout->addWidget(removeButton, row, 1, 1, 1);
if (row < numPaths) {
@@ -578,7 +578,7 @@ IconFolders::IconFolders(const QStringList& paths, QWidget* parent)
textLabel->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Minimum);
textLabel->setText(tr("Add or remove custom icon folders"));
addButton = new QPushButton(this);
addButton->setIcon(BitmapFactory().pixmap("add"));
addButton->setIcon(BitmapFactory().iconFromTheme("list-add"));
gridLayout->addWidget(textLabel, maxRow, 0, 1, 1);
gridLayout->addWidget(addButton, maxRow, 1, 1, 1);

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 32 KiB

View File

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 33 KiB

View File

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View File

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -6,8 +6,8 @@
<file>Document.svg</file>
<file>Feature.svg</file>
<file>delete.svg</file>
<file>edit_remove.svg</file>
<file>add.svg</file>
<file>list-remove.svg</file>
<file>list-add.svg</file>
<file>freecad.svg</file>
<file>freecad-doc.png</file>
<file>bulb.svg</file>
@@ -19,9 +19,9 @@
<file>button_add_all.svg</file>
<file>button_valid.svg</file>
<file>button_invalid.svg</file>
<file>macro-execute.svg</file>
<file>macro-record.svg</file>
<file>macro-stop.svg</file>
<file>media-playback-start.svg</file>
<file>media-record.svg</file>
<file>media-playback-stop.svg</file>
<file>preferences-display.svg</file>
<file>preferences-general.svg</file>
<file>preferences-import-export.svg</file>
@@ -50,8 +50,9 @@
<file>document-save.svg</file>
<file>document-save-as.svg</file>
<file>document-print.svg</file>
<file>document-print-preview.svg</file>
<file>document-properties.svg</file>
<file>system-log-out.svg</file>
<file>application-exit.svg</file>
<file>edit_OK.svg</file>
<file>edit_Cancel.svg</file>
<file>edit-copy.svg</file>
@@ -72,6 +73,7 @@
<file>applications-accessories.svg</file>
<file>applications-python.svg</file>
<file>accessories-text-editor.svg</file>
<file>accessories-calculator.svg</file>
<file>internet-web-browser.svg</file>
<file>view-select.svg</file>
<file>view-unselectable.svg</file>
@@ -86,15 +88,15 @@
<file>view-rear.svg</file>
<file>view-right.svg</file>
<file>view-top.svg</file>
<file>view-zoom-all.svg</file>
<file>view-zoom-border.svg</file>
<file>view-zoom-fit.svg</file>
<file>view-zoom-in.svg</file>
<file>view-zoom-out.svg</file>
<file>zoom-all.svg</file>
<file>zoom-border.svg</file>
<file>zoom-fit-best.svg</file>
<file>zoom-in.svg</file>
<file>zoom-out.svg</file>
<file>zoom-selection.svg</file>
<file>view-rotate-left.svg</file>
<file>view-rotate-right.svg</file>
<file>view-measurement.svg</file>
<file>view-zoom-selection.svg</file>
<file>Tree_Annotation.svg</file>
<file>Tree_Dimension.svg</file>
<file>Tree_Python.svg</file>

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 39 KiB

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View File

@@ -260,7 +260,7 @@ void SelectionView::onItemContextMenu(const QPoint& point)
deselectAction->setIcon(QIcon(QString::fromAscii(":/icons/view-unselectable.svg")));
deselectAction->setToolTip(tr("Deselects this object"));
QAction *zoomAction = menu.addAction(tr("Zoom fit"),this,SLOT(zoom()));
zoomAction->setIcon(QIcon(QString::fromAscii(":/icons/view-zoom-fit.svg")));
zoomAction->setIcon(QIcon::fromTheme(QString::fromAscii("zoom-fit-best")));
zoomAction->setToolTip(tr("Selects and fits this object in the 3D window"));
QAction *gotoAction = menu.addAction(tr("Go to selection"),this,SLOT(treeSelect()));
gotoAction->setToolTip(tr("Selects and locates this object in the tree view"));

View File

@@ -56,31 +56,31 @@ TaskPanelView::TaskPanelView(Gui::Document* pcDocument, QWidget *parent)
gridLayout->addWidget(taskPanel, 0, 0, 2, 1);
iisIconLabel *i1 = new iisIconLabel(
Gui::BitmapFactory().pixmap("view-zoom-in"), QLatin1String("Do Task 1"), tb1);
Gui::BitmapFactory().iconFromTheme("zoom-in"), QLatin1String("Do Task 1"), tb1);
tb1->addIconLabel(i1);
//connect(i1, SIGNAL(activated()), this, SLOT(task1()));
iisIconLabel *i2 = new iisIconLabel(
Gui::BitmapFactory().pixmap("view-zoom-out"), QLatin1String("Do Task 2"), tb1);
Gui::BitmapFactory().iconFromTheme("zoom-out"), QLatin1String("Do Task 2"), tb1);
tb1->addIconLabel(i2);
QHBoxLayout *hbl = new QHBoxLayout();
tb1->groupLayout()->addLayout(hbl);
iisIconLabel *i3 = new iisIconLabel(
Gui::BitmapFactory().pixmap("edit-copy"), QLatin1String("Do Task 3"), tb1);
Gui::BitmapFactory().iconFromTheme("edit-copy"), QLatin1String("Do Task 3"), tb1);
tb1->addIconLabel(i3, false);
hbl->addWidget(i3);
iisIconLabel *i4 = new iisIconLabel(
Gui::BitmapFactory().pixmap("edit-cut"), QLatin1String("Do Task 4"), tb1);
Gui::BitmapFactory().iconFromTheme("edit-cut"), QLatin1String("Do Task 4"), tb1);
tb1->addIconLabel(i4, false);
hbl->addWidget(i4);
i4->setColors(Qt::red, Qt::green, Qt::gray);
i4->setFocusPen(QPen());
iisIconLabel *i5 = new iisIconLabel(
Gui::BitmapFactory().pixmap("edit-paste"), QLatin1String("Do Task 5"), tb1);
Gui::BitmapFactory().iconFromTheme("edit-paste"), QLatin1String("Do Task 5"), tb1);
tb1->addIconLabel(i5);
iisTaskBox *tb2 = new iisTaskBox(
@@ -88,16 +88,16 @@ TaskPanelView::TaskPanelView(Gui::Document* pcDocument, QWidget *parent)
taskPanel->addWidget(tb2);
iisIconLabel *i21 = new iisIconLabel(
Gui::BitmapFactory().pixmap("document-new"), QLatin1String("Do Task 2.1"), tb2);
Gui::BitmapFactory().iconFromTheme("document-new"), QLatin1String("Do Task 2.1"), tb2);
tb2->addIconLabel(i21);
iisIconLabel *i22 = new iisIconLabel(
Gui::BitmapFactory().pixmap("document-open"), QLatin1String("Do Task 2.2"), tb2);
Gui::BitmapFactory().iconFromTheme("document-open"), QLatin1String("Do Task 2.2"), tb2);
tb2->addIconLabel(i22);
i22->setEnabled(false);
iisIconLabel *i23 = new iisIconLabel(
Gui::BitmapFactory().pixmap("document-save"), QLatin1String("Do Task 2.3"), tb2);
Gui::BitmapFactory().iconFromTheme("document-save"), QLatin1String("Do Task 2.3"), tb2);
tb2->addIconLabel(i23);
iisTaskBox *tb3 = new iisTaskBox(QPixmap(), QLatin1String("Group without Icons"), true, this);
@@ -121,7 +121,7 @@ TaskPanelView::TaskPanelView(Gui::Document* pcDocument, QWidget *parent)
taskPanel->addWidget(tb4);
iisIconLabel *i41 = new iisIconLabel(
Gui::BitmapFactory().pixmap("system-log-out"), QLatin1String("Do Task 4.1"), tb4);
Gui::BitmapFactory().iconFromTheme("application-exit"), QLatin1String("Do Task 4.1"), tb4);
tb4->addIconLabel(i41);
iisIconLabel *i42 = new iisIconLabel(QPixmap(), QLatin1String("Do Task 4.2"), tb4);

View File

@@ -56,10 +56,10 @@ TaskSelectLinkProperty::TaskSelectLinkProperty(const char *sFilter,App::Property
this->groupLayout()->addWidget(proxy);
Gui::Selection().Attach(this);
ui->Remove->setIcon(Gui::BitmapFactory().pixmap("delete"));
ui->Add->setIcon(Gui::BitmapFactory().pixmap("add"));
ui->Invert->setIcon(Gui::BitmapFactory().pixmap("edit_remove"));
ui->Help->setIcon(Gui::BitmapFactory().pixmap("help-browser"));
ui->Remove->setIcon(Gui::BitmapFactory().iconFromTheme("delete"));
ui->Add->setIcon(Gui::BitmapFactory().iconFromTheme("list-add"));
ui->Invert->setIcon(Gui::BitmapFactory().iconFromTheme("list-remove"));
ui->Help->setIcon(Gui::BitmapFactory().iconFromTheme("help-browser"));
// deactivate not implemented stuff
ui->Remove->setDisabled(true);

View File

@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
@@ -10,127 +9,319 @@
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="64px"
height="64px"
id="svg2860"
width="48"
height="48"
id="svg1306"
sodipodi:version="0.32"
inkscape:version="0.48.1 r9760"
sodipodi:docname="SpreadsheetStyleBold.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
version="1.1">
inkscape:version="0.46"
sodipodi:docbase="/home/jimmac/src/cvs/tango-icon-theme/scalable/actions"
sodipodi:docname="format-text-bold.svg"
version="1.0"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs2862">
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3377"
id="radialGradient3692"
cx="45.883327"
cy="28.869568"
fx="45.883327"
fy="28.869568"
r="19.467436"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3377"
id="radialGradient3703"
gradientUnits="userSpaceOnUse"
cx="135.38333"
cy="97.369568"
fx="135.38333"
fy="97.369568"
r="19.467436"
gradientTransform="matrix(0.97435,0.2250379,-0.4623105,2.0016728,48.487554,-127.99883)" />
<linearGradient
id="linearGradient3377">
<stop
id="stop3379"
offset="0"
style="stop-color:#faff2b;stop-opacity:1;" />
<stop
id="stop3381"
offset="1"
style="stop-color:#ffaa00;stop-opacity:1;" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3377"
id="radialGradient3705"
gradientUnits="userSpaceOnUse"
cx="148.88333"
cy="81.869568"
fx="148.88333"
fy="81.869568"
r="19.467436"
gradientTransform="matrix(1.3852588,-0.05136783,0.03705629,0.9993132,-60.392403,7.7040438)" />
id="defs1308">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 32 : 1"
inkscape:vp_x="0 : 24 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="64 : 32 : 1"
inkscape:persp3d-origin="32 : 21.333333 : 1"
id="perspective2868" />
inkscape:vp_z="48 : 24 : 1"
inkscape:persp3d-origin="24 : 16 : 1"
id="perspective46" />
<linearGradient
inkscape:collect="always"
id="linearGradient2288">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop2290" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop2292" />
</linearGradient>
<linearGradient
id="linearGradient2243">
<stop
id="stop2245"
offset="0"
style="stop-color:#2a5387;stop-opacity:1" />
<stop
id="stop2247"
offset="1"
style="stop-color:#3465a4;stop-opacity:1;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient2233">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop2235" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop2237" />
</linearGradient>
<linearGradient
id="linearGradient3682">
<stop
style="stop-color:#497fc6;stop-opacity:1;"
offset="0"
id="stop3684" />
<stop
style="stop-color:#90b3d9;stop-opacity:1;"
offset="1"
id="stop3686" />
</linearGradient>
<linearGradient
id="linearGradient2834">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop2836" />
<stop
style="stop-color:#b3b3b3;stop-opacity:0.0000000;"
offset="1.0000000"
id="stop2838" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient8662">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop8664" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop8666" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3682"
id="linearGradient2475"
gradientUnits="userSpaceOnUse"
x1="29.122221"
y1="33.438889"
x2="14.296363"
y2="6.3463993" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2243"
id="linearGradient2477"
gradientUnits="userSpaceOnUse"
x1="19.988434"
y1="34.98325"
x2="19.988434"
y2="6.4341555" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2834"
id="linearGradient2479"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,-3)"
x1="19.891792"
y1="16.114628"
x2="31.856716"
y2="72.780548" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2233"
id="linearGradient2481"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1,-4)"
x1="25"
y1="27.5"
x2="26.673967"
y2="10" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient8662"
id="radialGradient2490"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.536723,3.750475e-14,16.87306)"
cx="24.837126"
cy="36.421127"
fx="24.837126"
fy="36.421127"
r="15.644737" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient8662"
id="radialGradient2494"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.536723,6.419148e-15,16.87306)"
cx="24.837126"
cy="36.421127"
fx="24.837126"
fy="36.421127"
r="15.644737" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2288"
id="linearGradient2294"
x1="24"
y1="42.25"
x2="24"
y2="36.615528"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.97619,0,0,0.406377,0.571429,24.97647)" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
borderopacity="0.18039216"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.5"
inkscape:cx="10.658514"
inkscape:cy="35.257738"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:document-units="px"
inkscape:zoom="1"
inkscape:cx="-116.87002"
inkscape:cy="47.121576"
inkscape:current-layer="layer5"
showgrid="false"
inkscape:grid-bbox="true"
inkscape:window-width="1600"
inkscape:window-height="876"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1" />
inkscape:document-units="px"
showguides="false"
inkscape:guide-bbox="true"
inkscape:window-width="1044"
inkscape:window-height="818"
inkscape:window-x="390"
inkscape:window-y="30"
inkscape:grid-points="true"
stroke="#204a87"
fill="#2e3436"
showborder="true"
inkscape:showpageshadow="false">
<sodipodi:guide
orientation="vertical"
position="14.406922"
id="guide2257" />
<sodipodi:guide
orientation="horizontal"
position="41.565351"
id="guide2259" />
<sodipodi:guide
orientation="vertical"
position="29.03324"
id="guide2261" />
<sodipodi:guide
orientation="vertical"
position="19.964923"
id="guide2265" />
<sodipodi:guide
orientation="horizontal"
position="31.739108"
id="guide2267" />
<sodipodi:guide
orientation="horizontal"
position="28.59445"
id="guide2269" />
<sodipodi:guide
orientation="vertical"
position="24.133423"
id="guide2271" />
<sodipodi:guide
orientation="horizontal"
position="14.56111"
id="guide2266" />
<inkscape:grid
id="GridFromPre046Settings"
type="xygrid"
originx="0px"
originy="0px"
spacingx="0.5px"
spacingy="0.5px"
color="#0000ff"
empcolor="#0000ff"
opacity="0.2"
empopacity="0.4"
empspacing="2" />
</sodipodi:namedview>
<metadata
id="metadata2865">
id="metadata1311">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<dc:title>Bold</dc:title>
<dc:date>2006-01-04</dc:date>
<dc:creator>
<cc:Agent>
<dc:title>Lapo Calamandrei</dc:title>
</cc:Agent>
</dc:creator>
<dc:source>http://tango-project.org</dc:source>
<dc:subject>
<rdf:Bag>
<rdf:li>text</rdf:li>
<rdf:li>a</rdf:li>
<rdf:li>bold</rdf:li>
<rdf:li>write</rdf:li>
<rdf:li>letter</rdf:li>
</rdf:Bag>
</dc:subject>
<cc:license
rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
<dc:contributor>
<cc:Agent>
<dc:title>Andreas Nilsson</dc:title>
</cc:Agent>
</dc:contributor>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/publicdomain/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#030000;stroke-width:3.5999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3068"
width="65.090912"
height="64.36364"
x="-0.90909249"
y="-0.18182078" />
<rect
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3002"
width="56.18182"
height="46.545456"
x="4"
y="9.272728" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="16.363634"
y="45.999996"
id="text4123"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4125"
x="16.363634"
y="45.999996"
style="font-weight:bold">B</tspan></text>
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Shadow"
style="display:inline">
<path
sodipodi:type="arc"
style="opacity:0.2;color:#000000;fill:url(#radialGradient2494);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="path2492"
sodipodi:cx="24.837126"
sodipodi:cy="36.421127"
sodipodi:rx="15.644737"
sodipodi:ry="8.3968935"
d="M 40.481863 36.421127 A 15.644737 8.3968935 0 1 1 9.1923885,36.421127 A 15.644737 8.3968935 0 1 1 40.481863 36.421127 z"
transform="matrix(1.470144,0,0,0.535474,-12.76416,20.91534)"
inkscape:r_cx="true"
inkscape:r_cy="true" />
</g>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="A"
style="display:inline">
<g
id="g2464"
transform="translate(0,4)">
<path
id="path2277"
d="M 18,0.5 L 3,37.5 L 13,37.5 L 15.224112,31.5 L 32.731694,31.5 L 35,37.5 L 45,37.5 L 30,0.5 L 27,0.5 L 21,0.5 L 18,0.5 z M 24,9 L 29.59375,23.5 L 18.40625,23.5 L 24,9 z "
style="fill:url(#linearGradient2475);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2477);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
sodipodi:nodetypes="ccccccccccccccc" />
<path
style="font-size:54.8693924px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:0.7;fill:none;fill-opacity:1;stroke:url(#linearGradient2479);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;font-family:Bitstream Vera Sans"
d="M 4.4634342,36.5 L 18.698561,1.5 L 29.345564,1.5 L 43.563927,36.5 L 35.676777,36.5 L 33.5,30.5 L 14.5,30.5 L 12.265165,36.5 L 4.4634342,36.5 z "
id="path2304"
sodipodi:nodetypes="ccccccccc" />
<path
sodipodi:nodetypes="cccc"
id="path2306"
d="M 16.881282,24.5 L 31.118718,24.5 L 24,6.5 L 16.881282,24.5 z "
style="opacity:0.7;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2481);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
@@ -10,127 +9,326 @@
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="64px"
height="64px"
id="svg2860"
width="48"
height="48"
id="svg1306"
sodipodi:version="0.32"
inkscape:version="0.48.1 r9760"
sodipodi:docname="SpreadsheetStyleBold.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
version="1.1">
inkscape:version="0.46"
sodipodi:docbase="/home/jimmac/src/cvs/tango-icon-theme/scalable/actions"
sodipodi:docname="format-text-italic.svg"
version="1.0"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs2862">
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3377"
id="radialGradient3692"
cx="45.883327"
cy="28.869568"
fx="45.883327"
fy="28.869568"
r="19.467436"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3377"
id="radialGradient3703"
gradientUnits="userSpaceOnUse"
cx="135.38333"
cy="97.369568"
fx="135.38333"
fy="97.369568"
r="19.467436"
gradientTransform="matrix(0.97435,0.2250379,-0.4623105,2.0016728,48.487554,-127.99883)" />
<linearGradient
id="linearGradient3377">
<stop
id="stop3379"
offset="0"
style="stop-color:#faff2b;stop-opacity:1;" />
<stop
id="stop3381"
offset="1"
style="stop-color:#ffaa00;stop-opacity:1;" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3377"
id="radialGradient3705"
gradientUnits="userSpaceOnUse"
cx="148.88333"
cy="81.869568"
fx="148.88333"
fy="81.869568"
r="19.467436"
gradientTransform="matrix(1.3852588,-0.05136783,0.03705629,0.9993132,-60.392403,7.7040438)" />
id="defs1308">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 32 : 1"
inkscape:vp_x="0 : 24 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="64 : 32 : 1"
inkscape:persp3d-origin="32 : 21.333333 : 1"
id="perspective2868" />
inkscape:vp_z="48 : 24 : 1"
inkscape:persp3d-origin="24 : 16 : 1"
id="perspective46" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient8662"
id="radialGradient2494"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.536723,6.419148e-15,16.87306)"
cx="24.837126"
cy="36.421127"
fx="24.837126"
fy="36.421127"
r="15.644737" />
<linearGradient
inkscape:collect="always"
id="linearGradient3118">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop3120" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop3122" />
</linearGradient>
<linearGradient
id="linearGradient2243">
<stop
id="stop2245"
offset="0"
style="stop-color:#2a5387;stop-opacity:1" />
<stop
id="stop2247"
offset="1"
style="stop-color:#3465a4;stop-opacity:1;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient2233">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop2235" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop2237" />
</linearGradient>
<linearGradient
id="linearGradient3682">
<stop
style="stop-color:#497fc6;stop-opacity:1;"
offset="0"
id="stop3684" />
<stop
style="stop-color:#90b3d9;stop-opacity:1;"
offset="1"
id="stop3686" />
</linearGradient>
<linearGradient
id="linearGradient2834">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop2836" />
<stop
style="stop-color:#b3b3b3;stop-opacity:0.0000000;"
offset="1.0000000"
id="stop2838" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient8662">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop8664" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop8666" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2233"
id="linearGradient2327"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(5.000006,1)"
x1="30.123499"
y1="28.5"
x2="30.916004"
y2="5.3994164" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2834"
id="linearGradient2330"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(6.000004,1)"
x1="20.846664"
y1="15.432576"
x2="21.077463"
y2="61.926037" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3682"
id="linearGradient2333"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(6.000004,1)"
x1="29.033241"
y1="36.44521"
x2="14.33379"
y2="9.4596548" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2243"
id="linearGradient2335"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(6.000004,4)"
x1="22.125"
y1="34.962811"
x2="22.125"
y2="6.25" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient8662"
id="radialGradient2499"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.536723,1.528049e-13,16.87306)"
cx="24.837126"
cy="36.421127"
fx="24.837126"
fy="36.421127"
r="15.644737" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient8662"
id="radialGradient2503"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.536723,-2.399233e-14,16.87306)"
cx="24.837126"
cy="36.421127"
fx="24.837126"
fy="36.421127"
r="15.644737" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3118"
id="linearGradient3124"
x1="27.0625"
y1="42.001186"
x2="27.0625"
y2="37.981052"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.555556,0,18.66667)" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
borderopacity="0.20784314"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.5"
inkscape:cx="10.658514"
inkscape:cy="35.257738"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:document-units="px"
inkscape:zoom="4"
inkscape:cx="11.321773"
inkscape:cy="-4.1247834"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:grid-bbox="true"
inkscape:window-width="1600"
inkscape:window-height="876"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1" />
inkscape:document-units="px"
showguides="false"
inkscape:guide-bbox="true"
inkscape:window-width="1041"
inkscape:window-height="818"
inkscape:window-x="393"
inkscape:window-y="30"
inkscape:grid-points="true"
stroke="#204a87"
fill="#2e3436"
showborder="true"
inkscape:showpageshadow="false">
<sodipodi:guide
orientation="vertical"
position="14.406922"
id="guide2257" />
<sodipodi:guide
orientation="horizontal"
position="41.565351"
id="guide2259" />
<sodipodi:guide
orientation="vertical"
position="29.03324"
id="guide2261" />
<sodipodi:guide
orientation="vertical"
position="19.964923"
id="guide2265" />
<sodipodi:guide
orientation="horizontal"
position="31.739108"
id="guide2267" />
<sodipodi:guide
orientation="horizontal"
position="28.59445"
id="guide2269" />
<sodipodi:guide
orientation="vertical"
position="24.133423"
id="guide2271" />
<sodipodi:guide
orientation="horizontal"
position="6.0450673"
id="guide2266" />
<inkscape:grid
id="GridFromPre046Settings"
type="xygrid"
originx="0px"
originy="0px"
spacingx="0.5px"
spacingy="0.5px"
color="#0000ff"
empcolor="#0000ff"
opacity="0.2"
empopacity="0.4"
empspacing="2"
visible="true"
enabled="true" />
</sodipodi:namedview>
<metadata
id="metadata2865">
id="metadata1311">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<dc:title>Italic</dc:title>
<dc:date>2006-01-04</dc:date>
<dc:creator>
<cc:Agent>
<dc:title>Lapo Calamandrei</dc:title>
</cc:Agent>
</dc:creator>
<dc:source>http://tango-project.org</dc:source>
<dc:subject>
<rdf:Bag>
<rdf:li>text</rdf:li>
<rdf:li>a</rdf:li>
<rdf:li>italic</rdf:li>
<rdf:li>cursive</rdf:li>
<rdf:li>write</rdf:li>
<rdf:li>letter</rdf:li>
</rdf:Bag>
</dc:subject>
<cc:license
rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/publicdomain/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#030000;stroke-width:3.5999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3068"
width="65.090912"
height="64.36364"
x="-0.90909249"
y="-0.18182078" />
<rect
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3002"
width="56.18182"
height="46.545456"
x="4"
y="9.272728" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="23.81818"
y="46.545452"
id="text4123"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4125"
x="23.81818"
y="46.545452"
style="font-style:italic;font-weight:normal">i</tspan></text>
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Shadow"
style="display:inline">
<path
sodipodi:type="arc"
style="opacity:0.15;color:#000000;fill:url(#radialGradient2494);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="path2492"
sodipodi:cx="24.837126"
sodipodi:cy="36.421127"
sodipodi:rx="15.644737"
sodipodi:ry="8.3968935"
d="M 40.481863 36.421127 A 15.644737 8.3968935 0 1 1 9.1923885,36.421127 A 15.644737 8.3968935 0 1 1 40.481863 36.421127 z"
transform="matrix(1.470144,0,0,0.535474,-12.76416,20.91534)"
inkscape:r_cx="true"
inkscape:r_cy="true" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="A"
style="display:inline">
<path
sodipodi:nodetypes="ccccccccccccc"
style="fill:url(#linearGradient2333);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2335);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 34,4.5 L 4,41.5 L 10.500004,41.5 L 16.990516,33.5 L 36.5,33.5 L 36.500004,41.5 L 41.5,41.5 L 41.5,4.5 L 34,4.5 z M 36.5,9.5 L 36.5,28.5 L 21.047086,28.5 L 36.5,9.5 z "
id="path2211" />
<path
sodipodi:nodetypes="ccccccccc"
id="path2237"
d="M 6.1325825,40.5 L 34.5,5.5 L 40.5,5.5 L 40.5,40.5 L 37.388273,40.48699 L 37.388273,32.490985 L 16.793787,32.490985 L 9.8994954,40.5 L 6.1325825,40.5 z "
style="font-size:54.8693924px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:0.7;fill:none;fill-opacity:1;stroke:url(#linearGradient2330);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;font-family:Bitstream Vera Sans" />
<path
style="opacity:0.38461538;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2327);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 18.976888,29.411612 L 37.47949,29.5 L 37.388273,6.8994165 L 18.976888,29.411612 z "
id="path2239"
sodipodi:nodetypes="cccc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
@@ -10,132 +9,426 @@
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="64px"
height="64px"
id="svg2860"
width="48"
height="48"
id="svg1306"
sodipodi:version="0.32"
inkscape:version="0.48.1 r9760"
sodipodi:docname="SpreadsheetStyleUnderline.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
version="1.1">
inkscape:version="0.46"
sodipodi:docbase="/home/jimmac/src/cvs/tango-icon-theme/scalable/actions"
sodipodi:docname="format-text-underline.svg"
version="1.0"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs2862">
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3377"
id="radialGradient3692"
cx="45.883327"
cy="28.869568"
fx="45.883327"
fy="28.869568"
r="19.467436"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3377"
id="radialGradient3703"
gradientUnits="userSpaceOnUse"
cx="135.38333"
cy="97.369568"
fx="135.38333"
fy="97.369568"
r="19.467436"
gradientTransform="matrix(0.97435,0.2250379,-0.4623105,2.0016728,48.487554,-127.99883)" />
<linearGradient
id="linearGradient3377">
<stop
id="stop3379"
offset="0"
style="stop-color:#faff2b;stop-opacity:1;" />
<stop
id="stop3381"
offset="1"
style="stop-color:#ffaa00;stop-opacity:1;" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3377"
id="radialGradient3705"
gradientUnits="userSpaceOnUse"
cx="148.88333"
cy="81.869568"
fx="148.88333"
fy="81.869568"
r="19.467436"
gradientTransform="matrix(1.3852588,-0.05136783,0.03705629,0.9993132,-60.392403,7.7040438)" />
id="defs1308">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 32 : 1"
inkscape:vp_x="0 : 24 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="64 : 32 : 1"
inkscape:persp3d-origin="32 : 21.333333 : 1"
id="perspective2868" />
inkscape:vp_z="48 : 24 : 1"
inkscape:persp3d-origin="24 : 16 : 1"
id="perspective61" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient8662"
id="radialGradient2494"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.536723,6.419148e-15,16.87306)"
cx="24.837126"
cy="36.421127"
fx="24.837126"
fy="36.421127"
r="15.644737" />
<linearGradient
inkscape:collect="always"
id="linearGradient3135">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop3137" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop3139" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient2521">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop2523" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop2525" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient2249">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop2251" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop2253" />
</linearGradient>
<linearGradient
id="linearGradient2243">
<stop
id="stop2245"
offset="0"
style="stop-color:#2a5387;stop-opacity:1" />
<stop
id="stop2247"
offset="1"
style="stop-color:#3465a4;stop-opacity:1;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient2233">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop2235" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop2237" />
</linearGradient>
<linearGradient
id="linearGradient3682">
<stop
style="stop-color:#497fc6;stop-opacity:1;"
offset="0"
id="stop3684" />
<stop
style="stop-color:#90b3d9;stop-opacity:1;"
offset="1"
id="stop3686" />
</linearGradient>
<linearGradient
id="linearGradient2834">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop2836" />
<stop
style="stop-color:#b3b3b3;stop-opacity:0.0000000;"
offset="1.0000000"
id="stop2838" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient8662">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop8664" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop8666" />
</linearGradient>
<linearGradient
id="linearGradient1467">
<stop
style="stop-color:#2a5387;stop-opacity:1"
offset="0"
id="stop1469" />
<stop
style="stop-color:#3465a4;stop-opacity:1;"
offset="1"
id="stop1471" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2233"
id="linearGradient1621"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-1,-1)"
x1="24.911612"
y1="22.13604"
x2="24.911612"
y2="6.4029131" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2834"
id="linearGradient1624"
gradientUnits="userSpaceOnUse"
x1="19.891792"
y1="16.114628"
x2="21.506844"
y2="85.696808"
gradientTransform="translate(0,-1)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2249"
id="linearGradient1633"
gradientUnits="userSpaceOnUse"
x1="39.421204"
y1="41.459263"
x2="-24.130018"
y2="41.5"
gradientTransform="translate(0,1)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3682"
id="linearGradient1635"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,-2)"
x1="27.675018"
y1="45.398964"
x2="16.0744"
y2="27.920008" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2521"
id="linearGradient2527"
x1="16.841536"
y1="24"
x2="16.841536"
y2="25.010555"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,21)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1467"
id="linearGradient2535"
x1="5.0271654"
y1="27.761904"
x2="5.0271654"
y2="20.416153"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,21)" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient8662"
id="radialGradient2559"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.536723,4.470566e-14,16.87306)"
cx="24.837126"
cy="36.421127"
fx="24.837126"
fy="36.421127"
r="15.644737" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient8662"
id="radialGradient2561"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.536723,-1.811862e-13,16.87306)"
cx="24.837126"
cy="36.421127"
fx="24.837126"
fy="36.421127"
r="15.644737" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3682"
id="linearGradient1364"
gradientUnits="userSpaceOnUse"
x1="29.033241"
y1="36.44521"
x2="14.33379"
y2="9.4596548"
gradientTransform="translate(0,-1)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2243"
id="linearGradient1366"
gradientUnits="userSpaceOnUse"
x1="22.125"
y1="34.962811"
x2="22.125"
y2="6.25"
gradientTransform="translate(0,2)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3135"
id="linearGradient3141"
x1="24.0625"
y1="41.9375"
x2="24"
y2="37.937214"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.555556,0,18.66667)" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
borderopacity="0.1372549"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="5.5"
inkscape:cx="10.658514"
inkscape:cy="35.257738"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:document-units="px"
inkscape:zoom="4"
inkscape:cx="-18.480348"
inkscape:cy="26.019267"
inkscape:current-layer="layer2"
showgrid="false"
inkscape:grid-bbox="true"
inkscape:window-width="1600"
inkscape:window-height="876"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1" />
inkscape:document-units="px"
showguides="false"
inkscape:guide-bbox="true"
inkscape:window-width="1041"
inkscape:window-height="818"
inkscape:window-x="393"
inkscape:window-y="30"
inkscape:grid-points="true"
stroke="#204a87"
fill="#2e3436"
showborder="true"
inkscape:showpageshadow="false">
<sodipodi:guide
orientation="vertical"
position="14.406922"
id="guide2257" />
<sodipodi:guide
orientation="horizontal"
position="41.565351"
id="guide2259" />
<sodipodi:guide
orientation="vertical"
position="29.03324"
id="guide2261" />
<sodipodi:guide
orientation="vertical"
position="19.964923"
id="guide2265" />
<sodipodi:guide
orientation="horizontal"
position="31.739108"
id="guide2267" />
<sodipodi:guide
orientation="horizontal"
position="28.59445"
id="guide2269" />
<sodipodi:guide
orientation="vertical"
position="24.133423"
id="guide2271" />
<sodipodi:guide
orientation="horizontal"
position="6.0450673"
id="guide2266" />
<inkscape:grid
id="GridFromPre046Settings"
type="xygrid"
originx="0px"
originy="0px"
spacingx="0.5px"
spacingy="0.5px"
color="#0000ff"
empcolor="#0000ff"
opacity="0.2"
empopacity="0.4"
empspacing="2" />
</sodipodi:namedview>
<metadata
id="metadata2865">
id="metadata1311">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<dc:title>Format Text - Underlined</dc:title>
<dc:date />
<dc:creator>
<cc:Agent>
<dc:title>Lapo Calamandrei</dc:title>
</cc:Agent>
</dc:creator>
<dc:source>http://tango-project.org</dc:source>
<dc:subject>
<rdf:Bag>
<rdf:li>text</rdf:li>
<rdf:li>a</rdf:li>
<rdf:li>strikeout</rdf:li>
<rdf:li>strike-out</rdf:li>
<rdf:li>write</rdf:li>
<rdf:li>letter</rdf:li>
<rdf:li>strike-though</rdf:li>
</rdf:Bag>
</dc:subject>
<cc:license
rdf:resource="http://creativecommons.org/licenses/publicdomain/" />
<dc:contributor>
<cc:Agent>
<dc:title>jakub Steiner</dc:title>
</cc:Agent>
</dc:contributor>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/publicdomain/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer">
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#030000;stroke-width:3.5999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect3068"
width="65.090912"
height="64.36364"
x="-0.90909249"
y="-0.18182078" />
<rect
style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect3002"
width="56.18182"
height="46.545456"
x="4"
y="9.272728" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="16.727272"
y="42.909088"
id="text4123"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4125"
x="16.727272"
y="42.909088"
style="font-style:normal;font-weight:normal">U</tspan></text>
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Shadow"
style="display:inline">
<path
style="fill:none;stroke:#000000;stroke-width:3.11890268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 20.363637,48.181818 22.795883,0"
id="path4186"
inkscape:connector-curvature="0" />
sodipodi:type="arc"
style="opacity:0.15;color:#000000;fill:url(#radialGradient2494);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="path2492"
sodipodi:cx="24.837126"
sodipodi:cy="36.421127"
sodipodi:rx="15.644737"
sodipodi:ry="8.3968935"
d="M 40.481863 36.421127 A 15.644737 8.3968935 0 1 1 9.1923885,36.421127 A 15.644737 8.3968935 0 1 1 40.481863 36.421127 z"
transform="matrix(1.470144,0,0,0.535474,-12.76416,20.91534)"
inkscape:r_cx="true"
inkscape:r_cy="true" />
</g>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="A"
style="display:inline">
<path
style="fill:url(#linearGradient1364);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient1366);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 20,2.5 L 5,39.5 L 11,39.5 L 14.25,31.5 L 33.75,31.5 L 37,39.5 L 43,39.5 L 28,2.5 L 20,2.5 z M 24,7.5 L 31.71875,26.5 L 16.28125,26.5 L 24,7.5 z "
id="path2211"
inkscape:r_cx="true"
inkscape:r_cy="true" />
<path
sodipodi:nodetypes="ccccccccc"
id="path2237"
d="M 10.5,38.5 L 6.6462632,38.5 L 20.682829,3.5 L 27.353737,3.5 L 41.682829,38.5 L 37.865658,38.5 L 34.403563,30.469062 L 13.523417,30.368272 C 13.523417,30.368272 10.5,38.5 10.5,38.5 z "
style="font-size:54.8693924px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:0.6;fill:none;fill-opacity:1;stroke:url(#linearGradient1624);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;font-family:Bitstream Vera Sans"
inkscape:r_cx="true"
inkscape:r_cy="true" />
<path
style="opacity:0.47802198;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient1621);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 14.43934,27.5 L 33.383883,27.5 L 24.041631,4.8110299 L 14.43934,27.5 z "
id="path2239"
sodipodi:nodetypes="cc"
inkscape:r_cx="true"
inkscape:r_cy="true" />
<rect
style="color:#000000;fill:url(#linearGradient1635);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2535);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="rect2331"
width="39"
height="3"
x="4.5"
y="41.5"
inkscape:r_cx="true"
inkscape:r_cy="true" />
<path
style="opacity:0.8;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient1633);stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
d="M 5.5,42.5 L 42.5,42.5"
id="path2353"
sodipodi:nodetypes="cc"
inkscape:r_cx="true"
inkscape:r_cy="true" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 14 KiB