1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : precompiled_header.h
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#ifndef CODELITE_PRECOMPILED_HEADER_RELEASE_H
#define CODELITE_PRECOMPILED_HEADER_RELEASE_H
#ifdef __cplusplus
// Only include the headers we need here
#include <wx/wx.h>
#include <wx/app.h>
#include <wx/frame.h>
#include <wx/string.h>
#include <wx/process.h>
#include <wx/filename.h>
#include <wx/treectrl.h>
#include <wx/string.h>
#include <wx/log.h>
#include <wx/settings.h>
#include <wx/string.h>
#include <wx/stattext.h>
#include <wx/gdicmn.h>
#include <wx/font.h>
#include <wx/colour.h>
#include <wx/settings.h>
#include <wx/textctrl.h>
#include <wx/sizer.h>
#include <wx/panel.h>
#include <wx/statline.h>
#include <wx/button.h>
#include <wx/dialog.h>
#include <set>
#include <list>
#include <wx/fontmap.h>
#include <wx/clipbrd.h>
#include <wx/numdlg.h>
#include <wx/stdpaths.h>
#include <wx/xrc/xmlres.h>
#include <wx/splitter.h>
#include <wx/aboutdlg.h>
#include <wx/aui/framemanager.h>
#include <wx/ffile.h>
#include <wx/dir.h>
#include <wx/socket.h>
#include <wx/splash.h>
#include <wx/fileconf.h>
#include <wx/xrc/xmlres.h>
#include <wx/sysopt.h>
#include "wx/txtstrm.h"
#include "wx/wfstream.h"
#include <wx/cmdline.h>
#include "wx/tokenzr.h"
#include "wx/dir.h"
#include <wx/stdpaths.h>
#include <wx/snglinst.h>
#include <wx/image.h>
#include <wx/filefn.h>
#include <iostream>
#include <vector>
#include <map>
#include <stack>
#include <wx/fontmap.h>
#include <wx/xrc/xmlres.h>
#include <wx/ffile.h>
#include <wx/tooltip.h>
#include <wx/settings.h>
#include <wx/fdrepdlg.h>
#include "wx/tokenzr.h"
#include <sys/stat.h>
#include <sys/types.h>
#include <wx/wupdlock.h>
/////////////////////////////////////////////////////////////////////////////
// Unicode:
// Use the following macros, in the following cases:
//
// 1. If your API requires const char*, wrap wxString with _C() macro
// 2. To convert char* ( not litteral ) use _U()
// 3. To convert literal strings, use _T()
/////////////////////////////////////////////////////////////////////////////
#ifdef __APPLE__
#include <ctype.h>
#undef _C /* _CTYPE_C */
#undef _U /* _CTYPE_U */
#endif
#ifdef wxUSE_UNICODE
#ifndef _U
#define _U(x) wxString((x),wxConvUTF8)
#endif
#ifndef _UU
#define _UU(x,y) wxString((x),y)
#endif
#ifndef _CC
#define _CC(x,y) (x).mb_str((y))
#endif
#else
#ifndef _U
#define _U(x) (x)
#endif
#ifndef _UU
#define _UU(x,y) (x)
#endif
#ifndef _CC
#define _CC(x,y) (x)
#endif
#endif
#ifndef _C
#define _C(x) _CC((x),wxConvUTF8)
#endif
#endif // __cplusplus
#endif // CODELITE_PRECOMPILED_HEADER_RELEASE_H
|