<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.inkscape.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Axiom</id>
	<title>Inkscape Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.inkscape.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Axiom"/>
	<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/Special:Contributions/Axiom"/>
	<updated>2026-04-17T10:57:06Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.36.1</generator>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=DocumentLayers&amp;diff=14417</id>
		<title>DocumentLayers</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=DocumentLayers&amp;diff=14417"/>
		<updated>2007-04-25T20:04:58Z</updated>

		<summary type="html">&lt;p&gt;Axiom: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We've got the most important part of layers implemented now; a group can be turned into a layer by setting its inkscape:groupmode attribute to &amp;quot;layer&amp;quot; (it defaults to &amp;quot;group&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
For now, all this does is permit the objects in a group to be directly selected, rather than selecting the group itself (i.e. by clicking or rubber-banding).  To fulfill all the expectations for layers, there are still some things we need to take into account:&lt;br /&gt;
&lt;br /&gt;
* There needs to be a notion of a &amp;quot;current layer&amp;quot;, where e.g. the drawing tools and paste operate.&lt;br /&gt;
&lt;br /&gt;
** At present, this &amp;quot;current layer&amp;quot; is always the root SVG element.&lt;br /&gt;
&lt;br /&gt;
** The current layer should probably be determined by the most recent object selected -- the object's first layer ancestor (or the object itself, if it is a layer) becomes the current layer until another object is selected.  Deselection should probably not alter the current layer.&lt;br /&gt;
&lt;br /&gt;
** We need to handle the case where the current layer is removed from the document (either directly, or because one of its ancestors was removed) or stops being a layer (due to an inkscape:groupmode change).&lt;br /&gt;
&lt;br /&gt;
** To find a new layer to become the current, we need to walk up the (pre-removal) hierarchy to find a layer, as if the parent of the removed/unlayered object had been selected.&lt;br /&gt;
&lt;br /&gt;
* We need a layer dialog -- an [[ObjectTree]] window (operating on SVG objects) similar to the [[XMLEditor]] (which operates on XML nodes) should fulfill this requirement.&lt;br /&gt;
&lt;br /&gt;
** What behavior should result from selecting a layer in the [[ObjectTree]] or [[XMLEditor]]?  Should that actually select all of the layer's children, or should the layer (temporarily) behave like a group in terms of dragging/rotation/whatever?&lt;br /&gt;
&lt;br /&gt;
:::I personally lean towards the latter, though I think the former is what many apps with layers do.  I think it depends on how much we think layers should break with their fundamental group-nature. -- [[MenTaLguY]]&lt;br /&gt;
&lt;br /&gt;
:::The main venefit from layers is being able to toggle visibility and editability of a layer. That's what layer palettes in most apps focus on, and what we must provide. As for selecting all objects within a layer, that may be useful too, but is of secondary importance IMHO. --bb&lt;br /&gt;
&lt;br /&gt;
** Similarly, if a group's descendents are directly selected, should that group temporarily behave like a layer? Yes, options and dragging/copying should feel the same as if they were layers. Also de [[ObjectTree]] should reflect each action inmediatly.&lt;br /&gt;
&lt;br /&gt;
*The schema should be something like this:&lt;br /&gt;
[[MasterDocument]]&lt;br /&gt;
	Document&lt;br /&gt;
		Layers&lt;br /&gt;
			Page&lt;br /&gt;
				[[RightPage]]&lt;br /&gt;
				[[LeftPage]]&lt;br /&gt;
					Groups&lt;br /&gt;
						Objects&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
