summaryrefslogtreecommitdiff
path: root/tikzit/src/common
AgeCommit message (Collapse)Author
2012-10-31Allow spaces in propertiesAlex Merry
2012-08-24Match Cocoa's method naming conventionsAlex Merry
We were naming properties starting with new, which is Cocoa's convention for methods that return fresh objects. Spotted due to a Clang warning.
2012-06-29Do not set looseness prop if edge is straightAlex Merry
2012-06-14Re-render bend incident edges when node style changesAlex Merry
The node shape affects where edges terminate. This affects the shape of bent edges.
2012-06-14Make sure inEdges and outEdges are up-to-dateAlex Merry
2012-06-13Be a bit more conservative about quoting propertiesAlex Merry
2012-05-29Fix handling for property values containing = or ,Alex Merry
Equals and comma are special values that need to be quoted with curly braces. This both parses and generates such quoted strings, although they are only generated when necessary.
2012-05-29Add vi modelines to the lexer/parser codeAlex Merry
2012-05-29Fix license header in DiamondShape filesAlex Merry
2012-05-24Remove useless declaration from TikzShape.mAlex Merry
This file-local variable is never used.
2012-05-24Draw regular polygons with an inner circle radiusAlex Merry
TikZ determines the size of a regular polygon by the radius of a circle inscribed inside the shape, touching the middle of each edge, not a circle outside the sahep, touching each vertex.
2012-05-24Do not adjust the height of RegularPolyShapeAlex Merry
It might look more natural like that, but it's not how TikZ does it.
2012-05-24Fix RegularPolyShape rotation to match TikZAlex Merry
In PGF/TikZ, regular polygons with rotation 0 have a side flat at the bottom. RegularPolyShape now does the same, and also takes its rotation in degrees.
2012-05-23Start fixing shapes in the preambleAlex Merry
RegularPolyShape needs fixing still, and the tikz shapes need sorting out.
2012-05-07Correctly remove $ at end of latex commandsAlex Merry
Previously, a string like '$\alpha$' would retain the final $ when displayed on a label.
2012-05-04Edges can now be reversed easilyAlex Merry
2012-04-19Stop tikzit crashing on copyAlex Merry
It turns out that applying fast enumeration directly to an NSMapTable does something weird, and it should be applied to one of the enumerator objects instead.
2012-04-18Ignore unescaped dollar signs in labelsAlex Merry
Dollar signs indicate start/end of math-mode, so don't display them
2012-04-18Add edge coloursAlex Merry
2012-04-17Add "ldots" to the tex constants fileAlex Merry
2012-03-14Use KVO for listening to style changes in the selectorsrandomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@426 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-03-11Tidy methods uprandomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@425 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-03-10Better parse error reportingrandomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@424 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-03-10Fix memory issuesrandomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@423 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-03-10Make common code KVC compliant, and implement NSCopying where relevantrandomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@420 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-03-08Fix how copying is implementedrandomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@419 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-03-08GTK: fix creating the user support dirrandomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@418 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-02-09Work around an apparent bug in gcc and/or GNUstep to do with synthesizing ↵randomguy3
properties git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@415 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-02-09Make sure the Graph's data is always mutablerandomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@414 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-02-02Generate definitions for the edge styles in the default preamblerandomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@407 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-01-30Undo/redo support for ordering changesrandomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@404 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-01-25Remove unnecessary TODOrandomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@401 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-01-18Fix nomenclature - the arrow head is at the target, the tail is at the sourcerandomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@395 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-01-17We can now render arrow heads (in the GTK port, at least).randomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@390 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-01-17Be a bit more forgiving about whether a point is on a line segmentrandomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@389 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-01-17Calculate the head and tail of edges to be just where they contact the node ↵randomguy3
(ie: behave more like tikz). git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@388 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-01-17Don't crashrandomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@387 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-01-17Fix NSMapTable init callrandomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@386 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-01-17Remove BasicMapTablerandomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@385 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-01-17Basic build fixesrandomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@384 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-01-16graphs now store edges and nodes in an array, GraphicsView has actions for ↵akissinger
re-ordering the z-index of nodes and edges git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@380 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-01-16Some cleanup before calculating proper head and tail endpoints for Edgerandomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@379 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-01-10Add some default edge stylesrandomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@376 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-01-10GTK: Edge style supportrandomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@375 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
2012-01-09Move tikzit into "trunk" directoryrandomguy3
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@365 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64