New sp-object question

Hi,
I'm adding a new sp-object; a serial number. This allows the user to drop a serial number on the doc and define the start number, increment, and number of numbers and then the downstream imposition software takes over from there. I've used the sp-skeleton templates and ended up with:
sp-serialnumber.h:33: error: expected initializer before 'sp_serialnumber_get_type' sp-object-repr.cpp: In function 'void populate_dtables()': sp-object-repr.cpp:185: error: 'sp_serialnumber_get_type' was not declared in this scope sp-object-repr.cpp:185: error: '"svg:serialnumber"' cannot be used as a function sp-object-repr.cpp:187: error: uninitialized const member 'populate_dtables()::NameTypeEntry::type_id' sp-object-repr.cpp:187: warning: missing initializer for member 'populate_dtables()::NameTypeEntry::type_id'
I'm used to working in VisualStudio so I'm getting up and over a lot of learning curves running everything from the command line and a text editor, so forgive me if this is a brain-dead simple question.
As I looked at this I started to wonder if one of the problems is that this will introduce a non-standard SVG element. Here is what I've been using. <SerialNumber m_position.left="180" m_position.right="215" m_position.top="-122" m_position.bottom="-97" m_bPen="TRUE" lopnColor="0" lopnWidth="1" m_bBrush="TRUE" lbStyle="BS_SOLID" lbColor="12632256" lbHatch="HS_HORIZONTAL" m_nAngle="0" m_lFont.lfFaceName="Lucida Sans Unicode" m_lFont.lfHeight="12.000000" m_lFont.lfWeight="0" m_lFont.lfItalic="0" m_color="0" m_nLineSpacing="0" m_borderStyle="None" m_horizAlign="Center" m_vertAlign="Center" m_szText="001" m_nIncrement="1" m_nStartNumber="1" m_nPatternLength="3" m_szPrefix="" m_szPostfix="" m_bPrinted="0" m_nLastNumberPrinted="0" m_bDecrement="FALSE"/>
Thanks for any help or links to help.

Opps. Sorry, I found the error. -- Mike
---------- Forwarded message ---------- From: Michael Yinger <myinger@...1834...> Date: Feb 4, 2008 5:12 PM Subject: New sp-object question To: Inkscape-devel@lists.sourceforge.net
Hi,
I'm adding a new sp-object; a serial number. This allows the user to drop a serial number on the doc and define the start number, increment, and number of numbers and then the downstream imposition software takes over from there. I've used the sp-skeleton templates and ended up with:
sp-serialnumber.h:33: error: expected initializer before 'sp_serialnumber_get_type' sp-object-repr.cpp: In function 'void populate_dtables()': sp-object-repr.cpp:185: error: 'sp_serialnumber_get_type' was not declared in this scope sp-object-repr.cpp:185: error: '"svg:serialnumber"' cannot be used as a function sp-object-repr.cpp:187: error: uninitialized const member 'populate_dtables()::NameTypeEntry::type_id' sp-object-repr.cpp:187: warning: missing initializer for member 'populate_dtables()::NameTypeEntry::type_id'
I'm used to working in VisualStudio so I'm getting up and over a lot of learning curves running everything from the command line and a text editor, so forgive me if this is a brain-dead simple question.
As I looked at this I started to wonder if one of the problems is that this will introduce a non-standard SVG element. Here is what I've been using. <SerialNumber m_position.left="180" m_position.right="215" m_position.top="-122" m_position.bottom="-97" m_bPen="TRUE" lopnColor="0" lopnWidth="1" m_bBrush="TRUE" lbStyle="BS_SOLID" lbColor="12632256" lbHatch="HS_HORIZONTAL" m_nAngle="0" m_lFont.lfFaceName="Lucida Sans Unicode" m_lFont.lfHeight="12.000000" m_lFont.lfWeight="0" m_lFont.lfItalic="0" m_color="0" m_nLineSpacing="0" m_borderStyle="None" m_horizAlign="Center" m_vertAlign="Center" m_szText="001" m_nIncrement="1" m_nStartNumber="1" m_nPatternLength="3" m_szPrefix="" m_szPostfix="" m_bPrinted="0" m_nLastNumberPrinted="0" m_bDecrement="FALSE"/>
Thanks for any help or links to help.

On Feb 4, 2008 7:12 PM, Michael Yinger <myinger@...1834...> wrote:
As I looked at this I started to wonder if one of the problems is that this will introduce a non-standard SVG element. Here is what I've been using. <SerialNumber m_position.left="180" m_position.right="215"
Well, at the very least your custom element must be in your own namespace. If you use it without namespace prefix, it means it will be in SVG namespace, which is the default in our documents. You may be able to make Inkscape swallow it, but it will still be invalid SVG :)

Thank you. I'll take a quick look in wiki for this advice and if I don't find it, I'll add it as another way of saying thanks.
-- Mike
On 2/4/08, bulia byak <buliabyak@...400...> wrote:
On Feb 4, 2008 7:12 PM, Michael Yinger <myinger@...1834...> wrote:
As I looked at this I started to wonder if one of the problems is that
this
will introduce a non-standard SVG element. Here is what I've been using. <SerialNumber m_position.left="180" m_position.right="215"
Well, at the very least your custom element must be in your own namespace. If you use it without namespace prefix, it means it will be in SVG namespace, which is the default in our documents. You may be able to make Inkscape swallow it, but it will still be invalid SVG :)
-- bulia byak Inkscape. Draw Freely. http://www.inkscape.org

-----Original Message----- From: inkscape-devel-bounces@lists.sourceforge.net [mailto:inkscape-devel-bounces@lists.sourceforge.net] On Behalf Of Michael Yinger Sent: dinsdag 5 februari 2008 1:13 To: Inkscape-devel@lists.sourceforge.net Subject: [Inkscape-devel] New sp-object question
Hi,
I'm adding a new sp-object; a serial number. This allows the user to drop a serial number on the doc and define the start number, increment, and number of numbers and then the downstream imposition software takes over from there.
Can you explain it more clearly? I did not understand the above. The serial number will be shown as text in the document? When is it incremented? Upon saving the doc?
Cheers, Johan
participants (3)
-
unknown@example.com
-
bulia byak
-
Michael Yinger