From another point of view we can reflect the schema like this:&lt;br /&gt;
	[[ObjectProperties]]&lt;br /&gt;
	[[LocalProperties]] (shape, color, etc)&lt;br /&gt;
	[[GroupProperties]] (Group/s the Object belongs to)&lt;br /&gt;
	[[LayerProperties]]&lt;br /&gt;
	[[PageProperties]]&lt;br /&gt;
	[[DocumentProperties]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Styles, in both views are floating above everything as a [[PropertiesGroup]] that affects the Elements the user decide to assign to that Style. The mechanism could be as simple as CSS.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
Adobe seems to export their layers as simple groups with id's&lt;br /&gt;
&lt;br /&gt;
[http://support.adobe.com/devsup/devsup.nsf/docs/50557.htm Adobe Developer Knowledgebase document #50557]&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
One of the nice things about illustrator is that it automaticly creates sublayers&lt;br /&gt;
&lt;br /&gt;
http://www.scripting.com/images/illustrator9layers.gif&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--Three Cheers for Sublayers! --&amp;gt;&lt;br /&gt;
-----&lt;br /&gt;
When a new layer is created, Inkscape demands that I create a name for it.  Most of the time, I don't care what it will be called.  Suggesting names such as &amp;quot;layer 1&amp;quot;, &amp;quot;layer 2&amp;quot;, etc, would really be helpful, and you could still type in  descriptive name if you were so inclined. [[User:Axiom|Axiom]] 19:47, 21 September 2006 (UTC)&lt;br /&gt;
:I see now that is does work this way, sort of, but is not inherently obvious.&lt;br /&gt;
&lt;br /&gt;
:How it should work (my thoughts): Click new layer button&amp;gt;Dialog comes up, the default name (layer2) is already in the input box and highlight.  Since it is highlighted, if you start typing a layername, it will overwrite the default name with whatever you type, else you can just hit enter.&lt;br /&gt;
&lt;br /&gt;
:How it should work, even better: You click the new layer button and it immediatly creates a new layer with the default name (layer3) and you can start drawing on it.  If you want to change the layer name you can always click on that layer in the layers dialog. [[User:Axiom|Axiom]] 14:23, 5 October 2006 (UTC)&lt;/div&gt;</summary>
		<author><name>Axiom</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=User:Axiom&amp;diff=12416</id>
		<title>User:Axiom</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=User:Axiom&amp;diff=12416"/>
		<updated>2007-01-08T17:30:03Z</updated>

		<summary type="html">&lt;p&gt;Axiom: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I am a web and graphic designer.  I run Linux at home, but windows at work, for there must be Photoshop.&lt;br /&gt;
&lt;br /&gt;
I have pretty much replaced Illustrator with Inkscape.  I like the way it feels you are drawing, and hope that they keep the whole usability mantra going.&lt;/div&gt;</summary>
		<author><name>Axiom</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=DocumentLayers&amp;diff=8466</id>
		<title>DocumentLayers</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=DocumentLayers&amp;diff=8466"/>
		<updated>2006-10-05T14:23:22Z</updated>

		<summary type="html">&lt;p&gt;Axiom: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We've got the most important part of layers implemented now; a group can be turned into a layer by setting its inkscape:groupmode attribute to &amp;quot;layer&amp;quot; (it defaults to &amp;quot;group&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
For now, all this does is permit the objects in a group to be directly selected, rather than selecting the group itself (i.e. by clicking or rubber-banding).  To fulfill all the expectations for layers, there are still some things we need to take into account:&lt;br /&gt;
&lt;br /&gt;
* There needs to be a notion of a &amp;quot;current layer&amp;quot;, where e.g. the drawing tools and paste operate.&lt;br /&gt;
&lt;br /&gt;
** At present, this &amp;quot;current layer&amp;quot; is always the root SVG element.&lt;br /&gt;
&lt;br /&gt;
** The current layer should probably be determined by the most recent object selected -- the object's first layer ancestor (or the object itself, if it is a layer) becomes the current layer until another object is selected.  Deselection should probably not alter the current layer.&lt;br /&gt;
&lt;br /&gt;
** We need to handle the case where the current layer is removed from the document (either directly, or because one of its ancestors was removed) or stops being a layer (due to an inkscape:groupmode change).&lt;br /&gt;
&lt;br /&gt;
** To find a new layer to become the current, we need to walk up the (pre-removal) hierarchy to find a layer, as if the parent of the removed/unlayered object had been selected.&lt;br /&gt;
&lt;br /&gt;
* We need a layer dialog -- an [[ObjectTree]] window (operating on SVG objects) similar to the [[XMLEditor]] (which operates on XML nodes) should fulfill this requirement.&lt;br /&gt;
&lt;br /&gt;
** What behavior should result from selecting a layer in the [[ObjectTree]] or [[XMLEditor]]?  Should that actually select all of the layer's children, or should the layer (temporarily) behave like a group in terms of dragging/rotation/whatever?&lt;br /&gt;
&lt;br /&gt;
:::I personally lean towards the latter, though I think the former is what many apps with layers do.  I think it depends on how much we think layers should break with their fundamental group-nature. -- [[MenTaLguY]]&lt;br /&gt;
&lt;br /&gt;
:::The main venefit from layers is being able to toggle visibility and editability of a layer. That's what layer palettes in most apps focus on, and what we must provide. As for selecting all objects within a layer, that may be useful too, but is of secondary importance IMHO. --bb&lt;br /&gt;
&lt;br /&gt;
** Similarly, if a group's descendents are directly selected, should that group temporarily behave like a layer? Yes, options and dragging/copying should feel the same as if they were layers. Also de [[ObjectTree]] should reflect each action inmediatly.&lt;br /&gt;
&lt;br /&gt;
*The schema should be something like this:&lt;br /&gt;
[[MasterDocument]]&lt;br /&gt;
	Document&lt;br /&gt;
		Layers&lt;br /&gt;
			Page&lt;br /&gt;
				[[RightPage]]&lt;br /&gt;
				[[LeftPage]]&lt;br /&gt;
					Groups&lt;br /&gt;
						Objects&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
From another point of view we can reflect the schema like this:&lt;br /&gt;
	[[ObjectProperties]]&lt;br /&gt;
	[[LocalProperties]] (shape, color, etc)&lt;br /&gt;
	[[GroupProperties]] (Group/s the Object belongs to)&lt;br /&gt;
	[[LayerProperties]]&lt;br /&gt;
	[[PageProperties]]&lt;br /&gt;
	[[DocumentProperties]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Styles, in both views are floating above everything as a [[PropertiesGroup]] that affects the Elements the user decide to assign to that Style. The mechanism could be as simple as CSS.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
Adobe seems to export their layers as simple groups with id's&lt;br /&gt;
&lt;br /&gt;
[http://support.adobe.com/devsup/devsup.nsf/docs/50557.htm Adobe Developer Knowledgebase document #50557]&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
One of the nice things about illustrator is that it automaticly creates sublayers&lt;br /&gt;
&lt;br /&gt;
http://www.scripting.com/images/illustrator9layers.gif&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
When a new layer is created, Inkscape demands that I create a name for it.  Most of the time, I don't care what it will be called.  Suggesting names such as &amp;quot;layer 1&amp;quot;, &amp;quot;layer 2&amp;quot;, etc, would really be helpful, and you could still type in  descriptive name if you were so inclined. [[User:Axiom|Axiom]] 19:47, 21 September 2006 (UTC)&lt;br /&gt;
:I see now that is does work this way, sort of, but is not inherently obvious.&lt;br /&gt;
&lt;br /&gt;
:How it should work (my thoughts): Click new layer button&amp;gt;Dialog comes up, the default name (layer2) is already in the inpuyt box and highlight.  Since it is highlighted, if you start typing a layername, it will overwrite the default name with whatever you type, else you can just hit enter.&lt;br /&gt;
&lt;br /&gt;
:How it should work, even better: You click the new layer button and it immediatly creates a new layer with the default name (layer3) and you can start drawing on it.  If you want to change the layer name you can always click on that layer in the layers dialog. [[User:Axiom|Axiom]] 14:23, 5 October 2006 (UTC)&lt;/div&gt;</summary>
		<author><name>Axiom</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=User:Axiom&amp;diff=8452</id>
		<title>User:Axiom</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=User:Axiom&amp;diff=8452"/>
		<updated>2006-10-04T14:56:55Z</updated>

		<summary type="html">&lt;p&gt;Axiom: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I am a web and graphic designer.  I run Linux at home, but windows at work, for there must be Photoshop.&lt;br /&gt;
&lt;br /&gt;
I have pretty much replaced illustrator with inkscape.  I like the way it feels you are drawing, and hope that they keep the whole usibilty mantra going.&lt;/div&gt;</summary>
		<author><name>Axiom</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Talk:Filter_Effects&amp;diff=8352</id>
		<title>Talk:Filter Effects</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Talk:Filter_Effects&amp;diff=8352"/>
		<updated>2006-09-22T19:29:55Z</updated>

		<summary type="html">&lt;p&gt;Axiom: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sounds like fun.  I couldn't figure out how to do this from the description though.  Hope someone adds  a gui for the next version.  --[[User:Axiom|Axiom]] 19:29, 22 September 2006 (UTC)&lt;/div&gt;</summary>
		<author><name>Axiom</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=DocumentLayers&amp;diff=8346</id>
		<title>DocumentLayers</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=DocumentLayers&amp;diff=8346"/>
		<updated>2006-09-21T19:47:55Z</updated>

		<summary type="html">&lt;p&gt;Axiom: Suggest layer names&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We've got the most important part of layers implemented now; a group can be turned into a layer by setting its inkscape:groupmode attribute to &amp;quot;layer&amp;quot; (it defaults to &amp;quot;group&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
For now, all this does is permit the objects in a group to be directly selected, rather than selecting the group itself (i.e. by clicking or rubber-banding).  To fulfill all the expectations for layers, there are still some things we need to take into account:&lt;br /&gt;
&lt;br /&gt;
* There needs to be a notion of a &amp;quot;current layer&amp;quot;, where e.g. the drawing tools and paste operate.&lt;br /&gt;
&lt;br /&gt;
** At present, this &amp;quot;current layer&amp;quot; is always the root SVG element.&lt;br /&gt;
&lt;br /&gt;
** The current layer should probably be determined by the most recent object selected -- the object's first layer ancestor (or the object itself, if it is a layer) becomes the current layer until another object is selected.  Deselection should probably not alter the current layer.&lt;br /&gt;
&lt;br /&gt;
** We need to handle the case where the current layer is removed from the document (either directly, or because one of its ancestors was removed) or stops being a layer (due to an inkscape:groupmode change).&lt;br /&gt;
&lt;br /&gt;
** To find a new layer to become the current, we need to walk up the (pre-removal) hierarchy to find a layer, as if the parent of the removed/unlayered object had been selected.&lt;br /&gt;
&lt;br /&gt;
* We need a layer dialog -- an [[ObjectTree]] window (operating on SVG objects) similar to the [[XMLEditor]] (which operates on XML nodes) should fulfill this requirement.&lt;br /&gt;
&lt;br /&gt;
** What behavior should result from selecting a layer in the [[ObjectTree]] or [[XMLEditor]]?  Should that actually select all of the layer's children, or should the layer (temporarily) behave like a group in terms of dragging/rotation/whatever?&lt;br /&gt;
&lt;br /&gt;
:::I personally lean towards the latter, though I think the former is what many apps with layers do.  I think it depends on how much we think layers should break with their fundamental group-nature. -- [[MenTaLguY]]&lt;br /&gt;
&lt;br /&gt;
:::The main venefit from layers is being able to toggle visibility and editability of a layer. That's what layer palettes in most apps focus on, and what we must provide. As for selecting all objects within a layer, that may be useful too, but is of secondary importance IMHO. --bb&lt;br /&gt;
&lt;br /&gt;
** Similarly, if a group's descendents are directly selected, should that group temporarily behave like a layer? Yes, options and dragging/copying should feel the same as if they were layers. Also de [[ObjectTree]] should reflect each action inmediatly.&lt;br /&gt;
&lt;br /&gt;
*The schema should be something like this:&lt;br /&gt;
[[MasterDocument]]&lt;br /&gt;
	Document&lt;br /&gt;
		Layers&lt;br /&gt;
			Page&lt;br /&gt;
				[[RightPage]]&lt;br /&gt;
				[[LeftPage]]&lt;br /&gt;
					Groups&lt;br /&gt;
						Objects&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
From another point of view we can reflect the schema like this:&lt;br /&gt;
	[[ObjectProperties]]&lt;br /&gt;
	[[LocalProperties]] (shape, color, etc)&lt;br /&gt;
	[[GroupProperties]] (Group/s the Object belongs to)&lt;br /&gt;
	[[LayerProperties]]&lt;br /&gt;
	[[PageProperties]]&lt;br /&gt;
	[[DocumentProperties]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Styles, in both views are floating above everything as a [[PropertiesGroup]] that affects the Elements the user decide to assign to that Style. The mechanism could be as simple as CSS.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
Adobe seems to export their layers as simple groups with id's&lt;br /&gt;
&lt;br /&gt;
[http://support.adobe.com/devsup/devsup.nsf/docs/50557.htm Adobe Developer Knowledgebase document #50557]&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
One of the nice things about illustrator is that it automaticly creates sublayers&lt;br /&gt;
&lt;br /&gt;
http://www.scripting.com/images/illustrator9layers.gif&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
When a new layer is created, Inkscape demands that I create a name for it.  Most of the time, I don't care what it will be called.  Suggesting names such as &amp;quot;layer 1&amp;quot;, &amp;quot;layer 2&amp;quot;, etc, would really be helpful, and you could still type in  descriptive name if you were so inclined. [[User:Axiom|Axiom]] 19:47, 21 September 2006 (UTC)&lt;/div&gt;</summary>
		<author><name>Axiom</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Talk:Frequently_asked_questions&amp;diff=8136</id>
		<title>Talk:Frequently asked questions</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Talk:Frequently_asked_questions&amp;diff=8136"/>
		<updated>2006-08-22T14:55:16Z</updated>

		<summary type="html">&lt;p&gt;Axiom: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Download Inkscape ==&lt;br /&gt;
&lt;br /&gt;
Since I really enjoy working with graphics [i basically use mspaint] and subscribe to 'computer tips' thru worldstart, they have led me to your program called 'Inkscape'.&lt;br /&gt;
&lt;br /&gt;
I was wondering where I can acquire it at?&lt;br /&gt;
&lt;br /&gt;
==.ai?==&lt;br /&gt;
This FAQ says that inkscape can save in .ai format, but I don't see that option in version 0.44 under the save dialog. --[[User:Axiom|Axiom]] 14:55, 22 August 2006 (UTC)&lt;/div&gt;</summary>
		<author><name>Axiom</name></author>
	</entry>
</feed>