YaST Commits
Threads by month
- ----- 2024 -----
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
September 2007
- 23 participants
- 503 discussions
[yast-commit] r41067 - in /trunk/bootloader/src: modules/BootCommon.ycp routines/lilolike.ycp
by odabrunz@svn.opensuse.org 24 Sep '07
by odabrunz@svn.opensuse.org 24 Sep '07
24 Sep '07
Author: odabrunz
Date: Mon Sep 24 21:25:21 2007
New Revision: 41067
URL: http://svn.opensuse.org/viewcvs/yast?rev=41067&view=rev
Log:
- Storage::GetTranslatedDevices() called often and uneccesarily
(related to #304269):
- added more logging to UpdateSections()
- added comments and FIXMEs
- disabled calling device name update again for "linux",
"failsafe" and "initrd" sections: this is not needed and would
reverse device name updates when forwards and backwards device
name update mappings exist
- enabled device name updates for "other" sections (booting other
installations)
- (related to #326372, see comment #12)
- fix "Interpreter" error: also activates persistent device
translation for device.map in yast2-bootloader (but no disk
device mappings are defined in yast2-storage, so devices remain
untranslated as of now)
Modified:
trunk/bootloader/src/modules/BootCommon.ycp
trunk/bootloader/src/routines/lilolike.ycp
Modified: trunk/bootloader/src/modules/BootCommon.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/bootloader/src/modules/BootCommo…
==============================================================================
--- trunk/bootloader/src/modules/BootCommon.ycp (original)
+++ trunk/bootloader/src/modules/BootCommon.ycp Mon Sep 24 21:25:21 2007
@@ -313,8 +313,9 @@
/**
* Types of sections that should be updated (changed device names)
*/
-global list<string> update_section_types
- = [ "linux", "failsafe", "initrd", "floppy" ];
+ // FIXME: see FIXME in lilolike.ycp:899
+global list<string> update_section_types = [ "floppy", "other" ];
+// = [ "linux", "failsafe", "initrd", "floppy" ];
/**
* List of all supported bootloaders
@@ -634,7 +635,7 @@
});
// convert device names in device map to the kernel device names
- map<string,string> device_mapping =
+ device_mapping =
mapmap (string k , string v, device_mapping, {
return $[BootCommon::MountByDev2Dev(k) : v];
});
Modified: trunk/bootloader/src/routines/lilolike.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/bootloader/src/routines/lilolike…
==============================================================================
--- trunk/bootloader/src/routines/lilolike.ycp (original)
+++ trunk/bootloader/src/routines/lilolike.ycp Mon Sep 24 21:25:21 2007
@@ -736,6 +736,7 @@
f_changed = true;
if (replace && m != $[])
{
+ y2milestone ("Recreated section %1: %2", label, m);
recreated = add (recreated, label);
return m;
}
@@ -766,6 +767,7 @@
// prepend or append the section created by create_linux_section()
if (! f_changed && m != $[])
{
+ y2milestone ("Recreated section: %1", m);
recreated = add (recreated, m["name"]:"");
if (t == "linux")
out = prepend (out, m);
@@ -773,6 +775,7 @@
out = add (out, m);
}
});
+ y2milestone ("All recreated sections: %1", recreated);
// for grub and replace-mode only:
// convert sections that boot "other" installations (another Linux, Windows
@@ -889,7 +892,16 @@
y2milestone ("... to %1", s["name"]:"");
}
+ // Update device names in sections for certain section types, if the
+ // section has not been recreated anyway
+ // FIXME: never update device names twice!
foreach (string key, ["root", "chainloader"], {
+ // FIXME: for some reason, this used to update "linux" and
+ // "failsafe" even if they have been recreated; but "other"
+ // sections were never updated -- since there are no calls to
+ // UpdateSections() with replace == false, ATM we disable updating
+ // "linux" and "failsafe", and add "other", seed
+ // BootCommon::update_section_types
if ((contains (update_section_types, type)
&& ! contains (recreated, label))
|| key == "chainloader")
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
24 Sep '07
Author: locilka
Date: Mon Sep 24 18:41:55 2007
New Revision: 41066
URL: http://svn.opensuse.org/viewcvs/yast?rev=41066&view=rev
Log:
Created tag stable-2_15_54 for installation
Added:
tags/stable-2_15_54/installation/
- copied from r41065, trunk/installation/
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
[yast-commit] r41065 - /trunk/installation/src/clients/inst_features.ycp
by locilka@svn.opensuse.org 24 Sep '07
by locilka@svn.opensuse.org 24 Sep '07
24 Sep '07
Author: locilka
Date: Mon Sep 24 18:36:59 2007
New Revision: 41065
URL: http://svn.opensuse.org/viewcvs/yast?rev=41065&view=rev
Log:
The correct default value :)
Modified:
trunk/installation/src/clients/inst_features.ycp
Modified: trunk/installation/src/clients/inst_features.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/installation/src/clients/inst_fe…
==============================================================================
--- trunk/installation/src/clients/inst_features.ycp (original)
+++ trunk/installation/src/clients/inst_features.ycp Mon Sep 24 18:36:59 2007
@@ -56,7 +56,8 @@
// Feature is not defined
if (ProductFeatures::GetFeature ("software", "online_repos_preselected") == "") {
- Installation::productsources_selected = false;
+ // Default is true - selected
+ Installation::productsources_selected = true;
// Defined
} else {
boolean default_status_or = ProductFeatures::GetBooleanFeature ("software", "online_repos_preselected");
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
[yast-commit] r41064 - in /branches/tmp/sh/mod-ui/core/libyui/src: YTableItem.cc YTableItem.h
by sh-sh-sh@svn.opensuse.org 24 Sep '07
by sh-sh-sh@svn.opensuse.org 24 Sep '07
24 Sep '07
Author: sh-sh-sh
Date: Mon Sep 24 18:34:11 2007
New Revision: 41064
URL: http://svn.opensuse.org/viewcvs/yast?rev=41064&view=rev
Log:
items for YTable widgets
Added:
branches/tmp/sh/mod-ui/core/libyui/src/YTableItem.cc
branches/tmp/sh/mod-ui/core/libyui/src/YTableItem.h
Added: branches/tmp/sh/mod-ui/core/libyui/src/YTableItem.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/core/libyui/src…
==============================================================================
--- branches/tmp/sh/mod-ui/core/libyui/src/YTableItem.cc (added)
+++ branches/tmp/sh/mod-ui/core/libyui/src/YTableItem.cc Mon Sep 24 18:34:11 2007
@@ -0,0 +1,94 @@
+/*---------------------------------------------------------------------\
+| |
+| __ __ ____ _____ ____ |
+| \ \ / /_ _/ ___|_ _|___ \ |
+| \ V / _` \___ \ | | __) | |
+| | | (_| |___) || | / __/ |
+| |_|\__,_|____/ |_| |_____| |
+| |
+| core system |
+| (C) SuSE GmbH |
+\----------------------------------------------------------------------/
+
+ File: YTreeItem.cc
+
+ Author: Stefan Hundhammer <sh(a)suse.de>
+
+/-*/
+
+#include "YTreeItem.h"
+
+
+YTreeItem::YTreeItem( const string & label,
+ bool isOpen )
+ : YItem( label )
+ , _parent( 0 )
+ , _isOpen( isOpen )
+ , _data( 0 )
+{
+}
+
+
+YTreeItem::YTreeItem( const string & label,
+ const string & iconName,
+ bool isOpen )
+ : YItem( label, iconName )
+ , _parent( 0 )
+ , _isOpen( isOpen )
+ , _data( 0 )
+{
+}
+
+
+YTreeItem::YTreeItem( YTreeItem * parent,
+ const string & label,
+ bool isOpen )
+ : YItem( label )
+ , _parent( parent )
+ , _isOpen( isOpen )
+ , _data( 0 )
+{
+ if ( parent )
+ parent->addChild( this );
+}
+
+
+YTreeItem::YTreeItem( YTreeItem * parent,
+ const string & label,
+ const string & iconName,
+ bool isOpen )
+ : YItem( label, iconName )
+ , _parent( parent )
+ , _isOpen( isOpen )
+ , _data( 0 )
+{
+ if ( parent )
+ parent->addChild( this );
+}
+
+
+YTreeItem::~YTreeItem()
+{
+ deleteChildren();
+}
+
+
+void YTreeItem::addChild( YItem * child )
+{
+ _children.push_back( child );
+}
+
+
+void YTreeItem::deleteChildren()
+{
+ YItemIterator it = childrenBegin();
+
+ while ( it != childrenEnd() )
+ {
+ YItem * child = *it;
+ ++it;
+ delete child;
+ }
+
+ _children.clear();
+}
Added: branches/tmp/sh/mod-ui/core/libyui/src/YTableItem.h
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/core/libyui/src…
==============================================================================
--- branches/tmp/sh/mod-ui/core/libyui/src/YTableItem.h (added)
+++ branches/tmp/sh/mod-ui/core/libyui/src/YTableItem.h Mon Sep 24 18:34:11 2007
@@ -0,0 +1,173 @@
+/*---------------------------------------------------------------------\
+| |
+| __ __ ____ _____ ____ |
+| \ \ / /_ _/ ___|_ _|___ \ |
+| \ V / _` \___ \ | | __) | |
+| | | (_| |___) || | / __/ |
+| |_|\__,_|____/ |_| |_____| |
+| |
+| core system |
+| (C) SuSE GmbH |
+\----------------------------------------------------------------------/
+
+ File: YTableItem.h
+
+ Author: Stefan Hundhammer <sh(a)suse.de>
+
+/-*/
+
+#ifndef YTableItem_h
+#define YTableItem_h
+
+#include "YItem.h"
+
+
+
+class YTableCell
+{
+public:
+ /**
+ * Constructor with label and icon name and optionally the selected state.
+ **/
+ YTableCell( const string & label, const string & iconName )
+ : _label( label )
+ , _iconName( iconName )
+ , _selected( selected )
+ , _index( -1 )
+ {}
+
+ /**
+ * Return this cells's label. This is what the user sees in a dialog, so
+ * this will usually be a translated text.
+ **/
+ string label() const { return _label; }
+
+ /**
+ * Set this cell's label.
+ **/
+ void setLabel( const string & newLabel ) { _label = newLabel; }
+
+ /**
+ * Return this cell's icon name.
+ **/
+ string iconName() const { return _iconName; }
+
+ /**
+ * Return 'true' if this cell has an icon name.
+ **/
+ bool hasIconName() const { return ! _iconName.empty(); }
+
+ /**
+ * Set this cell's icon name.
+ **/
+ void setIconName( const string & newIconName ) { _iconName = newIconName; }
+
+
+private:
+
+ string _label;
+ string _iconName;
+}
+
+
+/**
+ * Item class for table items.
+ *
+ * This class implements multiple cells per item.
+ **/
+class YTableItem: public YItem
+{
+public:
+
+ /**
+ * Default constructor. Use addCell() to give it any content.
+ **/
+ YTableItem();
+
+ /**
+ * Convenience constructor for table items without any icons.
+ **/
+ YTableItem( const string & label0,
+ const string & label1 = "",
+ const string & label2 = "",
+ const string & label3 = "",
+ const string & label4 = "",
+ const string & label5 = "",
+ const string & label6 = "",
+ const string & label7 = "",
+ const string & label8 = "",
+ const string & label9 = "" );
+
+
+ /**
+ * Destructor.
+ *
+ * This will delete all cells.
+ **/
+ virtual ~YTableItem();
+
+ /**
+ * Add a cell. This item will assume ownership over the cell and delete it
+ * when appropriate.
+ **/
+ void addCell( YTableCell * cell );
+
+ /**
+ * Return the cell at the specified index (counting from 0 on) or 0 if there is none.
+ **/
+ const YTableCell * cell( int index ) const;
+
+ /**
+ * Return the number of cells this item has.
+ **/
+ int cellCount() const;
+
+ /**
+ * Return 'true' if this item has a cell with the specified index (counting
+ * from 0 on), 'false' otherwise.
+ **/
+ bool hasCell( int index ) const;
+
+ /**
+ * Return the label of cell no. 'index' (counting from 0 on) or an empty
+ * string if there is no cell with that index.
+ **/
+ string label( int index ) const;
+
+ /**
+ * Return the icon name of cell no. 'index' (counting from 0 on) or an empty
+ * string if there is no cell with that index.
+ **/
+ string iconName( int index ) const;
+
+ /**
+ * Return 'true' if there is a cell with the specified index that has an
+ * icon name.
+ **/
+ bool hasIconName( int index ) const;
+
+
+ /**
+ * Set the opaque data pointer for application use.
+ *
+ * Applications can use this to store the pointer to a counterpart of this
+ * tree item. It is the application's responsibility to watch for dangling
+ * pointers and possibliy deleting the data. All this class ever does with
+ * this pointer is to store it.
+ **/
+ void setData( void * newData ) { _data = newData; }
+
+ /**
+ * Return the opaque data pointer.
+ **/
+ void * data() const { return _data; }
+
+private:
+
+ vector<YTableCell> _cells;
+ void * _data;
+};
+
+
+
+#endif // YTableItem_h
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
[yast-commit] r41063 - /trunk/installation/control/control.openSUSE.xml
by locilka@svn.opensuse.org 24 Sep '07
by locilka@svn.opensuse.org 24 Sep '07
24 Sep '07
Author: locilka
Date: Mon Sep 24 18:23:18 2007
New Revision: 41063
URL: http://svn.opensuse.org/viewcvs/yast?rev=41063&view=rev
Log:
The default is for DVD --> false
Modified:
trunk/installation/control/control.openSUSE.xml
Modified: trunk/installation/control/control.openSUSE.xml
URL: http://svn.opensuse.org/viewcvs/yast/trunk/installation/control/control.ope…
==============================================================================
--- trunk/installation/control/control.openSUSE.xml (original)
+++ trunk/installation/control/control.openSUSE.xml Mon Sep 24 18:23:18 2007
@@ -40,7 +40,7 @@
<selection_type config:type="symbol">auto</selection_type>
<!-- Bugzilla #327791, if not set, default is true -->
- <online_repos_preselected config:type="boolean">true</online_repos_preselected>
+ <online_repos_preselected config:type="boolean">false</online_repos_preselected>
<!-- FATE #300898, List of external sources accesible during the installation time -->
<external_sources_link>http://download.opensuse.org/YaST/Repos/openSUSE_103_Servers.xml</external_sources_link>
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
[yast-commit] r41062 - in /trunk/installation: VERSION control/control.openSUSE.xml control/docs/control-section.xml package/yast2-installation.changes src/clients/inst_features.ycp
by locilka@svn.opensuse.org 24 Sep '07
by locilka@svn.opensuse.org 24 Sep '07
24 Sep '07
Author: locilka
Date: Mon Sep 24 18:22:51 2007
New Revision: 41062
URL: http://svn.opensuse.org/viewcvs/yast?rev=41062&view=rev
Log:
- Changed default delete_old_packages back to 'true' after finding
and fixing all remaining issues with 'false' (changed by coolo)
- Added new option 'online_repos_preselected' into the control file
to make default status of Online Repositories easily configurable
(#327791).
- Initializing the default behavior of Online Repositories in
inst_features according to the control file (#327791).
- 2.15.54
Modified:
trunk/installation/VERSION
trunk/installation/control/control.openSUSE.xml
trunk/installation/control/docs/control-section.xml
trunk/installation/package/yast2-installation.changes
trunk/installation/src/clients/inst_features.ycp
Modified: trunk/installation/VERSION
URL: http://svn.opensuse.org/viewcvs/yast/trunk/installation/VERSION?rev=41062&r…
==============================================================================
--- trunk/installation/VERSION (original)
+++ trunk/installation/VERSION Mon Sep 24 18:22:51 2007
@@ -1 +1 @@
-2.15.53
+2.15.54
Modified: trunk/installation/control/control.openSUSE.xml
URL: http://svn.opensuse.org/viewcvs/yast/trunk/installation/control/control.ope…
==============================================================================
--- trunk/installation/control/control.openSUSE.xml (original)
+++ trunk/installation/control/control.openSUSE.xml Mon Sep 24 18:22:51 2007
@@ -36,9 +36,12 @@
</globals>
<software>
- <delete_old_packages config:type="boolean">false</delete_old_packages>
+ <delete_old_packages config:type="boolean">true</delete_old_packages>
<selection_type config:type="symbol">auto</selection_type>
+ <!-- Bugzilla #327791, if not set, default is true -->
+ <online_repos_preselected config:type="boolean">true</online_repos_preselected>
+
<!-- FATE #300898, List of external sources accesible during the installation time -->
<external_sources_link>http://download.opensuse.org/YaST/Repos/openSUSE_103_Servers.xml</external_sources_link>
</software>
Modified: trunk/installation/control/docs/control-section.xml
URL: http://svn.opensuse.org/viewcvs/yast/trunk/installation/control/docs/contro…
==============================================================================
--- trunk/installation/control/docs/control-section.xml (original)
+++ trunk/installation/control/docs/control-section.xml Mon Sep 24 18:22:51 2007
@@ -576,7 +576,6 @@
</software>
</programlisting>
</listitem>
-
</itemizedlist>
<para>All products (regular expressions) are matching the string which
@@ -615,6 +614,14 @@
<para>These regular expressions are evaluated as <emphasis>YCP</emphasis>.</para>
+ <itemizedlist>
+ <listitem>
+ <para><emphasis>online_repos_preselected</emphasis></para>
+ <para>Online Repositories are pre-selected by default to be used.
+ This item can change the default behavior.</para>
+ </listitem>
+ </itemizedlist>
+
</section>
<section id="control_partitioning">
<title>Partitioning</title>
Modified: trunk/installation/package/yast2-installation.changes
URL: http://svn.opensuse.org/viewcvs/yast/trunk/installation/package/yast2-insta…
==============================================================================
--- trunk/installation/package/yast2-installation.changes (original)
+++ trunk/installation/package/yast2-installation.changes Mon Sep 24 18:22:51 2007
@@ -1,4 +1,16 @@
-------------------------------------------------------------------
+Mon Sep 24 16:43:11 CEST 2007 - locilka(a)suse.cz
+
+- Changed default delete_old_packages back to 'true' after finding
+ and fixing all remaining issues with 'false' (changed by coolo)
+- Added new option 'online_repos_preselected' into the control file
+ to make default status of Online Repositories easily configurable
+ (#327791).
+- Initializing the default behavior of Online Repositories in
+ inst_features according to the control file (#327791).
+- 2.15.54
+
+-------------------------------------------------------------------
Fri Sep 21 16:35:18 CEST 2007 - locilka(a)suse.cz
- Start dhcpcd using WFM instead of SCR (#326342).
Modified: trunk/installation/src/clients/inst_features.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/installation/src/clients/inst_fe…
==============================================================================
--- trunk/installation/src/clients/inst_features.ycp (original)
+++ trunk/installation/src/clients/inst_features.ycp Mon Sep 24 18:22:51 2007
@@ -51,5 +51,23 @@
Language::WfmSetLanguage();
}
+ // Bugzilla #327791
+ // Online Repositories - default status
+
+ // Feature is not defined
+ if (ProductFeatures::GetFeature ("software", "online_repos_preselected") == "") {
+ Installation::productsources_selected = false;
+ // Defined
+ } else {
+ boolean default_status_or = ProductFeatures::GetBooleanFeature ("software", "online_repos_preselected");
+
+ // if not set, default is "true"
+ if (default_status_or == nil) default_status_or = true;
+ Installation::productsources_selected = default_status_or;
+ }
+
+ y2milestone ("Use Online Repositories (default): %1", Installation::productsources_selected);
+
+
return `auto;
}
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
24 Sep '07
Author: tgoettlicher
Date: Mon Sep 24 18:20:02 2007
New Revision: 41061
URL: http://svn.opensuse.org/viewcvs/yast?rev=41061&view=rev
Log:
Created tag stable-2_15_14 for theme
Added:
tags/stable-2_15_14/theme/
- copied from r41060, trunk/theme/
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
[yast-commit] r41060 - in /trunk/theme: ./ openSUSE-Crystal/icons/22x22/apps/ openSUSE-Crystal/icons/32x32/apps/ openSUSE/icons/22x22/apps/ openSUSE/icons/32x32/apps/ openSUSE/icons/scalable/apps/ package/
by tgoettlicher@svn.opensuse.org 24 Sep '07
by tgoettlicher@svn.opensuse.org 24 Sep '07
24 Sep '07
Author: tgoettlicher
Date: Mon Sep 24 18:19:44 2007
New Revision: 41060
URL: http://svn.opensuse.org/viewcvs/yast?rev=41060&view=rev
Log:
added pattern icons (#216557)
Added:
trunk/theme/openSUSE-Crystal/icons/22x22/apps/pattern-gnome.png (with props)
trunk/theme/openSUSE-Crystal/icons/22x22/apps/pattern-gnome.svg
trunk/theme/openSUSE-Crystal/icons/22x22/apps/pattern-kde.png (with props)
trunk/theme/openSUSE-Crystal/icons/22x22/apps/pattern-kde.svg
trunk/theme/openSUSE-Crystal/icons/32x32/apps/pattern-gnome.png (with props)
trunk/theme/openSUSE-Crystal/icons/32x32/apps/pattern-gnome.svg
trunk/theme/openSUSE-Crystal/icons/32x32/apps/pattern-kde.png (with props)
trunk/theme/openSUSE-Crystal/icons/32x32/apps/pattern-kde.svg
trunk/theme/openSUSE/icons/22x22/apps/pattern-gnome.png (with props)
trunk/theme/openSUSE/icons/22x22/apps/pattern-gnome.svg
trunk/theme/openSUSE/icons/22x22/apps/pattern-kde.png (with props)
trunk/theme/openSUSE/icons/22x22/apps/pattern-kde.svg
trunk/theme/openSUSE/icons/32x32/apps/pattern-gnome.png (with props)
trunk/theme/openSUSE/icons/32x32/apps/pattern-gnome.svg
trunk/theme/openSUSE/icons/32x32/apps/pattern-kde.png (with props)
trunk/theme/openSUSE/icons/32x32/apps/pattern-kde.svg
trunk/theme/openSUSE/icons/scalable/apps/pattern-gnome.svg
trunk/theme/openSUSE/icons/scalable/apps/pattern-kde.svg
Modified:
trunk/theme/VERSION
trunk/theme/package/yast2-theme.changes
Modified: trunk/theme/VERSION
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/VERSION?rev=41060&r1=41059…
==============================================================================
--- trunk/theme/VERSION (original)
+++ trunk/theme/VERSION Mon Sep 24 18:19:44 2007
@@ -1 +1 @@
-2.15.13
+2.15.14
Added: trunk/theme/openSUSE-Crystal/icons/22x22/apps/pattern-gnome.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE-Crystal/icons/22x…
==============================================================================
Binary file - no diff available.
Added: trunk/theme/openSUSE-Crystal/icons/22x22/apps/pattern-gnome.svg
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE-Crystal/icons/22x…
==============================================================================
--- trunk/theme/openSUSE-Crystal/icons/22x22/apps/pattern-gnome.svg (added)
+++ trunk/theme/openSUSE-Crystal/icons/22x22/apps/pattern-gnome.svg Mon Sep 24 18:19:44 2007
@@ -0,0 +1,91 @@
+<?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#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="22"
+ height="22"
+ id="svg6237"
+ sodipodi:version="0.32"
+ inkscape:version="0.45+devel"
+ version="1.0"
+ sodipodi:docbase="/home/jimmac/gfx/novell/pdes/trunk/logos/gnome/2.0"
+ sodipodi:docname="pattern-gnome.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
+ <defs
+ id="defs6239" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#e0e0e0"
+ borderopacity="1"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="20.157215"
+ inkscape:cy="5.297621"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ width="22px"
+ height="22px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:window-width="872"
+ inkscape:window-height="656"
+ inkscape:window-x="734"
+ inkscape:window-y="277">
+ <inkscape:grid
+ type="xygrid"
+ id="grid4678" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata6242">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g6230"
+ transform="matrix(0.2034978,0,0,0.2034978,31.066145,23.565348)"
+ inkscape:transform-center-x="-1.9284496"
+ inkscape:transform-center-y="0.97905898">
+ <path
+ d="M -63.883826,-115.2699 C -86.179388,-115.2699 -90.361732,-83.513994 -77.819232,-83.513994 C -65.278545,-83.513994 -41.58736,-115.2699 -63.883826,-115.2699 z"
+ id="path9"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ d="M -100.90505,-87.448931 C -94.226889,-87.041119 -86.899857,-112.93449 -99.45142,-111.30596 C -111.99845,-109.67743 -107.58592,-87.856744 -100.90505,-87.448931 z"
+ id="path11"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ d="M -131.51092,-71.359369 C -126.76126,-73.450087 -130.8992,-93.899619 -138.9757,-88.322556 C -147.04858,-82.744587 -136.26058,-69.269556 -131.51092,-71.359369 z"
+ id="path13"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ d="M -118.12833,-82.063087 C -112.47423,-83.215838 -112.16429,-106.40859 -122.24723,-102.24799 C -132.33198,-98.086494 -123.77789,-80.908525 -118.12833,-82.063087 L -118.12833,-82.063087 z"
+ id="path15"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ id="newshape"
+ d="M -88.603607,-30.161244 C -87.600388,-22.499806 -94.22417,-18.716213 -100.71111,-23.655275 C -121.36183,-39.377806 -66.519201,-47.220494 -70.134232,-68.701337 C -73.134826,-86.5309 -127.84061,-81.041744 -134.07017,-53.14465 C -138.28695,-34.274713 -116.71276,-8.09677 -94.201513,-8.09677 C -83.127138,-8.09677 -70.353545,-18.096338 -67.963763,-30.7639 C -66.138576,-40.423619 -89.440982,-36.553025 -88.603607,-30.161244 L -88.603607,-30.161244 z"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
Added: trunk/theme/openSUSE-Crystal/icons/22x22/apps/pattern-kde.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE-Crystal/icons/22x…
==============================================================================
Binary file - no diff available.
Added: trunk/theme/openSUSE-Crystal/icons/22x22/apps/pattern-kde.svg
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE-Crystal/icons/22x…
==============================================================================
--- trunk/theme/openSUSE-Crystal/icons/22x22/apps/pattern-kde.svg (added)
+++ trunk/theme/openSUSE-Crystal/icons/22x22/apps/pattern-kde.svg Mon Sep 24 18:19:44 2007
@@ -0,0 +1,408 @@
+<?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#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ 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"
+ inkscape:export-ydpi="90.000000"
+ inkscape:export-xdpi="90.000000"
+ inkscape:export-filename="/home/jimmac/Desktop/wi-fi.png"
+ width="22"
+ height="22"
+ id="svg11300"
+ sodipodi:version="0.32"
+ inkscape:version="0.45+devel"
+ sodipodi:docbase="/home/jimmac/gfx/ximian/tango-scrap"
+ sodipodi:docname="pattern-kde.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ version="1.0">
+ <defs
+ id="defs3">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7553">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop7555" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop7557" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11520">
+ <stop
+ id="stop11522"
+ offset="0.0000000"
+ style="stop-color:#ffffff;stop-opacity:1.0000000;" />
+ <stop
+ id="stop11524"
+ offset="1.0000000"
+ style="stop-color:#dcdcdc;stop-opacity:1.0000000;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11508"
+ inkscape:collect="always">
+ <stop
+ id="stop11510"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop11512"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11494"
+ inkscape:collect="always">
+ <stop
+ id="stop11496"
+ offset="0"
+ style="stop-color:#ef2929;stop-opacity:1;" />
+ <stop
+ id="stop11498"
+ offset="1"
+ style="stop-color:#ef2929;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11415">
+ <stop
+ id="stop11417"
+ offset="0.0000000"
+ style="stop-color:#204a87;stop-opacity:0.0000000;" />
+ <stop
+ style="stop-color:#204a87;stop-opacity:1.0000000;"
+ offset="0.50000000"
+ id="stop11423" />
+ <stop
+ id="stop11419"
+ offset="1"
+ style="stop-color:#204a87;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11399"
+ inkscape:collect="always">
+ <stop
+ id="stop11401"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop11403"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="translate(-60.28571,-0.285714)"
+ y2="34.462429"
+ x2="43.615788"
+ y1="3.774456"
+ x1="15.82836"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient11425"
+ xlink:href="#linearGradient11415"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="translate(-60.57143,0)"
+ y2="39.033859"
+ x2="35.679932"
+ y1="9.3458843"
+ x1="9.6957054"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient11427"
+ xlink:href="#linearGradient11415"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="33.462429"
+ x2="26.758644"
+ y1="19.774456"
+ x1="13.267134"
+ gradientTransform="translate(-60.85714,0.428571)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient11439"
+ xlink:href="#linearGradient11415"
+ inkscape:collect="always" />
+ <radialGradient
+ r="8.5"
+ fy="39.142857"
+ fx="12.071428"
+ cy="39.142857"
+ cx="12.071428"
+ gradientTransform="matrix(1,0,0,0.487395,0,20.06483)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient11441"
+ xlink:href="#linearGradient11399"
+ inkscape:collect="always" />
+ <radialGradient
+ gradientTransform="matrix(1.243453,0,0,1.243453,-6.713754,-3.742847)"
+ gradientUnits="userSpaceOnUse"
+ r="3.8335035"
+ fy="15.048258"
+ fx="27.577173"
+ cy="15.048258"
+ cx="27.577173"
+ id="radialGradient11500"
+ xlink:href="#linearGradient11494"
+ inkscape:collect="always" />
+ <radialGradient
+ r="3.8335035"
+ fy="16.049133"
+ fx="27.577173"
+ cy="16.049133"
+ cx="27.577173"
+ gradientTransform="matrix(1.243453,0,0,1.243453,-6.713754,-3.742847)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient11504"
+ xlink:href="#linearGradient11494"
+ inkscape:collect="always" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.338462,0,29.48178)"
+ r="6.5659914"
+ fy="44.565483"
+ fx="30.203562"
+ cy="44.565483"
+ cx="30.203562"
+ id="radialGradient11514"
+ xlink:href="#linearGradient11508"
+ inkscape:collect="always" />
+ <radialGradient
+ gradientTransform="matrix(1.995058,0,0,1.995058,-24.32488,-35.70087)"
+ gradientUnits="userSpaceOnUse"
+ r="20.530962"
+ fy="35.87817"
+ fx="24.44569"
+ cy="35.87817"
+ cx="24.44569"
+ id="radialGradient11526"
+ xlink:href="#linearGradient11520"
+ inkscape:collect="always" />
+ <radialGradient
+ r="6.5659914"
+ fy="44.565483"
+ fx="30.203562"
+ cy="44.565483"
+ cx="30.203562"
+ gradientTransform="matrix(1,0,0,0.338462,0,29.48178)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient11532"
+ xlink:href="#linearGradient11508"
+ inkscape:collect="always" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11508"
+ id="radialGradient1348"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.338462,0,29.48178)"
+ cx="30.203562"
+ cy="44.565483"
+ fx="30.203562"
+ fy="44.565483"
+ r="6.5659914" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11520"
+ id="radialGradient1350"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.995058,0,0,1.995058,-24.32488,-35.70087)"
+ cx="24.44569"
+ cy="35.87817"
+ fx="24.44569"
+ fy="35.87817"
+ r="20.530962" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11494"
+ id="radialGradient1352"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.243453,0,0,1.243453,-6.713754,-3.742847)"
+ cx="27.577173"
+ cy="16.049133"
+ fx="27.577173"
+ fy="16.049133"
+ r="3.8335035" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11494"
+ id="radialGradient1354"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.243453,0,0,1.243453,-6.713754,-3.742847)"
+ cx="27.577173"
+ cy="15.048258"
+ fx="27.577173"
+ fy="15.048258"
+ r="3.8335035" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11508"
+ id="radialGradient1356"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.338462,0,29.48178)"
+ cx="30.203562"
+ cy="44.565483"
+ fx="30.203562"
+ fy="44.565483"
+ r="6.5659914" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11520"
+ id="radialGradient1366"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.049266,0,0,2.049266,-25.65002,-37.31089)"
+ cx="24.44569"
+ cy="35.87817"
+ fx="24.44569"
+ fy="35.87817"
+ r="20.530962" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7553"
+ id="radialGradient7559"
+ cx="19.799839"
+ cy="10.321212"
+ fx="19.799839"
+ fy="10.321212"
+ r="18.5"
+ gradientTransform="matrix(0.9736434,0,0,0.8997962,-12.888218,-5.8636432)"
+ gradientUnits="userSpaceOnUse" />
+ <filter
+ inkscape:collect="always"
+ id="filter5454"
+ x="-0.05848763"
+ width="1.1169753"
+ y="-0.44929134"
+ height="1.8985827">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1.029626"
+ id="feGaussianBlur5456" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ stroke="#3465a4"
+ fill="#729fcf"
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="0.25490196"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="13.354218"
+ inkscape:cy="8.5350405"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:grid-bbox="true"
+ inkscape:document-units="px"
+ inkscape:showpageshadow="false"
+ inkscape:window-width="770"
+ inkscape:window-height="656"
+ inkscape:window-x="584"
+ inkscape:window-y="235"
+ gridcolor="#3f3fff"
+ gridopacity="0.10196078"
+ gridempcolor="#3f3fff"
+ gridempopacity="0.23529412"
+ width="22px"
+ height="22px">
+ <inkscape:grid
+ type="xygrid"
+ id="grid5366" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata4">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Jakub Steiner</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:source>http://jimmac.musichall.cz</dc:source>
+ <cc:license
+ rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
+ <dc:title>KDE Logo</dc:title>
+ <dc:description>KDE Logo in Tango style. Based on the original vesrion by David Vignoni (http://www.icon-king.com)</dc:description>
+ </cc:Work>
+ <cc:License
+ rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
+ <cc:permits
+ rdf:resource="http://web.resource.org/cc/Reproduction" />
+ <cc:permits
+ rdf:resource="http://web.resource.org/cc/Distribution" />
+ <cc:requires
+ rdf:resource="http://web.resource.org/cc/Notice" />
+ <cc:requires
+ rdf:resource="http://web.resource.org/cc/Attribution" />
+ <cc:permits
+ rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+ <cc:requires
+ rdf:resource="http://web.resource.org/cc/ShareAlike" />
+ </cc:License>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="layer1"
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer">
+ <rect
+ style="opacity:0.3313253;color:#000000;fill:#000000;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:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5454);enable-background:accumulate"
+ id="rect4719"
+ width="42.25"
+ height="5.5"
+ x="3.25"
+ y="39"
+ rx="5.5239325"
+ ry="5.5313439"
+ transform="matrix(0.4978337,0,0,0.4971667,-1.2308733,-0.7653239)" />
+ <rect
+ style="opacity:1;color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#3465a4;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;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="rect2296"
+ width="18.917685"
+ height="18.980724"
+ x="1.5072125"
+ y="1.4719263"
+ rx="3.3587573"
+ ry="3.3587573" />
+ <rect
+ ry="2.5480969"
+ rx="2.5480971"
+ y="2.5207741"
+ x="2.509012"
+ height="16.84374"
+ width="16.914085"
+ id="rect4927"
+ style="opacity:0.36931817;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;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" />
+ <path
+ style="opacity:0.15340911;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 11.919874,4.2106848 L 9.6089805,4.4345755 L 9.6089805,13.958546 L 11.902629,13.614098 L 11.902629,9.5496193 L 14.989569,14.06188 L 17.403935,13.304096 L 14.248013,8.9640587 L 17.438427,4.8651348 L 14.955078,4.2967967 L 11.902629,8.3957207 L 11.919874,4.2106848 z M 6.6255133,6.5357053 C 6.619481,6.5385389 6.6138228,6.5490355 6.6082684,6.5529271 C 6.6056369,6.5551345 6.6107332,6.5676822 6.6082684,6.5701497 L 5.6942578,7.465713 C 5.6918661,7.4681082 5.6791601,7.4803825 5.6770121,7.4829348 C 5.6713075,7.4910158 5.6632215,7.5083366 5.6597671,7.5173799 C 5.6588696,7.5204679 5.6604077,7.5314579 5.6597671,7.5346025 C 5.6590008,7.540971 5.6594881,7.5626186 5.6597671,7.5690468 C 5.6601703,7.5722503 5.6590967,7.5830926 5.6597671,7.5862693 C 5.6607048,7.5894021 5.6585583,7.6004204 5.6597671,7.6034919 C 5.6612471,7.6064857 5.675257,7.6178142 5.6770121,7.6207145 L 6.7462319,9.3773961 C 6.5572047,9.6947337 6.4059088,10.032624 6.2978491,10.393516 L 4.331865,10.78963 C 4.3216604,10.791737 4.3063535,10.802345 4.297374,10.806852 C 4.2945409,10.808593 4.282791,10.822109 4.2801286,10.824075 C 4.2778445,10.826444 4.2649606,10.838747 4.2628831,10.841297 C 4.2573074,10.849448 4.2490354,10.86635 4.2456377,10.875742 C 4.2447709,10.878981 4.2462277,10.88963 4.2456377,10.892964 C 4.245337,10.896379 4.2456377,10.906705 4.2456377,10.910186 L 4.2456377,12.201864 C 4.245922,12.205198 4.2450791,12.21583 4.2456377,12.219087 C 4.2464596,12.222253 4.2445629,12.233245 4.2456377,12.236309 C 4.246955,12.239257 4.2613344,12.250713 4.2628831,12.253531 C 4.2681956,12.26156 4.2730116,12.281467 4.2801286,12.287976 C 4.2877848,12.2939 4.305536,12.301269 4.3146195,12.305199 C 4.3177853,12.30626 4.3285723,12.304397 4.331865,12.305199 L 6.2288677,12.770202 C 6.3302735,13.18802 6.4871293,13.594371 6.6944955,13.958546 L 5.590785,15.629116 C 5.5842772,15.641217 5.5754987,15.667684 5.5735393,15.680782 C 5.5733286,15.684075 5.5734732,15.694715 5.5735393,15.698005 C 5.5738812,15.701276 5.5729246,15.711994 5.5735393,15.715228 C 5.574425,15.718405 5.5896304,15.729346 5.590785,15.73245 C 5.5922068,15.735462 5.5890975,15.746771 5.590785,15.749672 C 5.592735,15.752446 5.605819,15.764268 5.6080307,15.766894 L 6.5220405,16.67968 C 6.5268388,16.684457 6.5338866,16.693102 6.5392854,16.696903 C 6.5477597,16.701863 6.5644867,16.711429 6.5737769,16.714125 C 6.5769302,16.714768 6.5878292,16.713741 6.5910226,16.714125 C 6.5974534,16.714373 6.6190943,16.714932 6.6255133,16.714125 C 6.6286949,16.713455 6.639623,16.715065 6.642759,16.714125 C 6.6458314,16.712914 6.657011,16.698387 6.6600048,16.696903 L 8.3845522,15.663561 C 8.7225182,15.858427 9.0855581,16.007383 9.471017,16.111342 L 9.8849083,18.040247 C 9.8868787,18.046811 9.8818957,18.068699 9.8849083,18.074692 C 9.8918877,18.086037 9.9091767,18.100825 9.9193998,18.109137 C 9.9275652,18.114715 9.9444848,18.122961 9.9538905,18.126359 C 9.9603778,18.128094 9.9815456,18.125758 9.9883811,18.126359 L 11.281792,18.126359 C 11.288427,18.125791 11.309964,18.128002 11.316283,18.126359 C 11.325462,18.123138 11.342736,18.114448 11.350774,18.109137 C 11.353299,18.107155 11.365662,18.094097 11.368019,18.091915 C 11.37,18.089361 11.383492,18.077415 11.385264,18.074692 C 11.386815,18.07181 11.38395,18.0605 11.385264,18.05747 C 11.38633,18.0543 11.401708,18.043546 11.40251,18.040247 L 11.868138,16.111342 C 12.265679,16.004297 12.642413,15.83292 12.989094,15.629116 L 14.67915,16.74857 C 14.687929,16.754282 14.704072,16.762638 14.713642,16.765792 C 14.720125,16.767334 14.741547,16.765363 14.748132,16.765792 C 14.751425,16.765731 14.762105,16.766127 14.765378,16.765792 C 14.768614,16.765186 14.779442,16.76667 14.782623,16.765792 C 14.785732,16.764646 14.79685,16.749982 14.799869,16.74857 C 14.80278,16.746893 14.814329,16.750511 14.817114,16.74857 C 14.819756,16.746367 14.83188,16.73381 14.834359,16.731347 L 15.74837,15.818561 C 15.754849,15.810899 15.761389,15.792885 15.765616,15.784117 C 15.769079,15.775082 15.781717,15.759211 15.782861,15.749672 C 15.782981,15.746471 15.783004,15.735658 15.782861,15.73245 C 15.782452,15.729253 15.766292,15.718397 15.765616,15.715228 C 15.763726,15.708977 15.768592,15.686757 15.765616,15.680782 L 15.144778,14.664663 L 14.937833,14.71633 C 14.934169,14.717458 14.924288,14.733036 14.920587,14.733552 C 14.918749,14.733516 14.90516,14.733733 14.903341,14.733552 C 14.899825,14.732632 14.889427,14.717789 14.886096,14.71633 C 14.884555,14.715341 14.870317,14.717444 14.868851,14.71633 C 14.867467,14.715092 14.870144,14.700466 14.868851,14.699108 C 14.868852,14.699108 14.465037,14.118899 13.95484,13.372985 C 13.344664,14.565356 12.111424,15.388003 10.6782,15.388003 C 8.6416137,15.388003 6.9876682,13.736273 6.9876682,11.702416 C 6.9876674,10.206354 7.8777782,8.9205774 9.1605985,8.3440539 L 9.1605985,7.3968236 C 8.9271279,7.478432 8.7024029,7.5729848 8.4880251,7.6896039 L 6.7462319,6.5529271 C 6.740389,6.5491101 6.7352236,6.538377 6.7289861,6.5357053 C 6.7226049,6.5335993 6.7010528,6.5366873 6.6944955,6.5357053 C 6.6911991,6.5354917 6.6805445,6.5356417 6.6772497,6.5357053 C 6.6739746,6.5360423 6.6632422,6.535095 6.6600048,6.5357053 C 6.65364,6.5374666 6.6315456,6.5328711 6.6255133,6.5357053 z"
+ id="path5692_1_" />
+ <path
+ style="opacity:0.5;color:#000000;fill:url(#radialGradient7559);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;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"
+ d="M 4.6659956,1.8678017 C 3.0150567,1.8678017 1.7561293,3.3470852 1.7561293,4.1230769 L 1.7561293,14.296971 C 1.8382645,14.297537 1.922748,14.296971 2.0050462,14.296971 C 8.9008076,14.296971 15.23261,12.302817 20.175979,8.983501 L 20.175979,4.1230769 C 20.175979,3.2953525 18.67533,1.9372358 17.110539,1.8678017 L 4.7901926,1.8678017 C 4.7488379,1.8678017 4.7062441,1.8637441 4.6659956,1.8678017 z"
+ id="rect7548"
+ sodipodi:nodetypes="cccsccccc" />
+ <g
+ id="g7569"
+ transform="matrix(0.5518552,0,0,0.5511158,-6.9442923,-0.4619801)">
+ <polygon
+ transform="matrix(0.147004,0,0,0.147004,15.76388,4.031372)"
+ points="95.6416,148.22559 95.6416,30.53027 124.22754,27.79297 123.9248,79.49414 161.63672,29.01074 192.04785,36.00391 152.81543,86.4873 191.74219,140.01465 161.94043,149.44238 123.92676,93.78662 123.92676,143.96582 95.6416,148.22559 "
+ style="fill:#ffffff;fill-opacity:1"
+ id="polygon7561" />
+ <path
+ d="M 39.845825,27.086454 L 39.482771,27.201731 C 39.429655,27.218096 39.372519,27.19843 39.340937,27.152205 C 39.340937,27.152205 38.624871,26.104233 37.700359,24.750771 C 36.594678,26.914328 34.345273,28.396418 31.748171,28.396418 C 28.057734,28.396418 25.065848,25.404676 25.065848,21.714239 C 25.065848,18.999634 26.68525,16.664884 29.009808,15.618781 L 29.009808,13.895083 C 28.586744,14.043162 28.178036,14.221461 27.789568,14.433066 C 27.788851,14.432635 27.788276,14.431989 27.787558,14.431558 L 24.639983,12.367199 C 24.555285,12.311786 24.443453,12.32327 24.371961,12.394906 L 22.722914,14.043881 C 22.653576,14.113433 22.640584,14.221462 22.691475,14.305658 L 24.622254,17.485461 C 24.279725,18.06127 24.00553,18.682086 23.809718,19.336924 L 20.264706,20.074237 C 20.166081,20.094621 20.094948,20.181978 20.094948,20.283042 L 20.094948,22.615064 C 20.094948,22.713689 20.162133,22.799105 20.2576,22.822363 L 23.697672,23.66318 C 23.881426,24.421309 24.165383,25.140532 24.541145,25.801328 L 22.55,28.838145 C 22.494443,28.922844 22.506214,29.034676 22.577848,29.106167 L 24.226536,30.755214 C 24.29609,30.824552 24.404477,30.837759 24.488459,30.786654 L 27.609689,28.891835 C 28.222107,29.245418 28.883549,29.52392 29.582028,29.712555 L 30.310295,33.21321 C 30.33068,33.312121 30.41818,33.383326 30.519172,33.383326 L 32.851268,33.383326 C 32.949174,33.383326 33.035021,33.316141 33.058277,33.220388 L 33.915748,29.711695 C 34.63612,29.517462 35.317157,29.228049 35.945366,28.858246 L 39.020371,30.874943 C 39.105214,30.930215 39.216615,30.918872 39.288537,30.847381 L 40.937441,29.198334 C 41.007211,29.12871 41.019988,29.020897 40.968878,28.936916 L 39.845825,27.086454 z"
+ style="fill:#ffffff;fill-opacity:1"
+ id="path7563" />
+ </g>
+ </g>
+</svg>
Added: trunk/theme/openSUSE-Crystal/icons/32x32/apps/pattern-gnome.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE-Crystal/icons/32x…
==============================================================================
Binary file - no diff available.
Added: trunk/theme/openSUSE-Crystal/icons/32x32/apps/pattern-gnome.svg
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE-Crystal/icons/32x…
==============================================================================
--- trunk/theme/openSUSE-Crystal/icons/32x32/apps/pattern-gnome.svg (added)
+++ trunk/theme/openSUSE-Crystal/icons/32x32/apps/pattern-gnome.svg Mon Sep 24 18:19:44 2007
@@ -0,0 +1,91 @@
+<?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#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="32"
+ height="32"
+ id="svg6237"
+ sodipodi:version="0.32"
+ inkscape:version="0.45+devel"
+ version="1.0"
+ sodipodi:docbase="/home/jimmac/gfx/novell/pdes/trunk/logos/gnome/2.0"
+ sodipodi:docname="pattern-gnome.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
+ <defs
+ id="defs6239" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#e0e0e0"
+ borderopacity="1"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="30.707252"
+ inkscape:cy="11.119147"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ width="32px"
+ height="32px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:window-width="872"
+ inkscape:window-height="656"
+ inkscape:window-x="734"
+ inkscape:window-y="277">
+ <inkscape:grid
+ type="xygrid"
+ id="grid4678" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata6242">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g6230"
+ transform="matrix(0.2604038,0,0,0.2604038,43.029362,32.069443)"
+ inkscape:transform-center-x="-2.4677223"
+ inkscape:transform-center-y="1.252844">
+ <path
+ d="M -63.883826,-115.2699 C -86.179388,-115.2699 -90.361732,-83.513994 -77.819232,-83.513994 C -65.278545,-83.513994 -41.58736,-115.2699 -63.883826,-115.2699 z"
+ id="path9"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ d="M -100.90505,-87.448931 C -94.226889,-87.041119 -86.899857,-112.93449 -99.45142,-111.30596 C -111.99845,-109.67743 -107.58592,-87.856744 -100.90505,-87.448931 z"
+ id="path11"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ d="M -131.51092,-71.359369 C -126.76126,-73.450087 -130.8992,-93.899619 -138.9757,-88.322556 C -147.04858,-82.744587 -136.26058,-69.269556 -131.51092,-71.359369 z"
+ id="path13"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ d="M -118.12833,-82.063087 C -112.47423,-83.215838 -112.16429,-106.40859 -122.24723,-102.24799 C -132.33198,-98.086494 -123.77789,-80.908525 -118.12833,-82.063087 L -118.12833,-82.063087 z"
+ id="path15"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ id="newshape"
+ d="M -88.603607,-30.161244 C -87.600388,-22.499806 -94.22417,-18.716213 -100.71111,-23.655275 C -121.36183,-39.377806 -66.519201,-47.220494 -70.134232,-68.701337 C -73.134826,-86.5309 -127.84061,-81.041744 -134.07017,-53.14465 C -138.28695,-34.274713 -116.71276,-8.09677 -94.201513,-8.09677 C -83.127138,-8.09677 -70.353545,-18.096338 -67.963763,-30.7639 C -66.138576,-40.423619 -89.440982,-36.553025 -88.603607,-30.161244 L -88.603607,-30.161244 z"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
Added: trunk/theme/openSUSE-Crystal/icons/32x32/apps/pattern-kde.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE-Crystal/icons/32x…
==============================================================================
Binary file - no diff available.
Added: trunk/theme/openSUSE-Crystal/icons/32x32/apps/pattern-kde.svg
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE-Crystal/icons/32x…
==============================================================================
--- trunk/theme/openSUSE-Crystal/icons/32x32/apps/pattern-kde.svg (added)
+++ trunk/theme/openSUSE-Crystal/icons/32x32/apps/pattern-kde.svg Mon Sep 24 18:19:44 2007
@@ -0,0 +1,431 @@
+<?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#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ 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"
+ inkscape:export-ydpi="90.000000"
+ inkscape:export-xdpi="90.000000"
+ inkscape:export-filename="/home/jimmac/Desktop/wi-fi.png"
+ width="32"
+ height="32"
+ id="svg11300"
+ sodipodi:version="0.32"
+ inkscape:version="0.45+devel"
+ sodipodi:docbase="/home/jimmac/gfx/ximian/tango-scrap"
+ sodipodi:docname="pattern-kde.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ version="1.0">
+ <defs
+ id="defs3">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7553">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop7555" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop7557" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4046">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop4048" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop4050" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11520">
+ <stop
+ id="stop11522"
+ offset="0.0000000"
+ style="stop-color:#ffffff;stop-opacity:1.0000000;" />
+ <stop
+ id="stop11524"
+ offset="1.0000000"
+ style="stop-color:#dcdcdc;stop-opacity:1.0000000;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11508"
+ inkscape:collect="always">
+ <stop
+ id="stop11510"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop11512"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11494"
+ inkscape:collect="always">
+ <stop
+ id="stop11496"
+ offset="0"
+ style="stop-color:#ef2929;stop-opacity:1;" />
+ <stop
+ id="stop11498"
+ offset="1"
+ style="stop-color:#ef2929;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11415">
+ <stop
+ id="stop11417"
+ offset="0.0000000"
+ style="stop-color:#204a87;stop-opacity:0.0000000;" />
+ <stop
+ style="stop-color:#204a87;stop-opacity:1.0000000;"
+ offset="0.50000000"
+ id="stop11423" />
+ <stop
+ id="stop11419"
+ offset="1"
+ style="stop-color:#204a87;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11399"
+ inkscape:collect="always">
+ <stop
+ id="stop11401"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop11403"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="translate(-60.28571,-0.285714)"
+ y2="34.462429"
+ x2="43.615788"
+ y1="3.774456"
+ x1="15.82836"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient11425"
+ xlink:href="#linearGradient11415"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="translate(-60.57143,0)"
+ y2="39.033859"
+ x2="35.679932"
+ y1="9.3458843"
+ x1="9.6957054"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient11427"
+ xlink:href="#linearGradient11415"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="33.462429"
+ x2="26.758644"
+ y1="19.774456"
+ x1="13.267134"
+ gradientTransform="translate(-60.85714,0.428571)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient11439"
+ xlink:href="#linearGradient11415"
+ inkscape:collect="always" />
+ <radialGradient
+ r="8.5"
+ fy="39.142857"
+ fx="12.071428"
+ cy="39.142857"
+ cx="12.071428"
+ gradientTransform="matrix(1,0,0,0.487395,0,20.06483)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient11441"
+ xlink:href="#linearGradient11399"
+ inkscape:collect="always" />
+ <radialGradient
+ gradientTransform="matrix(1.243453,0,0,1.243453,-6.713754,-3.742847)"
+ gradientUnits="userSpaceOnUse"
+ r="3.8335035"
+ fy="15.048258"
+ fx="27.577173"
+ cy="15.048258"
+ cx="27.577173"
+ id="radialGradient11500"
+ xlink:href="#linearGradient11494"
+ inkscape:collect="always" />
+ <radialGradient
+ r="3.8335035"
+ fy="16.049133"
+ fx="27.577173"
+ cy="16.049133"
+ cx="27.577173"
+ gradientTransform="matrix(1.243453,0,0,1.243453,-6.713754,-3.742847)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient11504"
+ xlink:href="#linearGradient11494"
+ inkscape:collect="always" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.338462,0,29.48178)"
+ r="6.5659914"
+ fy="44.565483"
+ fx="30.203562"
+ cy="44.565483"
+ cx="30.203562"
+ id="radialGradient11514"
+ xlink:href="#linearGradient11508"
+ inkscape:collect="always" />
+ <radialGradient
+ gradientTransform="matrix(1.995058,0,0,1.995058,-24.32488,-35.70087)"
+ gradientUnits="userSpaceOnUse"
+ r="20.530962"
+ fy="35.87817"
+ fx="24.44569"
+ cy="35.87817"
+ cx="24.44569"
+ id="radialGradient11526"
+ xlink:href="#linearGradient11520"
+ inkscape:collect="always" />
+ <radialGradient
+ r="6.5659914"
+ fy="44.565483"
+ fx="30.203562"
+ cy="44.565483"
+ cx="30.203562"
+ gradientTransform="matrix(1,0,0,0.338462,0,29.48178)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient11532"
+ xlink:href="#linearGradient11508"
+ inkscape:collect="always" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11508"
+ id="radialGradient1348"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.338462,0,29.48178)"
+ cx="30.203562"
+ cy="44.565483"
+ fx="30.203562"
+ fy="44.565483"
+ r="6.5659914" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11520"
+ id="radialGradient1350"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.995058,0,0,1.995058,-24.32488,-35.70087)"
+ cx="24.44569"
+ cy="35.87817"
+ fx="24.44569"
+ fy="35.87817"
+ r="20.530962" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11494"
+ id="radialGradient1352"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.243453,0,0,1.243453,-6.713754,-3.742847)"
+ cx="27.577173"
+ cy="16.049133"
+ fx="27.577173"
+ fy="16.049133"
+ r="3.8335035" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11494"
+ id="radialGradient1354"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.243453,0,0,1.243453,-6.713754,-3.742847)"
+ cx="27.577173"
+ cy="15.048258"
+ fx="27.577173"
+ fy="15.048258"
+ r="3.8335035" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11508"
+ id="radialGradient1356"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.338462,0,29.48178)"
+ cx="30.203562"
+ cy="44.565483"
+ fx="30.203562"
+ fy="44.565483"
+ r="6.5659914" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11520"
+ id="radialGradient1366"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.049266,0,0,2.049266,-25.65002,-37.31089)"
+ cx="24.44569"
+ cy="35.87817"
+ fx="24.44569"
+ fy="35.87817"
+ r="20.530962" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4046"
+ id="radialGradient4052"
+ cx="25.102291"
+ cy="39.603107"
+ fx="25.102291"
+ fy="39.603107"
+ r="16.086679"
+ gradientTransform="matrix(1,0,0,0.379121,0,24.58874)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7553"
+ id="radialGradient7559"
+ cx="19.799839"
+ cy="10.321212"
+ fx="19.799839"
+ fy="10.321212"
+ r="18.5"
+ gradientTransform="matrix(1.2387808,0,0,1.1454244,-13.895966,-5.901862)"
+ gradientUnits="userSpaceOnUse" />
+ <filter
+ inkscape:collect="always"
+ id="filter5400"
+ x="-0.097459713"
+ width="1.1949194"
+ y="-0.7486678"
+ height="2.4973356">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1.715697"
+ id="feGaussianBlur5402" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ stroke="#3465a4"
+ fill="#729fcf"
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="0.25490196"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="33.626569"
+ inkscape:cy="5.4380685"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:grid-bbox="true"
+ inkscape:document-units="px"
+ inkscape:showpageshadow="false"
+ inkscape:window-width="770"
+ inkscape:window-height="656"
+ inkscape:window-x="584"
+ inkscape:window-y="235"
+ gridcolor="#3f3fff"
+ gridopacity="0.10196078"
+ gridempcolor="#3f3fff"
+ gridempopacity="0.23529412"
+ width="32px"
+ height="32px">
+ <inkscape:grid
+ type="xygrid"
+ id="grid5366" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata4">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Jakub Steiner</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:source>http://jimmac.musichall.cz</dc:source>
+ <cc:license
+ rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
+ <dc:title>KDE Logo</dc:title>
+ <dc:description>KDE Logo in Tango style. Based on the original vesrion by David Vignoni (http://www.icon-king.com)</dc:description>
+ </cc:Work>
+ <cc:License
+ rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
+ <cc:permits
+ rdf:resource="http://web.resource.org/cc/Reproduction" />
+ <cc:permits
+ rdf:resource="http://web.resource.org/cc/Distribution" />
+ <cc:requires
+ rdf:resource="http://web.resource.org/cc/Notice" />
+ <cc:requires
+ rdf:resource="http://web.resource.org/cc/Attribution" />
+ <cc:permits
+ rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+ <cc:requires
+ rdf:resource="http://web.resource.org/cc/ShareAlike" />
+ </cc:License>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="layer1"
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer">
+ <rect
+ style="opacity:0.60240939000000004;color:#000000;fill:#000000;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:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5400);enable-background:accumulate"
+ id="rect4719"
+ width="42.25"
+ height="5.5"
+ x="3.25"
+ y="39"
+ rx="4.34164"
+ ry="4.3451862"
+ transform="matrix(0.6334012,0,0,0.6328843,0.9358452,0.5882066)" />
+ <rect
+ style="opacity:1;color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#3465a4;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;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="rect2296"
+ width="24.069246"
+ height="24.049603"
+ x="4.4195518"
+ y="3.4361858"
+ rx="3.358757"
+ ry="3.3587573" />
+ <rect
+ ry="2.5480971"
+ rx="2.5480974"
+ y="4.4536257"
+ x="5.3752713"
+ height="22.077227"
+ width="22.157808"
+ id="rect4927"
+ style="opacity:0.36931817;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;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" />
+ <path
+ style="opacity:0.15340911;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.99999988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 17.667734,6.9225759 L 14.72755,7.2075846 L 14.72755,19.331427 L 17.645792,18.892951 L 17.645792,13.718943 L 21.573352,19.462969 L 24.645185,18.498324 L 20.629859,12.973535 L 24.689069,7.7556789 L 21.529468,7.0321947 L 17.645792,12.250051 L 17.667734,6.9225759 z M 10.931641,9.882285 C 10.923966,9.885892 10.916767,9.899254 10.9097,9.904208 C 10.906352,9.907018 10.912836,9.922991 10.9097,9.926132 L 9.746791,11.066168 C 9.743748,11.069217 9.727582,11.084842 9.724849,11.088091 C 9.717591,11.098378 9.707303,11.120427 9.702908,11.131939 C 9.701766,11.13587 9.703723,11.14986 9.702908,11.153863 C 9.701933,11.16197 9.702553,11.189527 9.702908,11.19771 C 9.703421,11.201788 9.702055,11.21559 9.702908,11.219634 C 9.704101,11.223622 9.70137,11.237648 9.702908,11.241558 C 9.704791,11.245369 9.722616,11.25979 9.724849,11.263482 L 11.085233,13.499706 C 10.844731,13.903671 10.652235,14.333799 10.514749,14.793208 L 8.0133986,15.297454 C 8.0004152,15.300136 7.98094,15.31364 7.9695153,15.319378 C 7.9659106,15.321594 7.9509611,15.3388 7.9475737,15.341302 C 7.9446676,15.344318 7.9282752,15.359979 7.925632,15.363225 C 7.9185379,15.373601 7.9080133,15.395118 7.9036904,15.407073 C 7.9025876,15.411197 7.904441,15.424752 7.9036904,15.428997 C 7.9033078,15.433344 7.9036904,15.446489 7.9036904,15.45092 L 7.9036904,17.095203 C 7.9040521,17.099447 7.9029797,17.112981 7.9036904,17.117127 C 7.9047361,17.121158 7.9023229,17.13515 7.9036904,17.139051 C 7.9053664,17.142803 7.9236615,17.157386 7.925632,17.160974 C 7.9323911,17.171195 7.9385186,17.196536 7.9475737,17.204822 C 7.9573148,17.212363 7.9798999,17.221743 7.991457,17.226746 C 7.9954848,17.228097 8.0092093,17.225725 8.0133986,17.226746 L 10.426983,17.818687 C 10.556003,18.350561 10.755573,18.867839 11.019408,19.331427 L 9.615141,21.458032 C 9.606861,21.473437 9.595692,21.507129 9.593199,21.523803 C 9.592931,21.527994 9.593115,21.541539 9.593199,21.545727 C 9.593634,21.549891 9.592417,21.563535 9.593199,21.567651 C 9.594326,21.571696 9.613672,21.585624 9.615141,21.589575 C 9.61695,21.593409 9.612994,21.607805 9.615141,21.611498 C 9.617622,21.615029 9.634269,21.630078 9.637083,21.633422 L 10.799991,22.795382 C 10.806096,22.801462 10.815063,22.812467 10.821932,22.817306 C 10.832714,22.82362 10.853996,22.835797 10.865816,22.839229 C 10.869828,22.840048 10.883695,22.83874 10.887758,22.839229 C 10.89594,22.839545 10.923474,22.840257 10.931641,22.839229 C 10.935689,22.838376 10.949593,22.840426 10.953583,22.839229 C 10.957492,22.837688 10.971716,22.819195 10.975525,22.817306 L 13.169692,21.50188 C 13.599691,21.749941 14.061592,21.939559 14.552017,22.071898 L 15.078617,24.527359 C 15.081124,24.535715 15.074784,24.563578 15.078617,24.571207 C 15.087497,24.585648 15.109494,24.604473 15.122501,24.615055 C 15.13289,24.622155 15.154417,24.632652 15.166384,24.636978 C 15.174638,24.639186 15.20157,24.636213 15.210267,24.636978 L 16.855892,24.636978 C 16.864335,24.636255 16.891736,24.639069 16.899776,24.636978 C 16.911455,24.632877 16.933433,24.621815 16.943659,24.615055 C 16.946872,24.612531 16.962601,24.595909 16.9656,24.593131 C 16.968121,24.58988 16.985287,24.574673 16.987542,24.571207 C 16.989515,24.567538 16.98587,24.553141 16.987542,24.549283 C 16.988898,24.545248 17.008463,24.531558 17.009484,24.527359 L 17.601909,22.071898 C 18.107706,21.935631 18.587031,21.717471 19.028118,21.458032 L 21.178401,22.883077 C 21.189571,22.890348 21.21011,22.900986 21.222285,22.905001 C 21.230534,22.906963 21.257789,22.904455 21.266168,22.905001 C 21.270357,22.904923 21.283946,22.905427 21.28811,22.905001 C 21.292227,22.904229 21.306004,22.906118 21.310051,22.905001 C 21.314007,22.903542 21.328152,22.884875 21.331993,22.883077 C 21.335697,22.880942 21.350391,22.885548 21.353934,22.883077 C 21.357296,22.880273 21.372721,22.864288 21.375876,22.861153 L 22.538785,21.699193 C 22.547029,21.689439 22.55535,21.666507 22.560727,21.655346 C 22.565134,21.643844 22.581213,21.623641 22.582668,21.611498 C 22.582821,21.607423 22.582851,21.593659 22.582668,21.589575 C 22.582148,21.585505 22.561587,21.571686 22.560727,21.567651 C 22.558323,21.559694 22.564514,21.531408 22.560727,21.523803 L 21.770826,20.230301 L 21.507527,20.296072 C 21.502865,20.297508 21.490294,20.317339 21.485585,20.317996 C 21.483246,20.31795 21.465957,20.318226 21.463643,20.317996 C 21.459169,20.316825 21.445939,20.29793 21.441702,20.296072 C 21.439741,20.294814 21.421625,20.297491 21.41976,20.296072 C 21.417999,20.294497 21.421406,20.275878 21.41976,20.274149 C 21.419761,20.274149 20.905982,19.535554 20.256851,18.586019 C 19.480515,20.103885 17.911446,21.1511 16.087934,21.1511 C 13.496755,21.1511 11.392416,19.048478 11.392416,16.459414 C 11.392415,14.554954 12.524916,12.918184 14.157067,12.18428 L 14.157067,10.978473 C 13.860019,11.082359 13.574098,11.202723 13.301342,11.351177 L 11.085233,9.904208 C 11.077799,9.899349 11.071227,9.885686 11.063291,9.882285 C 11.055172,9.879604 11.027751,9.883535 11.019408,9.882285 C 11.015214,9.882013 11.001658,9.882204 10.997466,9.882285 C 10.993299,9.882714 10.979644,9.881508 10.975525,9.882285 C 10.967427,9.884527 10.939316,9.878677 10.931641,9.882285 z"
+ id="path5692_1_" />
+ <path
+ style="opacity:0.5;color:#000000;fill:url(#radialGradient7559);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;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"
+ d="M 8.4385183,3.9401281 C 6.3380044,3.9401281 4.7362525,5.8232293 4.7362525,6.8110528 L 4.7362525,19.762236 C 4.8407544,19.762957 4.948244,19.762236 5.0529532,19.762236 C 13.826532,19.762236 21.882578,17.223715 28.172098,12.998285 L 28.172098,6.8110528 C 28.172098,5.7573745 26.262801,4.0285164 24.271894,3.9401281 L 8.596536,3.9401281 C 8.5439198,3.9401281 8.489727,3.9349628 8.4385183,3.9401281 z"
+ id="rect7548"
+ sodipodi:nodetypes="cccsccccc" />
+ <g
+ id="g7569"
+ transform="matrix(0.7021335,0,0,0.7015605,-6.3334219,0.9743578)">
+ <polygon
+ transform="matrix(0.147004,0,0,0.147004,15.76388,4.031372)"
+ points="95.6416,148.22559 95.6416,30.53027 124.22754,27.79297 123.9248,79.49414 161.63672,29.01074 192.04785,36.00391 152.81543,86.4873 191.74219,140.01465 161.94043,149.44238 123.92676,93.78662 123.92676,143.96582 95.6416,148.22559 "
+ style="fill:#ffffff;fill-opacity:1"
+ id="polygon7561" />
+ <path
+ d="M 39.845825,27.086454 L 39.482771,27.201731 C 39.429655,27.218096 39.372519,27.19843 39.340937,27.152205 C 39.340937,27.152205 38.624871,26.104233 37.700359,24.750771 C 36.594678,26.914328 34.345273,28.396418 31.748171,28.396418 C 28.057734,28.396418 25.065848,25.404676 25.065848,21.714239 C 25.065848,18.999634 26.68525,16.664884 29.009808,15.618781 L 29.009808,13.895083 C 28.586744,14.043162 28.178036,14.221461 27.789568,14.433066 C 27.788851,14.432635 27.788276,14.431989 27.787558,14.431558 L 24.639983,12.367199 C 24.555285,12.311786 24.443453,12.32327 24.371961,12.394906 L 22.722914,14.043881 C 22.653576,14.113433 22.640584,14.221462 22.691475,14.305658 L 24.622254,17.485461 C 24.279725,18.06127 24.00553,18.682086 23.809718,19.336924 L 20.264706,20.074237 C 20.166081,20.094621 20.094948,20.181978 20.094948,20.283042 L 20.094948,22.615064 C 20.094948,22.713689 20.162133,22.799105 20.2576,22.822363 L 23.697672,23.66318 C 23.881426,24.421309 24.165383,25.140532 24.541145,25.801328 L 22.55,28.838145 C 22.494443,28.922844 22.506214,29.034676 22.577848,29.106167 L 24.226536,30.755214 C 24.29609,30.824552 24.404477,30.837759 24.488459,30.786654 L 27.609689,28.891835 C 28.222107,29.245418 28.883549,29.52392 29.582028,29.712555 L 30.310295,33.21321 C 30.33068,33.312121 30.41818,33.383326 30.519172,33.383326 L 32.851268,33.383326 C 32.949174,33.383326 33.035021,33.316141 33.058277,33.220388 L 33.915748,29.711695 C 34.63612,29.517462 35.317157,29.228049 35.945366,28.858246 L 39.020371,30.874943 C 39.105214,30.930215 39.216615,30.918872 39.288537,30.847381 L 40.937441,29.198334 C 41.007211,29.12871 41.019988,29.020897 40.968878,28.936916 L 39.845825,27.086454 z"
+ style="fill:#ffffff;fill-opacity:1"
+ id="path7563" />
+ </g>
+ </g>
+</svg>
Added: trunk/theme/openSUSE/icons/22x22/apps/pattern-gnome.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary file - no diff available.
Added: trunk/theme/openSUSE/icons/22x22/apps/pattern-gnome.svg
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
--- trunk/theme/openSUSE/icons/22x22/apps/pattern-gnome.svg (added)
+++ trunk/theme/openSUSE/icons/22x22/apps/pattern-gnome.svg Mon Sep 24 18:19:44 2007
@@ -0,0 +1,91 @@
+<?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#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="22"
+ height="22"
+ id="svg6237"
+ sodipodi:version="0.32"
+ inkscape:version="0.45+devel"
+ version="1.0"
+ sodipodi:docbase="/home/jimmac/gfx/novell/pdes/trunk/logos/gnome/2.0"
+ sodipodi:docname="pattern-gnome.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
+ <defs
+ id="defs6239" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#e0e0e0"
+ borderopacity="1"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="20.157215"
+ inkscape:cy="5.297621"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ width="22px"
+ height="22px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:window-width="872"
+ inkscape:window-height="656"
+ inkscape:window-x="734"
+ inkscape:window-y="277">
+ <inkscape:grid
+ type="xygrid"
+ id="grid4678" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata6242">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g6230"
+ transform="matrix(0.2034978,0,0,0.2034978,31.066145,23.565348)"
+ inkscape:transform-center-x="-1.9284496"
+ inkscape:transform-center-y="0.97905898">
+ <path
+ d="M -63.883826,-115.2699 C -86.179388,-115.2699 -90.361732,-83.513994 -77.819232,-83.513994 C -65.278545,-83.513994 -41.58736,-115.2699 -63.883826,-115.2699 z"
+ id="path9"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ d="M -100.90505,-87.448931 C -94.226889,-87.041119 -86.899857,-112.93449 -99.45142,-111.30596 C -111.99845,-109.67743 -107.58592,-87.856744 -100.90505,-87.448931 z"
+ id="path11"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ d="M -131.51092,-71.359369 C -126.76126,-73.450087 -130.8992,-93.899619 -138.9757,-88.322556 C -147.04858,-82.744587 -136.26058,-69.269556 -131.51092,-71.359369 z"
+ id="path13"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ d="M -118.12833,-82.063087 C -112.47423,-83.215838 -112.16429,-106.40859 -122.24723,-102.24799 C -132.33198,-98.086494 -123.77789,-80.908525 -118.12833,-82.063087 L -118.12833,-82.063087 z"
+ id="path15"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ id="newshape"
+ d="M -88.603607,-30.161244 C -87.600388,-22.499806 -94.22417,-18.716213 -100.71111,-23.655275 C -121.36183,-39.377806 -66.519201,-47.220494 -70.134232,-68.701337 C -73.134826,-86.5309 -127.84061,-81.041744 -134.07017,-53.14465 C -138.28695,-34.274713 -116.71276,-8.09677 -94.201513,-8.09677 C -83.127138,-8.09677 -70.353545,-18.096338 -67.963763,-30.7639 C -66.138576,-40.423619 -89.440982,-36.553025 -88.603607,-30.161244 L -88.603607,-30.161244 z"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
Added: trunk/theme/openSUSE/icons/22x22/apps/pattern-kde.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
Binary file - no diff available.
Added: trunk/theme/openSUSE/icons/22x22/apps/pattern-kde.svg
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/22x22/apps/…
==============================================================================
--- trunk/theme/openSUSE/icons/22x22/apps/pattern-kde.svg (added)
+++ trunk/theme/openSUSE/icons/22x22/apps/pattern-kde.svg Mon Sep 24 18:19:44 2007
@@ -0,0 +1,408 @@
+<?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#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ 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"
+ inkscape:export-ydpi="90.000000"
+ inkscape:export-xdpi="90.000000"
+ inkscape:export-filename="/home/jimmac/Desktop/wi-fi.png"
+ width="22"
+ height="22"
+ id="svg11300"
+ sodipodi:version="0.32"
+ inkscape:version="0.45+devel"
+ sodipodi:docbase="/home/jimmac/gfx/ximian/tango-scrap"
+ sodipodi:docname="pattern-kde.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ version="1.0">
+ <defs
+ id="defs3">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7553">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop7555" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop7557" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11520">
+ <stop
+ id="stop11522"
+ offset="0.0000000"
+ style="stop-color:#ffffff;stop-opacity:1.0000000;" />
+ <stop
+ id="stop11524"
+ offset="1.0000000"
+ style="stop-color:#dcdcdc;stop-opacity:1.0000000;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11508"
+ inkscape:collect="always">
+ <stop
+ id="stop11510"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop11512"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11494"
+ inkscape:collect="always">
+ <stop
+ id="stop11496"
+ offset="0"
+ style="stop-color:#ef2929;stop-opacity:1;" />
+ <stop
+ id="stop11498"
+ offset="1"
+ style="stop-color:#ef2929;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11415">
+ <stop
+ id="stop11417"
+ offset="0.0000000"
+ style="stop-color:#204a87;stop-opacity:0.0000000;" />
+ <stop
+ style="stop-color:#204a87;stop-opacity:1.0000000;"
+ offset="0.50000000"
+ id="stop11423" />
+ <stop
+ id="stop11419"
+ offset="1"
+ style="stop-color:#204a87;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11399"
+ inkscape:collect="always">
+ <stop
+ id="stop11401"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop11403"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="translate(-60.28571,-0.285714)"
+ y2="34.462429"
+ x2="43.615788"
+ y1="3.774456"
+ x1="15.82836"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient11425"
+ xlink:href="#linearGradient11415"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="translate(-60.57143,0)"
+ y2="39.033859"
+ x2="35.679932"
+ y1="9.3458843"
+ x1="9.6957054"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient11427"
+ xlink:href="#linearGradient11415"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="33.462429"
+ x2="26.758644"
+ y1="19.774456"
+ x1="13.267134"
+ gradientTransform="translate(-60.85714,0.428571)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient11439"
+ xlink:href="#linearGradient11415"
+ inkscape:collect="always" />
+ <radialGradient
+ r="8.5"
+ fy="39.142857"
+ fx="12.071428"
+ cy="39.142857"
+ cx="12.071428"
+ gradientTransform="matrix(1,0,0,0.487395,0,20.06483)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient11441"
+ xlink:href="#linearGradient11399"
+ inkscape:collect="always" />
+ <radialGradient
+ gradientTransform="matrix(1.243453,0,0,1.243453,-6.713754,-3.742847)"
+ gradientUnits="userSpaceOnUse"
+ r="3.8335035"
+ fy="15.048258"
+ fx="27.577173"
+ cy="15.048258"
+ cx="27.577173"
+ id="radialGradient11500"
+ xlink:href="#linearGradient11494"
+ inkscape:collect="always" />
+ <radialGradient
+ r="3.8335035"
+ fy="16.049133"
+ fx="27.577173"
+ cy="16.049133"
+ cx="27.577173"
+ gradientTransform="matrix(1.243453,0,0,1.243453,-6.713754,-3.742847)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient11504"
+ xlink:href="#linearGradient11494"
+ inkscape:collect="always" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.338462,0,29.48178)"
+ r="6.5659914"
+ fy="44.565483"
+ fx="30.203562"
+ cy="44.565483"
+ cx="30.203562"
+ id="radialGradient11514"
+ xlink:href="#linearGradient11508"
+ inkscape:collect="always" />
+ <radialGradient
+ gradientTransform="matrix(1.995058,0,0,1.995058,-24.32488,-35.70087)"
+ gradientUnits="userSpaceOnUse"
+ r="20.530962"
+ fy="35.87817"
+ fx="24.44569"
+ cy="35.87817"
+ cx="24.44569"
+ id="radialGradient11526"
+ xlink:href="#linearGradient11520"
+ inkscape:collect="always" />
+ <radialGradient
+ r="6.5659914"
+ fy="44.565483"
+ fx="30.203562"
+ cy="44.565483"
+ cx="30.203562"
+ gradientTransform="matrix(1,0,0,0.338462,0,29.48178)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient11532"
+ xlink:href="#linearGradient11508"
+ inkscape:collect="always" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11508"
+ id="radialGradient1348"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.338462,0,29.48178)"
+ cx="30.203562"
+ cy="44.565483"
+ fx="30.203562"
+ fy="44.565483"
+ r="6.5659914" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11520"
+ id="radialGradient1350"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.995058,0,0,1.995058,-24.32488,-35.70087)"
+ cx="24.44569"
+ cy="35.87817"
+ fx="24.44569"
+ fy="35.87817"
+ r="20.530962" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11494"
+ id="radialGradient1352"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.243453,0,0,1.243453,-6.713754,-3.742847)"
+ cx="27.577173"
+ cy="16.049133"
+ fx="27.577173"
+ fy="16.049133"
+ r="3.8335035" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11494"
+ id="radialGradient1354"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.243453,0,0,1.243453,-6.713754,-3.742847)"
+ cx="27.577173"
+ cy="15.048258"
+ fx="27.577173"
+ fy="15.048258"
+ r="3.8335035" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11508"
+ id="radialGradient1356"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.338462,0,29.48178)"
+ cx="30.203562"
+ cy="44.565483"
+ fx="30.203562"
+ fy="44.565483"
+ r="6.5659914" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11520"
+ id="radialGradient1366"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.049266,0,0,2.049266,-25.65002,-37.31089)"
+ cx="24.44569"
+ cy="35.87817"
+ fx="24.44569"
+ fy="35.87817"
+ r="20.530962" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7553"
+ id="radialGradient7559"
+ cx="19.799839"
+ cy="10.321212"
+ fx="19.799839"
+ fy="10.321212"
+ r="18.5"
+ gradientTransform="matrix(0.9736434,0,0,0.8997962,-12.888218,-5.8636432)"
+ gradientUnits="userSpaceOnUse" />
+ <filter
+ inkscape:collect="always"
+ id="filter5454"
+ x="-0.05848763"
+ width="1.1169753"
+ y="-0.44929134"
+ height="1.8985827">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1.029626"
+ id="feGaussianBlur5456" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ stroke="#3465a4"
+ fill="#729fcf"
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="0.25490196"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="13.354218"
+ inkscape:cy="8.5350405"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:grid-bbox="true"
+ inkscape:document-units="px"
+ inkscape:showpageshadow="false"
+ inkscape:window-width="770"
+ inkscape:window-height="656"
+ inkscape:window-x="584"
+ inkscape:window-y="235"
+ gridcolor="#3f3fff"
+ gridopacity="0.10196078"
+ gridempcolor="#3f3fff"
+ gridempopacity="0.23529412"
+ width="22px"
+ height="22px">
+ <inkscape:grid
+ type="xygrid"
+ id="grid5366" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata4">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Jakub Steiner</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:source>http://jimmac.musichall.cz</dc:source>
+ <cc:license
+ rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
+ <dc:title>KDE Logo</dc:title>
+ <dc:description>KDE Logo in Tango style. Based on the original vesrion by David Vignoni (http://www.icon-king.com)</dc:description>
+ </cc:Work>
+ <cc:License
+ rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
+ <cc:permits
+ rdf:resource="http://web.resource.org/cc/Reproduction" />
+ <cc:permits
+ rdf:resource="http://web.resource.org/cc/Distribution" />
+ <cc:requires
+ rdf:resource="http://web.resource.org/cc/Notice" />
+ <cc:requires
+ rdf:resource="http://web.resource.org/cc/Attribution" />
+ <cc:permits
+ rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+ <cc:requires
+ rdf:resource="http://web.resource.org/cc/ShareAlike" />
+ </cc:License>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="layer1"
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer">
+ <rect
+ style="opacity:0.3313253;color:#000000;fill:#000000;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:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5454);enable-background:accumulate"
+ id="rect4719"
+ width="42.25"
+ height="5.5"
+ x="3.25"
+ y="39"
+ rx="5.5239325"
+ ry="5.5313439"
+ transform="matrix(0.4978337,0,0,0.4971667,-1.2308733,-0.7653239)" />
+ <rect
+ style="opacity:1;color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#3465a4;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;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="rect2296"
+ width="18.917685"
+ height="18.980724"
+ x="1.5072125"
+ y="1.4719263"
+ rx="3.3587573"
+ ry="3.3587573" />
+ <rect
+ ry="2.5480969"
+ rx="2.5480971"
+ y="2.5207741"
+ x="2.509012"
+ height="16.84374"
+ width="16.914085"
+ id="rect4927"
+ style="opacity:0.36931817;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;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" />
+ <path
+ style="opacity:0.15340911;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 11.919874,4.2106848 L 9.6089805,4.4345755 L 9.6089805,13.958546 L 11.902629,13.614098 L 11.902629,9.5496193 L 14.989569,14.06188 L 17.403935,13.304096 L 14.248013,8.9640587 L 17.438427,4.8651348 L 14.955078,4.2967967 L 11.902629,8.3957207 L 11.919874,4.2106848 z M 6.6255133,6.5357053 C 6.619481,6.5385389 6.6138228,6.5490355 6.6082684,6.5529271 C 6.6056369,6.5551345 6.6107332,6.5676822 6.6082684,6.5701497 L 5.6942578,7.465713 C 5.6918661,7.4681082 5.6791601,7.4803825 5.6770121,7.4829348 C 5.6713075,7.4910158 5.6632215,7.5083366 5.6597671,7.5173799 C 5.6588696,7.5204679 5.6604077,7.5314579 5.6597671,7.5346025 C 5.6590008,7.540971 5.6594881,7.5626186 5.6597671,7.5690468 C 5.6601703,7.5722503 5.6590967,7.5830926 5.6597671,7.5862693 C 5.6607048,7.5894021 5.6585583,7.6004204 5.6597671,7.6034919 C 5.6612471,7.6064857 5.675257,7.6178142 5.6770121,7.6207145 L 6.7462319,9.3773961 C 6.5572047,9.6947337 6.4059088,10.032624 6.2978491,10.393516 L 4.331865,10.78963 C 4.3216604,10.791737 4.3063535,10.802345 4.297374,10.806852 C 4.2945409,10.808593 4.282791,10.822109 4.2801286,10.824075 C 4.2778445,10.826444 4.2649606,10.838747 4.2628831,10.841297 C 4.2573074,10.849448 4.2490354,10.86635 4.2456377,10.875742 C 4.2447709,10.878981 4.2462277,10.88963 4.2456377,10.892964 C 4.245337,10.896379 4.2456377,10.906705 4.2456377,10.910186 L 4.2456377,12.201864 C 4.245922,12.205198 4.2450791,12.21583 4.2456377,12.219087 C 4.2464596,12.222253 4.2445629,12.233245 4.2456377,12.236309 C 4.246955,12.239257 4.2613344,12.250713 4.2628831,12.253531 C 4.2681956,12.26156 4.2730116,12.281467 4.2801286,12.287976 C 4.2877848,12.2939 4.305536,12.301269 4.3146195,12.305199 C 4.3177853,12.30626 4.3285723,12.304397 4.331865,12.305199 L 6.2288677,12.770202 C 6.3302735,13.18802 6.4871293,13.594371 6.6944955,13.958546 L 5.590785,15.629116 C 5.5842772,15.641217 5.5754987,15.667684 5.5735393,15.680782 C 5.5733286,15.684075 5.5734732,15.694715 5.5735393,15.698005 C 5.5738812,15.701276 5.5729246,15.711994 5.5735393,15.715228 C 5.574425,15.718405 5.5896304,15.729346 5.590785,15.73245 C 5.5922068,15.735462 5.5890975,15.746771 5.590785,15.749672 C 5.592735,15.752446 5.605819,15.764268 5.6080307,15.766894 L 6.5220405,16.67968 C 6.5268388,16.684457 6.5338866,16.693102 6.5392854,16.696903 C 6.5477597,16.701863 6.5644867,16.711429 6.5737769,16.714125 C 6.5769302,16.714768 6.5878292,16.713741 6.5910226,16.714125 C 6.5974534,16.714373 6.6190943,16.714932 6.6255133,16.714125 C 6.6286949,16.713455 6.639623,16.715065 6.642759,16.714125 C 6.6458314,16.712914 6.657011,16.698387 6.6600048,16.696903 L 8.3845522,15.663561 C 8.7225182,15.858427 9.0855581,16.007383 9.471017,16.111342 L 9.8849083,18.040247 C 9.8868787,18.046811 9.8818957,18.068699 9.8849083,18.074692 C 9.8918877,18.086037 9.9091767,18.100825 9.9193998,18.109137 C 9.9275652,18.114715 9.9444848,18.122961 9.9538905,18.126359 C 9.9603778,18.128094 9.9815456,18.125758 9.9883811,18.126359 L 11.281792,18.126359 C 11.288427,18.125791 11.309964,18.128002 11.316283,18.126359 C 11.325462,18.123138 11.342736,18.114448 11.350774,18.109137 C 11.353299,18.107155 11.365662,18.094097 11.368019,18.091915 C 11.37,18.089361 11.383492,18.077415 11.385264,18.074692 C 11.386815,18.07181 11.38395,18.0605 11.385264,18.05747 C 11.38633,18.0543 11.401708,18.043546 11.40251,18.040247 L 11.868138,16.111342 C 12.265679,16.004297 12.642413,15.83292 12.989094,15.629116 L 14.67915,16.74857 C 14.687929,16.754282 14.704072,16.762638 14.713642,16.765792 C 14.720125,16.767334 14.741547,16.765363 14.748132,16.765792 C 14.751425,16.765731 14.762105,16.766127 14.765378,16.765792 C 14.768614,16.765186 14.779442,16.76667 14.782623,16.765792 C 14.785732,16.764646 14.79685,16.749982 14.799869,16.74857 C 14.80278,16.746893 14.814329,16.750511 14.817114,16.74857 C 14.819756,16.746367 14.83188,16.73381 14.834359,16.731347 L 15.74837,15.818561 C 15.754849,15.810899 15.761389,15.792885 15.765616,15.784117 C 15.769079,15.775082 15.781717,15.759211 15.782861,15.749672 C 15.782981,15.746471 15.783004,15.735658 15.782861,15.73245 C 15.782452,15.729253 15.766292,15.718397 15.765616,15.715228 C 15.763726,15.708977 15.768592,15.686757 15.765616,15.680782 L 15.144778,14.664663 L 14.937833,14.71633 C 14.934169,14.717458 14.924288,14.733036 14.920587,14.733552 C 14.918749,14.733516 14.90516,14.733733 14.903341,14.733552 C 14.899825,14.732632 14.889427,14.717789 14.886096,14.71633 C 14.884555,14.715341 14.870317,14.717444 14.868851,14.71633 C 14.867467,14.715092 14.870144,14.700466 14.868851,14.699108 C 14.868852,14.699108 14.465037,14.118899 13.95484,13.372985 C 13.344664,14.565356 12.111424,15.388003 10.6782,15.388003 C 8.6416137,15.388003 6.9876682,13.736273 6.9876682,11.702416 C 6.9876674,10.206354 7.8777782,8.9205774 9.1605985,8.3440539 L 9.1605985,7.3968236 C 8.9271279,7.478432 8.7024029,7.5729848 8.4880251,7.6896039 L 6.7462319,6.5529271 C 6.740389,6.5491101 6.7352236,6.538377 6.7289861,6.5357053 C 6.7226049,6.5335993 6.7010528,6.5366873 6.6944955,6.5357053 C 6.6911991,6.5354917 6.6805445,6.5356417 6.6772497,6.5357053 C 6.6739746,6.5360423 6.6632422,6.535095 6.6600048,6.5357053 C 6.65364,6.5374666 6.6315456,6.5328711 6.6255133,6.5357053 z"
+ id="path5692_1_" />
+ <path
+ style="opacity:0.5;color:#000000;fill:url(#radialGradient7559);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;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"
+ d="M 4.6659956,1.8678017 C 3.0150567,1.8678017 1.7561293,3.3470852 1.7561293,4.1230769 L 1.7561293,14.296971 C 1.8382645,14.297537 1.922748,14.296971 2.0050462,14.296971 C 8.9008076,14.296971 15.23261,12.302817 20.175979,8.983501 L 20.175979,4.1230769 C 20.175979,3.2953525 18.67533,1.9372358 17.110539,1.8678017 L 4.7901926,1.8678017 C 4.7488379,1.8678017 4.7062441,1.8637441 4.6659956,1.8678017 z"
+ id="rect7548"
+ sodipodi:nodetypes="cccsccccc" />
+ <g
+ id="g7569"
+ transform="matrix(0.5518552,0,0,0.5511158,-6.9442923,-0.4619801)">
+ <polygon
+ transform="matrix(0.147004,0,0,0.147004,15.76388,4.031372)"
+ points="95.6416,148.22559 95.6416,30.53027 124.22754,27.79297 123.9248,79.49414 161.63672,29.01074 192.04785,36.00391 152.81543,86.4873 191.74219,140.01465 161.94043,149.44238 123.92676,93.78662 123.92676,143.96582 95.6416,148.22559 "
+ style="fill:#ffffff;fill-opacity:1"
+ id="polygon7561" />
+ <path
+ d="M 39.845825,27.086454 L 39.482771,27.201731 C 39.429655,27.218096 39.372519,27.19843 39.340937,27.152205 C 39.340937,27.152205 38.624871,26.104233 37.700359,24.750771 C 36.594678,26.914328 34.345273,28.396418 31.748171,28.396418 C 28.057734,28.396418 25.065848,25.404676 25.065848,21.714239 C 25.065848,18.999634 26.68525,16.664884 29.009808,15.618781 L 29.009808,13.895083 C 28.586744,14.043162 28.178036,14.221461 27.789568,14.433066 C 27.788851,14.432635 27.788276,14.431989 27.787558,14.431558 L 24.639983,12.367199 C 24.555285,12.311786 24.443453,12.32327 24.371961,12.394906 L 22.722914,14.043881 C 22.653576,14.113433 22.640584,14.221462 22.691475,14.305658 L 24.622254,17.485461 C 24.279725,18.06127 24.00553,18.682086 23.809718,19.336924 L 20.264706,20.074237 C 20.166081,20.094621 20.094948,20.181978 20.094948,20.283042 L 20.094948,22.615064 C 20.094948,22.713689 20.162133,22.799105 20.2576,22.822363 L 23.697672,23.66318 C 23.881426,24.421309 24.165383,25.140532 24.541145,25.801328 L 22.55,28.838145 C 22.494443,28.922844 22.506214,29.034676 22.577848,29.106167 L 24.226536,30.755214 C 24.29609,30.824552 24.404477,30.837759 24.488459,30.786654 L 27.609689,28.891835 C 28.222107,29.245418 28.883549,29.52392 29.582028,29.712555 L 30.310295,33.21321 C 30.33068,33.312121 30.41818,33.383326 30.519172,33.383326 L 32.851268,33.383326 C 32.949174,33.383326 33.035021,33.316141 33.058277,33.220388 L 33.915748,29.711695 C 34.63612,29.517462 35.317157,29.228049 35.945366,28.858246 L 39.020371,30.874943 C 39.105214,30.930215 39.216615,30.918872 39.288537,30.847381 L 40.937441,29.198334 C 41.007211,29.12871 41.019988,29.020897 40.968878,28.936916 L 39.845825,27.086454 z"
+ style="fill:#ffffff;fill-opacity:1"
+ id="path7563" />
+ </g>
+ </g>
+</svg>
Added: trunk/theme/openSUSE/icons/32x32/apps/pattern-gnome.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary file - no diff available.
Added: trunk/theme/openSUSE/icons/32x32/apps/pattern-gnome.svg
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
--- trunk/theme/openSUSE/icons/32x32/apps/pattern-gnome.svg (added)
+++ trunk/theme/openSUSE/icons/32x32/apps/pattern-gnome.svg Mon Sep 24 18:19:44 2007
@@ -0,0 +1,91 @@
+<?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#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="32"
+ height="32"
+ id="svg6237"
+ sodipodi:version="0.32"
+ inkscape:version="0.45+devel"
+ version="1.0"
+ sodipodi:docbase="/home/jimmac/gfx/novell/pdes/trunk/logos/gnome/2.0"
+ sodipodi:docname="pattern-gnome.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
+ <defs
+ id="defs6239" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#e0e0e0"
+ borderopacity="1"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="30.707252"
+ inkscape:cy="11.119147"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ width="32px"
+ height="32px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:window-width="872"
+ inkscape:window-height="656"
+ inkscape:window-x="734"
+ inkscape:window-y="277">
+ <inkscape:grid
+ type="xygrid"
+ id="grid4678" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata6242">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g6230"
+ transform="matrix(0.2604038,0,0,0.2604038,43.029362,32.069443)"
+ inkscape:transform-center-x="-2.4677223"
+ inkscape:transform-center-y="1.252844">
+ <path
+ d="M -63.883826,-115.2699 C -86.179388,-115.2699 -90.361732,-83.513994 -77.819232,-83.513994 C -65.278545,-83.513994 -41.58736,-115.2699 -63.883826,-115.2699 z"
+ id="path9"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ d="M -100.90505,-87.448931 C -94.226889,-87.041119 -86.899857,-112.93449 -99.45142,-111.30596 C -111.99845,-109.67743 -107.58592,-87.856744 -100.90505,-87.448931 z"
+ id="path11"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ d="M -131.51092,-71.359369 C -126.76126,-73.450087 -130.8992,-93.899619 -138.9757,-88.322556 C -147.04858,-82.744587 -136.26058,-69.269556 -131.51092,-71.359369 z"
+ id="path13"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ d="M -118.12833,-82.063087 C -112.47423,-83.215838 -112.16429,-106.40859 -122.24723,-102.24799 C -132.33198,-98.086494 -123.77789,-80.908525 -118.12833,-82.063087 L -118.12833,-82.063087 z"
+ id="path15"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ id="newshape"
+ d="M -88.603607,-30.161244 C -87.600388,-22.499806 -94.22417,-18.716213 -100.71111,-23.655275 C -121.36183,-39.377806 -66.519201,-47.220494 -70.134232,-68.701337 C -73.134826,-86.5309 -127.84061,-81.041744 -134.07017,-53.14465 C -138.28695,-34.274713 -116.71276,-8.09677 -94.201513,-8.09677 C -83.127138,-8.09677 -70.353545,-18.096338 -67.963763,-30.7639 C -66.138576,-40.423619 -89.440982,-36.553025 -88.603607,-30.161244 L -88.603607,-30.161244 z"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
Added: trunk/theme/openSUSE/icons/32x32/apps/pattern-kde.png
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
Binary file - no diff available.
Added: trunk/theme/openSUSE/icons/32x32/apps/pattern-kde.svg
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/32x32/apps/…
==============================================================================
--- trunk/theme/openSUSE/icons/32x32/apps/pattern-kde.svg (added)
+++ trunk/theme/openSUSE/icons/32x32/apps/pattern-kde.svg Mon Sep 24 18:19:44 2007
@@ -0,0 +1,431 @@
+<?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#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ 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"
+ inkscape:export-ydpi="90.000000"
+ inkscape:export-xdpi="90.000000"
+ inkscape:export-filename="/home/jimmac/Desktop/wi-fi.png"
+ width="32"
+ height="32"
+ id="svg11300"
+ sodipodi:version="0.32"
+ inkscape:version="0.45+devel"
+ sodipodi:docbase="/home/jimmac/gfx/ximian/tango-scrap"
+ sodipodi:docname="pattern-kde.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ version="1.0">
+ <defs
+ id="defs3">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7553">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop7555" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop7557" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4046">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop4048" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop4050" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11520">
+ <stop
+ id="stop11522"
+ offset="0.0000000"
+ style="stop-color:#ffffff;stop-opacity:1.0000000;" />
+ <stop
+ id="stop11524"
+ offset="1.0000000"
+ style="stop-color:#dcdcdc;stop-opacity:1.0000000;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11508"
+ inkscape:collect="always">
+ <stop
+ id="stop11510"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop11512"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11494"
+ inkscape:collect="always">
+ <stop
+ id="stop11496"
+ offset="0"
+ style="stop-color:#ef2929;stop-opacity:1;" />
+ <stop
+ id="stop11498"
+ offset="1"
+ style="stop-color:#ef2929;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11415">
+ <stop
+ id="stop11417"
+ offset="0.0000000"
+ style="stop-color:#204a87;stop-opacity:0.0000000;" />
+ <stop
+ style="stop-color:#204a87;stop-opacity:1.0000000;"
+ offset="0.50000000"
+ id="stop11423" />
+ <stop
+ id="stop11419"
+ offset="1"
+ style="stop-color:#204a87;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11399"
+ inkscape:collect="always">
+ <stop
+ id="stop11401"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop11403"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="translate(-60.28571,-0.285714)"
+ y2="34.462429"
+ x2="43.615788"
+ y1="3.774456"
+ x1="15.82836"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient11425"
+ xlink:href="#linearGradient11415"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="translate(-60.57143,0)"
+ y2="39.033859"
+ x2="35.679932"
+ y1="9.3458843"
+ x1="9.6957054"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient11427"
+ xlink:href="#linearGradient11415"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="33.462429"
+ x2="26.758644"
+ y1="19.774456"
+ x1="13.267134"
+ gradientTransform="translate(-60.85714,0.428571)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient11439"
+ xlink:href="#linearGradient11415"
+ inkscape:collect="always" />
+ <radialGradient
+ r="8.5"
+ fy="39.142857"
+ fx="12.071428"
+ cy="39.142857"
+ cx="12.071428"
+ gradientTransform="matrix(1,0,0,0.487395,0,20.06483)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient11441"
+ xlink:href="#linearGradient11399"
+ inkscape:collect="always" />
+ <radialGradient
+ gradientTransform="matrix(1.243453,0,0,1.243453,-6.713754,-3.742847)"
+ gradientUnits="userSpaceOnUse"
+ r="3.8335035"
+ fy="15.048258"
+ fx="27.577173"
+ cy="15.048258"
+ cx="27.577173"
+ id="radialGradient11500"
+ xlink:href="#linearGradient11494"
+ inkscape:collect="always" />
+ <radialGradient
+ r="3.8335035"
+ fy="16.049133"
+ fx="27.577173"
+ cy="16.049133"
+ cx="27.577173"
+ gradientTransform="matrix(1.243453,0,0,1.243453,-6.713754,-3.742847)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient11504"
+ xlink:href="#linearGradient11494"
+ inkscape:collect="always" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.338462,0,29.48178)"
+ r="6.5659914"
+ fy="44.565483"
+ fx="30.203562"
+ cy="44.565483"
+ cx="30.203562"
+ id="radialGradient11514"
+ xlink:href="#linearGradient11508"
+ inkscape:collect="always" />
+ <radialGradient
+ gradientTransform="matrix(1.995058,0,0,1.995058,-24.32488,-35.70087)"
+ gradientUnits="userSpaceOnUse"
+ r="20.530962"
+ fy="35.87817"
+ fx="24.44569"
+ cy="35.87817"
+ cx="24.44569"
+ id="radialGradient11526"
+ xlink:href="#linearGradient11520"
+ inkscape:collect="always" />
+ <radialGradient
+ r="6.5659914"
+ fy="44.565483"
+ fx="30.203562"
+ cy="44.565483"
+ cx="30.203562"
+ gradientTransform="matrix(1,0,0,0.338462,0,29.48178)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient11532"
+ xlink:href="#linearGradient11508"
+ inkscape:collect="always" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11508"
+ id="radialGradient1348"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.338462,0,29.48178)"
+ cx="30.203562"
+ cy="44.565483"
+ fx="30.203562"
+ fy="44.565483"
+ r="6.5659914" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11520"
+ id="radialGradient1350"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.995058,0,0,1.995058,-24.32488,-35.70087)"
+ cx="24.44569"
+ cy="35.87817"
+ fx="24.44569"
+ fy="35.87817"
+ r="20.530962" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11494"
+ id="radialGradient1352"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.243453,0,0,1.243453,-6.713754,-3.742847)"
+ cx="27.577173"
+ cy="16.049133"
+ fx="27.577173"
+ fy="16.049133"
+ r="3.8335035" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11494"
+ id="radialGradient1354"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.243453,0,0,1.243453,-6.713754,-3.742847)"
+ cx="27.577173"
+ cy="15.048258"
+ fx="27.577173"
+ fy="15.048258"
+ r="3.8335035" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11508"
+ id="radialGradient1356"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.338462,0,29.48178)"
+ cx="30.203562"
+ cy="44.565483"
+ fx="30.203562"
+ fy="44.565483"
+ r="6.5659914" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11520"
+ id="radialGradient1366"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.049266,0,0,2.049266,-25.65002,-37.31089)"
+ cx="24.44569"
+ cy="35.87817"
+ fx="24.44569"
+ fy="35.87817"
+ r="20.530962" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4046"
+ id="radialGradient4052"
+ cx="25.102291"
+ cy="39.603107"
+ fx="25.102291"
+ fy="39.603107"
+ r="16.086679"
+ gradientTransform="matrix(1,0,0,0.379121,0,24.58874)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7553"
+ id="radialGradient7559"
+ cx="19.799839"
+ cy="10.321212"
+ fx="19.799839"
+ fy="10.321212"
+ r="18.5"
+ gradientTransform="matrix(1.2387808,0,0,1.1454244,-13.895966,-5.901862)"
+ gradientUnits="userSpaceOnUse" />
+ <filter
+ inkscape:collect="always"
+ id="filter5400"
+ x="-0.097459713"
+ width="1.1949194"
+ y="-0.7486678"
+ height="2.4973356">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1.715697"
+ id="feGaussianBlur5402" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ stroke="#3465a4"
+ fill="#729fcf"
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="0.25490196"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="33.626569"
+ inkscape:cy="5.4380685"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:grid-bbox="true"
+ inkscape:document-units="px"
+ inkscape:showpageshadow="false"
+ inkscape:window-width="770"
+ inkscape:window-height="656"
+ inkscape:window-x="584"
+ inkscape:window-y="235"
+ gridcolor="#3f3fff"
+ gridopacity="0.10196078"
+ gridempcolor="#3f3fff"
+ gridempopacity="0.23529412"
+ width="32px"
+ height="32px">
+ <inkscape:grid
+ type="xygrid"
+ id="grid5366" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata4">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Jakub Steiner</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:source>http://jimmac.musichall.cz</dc:source>
+ <cc:license
+ rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
+ <dc:title>KDE Logo</dc:title>
+ <dc:description>KDE Logo in Tango style. Based on the original vesrion by David Vignoni (http://www.icon-king.com)</dc:description>
+ </cc:Work>
+ <cc:License
+ rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
+ <cc:permits
+ rdf:resource="http://web.resource.org/cc/Reproduction" />
+ <cc:permits
+ rdf:resource="http://web.resource.org/cc/Distribution" />
+ <cc:requires
+ rdf:resource="http://web.resource.org/cc/Notice" />
+ <cc:requires
+ rdf:resource="http://web.resource.org/cc/Attribution" />
+ <cc:permits
+ rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+ <cc:requires
+ rdf:resource="http://web.resource.org/cc/ShareAlike" />
+ </cc:License>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="layer1"
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer">
+ <rect
+ style="opacity:0.60240939000000004;color:#000000;fill:#000000;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:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5400);enable-background:accumulate"
+ id="rect4719"
+ width="42.25"
+ height="5.5"
+ x="3.25"
+ y="39"
+ rx="4.34164"
+ ry="4.3451862"
+ transform="matrix(0.6334012,0,0,0.6328843,0.9358452,0.5882066)" />
+ <rect
+ style="opacity:1;color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#3465a4;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;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="rect2296"
+ width="24.069246"
+ height="24.049603"
+ x="4.4195518"
+ y="3.4361858"
+ rx="3.358757"
+ ry="3.3587573" />
+ <rect
+ ry="2.5480971"
+ rx="2.5480974"
+ y="4.4536257"
+ x="5.3752713"
+ height="22.077227"
+ width="22.157808"
+ id="rect4927"
+ style="opacity:0.36931817;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;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" />
+ <path
+ style="opacity:0.15340911;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.99999988;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 17.667734,6.9225759 L 14.72755,7.2075846 L 14.72755,19.331427 L 17.645792,18.892951 L 17.645792,13.718943 L 21.573352,19.462969 L 24.645185,18.498324 L 20.629859,12.973535 L 24.689069,7.7556789 L 21.529468,7.0321947 L 17.645792,12.250051 L 17.667734,6.9225759 z M 10.931641,9.882285 C 10.923966,9.885892 10.916767,9.899254 10.9097,9.904208 C 10.906352,9.907018 10.912836,9.922991 10.9097,9.926132 L 9.746791,11.066168 C 9.743748,11.069217 9.727582,11.084842 9.724849,11.088091 C 9.717591,11.098378 9.707303,11.120427 9.702908,11.131939 C 9.701766,11.13587 9.703723,11.14986 9.702908,11.153863 C 9.701933,11.16197 9.702553,11.189527 9.702908,11.19771 C 9.703421,11.201788 9.702055,11.21559 9.702908,11.219634 C 9.704101,11.223622 9.70137,11.237648 9.702908,11.241558 C 9.704791,11.245369 9.722616,11.25979 9.724849,11.263482 L 11.085233,13.499706 C 10.844731,13.903671 10.652235,14.333799 10.514749,14.793208 L 8.0133986,15.297454 C 8.0004152,15.300136 7.98094,15.31364 7.9695153,15.319378 C 7.9659106,15.321594 7.9509611,15.3388 7.9475737,15.341302 C 7.9446676,15.344318 7.9282752,15.359979 7.925632,15.363225 C 7.9185379,15.373601 7.9080133,15.395118 7.9036904,15.407073 C 7.9025876,15.411197 7.904441,15.424752 7.9036904,15.428997 C 7.9033078,15.433344 7.9036904,15.446489 7.9036904,15.45092 L 7.9036904,17.095203 C 7.9040521,17.099447 7.9029797,17.112981 7.9036904,17.117127 C 7.9047361,17.121158 7.9023229,17.13515 7.9036904,17.139051 C 7.9053664,17.142803 7.9236615,17.157386 7.925632,17.160974 C 7.9323911,17.171195 7.9385186,17.196536 7.9475737,17.204822 C 7.9573148,17.212363 7.9798999,17.221743 7.991457,17.226746 C 7.9954848,17.228097 8.0092093,17.225725 8.0133986,17.226746 L 10.426983,17.818687 C 10.556003,18.350561 10.755573,18.867839 11.019408,19.331427 L 9.615141,21.458032 C 9.606861,21.473437 9.595692,21.507129 9.593199,21.523803 C 9.592931,21.527994 9.593115,21.541539 9.593199,21.545727 C 9.593634,21.549891 9.592417,21.563535 9.593199,21.567651 C 9.594326,21.571696 9.613672,21.585624 9.615141,21.589575 C 9.61695,21.593409 9.612994,21.607805 9.615141,21.611498 C 9.617622,21.615029 9.634269,21.630078 9.637083,21.633422 L 10.799991,22.795382 C 10.806096,22.801462 10.815063,22.812467 10.821932,22.817306 C 10.832714,22.82362 10.853996,22.835797 10.865816,22.839229 C 10.869828,22.840048 10.883695,22.83874 10.887758,22.839229 C 10.89594,22.839545 10.923474,22.840257 10.931641,22.839229 C 10.935689,22.838376 10.949593,22.840426 10.953583,22.839229 C 10.957492,22.837688 10.971716,22.819195 10.975525,22.817306 L 13.169692,21.50188 C 13.599691,21.749941 14.061592,21.939559 14.552017,22.071898 L 15.078617,24.527359 C 15.081124,24.535715 15.074784,24.563578 15.078617,24.571207 C 15.087497,24.585648 15.109494,24.604473 15.122501,24.615055 C 15.13289,24.622155 15.154417,24.632652 15.166384,24.636978 C 15.174638,24.639186 15.20157,24.636213 15.210267,24.636978 L 16.855892,24.636978 C 16.864335,24.636255 16.891736,24.639069 16.899776,24.636978 C 16.911455,24.632877 16.933433,24.621815 16.943659,24.615055 C 16.946872,24.612531 16.962601,24.595909 16.9656,24.593131 C 16.968121,24.58988 16.985287,24.574673 16.987542,24.571207 C 16.989515,24.567538 16.98587,24.553141 16.987542,24.549283 C 16.988898,24.545248 17.008463,24.531558 17.009484,24.527359 L 17.601909,22.071898 C 18.107706,21.935631 18.587031,21.717471 19.028118,21.458032 L 21.178401,22.883077 C 21.189571,22.890348 21.21011,22.900986 21.222285,22.905001 C 21.230534,22.906963 21.257789,22.904455 21.266168,22.905001 C 21.270357,22.904923 21.283946,22.905427 21.28811,22.905001 C 21.292227,22.904229 21.306004,22.906118 21.310051,22.905001 C 21.314007,22.903542 21.328152,22.884875 21.331993,22.883077 C 21.335697,22.880942 21.350391,22.885548 21.353934,22.883077 C 21.357296,22.880273 21.372721,22.864288 21.375876,22.861153 L 22.538785,21.699193 C 22.547029,21.689439 22.55535,21.666507 22.560727,21.655346 C 22.565134,21.643844 22.581213,21.623641 22.582668,21.611498 C 22.582821,21.607423 22.582851,21.593659 22.582668,21.589575 C 22.582148,21.585505 22.561587,21.571686 22.560727,21.567651 C 22.558323,21.559694 22.564514,21.531408 22.560727,21.523803 L 21.770826,20.230301 L 21.507527,20.296072 C 21.502865,20.297508 21.490294,20.317339 21.485585,20.317996 C 21.483246,20.31795 21.465957,20.318226 21.463643,20.317996 C 21.459169,20.316825 21.445939,20.29793 21.441702,20.296072 C 21.439741,20.294814 21.421625,20.297491 21.41976,20.296072 C 21.417999,20.294497 21.421406,20.275878 21.41976,20.274149 C 21.419761,20.274149 20.905982,19.535554 20.256851,18.586019 C 19.480515,20.103885 17.911446,21.1511 16.087934,21.1511 C 13.496755,21.1511 11.392416,19.048478 11.392416,16.459414 C 11.392415,14.554954 12.524916,12.918184 14.157067,12.18428 L 14.157067,10.978473 C 13.860019,11.082359 13.574098,11.202723 13.301342,11.351177 L 11.085233,9.904208 C 11.077799,9.899349 11.071227,9.885686 11.063291,9.882285 C 11.055172,9.879604 11.027751,9.883535 11.019408,9.882285 C 11.015214,9.882013 11.001658,9.882204 10.997466,9.882285 C 10.993299,9.882714 10.979644,9.881508 10.975525,9.882285 C 10.967427,9.884527 10.939316,9.878677 10.931641,9.882285 z"
+ id="path5692_1_" />
+ <path
+ style="opacity:0.5;color:#000000;fill:url(#radialGradient7559);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;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"
+ d="M 8.4385183,3.9401281 C 6.3380044,3.9401281 4.7362525,5.8232293 4.7362525,6.8110528 L 4.7362525,19.762236 C 4.8407544,19.762957 4.948244,19.762236 5.0529532,19.762236 C 13.826532,19.762236 21.882578,17.223715 28.172098,12.998285 L 28.172098,6.8110528 C 28.172098,5.7573745 26.262801,4.0285164 24.271894,3.9401281 L 8.596536,3.9401281 C 8.5439198,3.9401281 8.489727,3.9349628 8.4385183,3.9401281 z"
+ id="rect7548"
+ sodipodi:nodetypes="cccsccccc" />
+ <g
+ id="g7569"
+ transform="matrix(0.7021335,0,0,0.7015605,-6.3334219,0.9743578)">
+ <polygon
+ transform="matrix(0.147004,0,0,0.147004,15.76388,4.031372)"
+ points="95.6416,148.22559 95.6416,30.53027 124.22754,27.79297 123.9248,79.49414 161.63672,29.01074 192.04785,36.00391 152.81543,86.4873 191.74219,140.01465 161.94043,149.44238 123.92676,93.78662 123.92676,143.96582 95.6416,148.22559 "
+ style="fill:#ffffff;fill-opacity:1"
+ id="polygon7561" />
+ <path
+ d="M 39.845825,27.086454 L 39.482771,27.201731 C 39.429655,27.218096 39.372519,27.19843 39.340937,27.152205 C 39.340937,27.152205 38.624871,26.104233 37.700359,24.750771 C 36.594678,26.914328 34.345273,28.396418 31.748171,28.396418 C 28.057734,28.396418 25.065848,25.404676 25.065848,21.714239 C 25.065848,18.999634 26.68525,16.664884 29.009808,15.618781 L 29.009808,13.895083 C 28.586744,14.043162 28.178036,14.221461 27.789568,14.433066 C 27.788851,14.432635 27.788276,14.431989 27.787558,14.431558 L 24.639983,12.367199 C 24.555285,12.311786 24.443453,12.32327 24.371961,12.394906 L 22.722914,14.043881 C 22.653576,14.113433 22.640584,14.221462 22.691475,14.305658 L 24.622254,17.485461 C 24.279725,18.06127 24.00553,18.682086 23.809718,19.336924 L 20.264706,20.074237 C 20.166081,20.094621 20.094948,20.181978 20.094948,20.283042 L 20.094948,22.615064 C 20.094948,22.713689 20.162133,22.799105 20.2576,22.822363 L 23.697672,23.66318 C 23.881426,24.421309 24.165383,25.140532 24.541145,25.801328 L 22.55,28.838145 C 22.494443,28.922844 22.506214,29.034676 22.577848,29.106167 L 24.226536,30.755214 C 24.29609,30.824552 24.404477,30.837759 24.488459,30.786654 L 27.609689,28.891835 C 28.222107,29.245418 28.883549,29.52392 29.582028,29.712555 L 30.310295,33.21321 C 30.33068,33.312121 30.41818,33.383326 30.519172,33.383326 L 32.851268,33.383326 C 32.949174,33.383326 33.035021,33.316141 33.058277,33.220388 L 33.915748,29.711695 C 34.63612,29.517462 35.317157,29.228049 35.945366,28.858246 L 39.020371,30.874943 C 39.105214,30.930215 39.216615,30.918872 39.288537,30.847381 L 40.937441,29.198334 C 41.007211,29.12871 41.019988,29.020897 40.968878,28.936916 L 39.845825,27.086454 z"
+ style="fill:#ffffff;fill-opacity:1"
+ id="path7563" />
+ </g>
+ </g>
+</svg>
Added: trunk/theme/openSUSE/icons/scalable/apps/pattern-gnome.svg
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/scalable/ap…
==============================================================================
--- trunk/theme/openSUSE/icons/scalable/apps/pattern-gnome.svg (added)
+++ trunk/theme/openSUSE/icons/scalable/apps/pattern-gnome.svg Mon Sep 24 18:19:44 2007
@@ -0,0 +1,91 @@
+<?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#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="48"
+ height="48"
+ id="svg6237"
+ sodipodi:version="0.32"
+ inkscape:version="0.45+devel"
+ version="1.0"
+ sodipodi:docbase="/home/jimmac/gfx/novell/pdes/trunk/logos/gnome/2.0"
+ sodipodi:docname="pattern-gnome.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
+ <defs
+ id="defs6239" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#e0e0e0"
+ borderopacity="1"
+ gridtolerance="10000"
+ guidetolerance="10"
+ objecttolerance="10"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="51.928995"
+ inkscape:cy="-1.2586091"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ width="48px"
+ height="48px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:window-width="872"
+ inkscape:window-height="656"
+ inkscape:window-x="653"
+ inkscape:window-y="258">
+ <inkscape:grid
+ type="xygrid"
+ id="grid4678" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata6242">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g6230"
+ transform="matrix(0.4120516,0,0,0.4120516,65.25307,49.01954)"
+ inkscape:transform-center-x="-3.9048171"
+ inkscape:transform-center-y="1.9824457">
+ <path
+ d="M -63.883826,-115.2699 C -86.179388,-115.2699 -90.361732,-83.513994 -77.819232,-83.513994 C -65.278545,-83.513994 -41.58736,-115.2699 -63.883826,-115.2699 z"
+ id="path9"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ d="M -100.90505,-87.448931 C -94.226889,-87.041119 -86.899857,-112.93449 -99.45142,-111.30596 C -111.99845,-109.67743 -107.58592,-87.856744 -100.90505,-87.448931 z"
+ id="path11"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ d="M -131.51092,-71.359369 C -126.76126,-73.450087 -130.8992,-93.899619 -138.9757,-88.322556 C -147.04858,-82.744587 -136.26058,-69.269556 -131.51092,-71.359369 z"
+ id="path13"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ d="M -118.12833,-82.063087 C -112.47423,-83.215838 -112.16429,-106.40859 -122.24723,-102.24799 C -132.33198,-98.086494 -123.77789,-80.908525 -118.12833,-82.063087 L -118.12833,-82.063087 z"
+ id="path15"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ id="newshape"
+ d="M -88.603607,-30.161244 C -87.600388,-22.499806 -94.22417,-18.716213 -100.71111,-23.655275 C -121.36183,-39.377806 -66.519201,-47.220494 -70.134232,-68.701337 C -73.134826,-86.5309 -127.84061,-81.041744 -134.07017,-53.14465 C -138.28695,-34.274713 -116.71276,-8.09677 -94.201513,-8.09677 C -83.127138,-8.09677 -70.353545,-18.096338 -67.963763,-30.7639 C -66.138576,-40.423619 -89.440982,-36.553025 -88.603607,-30.161244 L -88.603607,-30.161244 z"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.46375012;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ </g>
+</svg>
Added: trunk/theme/openSUSE/icons/scalable/apps/pattern-kde.svg
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/openSUSE/icons/scalable/ap…
==============================================================================
--- trunk/theme/openSUSE/icons/scalable/apps/pattern-kde.svg (added)
+++ trunk/theme/openSUSE/icons/scalable/apps/pattern-kde.svg Mon Sep 24 18:19:44 2007
@@ -0,0 +1,422 @@
+<?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#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ 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"
+ inkscape:export-ydpi="90.000000"
+ inkscape:export-xdpi="90.000000"
+ inkscape:export-filename="/home/jimmac/Desktop/wi-fi.png"
+ width="48px"
+ height="48px"
+ id="svg11300"
+ sodipodi:version="0.32"
+ inkscape:version="0.45+devel"
+ sodipodi:docbase="/home/jimmac/gfx/ximian/tango-scrap"
+ sodipodi:docname="pattern-kde.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
+ <defs
+ id="defs3">
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7553">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0"
+ id="stop7555" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop7557" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4046">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop4048" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0;"
+ offset="1"
+ id="stop4050" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11520">
+ <stop
+ id="stop11522"
+ offset="0.0000000"
+ style="stop-color:#ffffff;stop-opacity:1.0000000;" />
+ <stop
+ id="stop11524"
+ offset="1.0000000"
+ style="stop-color:#dcdcdc;stop-opacity:1.0000000;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11508"
+ inkscape:collect="always">
+ <stop
+ id="stop11510"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop11512"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11494"
+ inkscape:collect="always">
+ <stop
+ id="stop11496"
+ offset="0"
+ style="stop-color:#ef2929;stop-opacity:1;" />
+ <stop
+ id="stop11498"
+ offset="1"
+ style="stop-color:#ef2929;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11415">
+ <stop
+ id="stop11417"
+ offset="0.0000000"
+ style="stop-color:#204a87;stop-opacity:0.0000000;" />
+ <stop
+ style="stop-color:#204a87;stop-opacity:1.0000000;"
+ offset="0.50000000"
+ id="stop11423" />
+ <stop
+ id="stop11419"
+ offset="1"
+ style="stop-color:#204a87;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient11399"
+ inkscape:collect="always">
+ <stop
+ id="stop11401"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1;" />
+ <stop
+ id="stop11403"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ gradientTransform="translate(-60.28571,-0.285714)"
+ y2="34.462429"
+ x2="43.615788"
+ y1="3.7744560"
+ x1="15.828360"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient11425"
+ xlink:href="#linearGradient11415"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientTransform="translate(-60.57143,0.000000)"
+ y2="39.033859"
+ x2="35.679932"
+ y1="9.3458843"
+ x1="9.6957054"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient11427"
+ xlink:href="#linearGradient11415"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="33.462429"
+ x2="26.758644"
+ y1="19.774456"
+ x1="13.267134"
+ gradientTransform="translate(-60.85714,0.428571)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient11439"
+ xlink:href="#linearGradient11415"
+ inkscape:collect="always" />
+ <radialGradient
+ r="8.5000000"
+ fy="39.142857"
+ fx="12.071428"
+ cy="39.142857"
+ cx="12.071428"
+ gradientTransform="matrix(1.000000,0.000000,0.000000,0.487395,0.000000,20.06483)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient11441"
+ xlink:href="#linearGradient11399"
+ inkscape:collect="always" />
+ <radialGradient
+ gradientTransform="matrix(1.243453,2.106784e-16,-2.106784e-16,1.243453,-6.713754,-3.742847)"
+ gradientUnits="userSpaceOnUse"
+ r="3.8335034"
+ fy="15.048258"
+ fx="27.577173"
+ cy="15.048258"
+ cx="27.577173"
+ id="radialGradient11500"
+ xlink:href="#linearGradient11494"
+ inkscape:collect="always" />
+ <radialGradient
+ r="3.8335034"
+ fy="16.049133"
+ fx="27.577173"
+ cy="16.049133"
+ cx="27.577173"
+ gradientTransform="matrix(1.243453,2.106784e-16,-2.106784e-16,1.243453,-6.713754,-3.742847)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient11504"
+ xlink:href="#linearGradient11494"
+ inkscape:collect="always" />
+ <radialGradient
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.000000,0.000000,0.000000,0.338462,2.166583e-14,29.48178)"
+ r="6.5659914"
+ fy="44.565483"
+ fx="30.203562"
+ cy="44.565483"
+ cx="30.203562"
+ id="radialGradient11514"
+ xlink:href="#linearGradient11508"
+ inkscape:collect="always" />
+ <radialGradient
+ gradientTransform="matrix(1.995058,-1.651527e-32,0.000000,1.995058,-24.32488,-35.70087)"
+ gradientUnits="userSpaceOnUse"
+ r="20.530962"
+ fy="35.878170"
+ fx="24.445690"
+ cy="35.878170"
+ cx="24.445690"
+ id="radialGradient11526"
+ xlink:href="#linearGradient11520"
+ inkscape:collect="always" />
+ <radialGradient
+ r="6.5659914"
+ fy="44.565483"
+ fx="30.203562"
+ cy="44.565483"
+ cx="30.203562"
+ gradientTransform="matrix(1.000000,0.000000,0.000000,0.338462,3.185827e-15,29.48178)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient11532"
+ xlink:href="#linearGradient11508"
+ inkscape:collect="always" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11508"
+ id="radialGradient1348"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.000000,0.000000,0.000000,0.338462,-1.353344e-14,29.48178)"
+ cx="30.203562"
+ cy="44.565483"
+ fx="30.203562"
+ fy="44.565483"
+ r="6.5659914" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11520"
+ id="radialGradient1350"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.995058,-1.651527e-32,0.000000,1.995058,-24.32488,-35.70087)"
+ cx="24.445690"
+ cy="35.878170"
+ fx="24.445690"
+ fy="35.878170"
+ r="20.530962" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11494"
+ id="radialGradient1352"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.243453,2.106784e-16,-2.106784e-16,1.243453,-6.713754,-3.742847)"
+ cx="27.577173"
+ cy="16.049133"
+ fx="27.577173"
+ fy="16.049133"
+ r="3.8335034" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11494"
+ id="radialGradient1354"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.243453,2.106784e-16,-2.106784e-16,1.243453,-6.713754,-3.742847)"
+ cx="27.577173"
+ cy="15.048258"
+ fx="27.577173"
+ fy="15.048258"
+ r="3.8335034" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11508"
+ id="radialGradient1356"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.000000,0.000000,0.000000,0.338462,2.220359e-14,29.48178)"
+ cx="30.203562"
+ cy="44.565483"
+ fx="30.203562"
+ fy="44.565483"
+ r="6.5659914" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient11520"
+ id="radialGradient1366"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.049266,-1.696401e-32,0.000000,2.049266,-25.65002,-37.31089)"
+ cx="24.445690"
+ cy="35.878170"
+ fx="24.445690"
+ fy="35.878170"
+ r="20.530962" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4046"
+ id="radialGradient4052"
+ cx="25.102291"
+ cy="39.603107"
+ fx="25.102291"
+ fy="39.603107"
+ r="16.086679"
+ gradientTransform="matrix(1.000000,0.000000,0.000000,0.379121,-6.370772e-16,24.58874)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient7553"
+ id="radialGradient7559"
+ cx="19.799839"
+ cy="10.321212"
+ fx="19.799839"
+ fy="10.321212"
+ r="18.5"
+ gradientTransform="matrix(1.955760,-1.185854e-16,1.869019e-14,1.809848,-23.41614,-10.55101)"
+ gradientUnits="userSpaceOnUse" />
+ <filter
+ inkscape:collect="always"
+ id="filter5362"
+ x="-0.077368878"
+ width="1.1547378"
+ y="-0.6349584"
+ height="2.2699168">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1.3563039"
+ id="feGaussianBlur5364" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ stroke="#3465a4"
+ fill="#729fcf"
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="0.25490196"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="47.942229"
+ inkscape:cy="-8.3654379"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:grid-bbox="true"
+ inkscape:document-units="px"
+ inkscape:showpageshadow="false"
+ inkscape:window-width="770"
+ inkscape:window-height="656"
+ inkscape:window-x="644"
+ inkscape:window-y="373"
+ gridcolor="#3f3fff"
+ gridopacity="0.10196078"
+ gridempcolor="#3f3fff"
+ gridempopacity="0.23529412" />
+ <metadata
+ id="metadata4">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Jakub Steiner</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:source>http://jimmac.musichall.cz</dc:source>
+ <cc:license
+ rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" />
+ <dc:title>KDE Logo</dc:title>
+ <dc:description>KDE Logo in Tango style. Based on the original vesrion by David Vignoni (http://www.icon-king.com)</dc:description>
+ </cc:Work>
+ <cc:License
+ rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">
+ <cc:permits
+ rdf:resource="http://web.resource.org/cc/Reproduction" />
+ <cc:permits
+ rdf:resource="http://web.resource.org/cc/Distribution" />
+ <cc:requires
+ rdf:resource="http://web.resource.org/cc/Notice" />
+ <cc:requires
+ rdf:resource="http://web.resource.org/cc/Attribution" />
+ <cc:permits
+ rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+ <cc:requires
+ rdf:resource="http://web.resource.org/cc/ShareAlike" />
+ </cc:License>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="layer1"
+ inkscape:label="Layer 1"
+ inkscape:groupmode="layer">
+ <rect
+ style="opacity:0.33132528;color:#000000;fill:#000000;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:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter5362);enable-background:accumulate"
+ id="rect4719"
+ width="42.072853"
+ height="5.126524"
+ x="3.3587573"
+ y="39.191494"
+ rx="2.563262"
+ ry="2.563262" />
+ <rect
+ style="opacity:1;color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#3465a4;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;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="rect2296"
+ width="38"
+ height="38"
+ x="5.5"
+ y="4.5"
+ rx="3.3587573"
+ ry="3.3587573" />
+ <rect
+ ry="2.5480974"
+ rx="2.5480974"
+ y="5.474359"
+ x="6.474359"
+ height="36.051285"
+ width="36.051285"
+ id="rect4927"
+ style="opacity:0.36931817;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;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" />
+ <path
+ style="opacity:0.15340911;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 26.415941,10.008732 L 21.774043,10.459065 L 21.774043,29.615556 L 26.3813,28.922735 L 26.3813,20.747452 L 32.582045,29.823402 L 37.431789,28.299197 L 31.09248,19.569657 L 37.501071,11.325091 L 32.512763,10.181937 L 26.3813,18.426503 L 26.415941,10.008732 z M 15.781145,14.685272 C 15.769027,14.690972 15.757661,14.712084 15.746504,14.719913 C 15.741219,14.724353 15.751456,14.749591 15.746504,14.754554 L 13.910529,16.555887 C 13.905725,16.560706 13.880202,16.585394 13.875888,16.590528 C 13.864428,16.606781 13.848186,16.641621 13.841247,16.65981 C 13.839444,16.666021 13.842535,16.688126 13.841247,16.694451 C 13.839708,16.707261 13.840687,16.750804 13.841247,16.763733 C 13.842057,16.770177 13.839901,16.791985 13.841247,16.798374 C 13.843131,16.804675 13.838819,16.826837 13.841247,16.833015 C 13.844221,16.839038 13.872362,16.861824 13.875888,16.867657 L 16.023632,20.401042 C 15.643933,21.039335 15.340025,21.718966 15.122965,22.444863 L 11.173887,23.241606 C 11.153389,23.245843 11.122642,23.26718 11.104605,23.276247 C 11.098914,23.279749 11.075312,23.306936 11.069964,23.310888 C 11.065376,23.315654 11.039496,23.340399 11.035323,23.345529 C 11.024123,23.361923 11.007507,23.395922 11.000682,23.414811 C 10.998941,23.421327 11.001867,23.442746 11.000682,23.449452 C 11.000078,23.456321 11.000682,23.477091 11.000682,23.484093 L 11.000682,26.082171 C 11.001253,26.088876 10.99956,26.110261 11.000682,26.116812 C 11.002333,26.123182 10.998523,26.14529 11.000682,26.151453 C 11.003328,26.157382 11.032212,26.180424 11.035323,26.186094 C 11.045994,26.202243 11.055668,26.242283 11.069964,26.255376 C 11.085343,26.267291 11.121,26.282112 11.139246,26.290017 C 11.145605,26.292153 11.167273,26.288405 11.173887,26.290017 L 14.984401,27.225325 C 15.188095,28.065722 15.503172,28.883055 15.919709,29.615556 L 13.702683,32.975736 C 13.689611,33.000076 13.671978,33.053313 13.668042,33.079659 C 13.667618,33.08628 13.667909,33.107682 13.668042,33.1143 C 13.668728,33.120879 13.666807,33.142438 13.668042,33.148941 C 13.669821,33.155333 13.700363,33.177339 13.702683,33.183582 C 13.705539,33.18964 13.699293,33.212387 13.702683,33.218223 C 13.7066,33.223802 13.732881,33.24758 13.737324,33.252864 L 15.573298,35.088839 C 15.582936,35.098446 15.597094,35.115835 15.607939,35.12348 C 15.624961,35.133457 15.65856,35.152698 15.677222,35.158121 C 15.683556,35.159414 15.705449,35.157347 15.711863,35.158121 C 15.724781,35.15862 15.76825,35.159744 15.781145,35.158121 C 15.787535,35.156773 15.809487,35.160011 15.815786,35.158121 C 15.821958,35.155686 15.844414,35.126466 15.850427,35.12348 L 19.31453,33.045018 C 19.993403,33.436971 20.722642,33.736581 21.496915,33.945685 L 22.3283,37.82548 C 22.332258,37.838683 22.322248,37.882709 22.3283,37.894762 C 22.34232,37.917581 22.377047,37.947326 22.397582,37.964045 C 22.413985,37.975264 22.447971,37.99185 22.466864,37.998686 C 22.479895,38.002174 22.522415,37.997476 22.536146,37.998686 L 25.134223,37.998686 C 25.147553,37.997543 25.190812,38.001989 25.203505,37.998686 C 25.221945,37.992205 25.256642,37.974727 25.272787,37.964045 C 25.27786,37.960058 25.302693,37.933793 25.307428,37.929404 C 25.311408,37.924268 25.338509,37.90024 25.342069,37.894762 C 25.345183,37.888965 25.339429,37.866218 25.342069,37.860121 C 25.344209,37.853745 25.375098,37.832115 25.37671,37.82548 L 26.312018,33.945685 C 27.11056,33.730375 27.867307,33.385667 28.563685,32.975736 L 31.958506,35.227403 C 31.97614,35.238892 32.008567,35.255701 32.027788,35.262044 C 32.040812,35.265144 32.083841,35.261182 32.09707,35.262044 C 32.103683,35.261921 32.125137,35.262718 32.131711,35.262044 C 32.138212,35.260824 32.159962,35.263809 32.166352,35.262044 C 32.172598,35.25974 32.194929,35.230244 32.200993,35.227403 C 32.206841,35.224029 32.23004,35.231307 32.235634,35.227403 C 32.240941,35.222972 32.265293,35.197715 32.270275,35.192762 L 34.10625,33.356787 C 34.119265,33.341375 34.132402,33.30514 34.140891,33.287505 C 34.147849,33.269332 34.173234,33.237409 34.175532,33.218223 C 34.175773,33.211783 34.17582,33.190035 34.175532,33.183582 C 34.174711,33.177152 34.142249,33.155316 34.140891,33.148941 C 34.137096,33.136368 34.14687,33.091675 34.140891,33.079659 L 32.893814,31.035838 L 32.478122,31.139761 C 32.470762,31.142029 32.450915,31.173363 32.443481,31.174402 C 32.439789,31.174329 32.412493,31.174765 32.40884,31.174402 C 32.401776,31.172552 32.380888,31.142696 32.374199,31.139761 C 32.371104,31.137773 32.342503,31.142003 32.339558,31.139761 C 32.336777,31.137272 32.342156,31.107853 32.339558,31.10512 C 32.339559,31.10512 31.528416,29.938091 30.503583,28.437761 C 29.277921,30.836092 26.800708,32.490762 23.921787,32.490762 C 19.830891,32.490762 16.508606,29.168478 16.508606,25.077581 C 16.508605,22.068406 18.296573,19.482199 20.873376,18.32258 L 20.873376,16.417323 C 20.404403,16.581471 19.952998,16.771654 19.522376,17.006221 L 16.023632,14.719913 C 16.011896,14.712234 16.00152,14.690647 15.988991,14.685272 C 15.976173,14.681037 15.932881,14.687248 15.919709,14.685272 C 15.913088,14.684843 15.891686,14.685145 15.885068,14.685272 C 15.878489,14.68595 15.85693,14.684044 15.850427,14.685272 C 15.837643,14.688815 15.793262,14.679572 15.781145,14.685272 z "
+ id="path5692_1_" />
+ <path
+ style="opacity:0.5;color:#000000;fill:url(#radialGradient7559);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;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"
+ d="M 8.6875,5 C 7.1684266,5.153349 6,6.439172 6,8 L 6,30 C 6.1649853,30.00114 6.3346875,30 6.5,30 C 20.351534,30 33.070243,25.988965 43,19.3125 L 43,8 C 43,6.335117 41.664882,5 40,5 L 9,5 C 8.8959448,5 8.7887716,4.9897767 8.6875,5 z "
+ id="rect7548" />
+ <g
+ id="g7569"
+ transform="matrix(1.108513,0.000000,0.000000,1.108513,-11.47656,0.610145)">
+ <polygon
+ transform="matrix(0.147004,0.000000,0.000000,0.147004,15.76388,4.031372)"
+ points="95.6416,148.22559 95.6416,30.53027 124.22754,27.79297 123.9248,79.49414 161.63672,29.01074 192.04785,36.00391 152.81543,86.4873 191.74219,140.01465 161.94043,149.44238 123.92676,93.78662 123.92676,143.96582 95.6416,148.22559 "
+ style="fill:#ffffff;fill-opacity:1"
+ id="polygon7561" />
+ <path
+ d="M 39.845825,27.086454 L 39.482771,27.201731 C 39.429655,27.218096 39.372519,27.19843 39.340937,27.152205 C 39.340937,27.152205 38.624871,26.104233 37.700359,24.750771 C 36.594678,26.914328 34.345273,28.396418 31.748171,28.396418 C 28.057734,28.396418 25.065848,25.404676 25.065848,21.714239 C 25.065848,18.999634 26.68525,16.664884 29.009808,15.618781 L 29.009808,13.895083 C 28.586744,14.043162 28.178036,14.221461 27.789568,14.433066 C 27.788851,14.432635 27.788276,14.431989 27.787558,14.431558 L 24.639983,12.367199 C 24.555285,12.311786 24.443453,12.32327 24.371961,12.394906 L 22.722914,14.043881 C 22.653576,14.113433 22.640584,14.221462 22.691475,14.305658 L 24.622254,17.485461 C 24.279725,18.06127 24.00553,18.682086 23.809718,19.336924 L 20.264706,20.074237 C 20.166081,20.094621 20.094948,20.181978 20.094948,20.283042 L 20.094948,22.615064 C 20.094948,22.713689 20.162133,22.799105 20.2576,22.822363 L 23.697672,23.66318 C 23.881426,24.421309 24.165383,25.140532 24.541145,25.801328 L 22.55,28.838145 C 22.494443,28.922844 22.506214,29.034676 22.577848,29.106167 L 24.226536,30.755214 C 24.29609,30.824552 24.404477,30.837759 24.488459,30.786654 L 27.609689,28.891835 C 28.222107,29.245418 28.883549,29.52392 29.582028,29.712555 L 30.310295,33.21321 C 30.33068,33.312121 30.41818,33.383326 30.519172,33.383326 L 32.851268,33.383326 C 32.949174,33.383326 33.035021,33.316141 33.058277,33.220388 L 33.915748,29.711695 C 34.63612,29.517462 35.317157,29.228049 35.945366,28.858246 L 39.020371,30.874943 C 39.105214,30.930215 39.216615,30.918872 39.288537,30.847381 L 40.937441,29.198334 C 41.007211,29.12871 41.019988,29.020897 40.968878,28.936916 L 39.845825,27.086454 z "
+ style="fill:#ffffff;fill-opacity:1"
+ id="path7563" />
+ </g>
+ </g>
+</svg>
Modified: trunk/theme/package/yast2-theme.changes
URL: http://svn.opensuse.org/viewcvs/yast/trunk/theme/package/yast2-theme.change…
==============================================================================
--- trunk/theme/package/yast2-theme.changes (original)
+++ trunk/theme/package/yast2-theme.changes Mon Sep 24 18:19:44 2007
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Mon Sep 24 18:14:24 CEST 2007 - tgoettlicher(a)suse.de
+
+- Added pattern icons (#216557)
+- V 2.15.14
+
+-------------------------------------------------------------------
Mon Sep 3 15:55:04 CEST 2007 - sh(a)suse.de
- Added animations in GIF format, too so even yast2-gtk can play them
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
[yast-commit] r41059 - in /branches/tmp/sh/mod-ui: core/libyui/src/ ncurses/src/ ncurses/src/pkg/ qt/src/
by sh-sh-sh@svn.opensuse.org 24 Sep '07
by sh-sh-sh@svn.opensuse.org 24 Sep '07
24 Sep '07
Author: sh-sh-sh
Date: Mon Sep 24 18:11:01 2007
New Revision: 41059
URL: http://svn.opensuse.org/viewcvs/yast?rev=41059&view=rev
Log:
moved YTreeItem out
Added:
branches/tmp/sh/mod-ui/core/libyui/src/YTreeItem.cc
branches/tmp/sh/mod-ui/core/libyui/src/YTreeItem.h
Modified:
branches/tmp/sh/mod-ui/core/libyui/src/Makefile.am
branches/tmp/sh/mod-ui/core/libyui/src/YCPTreeItem.h
branches/tmp/sh/mod-ui/core/libyui/src/YItem.cc
branches/tmp/sh/mod-ui/core/libyui/src/YItem.h
branches/tmp/sh/mod-ui/core/libyui/src/YTree.cc
branches/tmp/sh/mod-ui/ncurses/src/NCTree.cc
branches/tmp/sh/mod-ui/ncurses/src/pkg/NCPkgPopupTree.cc
branches/tmp/sh/mod-ui/qt/src/YQTree.cc
Modified: branches/tmp/sh/mod-ui/core/libyui/src/Makefile.am
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/core/libyui/src…
==============================================================================
--- branches/tmp/sh/mod-ui/core/libyui/src/Makefile.am (original)
+++ branches/tmp/sh/mod-ui/core/libyui/src/Makefile.am Mon Sep 24 18:11:01 2007
@@ -19,6 +19,7 @@
YCPPropertyHandler.cc \
YCPValueWidgetID.cc \
YItem.cc \
+ YTreeItem.cc \
YProperty.cc \
YUIComponent.cc \
YUIException.cc \
@@ -98,6 +99,7 @@
YCP_UI_Exception.h \
YChildrenManager.h \
YItem.h \
+ YTreeItem.h \
YOptionalWidgetFactory.h \
YPackageSelectorPlugin.h \
YProperty.h \
Modified: branches/tmp/sh/mod-ui/core/libyui/src/YCPTreeItem.h
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/core/libyui/src…
==============================================================================
--- branches/tmp/sh/mod-ui/core/libyui/src/YCPTreeItem.h (original)
+++ branches/tmp/sh/mod-ui/core/libyui/src/YCPTreeItem.h Mon Sep 24 18:11:01 2007
@@ -21,7 +21,7 @@
#include <ycp/YCPValue.h>
#include <ycp/YCPString.h>
-#include "YItem.h"
+#include "YTreeItem.h"
/**
Modified: branches/tmp/sh/mod-ui/core/libyui/src/YItem.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/core/libyui/src…
==============================================================================
--- branches/tmp/sh/mod-ui/core/libyui/src/YItem.cc (original)
+++ branches/tmp/sh/mod-ui/core/libyui/src/YItem.cc Mon Sep 24 18:11:01 2007
@@ -26,79 +26,3 @@
**/
YItemCollection YItem::_noChildren;
-
-
-
-YTreeItem::YTreeItem( const string & label,
- bool isOpen )
- : YItem( label )
- , _parent( 0 )
- , _isOpen( isOpen )
- , _data( 0 )
-{
-}
-
-
-YTreeItem::YTreeItem( const string & label,
- const string & iconName,
- bool isOpen )
- : YItem( label, iconName )
- , _parent( 0 )
- , _isOpen( isOpen )
- , _data( 0 )
-{
-}
-
-
-YTreeItem::YTreeItem( YTreeItem * parent,
- const string & label,
- bool isOpen )
- : YItem( label )
- , _parent( parent )
- , _isOpen( isOpen )
- , _data( 0 )
-{
- if ( parent )
- parent->addChild( this );
-}
-
-
-YTreeItem::YTreeItem( YTreeItem * parent,
- const string & label,
- const string & iconName,
- bool isOpen )
- : YItem( label, iconName )
- , _parent( parent )
- , _isOpen( isOpen )
- , _data( 0 )
-{
- if ( parent )
- parent->addChild( this );
-}
-
-
-YTreeItem::~YTreeItem()
-{
- deleteChildren();
-}
-
-
-void YTreeItem::addChild( YItem * child )
-{
- _children.push_back( child );
-}
-
-
-void YTreeItem::deleteChildren()
-{
- YItemIterator it = childrenBegin();
-
- while ( it != childrenEnd() )
- {
- YItem * child = *it;
- ++it;
- delete child;
- }
-
- _children.clear();
-}
Modified: branches/tmp/sh/mod-ui/core/libyui/src/YItem.h
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/core/libyui/src…
==============================================================================
--- branches/tmp/sh/mod-ui/core/libyui/src/YItem.h (original)
+++ branches/tmp/sh/mod-ui/core/libyui/src/YItem.h Mon Sep 24 18:11:01 2007
@@ -174,131 +174,5 @@
};
-/**
- * Item class for tree items.
- *
- * This class implements children management.
- **/
-class YTreeItem: public YItem
-{
-public:
- /**
- * Constructors for toplevel items.
- **/
- YTreeItem( const string & label,
- bool isOpen );
-
- YTreeItem( const string & label,
- const string & iconName,
- bool isOpen );
-
- /**
- * Constructors for items that have a parent item.
- *
- * They will automatically register this item with the parent item. The
- * parent assumes ownership of this item and will delete it in its (the
- * parent's) destructor.
- **/
- YTreeItem( YTreeItem * parent,
- const string & label,
- bool isOpen );
-
- YTreeItem( YTreeItem * parent,
- const string & label,
- const string & iconName,
- bool isOpen );
-
- /**
- * Destructor.
- *
- * This will delete all children.
- **/
- virtual ~YTreeItem();
-
- /**
- * Return 'true' if this item has any child items.
- *
- * Reimplemented from YItem.
- **/
- virtual bool hasChildren() const { return ! _children.empty(); }
-
- /**
- * Return an iterator that points to the first child item of this item.
- *
- * Reimplemented from YItem.
- **/
- virtual YItemIterator childrenBegin() { return _children.begin(); }
- virtual YItemConstIterator childrenBegin() const { return _children.begin(); }
-
- /**
- * Return an iterator that points after the last child item of this item.
- *
- * Reimplemented from YItem.
- **/
- virtual YItemIterator childrenEnd() { return _children.end(); }
- virtual YItemConstIterator childrenEnd() const { return _children.end(); }
-
- /**
- * Add a child item to this item.
- *
- * Note that the constructors that accept a parent pointer will
- * automatically add themselves to their parent, so applications will
- * normally not have to call this function.
- **/
- virtual void addChild( YItem * child );
-
- /**
- * Delete all child items.
- **/
- virtual void deleteChildren();
-
- /**
- * Return 'true' if this tree item should be displayed open (with its
- * children visible) by default.
- **/
- bool isOpen() const { return _isOpen; }
-
- /**
- * Change the 'isOpen' flag.
- **/
- void setOpen( bool open ) { _isOpen = open; }
-
- /**
- * Returns this item's parent item or 0 if it is a toplevel item.
- **/
- YTreeItem * parent() const { return _parent; }
-
- /**
- * Set the opaque data pointer for application use.
- *
- * Applications can use this to store the pointer to a counterpart of this
- * tree item. It is the application's responsibility to watch for dangling
- * pointers and possibliy deleting the data. All this class ever does with
- * this pointer is to store it.
- **/
- void setData( void * newData ) { _data = newData; }
-
- /**
- * Return the opaque data pointer.
- **/
- void * data() const { return _data; }
-
-private:
-
- YTreeItem * _parent;
- YItemCollection _children;
- bool _isOpen;
- void * _data;
-};
-
-
-typedef vector<YTreeItem *> YTreeItemCollection;
-typedef YTreeItemCollection::iterator YTreeItemIterator;
-typedef YTreeItemCollection::const_iterator YTreeItemConstIterator;
-
-typedef vector<const YTreeItem *> YConstTreeItemCollection;
-typedef YConstTreeItemCollection::iterator YConstTreeItemIterator;
-typedef YConstTreeItemCollection::const_iterator YConstTreeItemConstIterator;
-
#endif // YItem_h
Modified: branches/tmp/sh/mod-ui/core/libyui/src/YTree.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/core/libyui/src…
==============================================================================
--- branches/tmp/sh/mod-ui/core/libyui/src/YTree.cc (original)
+++ branches/tmp/sh/mod-ui/core/libyui/src/YTree.cc Mon Sep 24 18:11:01 2007
@@ -24,7 +24,7 @@
#include "YSelectionWidget.h"
#include "YMacroRecorder.h"
#include "YTree.h"
-#include "YItem.h"
+#include "YTreeItem.h"
struct YTreePrivate
{
Added: branches/tmp/sh/mod-ui/core/libyui/src/YTreeItem.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/core/libyui/src…
==============================================================================
--- branches/tmp/sh/mod-ui/core/libyui/src/YTreeItem.cc (added)
+++ branches/tmp/sh/mod-ui/core/libyui/src/YTreeItem.cc Mon Sep 24 18:11:01 2007
@@ -0,0 +1,94 @@
+/*---------------------------------------------------------------------\
+| |
+| __ __ ____ _____ ____ |
+| \ \ / /_ _/ ___|_ _|___ \ |
+| \ V / _` \___ \ | | __) | |
+| | | (_| |___) || | / __/ |
+| |_|\__,_|____/ |_| |_____| |
+| |
+| core system |
+| (C) SuSE GmbH |
+\----------------------------------------------------------------------/
+
+ File: YTreeItem.cc
+
+ Author: Stefan Hundhammer <sh(a)suse.de>
+
+/-*/
+
+#include "YTreeItem.h"
+
+
+YTreeItem::YTreeItem( const string & label,
+ bool isOpen )
+ : YItem( label )
+ , _parent( 0 )
+ , _isOpen( isOpen )
+ , _data( 0 )
+{
+}
+
+
+YTreeItem::YTreeItem( const string & label,
+ const string & iconName,
+ bool isOpen )
+ : YItem( label, iconName )
+ , _parent( 0 )
+ , _isOpen( isOpen )
+ , _data( 0 )
+{
+}
+
+
+YTreeItem::YTreeItem( YTreeItem * parent,
+ const string & label,
+ bool isOpen )
+ : YItem( label )
+ , _parent( parent )
+ , _isOpen( isOpen )
+ , _data( 0 )
+{
+ if ( parent )
+ parent->addChild( this );
+}
+
+
+YTreeItem::YTreeItem( YTreeItem * parent,
+ const string & label,
+ const string & iconName,
+ bool isOpen )
+ : YItem( label, iconName )
+ , _parent( parent )
+ , _isOpen( isOpen )
+ , _data( 0 )
+{
+ if ( parent )
+ parent->addChild( this );
+}
+
+
+YTreeItem::~YTreeItem()
+{
+ deleteChildren();
+}
+
+
+void YTreeItem::addChild( YItem * child )
+{
+ _children.push_back( child );
+}
+
+
+void YTreeItem::deleteChildren()
+{
+ YItemIterator it = childrenBegin();
+
+ while ( it != childrenEnd() )
+ {
+ YItem * child = *it;
+ ++it;
+ delete child;
+ }
+
+ _children.clear();
+}
Added: branches/tmp/sh/mod-ui/core/libyui/src/YTreeItem.h
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/core/libyui/src…
==============================================================================
--- branches/tmp/sh/mod-ui/core/libyui/src/YTreeItem.h (added)
+++ branches/tmp/sh/mod-ui/core/libyui/src/YTreeItem.h Mon Sep 24 18:11:01 2007
@@ -0,0 +1,152 @@
+/*---------------------------------------------------------------------\
+| |
+| __ __ ____ _____ ____ |
+| \ \ / /_ _/ ___|_ _|___ \ |
+| \ V / _` \___ \ | | __) | |
+| | | (_| |___) || | / __/ |
+| |_|\__,_|____/ |_| |_____| |
+| |
+| core system |
+| (C) SuSE GmbH |
+\----------------------------------------------------------------------/
+
+ File: YTreeItem.h
+
+ Author: Stefan Hundhammer <sh(a)suse.de>
+
+/-*/
+
+#ifndef YTreeItem_h
+#define YTreeItem_h
+
+#include "YItem.h"
+
+
+/**
+ * Item class for tree items.
+ *
+ * This class implements children management.
+ **/
+class YTreeItem: public YItem
+{
+public:
+ /**
+ * Constructors for toplevel items.
+ **/
+ YTreeItem( const string & label,
+ bool isOpen );
+
+ YTreeItem( const string & label,
+ const string & iconName,
+ bool isOpen );
+
+ /**
+ * Constructors for items that have a parent item.
+ *
+ * They will automatically register this item with the parent item. The
+ * parent assumes ownership of this item and will delete it in its (the
+ * parent's) destructor.
+ **/
+ YTreeItem( YTreeItem * parent,
+ const string & label,
+ bool isOpen );
+
+ YTreeItem( YTreeItem * parent,
+ const string & label,
+ const string & iconName,
+ bool isOpen );
+
+ /**
+ * Destructor.
+ *
+ * This will delete all children.
+ **/
+ virtual ~YTreeItem();
+
+ /**
+ * Return 'true' if this item has any child items.
+ *
+ * Reimplemented from YItem.
+ **/
+ virtual bool hasChildren() const { return ! _children.empty(); }
+
+ /**
+ * Return an iterator that points to the first child item of this item.
+ *
+ * Reimplemented from YItem.
+ **/
+ virtual YItemIterator childrenBegin() { return _children.begin(); }
+ virtual YItemConstIterator childrenBegin() const { return _children.begin(); }
+
+ /**
+ * Return an iterator that points after the last child item of this item.
+ *
+ * Reimplemented from YItem.
+ **/
+ virtual YItemIterator childrenEnd() { return _children.end(); }
+ virtual YItemConstIterator childrenEnd() const { return _children.end(); }
+
+ /**
+ * Add a child item to this item.
+ *
+ * Note that the constructors that accept a parent pointer will
+ * automatically add themselves to their parent, so applications will
+ * normally not have to call this function.
+ **/
+ virtual void addChild( YItem * child );
+
+ /**
+ * Delete all child items.
+ **/
+ virtual void deleteChildren();
+
+ /**
+ * Return 'true' if this tree item should be displayed open (with its
+ * children visible) by default.
+ **/
+ bool isOpen() const { return _isOpen; }
+
+ /**
+ * Change the 'isOpen' flag.
+ **/
+ void setOpen( bool open ) { _isOpen = open; }
+
+ /**
+ * Returns this item's parent item or 0 if it is a toplevel item.
+ **/
+ YTreeItem * parent() const { return _parent; }
+
+ /**
+ * Set the opaque data pointer for application use.
+ *
+ * Applications can use this to store the pointer to a counterpart of this
+ * tree item. It is the application's responsibility to watch for dangling
+ * pointers and possibliy deleting the data. All this class ever does with
+ * this pointer is to store it.
+ **/
+ void setData( void * newData ) { _data = newData; }
+
+ /**
+ * Return the opaque data pointer.
+ **/
+ void * data() const { return _data; }
+
+private:
+
+ YTreeItem * _parent;
+ YItemCollection _children;
+ bool _isOpen;
+ void * _data;
+};
+
+
+typedef vector<YTreeItem *> YTreeItemCollection;
+typedef YTreeItemCollection::iterator YTreeItemIterator;
+typedef YTreeItemCollection::const_iterator YTreeItemConstIterator;
+
+typedef vector<const YTreeItem *> YConstTreeItemCollection;
+typedef YConstTreeItemCollection::iterator YConstTreeItemIterator;
+typedef YConstTreeItemCollection::const_iterator YConstTreeItemConstIterator;
+
+
+#endif // YTreeItem_h
Modified: branches/tmp/sh/mod-ui/ncurses/src/NCTree.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/ncurses/src/NCT…
==============================================================================
--- branches/tmp/sh/mod-ui/ncurses/src/NCTree.cc (original)
+++ branches/tmp/sh/mod-ui/ncurses/src/NCTree.cc Mon Sep 24 18:11:01 2007
@@ -19,7 +19,7 @@
#include "Y2Log.h"
#include "NCTree.h"
-#include "YItem.h"
+#include "YTreeItem.h"
#include "YSelectionWidget.h"
Modified: branches/tmp/sh/mod-ui/ncurses/src/pkg/NCPkgPopupTree.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/ncurses/src/pkg…
==============================================================================
--- branches/tmp/sh/mod-ui/ncurses/src/pkg/NCPkgPopupTree.cc (original)
+++ branches/tmp/sh/mod-ui/ncurses/src/pkg/NCPkgPopupTree.cc Mon Sep 24 18:11:01 2007
@@ -22,6 +22,7 @@
#include "NCTree.h"
#include "YMenuButton.h"
#include "YDialog.h"
+#include "YTreeItem.h"
#include "NCLayoutBox.h"
#include "NCPkgNames.h"
#include "NCPackageSelector.h"
Modified: branches/tmp/sh/mod-ui/qt/src/YQTree.cc
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQTree.c…
==============================================================================
--- branches/tmp/sh/mod-ui/qt/src/YQTree.cc (original)
+++ branches/tmp/sh/mod-ui/qt/src/YQTree.cc Mon Sep 24 18:11:01 2007
@@ -32,7 +32,7 @@
#include "YEvent.h"
#include "utf8.h"
#include "YQTree.h"
-#include "YItem.h"
+#include "YTreeItem.h"
#include "YQSignalBlocker.h"
#include "YQWidgetCaption.h"
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0
24 Sep '07
Author: lslezak
Date: Mon Sep 24 17:45:56 2007
New Revision: 41058
URL: http://svn.opensuse.org/viewcvs/yast?rev=41058&view=rev
Log:
Created tag stable-2_15_51 for pkg-bindings
Added:
tags/stable-2_15_51/pkg-bindings/
- copied from r41057, trunk/pkg-bindings/
--
To unsubscribe, e-mail: yast-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: yast-commit+help(a)opensuse.org
1
0