]> Shamusworld >> Repos - ttedit/blobdiff - src/global.h
Added preview window to file loading dialog. :-)
[ttedit] / src / global.h
index 64422da263b4509896a74cf6f2dcae3827e2a3b5..fc17a5a5f0d6ec91b41bbc9172da82b72a10fa60 100644 (file)
@@ -10,6 +10,8 @@
 #include "vector.h"
 
 class QFont;
+class CharWindow;
+class MainWindow;
 
 enum LineStyle { LSNone, LSSolid, LSDash, LSDot, LSDashDot, LSDashDotDot };
 
@@ -53,6 +55,9 @@ class Global
                static int numLayers;
                static std::vector<bool> layerHidden;
                static std::vector<bool> layerLocked;
+
+               static CharWindow * charWnd;
+               static MainWindow * mainWindow;
 };
 
 #endif // __GLOBALS_H__