summaryrefslogtreecommitdiff
path: root/tikzit/src/common/Preambles.h
diff options
context:
space:
mode:
authorAlex Merry <alex.merry@cs.ox.ac.uk>2013-08-07 16:56:23 +0100
committerAlex Merry <alex.merry@cs.ox.ac.uk>2013-08-07 17:04:48 +0100
commitac7b53be102860d76f318ab0575cfb546635d04e (patch)
tree5e869a1390c224b9b601d55a4e267160af7ab585 /tikzit/src/common/Preambles.h
parent5a94458d9ee3ee8afd978477c755200df432a9b0 (diff)
Allow preambles to omit the tikzit-specific preview stuff
The editable preambles include a bunch of things that *have* to be there for previews to work, which makes figuring out what you can edit hard. We now add a \documentclass automagically if it is missing, and if \begin{document} is missing, we assume the preview-specific stuff should be added. OSX changes are untested.
Diffstat (limited to 'tikzit/src/common/Preambles.h')
-rw-r--r--tikzit/src/common/Preambles.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/tikzit/src/common/Preambles.h b/tikzit/src/common/Preambles.h
index 95081c4..2fb084a 100644
--- a/tikzit/src/common/Preambles.h
+++ b/tikzit/src/common/Preambles.h
@@ -25,6 +25,8 @@
#import <Foundation/Foundation.h>
#import "StyleManager.h"
+@class Graph;
+
@interface Preambles : NSObject {
NSMutableDictionary *preambleDict;
NSString *selectedPreambleName;
@@ -63,6 +65,9 @@
- (NSString*)defaultPreambleName;
- (NSString*)currentPostamble;
+- (NSString*)buildDocumentForTikz:(NSString*)tikz;
+- (NSString*)buildDocumentForGraph:(Graph*)g;
+
@end
// vi:ft=objc:noet:ts=4:sts=4:sw=4