aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPEditorTokens.h
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2009-04-19 14:34:30 +0000
committerrowanbeentje <rowan@beent.je>2009-04-19 14:34:30 +0000
commitd4dd7e79ce8373fe94521da2294a076887758ee2 (patch)
tree85d6828f2131b3e14afee0bcb0d88d09cb23fa1e /Source/SPEditorTokens.h
parent39adddc081ea010756886ce5819ec4565469d893 (diff)
downloadsequelpro-d4dd7e79ce8373fe94521da2294a076887758ee2.tar.gz
sequelpro-d4dd7e79ce8373fe94521da2294a076887758ee2.tar.bz2
sequelpro-d4dd7e79ce8373fe94521da2294a076887758ee2.zip
Bring Tiger branch up to version 0.9.5:
- Merge in revisions up to r592 from trunk - Rewrite code where appropriate to use Tiger-compaible methods (no easy object enumeriation, no @properties, etc) - Remove printing again - problems printing, and template engine is 10.5-only - Rework xibs as nibs, and ensure everything looks and works correctly on Tiger; revert interface elements where necessary. - Add a method to check whether the app is being run on 10.5+, and show appropriate warning about interface and features - Alter strings and change sparkle URL to Tiger-specific appcast
Diffstat (limited to 'Source/SPEditorTokens.h')
-rw-r--r--Source/SPEditorTokens.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/Source/SPEditorTokens.h b/Source/SPEditorTokens.h
new file mode 100644
index 00000000..44d0340f
--- /dev/null
+++ b/Source/SPEditorTokens.h
@@ -0,0 +1,19 @@
+/*
+ * SPEditorTokens.h
+ * sequel-pro
+ *
+ * Created by Jakob on 3/15/09.
+ *
+ * This file defines all the tokens used for parsing the source code
+ */
+
+#define SPT_DOUBLE_QUOTED_TEXT 1
+#define SPT_SINGLE_QUOTED_TEXT 2
+#define SPT_BACKTICK_QUOTED_TEXT 3
+#define SPT_RESERVED_WORD 4
+#define SPT_COMMENT 5
+#define SPT_WHITESPACE 6
+#define SPT_WORD 7
+#define SPT_OTHER 8
+#define SPT_NUMERIC 9
+#define SPT_VARIABLE 10