summaryrefslogtreecommitdiffstats
path: root/src/xml/helper-observer.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-03-20Fixed: circles and ellipses had wrong element names in XML editor (Issue #116)Joseph Da Silva1-0/+5
2018-11-08Clarify licensesMax Gaukler1-0/+9
- add license headers to everything - convert a few files from public domain or LGPL2.1+ to GPL2+ - some archaeology to clarify which files are from which library
2018-10-06Misc. typosluz.paz1-1/+1
Found via `codespell`
2018-06-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot1-3/+3
This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
2018-01-30Move classes derived from SPObject to own directory.Tavmjong Bah1-0/+3
A lot of header clean-up.
2017-10-18Refactor Util::ptr_sharedJan Lingscheid1-2/+2
Util::ptr_shared<T> was only used in its <char> specialization, so it is now refactored into a non-template class. Using it with arbitary classes was dangerous anyway.
2014-06-16SignalObserver: fix further refcounting issue in signal observerJohan B. C. Engelen1-0/+5
(bzr r13427)
2014-06-15add proper refcounting to XML SignalObserver. not refcounting caused crash ↵Johan B. C. Engelen1-2/+6
upon opening Filter Editor dialog for the first time with a filtered object selected. Fixed bugs: - https://launchpad.net/bugs/1328152 (bzr r13426)
2012-05-12syntx of null pointer dereference checksKris De Gussem1-4/+10
(bzr r11358)
2010-07-06C++ification of SPObject continued along with the onset of XML ↵Abhishek Sharma Public1-4/+6
Privatisation. Users may checkout [grep -Ir XML Tree *] in the source code and all the places where the XML node/Tree is being used shall be reflected. (bzr r9546.1.5)
2008-12-28Now users can design a font within inkscape, save it and then open the Felipe Corr??a da Silva Sanches1-0/+43
SVG file in Fontforge in order to export a truetype font (or other system font formarts fontforge supports). This improves previous workflow of font design using Inkscape which involved creating one SVG for each glyph. Now user only needs to create a single SVG file containing an SVGFont. Glyph kerning settings for the font can also be defined withing Inkscape itself with live preview. The kerning management still needs some improvements but is currently functional at least. Improvements in the SVGFonts dialog: * In Global Settings tab you can define the font family name. Other attributes should be added to this tab in the future. * Glyphs tab allows the user to: ** see a list (combobox) of glyphs available in the currently selected font. ** add/remove glyphs ** edit glyph name and unicode ** set the glyph curves based on a given path (selected from canvas). Same feature for the missing glyph. * Kerning tab allows user to: ** add new kerning pairs ** adjust kerning values of selected kerning pair ** live preview while adjusting the kerning values Code refactoring: * Inner classes DocumentProperties::SignalObserver and FilterEffectsDialog::SignalObserver were duplicated code and another instance would be needed in SVGFonts dialog. So, I moved it to Inkscape::XML::SignalObserver (in helper-observer.{cpp,h}) * changed SPGlyph->glyph_name and SPGlyph->unicode from char* to Glib::ustring * added sp_remove_resource to the release method in sp-font.cpp * glyph curves used to be stored (in d attribute) and rendered upside-down. Now that bug is fixed. Sorry about this huge commit. I got one week away from the Internet during a xmas travel. The lack of 'net connection made me work more intensely in Inkscape :-D Felipe Sanches (bzr r7029)