- //////////////////////////////////////////////////////////////////////////////
+//////////////////////////////////////////////////////////////////////////////
// File: prefs.h
// Purpose: STC test Preferences initialization
// Maintainer: Wyo
// headers
//----------------------------------------------------------------------------
-//! wxWindows headers
+//! wxWidgets headers
-//! wxWindows/contrib headers
-#include <wx/stc/stc.h> // styled text control
+//! wxWidgets/contrib headers
+#include "wx/stc/stc.h" // styled text control
//! application headers
// LanguageInfo
struct LanguageInfo {
- wxChar *name;
- wxChar *filepattern;
+ const char *name;
+ const char *filepattern;
int lexer;
struct {
int type;
- const wxChar *words;
+ const char *words;
} styles [STYLE_TYPES_COUNT];
int folds;
};
//----------------------------------------------------------------------------
// StyleInfo
struct StyleInfo {
- wxChar *name;
- wxChar *foreground;
- wxChar *background;
- wxChar *fontname;
+ const wxChar *name;
+ const wxChar *foreground;
+ const wxChar *background;
+ const wxChar *fontname;
int fontsize;
int fontstyle;
int lettercase;
extern const int g_StylePrefsSize;
#endif // _PREFS_H_
-