Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ImportedProjects
SVG
Commits
1a6b5413
Commit
1a6b5413
authored
11 years ago
by
Bartosz Raczek
Browse files
Options
Download
Email Patches
Plain Diff
Added 'Ttile' element to the SvgElements rendering collection
parent
8d301de9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Source/Document Structure/SvgTitle.cs
+23
-0
Source/Document Structure/SvgTitle.cs
Source/Svg.csproj
+1
-0
Source/Svg.csproj
Source/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
+0
-0
.../obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
with
24 additions
and
0 deletions
+24
-0
Source/Document Structure/SvgTitle.cs
0 → 100644
+
23
-
0
View file @
1a6b5413
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
using
System.ComponentModel
;
namespace
Svg
{
[
SvgElement
(
"title"
)]
public
class
SvgTitle
:
SvgElement
{
public
override
SvgElement
DeepCopy
()
{
return
DeepCopy
<
SvgTitle
>();
}
public
override
SvgElement
DeepCopy
<
T
>()
{
var
newObj
=
base
.
DeepCopy
<
T
>()
as
SvgTitle
;
return
newObj
;
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Source/Svg.csproj
+
1
-
0
View file @
1a6b5413
...
@@ -97,6 +97,7 @@
...
@@ -97,6 +97,7 @@
<Compile
Include=
"DataTypes\SvgOverflow.cs"
/>
<Compile
Include=
"DataTypes\SvgOverflow.cs"
/>
<Compile
Include=
"DataTypes\SvgUnitCollection.cs"
/>
<Compile
Include=
"DataTypes\SvgUnitCollection.cs"
/>
<Compile
Include=
"DataTypes\SvgViewBox.cs"
/>
<Compile
Include=
"DataTypes\SvgViewBox.cs"
/>
<Compile
Include=
"Document Structure\SvgTitle.cs"
/>
<Compile
Include=
"Document Structure\SvgDocumentMetadata.cs"
/>
<Compile
Include=
"Document Structure\SvgDocumentMetadata.cs"
/>
<Compile
Include=
"Painting\SvgMarker.cs"
/>
<Compile
Include=
"Painting\SvgMarker.cs"
/>
<Compile
Include=
"Document Structure\SvgDefinitionList.cs"
/>
<Compile
Include=
"Document Structure\SvgDefinitionList.cs"
/>
...
...
This diff is collapsed.
Click to expand it.
Source/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
+
0
-
0
View file @
1a6b5413
No preview for this file type
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help