[UPDATE] Unprecompile headers (part 3)
This commit is contained in:
parent
3f1e3da7d2
commit
246c8bd168
@ -26,7 +26,7 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include <string.h>
|
||||
#include "EncodingMapper.h"
|
||||
#include "Scintilla.h"
|
||||
|
||||
|
@ -26,7 +26,15 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include <algorithm>
|
||||
#include <shlwapi.h>
|
||||
#include <Shlobj.h>
|
||||
#include <uxtheme.h>
|
||||
#include "StaticDialog.h"
|
||||
|
||||
|
||||
|
||||
#include "Common.h"
|
||||
#include "../Utf8.h"
|
||||
|
||||
WcharMbcsConvertor * WcharMbcsConvertor::_pSelf = new WcharMbcsConvertor;
|
||||
|
@ -59,8 +59,8 @@
|
||||
// Windows Header Files
|
||||
#include <windows.h>
|
||||
#include <commctrl.h>
|
||||
#include <Shlobj.h>
|
||||
#include <shlwapi.h>
|
||||
#include <Shlobj.h>
|
||||
#include <uxtheme.h>
|
||||
#include <Oleacc.h>
|
||||
#include <dbghelp.h>
|
||||
|
@ -29,7 +29,7 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include <shlwapi.h>
|
||||
#include "MiniDumper.h"
|
||||
|
||||
LPCTSTR msgTitle = TEXT("Notepad++ crash analysis");
|
||||
|
@ -32,6 +32,9 @@
|
||||
#ifndef MDUMP_H
|
||||
#define MDUMP_H
|
||||
|
||||
#include <windows.h>
|
||||
#include <dbghelp.h>
|
||||
|
||||
|
||||
// based on dbghelp.h
|
||||
typedef BOOL (WINAPI *MINIDUMPWRITEDUMP)(HANDLE hProcess, DWORD dwPid, HANDLE hFile, MINIDUMP_TYPE DumpType,
|
||||
|
@ -32,7 +32,6 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include "Win32Exception.h"
|
||||
|
||||
|
||||
|
@ -31,6 +31,11 @@
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
#ifndef WIN32_EXCEPTION_H
|
||||
#define WIN32_EXCEPTION_H
|
||||
|
||||
#include <exception>
|
||||
#include <windows.h>
|
||||
|
||||
typedef const void* ExceptionAddress; // OK on Win32 platform
|
||||
|
||||
@ -69,3 +74,5 @@ private:
|
||||
|
||||
friend void Win32Exception::translate(unsigned code, EXCEPTION_POINTERS* info);
|
||||
};
|
||||
|
||||
#endif // WIN32_EXCEPTION_H
|
@ -28,8 +28,6 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "IDAllocator.h"
|
||||
|
||||
IDAllocator::IDAllocator(int start, int maximumID)
|
||||
|
@ -26,7 +26,7 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include <shlwapi.h>
|
||||
#include "PluginsManager.h"
|
||||
#include "resource.h"
|
||||
|
||||
|
@ -26,7 +26,6 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include "Parameters.h"
|
||||
#include "process.h"
|
||||
|
||||
|
@ -25,8 +25,7 @@
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include "Common.h"
|
||||
#include "regExtDlg.h"
|
||||
#include "resource.h"
|
||||
|
||||
|
@ -33,6 +33,8 @@
|
||||
#include "regExtDlgRc.h"
|
||||
#endif //REGEXTDLGRC_H
|
||||
|
||||
#include "StaticDialog.h"
|
||||
|
||||
const int extNameLen = 32;
|
||||
|
||||
class RegExtDlg : public StaticDialog
|
||||
|
@ -25,8 +25,8 @@
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include <time.h>
|
||||
#include <shlwapi.h>
|
||||
#include "Notepad_plus.h"
|
||||
#include "Notepad_plus_Window.h"
|
||||
#include "FileDialog.h"
|
||||
|
@ -26,7 +26,8 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include <time.h>
|
||||
#include <shlwapi.h>
|
||||
#include "Notepad_plus_Window.h"
|
||||
|
||||
const TCHAR Notepad_plus_Window::_className[32] = TEXT("Notepad++");
|
||||
|
@ -26,7 +26,8 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include <algorithm>
|
||||
#include <shlwapi.h>
|
||||
#include "Notepad_plus_Window.h"
|
||||
#include "TaskListDlg.h"
|
||||
#include "ImageListSet.h"
|
||||
|
@ -25,8 +25,8 @@
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include <memory>
|
||||
#include <shlwapi.h>
|
||||
#include "Notepad_plus_Window.h"
|
||||
#include "EncodingMapper.h"
|
||||
#include "ShortcutMapper.h"
|
||||
|
@ -26,7 +26,8 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include <time.h>
|
||||
#include <shlwapi.h>
|
||||
#include "Notepad_plus_Window.h"
|
||||
#include "FileDialog.h"
|
||||
#include "EncodingMapper.h"
|
||||
|
@ -26,7 +26,7 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "Notepad_plus_Window.h"
|
||||
#include "xmlMatchedTagsHighlighter.h"
|
||||
#include "VerticalFileSwitcher.h"
|
||||
|
@ -26,7 +26,7 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "DocTabView.h"
|
||||
#include "ScintillaEditView.h"
|
||||
|
||||
|
@ -25,8 +25,8 @@
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include <Shlobj.h>
|
||||
#include <uxtheme.h>
|
||||
#include "FindReplaceDlg.h"
|
||||
#include "ScintillaEditView.h"
|
||||
#include "Notepad_plus_msgs.h"
|
||||
|
@ -26,7 +26,6 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include "FunctionCallTip.h"
|
||||
|
||||
|
||||
|
@ -26,7 +26,6 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include "GoToLineDlg.h"
|
||||
|
||||
|
||||
|
@ -26,7 +26,6 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include "Printer.h"
|
||||
#include "RunDlg.h"
|
||||
//#include "Parameters.h"
|
||||
|
@ -26,8 +26,6 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "localization.h"
|
||||
#include "UserDefineDialog.h"
|
||||
#include "ScintillaEditView.h"
|
||||
|
@ -29,9 +29,7 @@
|
||||
#ifndef USER_DEFINE_LANG_REFERENCE_H
|
||||
#define USER_DEFINE_LANG_REFERENCE_H
|
||||
|
||||
#ifndef SCILEXER_H
|
||||
#include "scilexer.h"
|
||||
#endif //SCILEXER_H
|
||||
|
||||
const int langNameLenMax = 33;
|
||||
const int extsLenMax = 256;
|
||||
|
@ -22,7 +22,6 @@ must not be misrepresented as being the original software.
|
||||
distribution.
|
||||
*/
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include "tinyxmlA.h"
|
||||
|
||||
#ifndef TIXMLA_USE_STL
|
||||
|
@ -22,7 +22,7 @@ must not be misrepresented as being the original software.
|
||||
distribution.
|
||||
*/
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include "Common.h"
|
||||
#include "tinyxmlA.h"
|
||||
|
||||
#ifdef TIXMLA_USE_STL
|
||||
|
@ -22,7 +22,7 @@ must not be misrepresented as being the original software.
|
||||
distribution.
|
||||
*/
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "tinyxmlA.h"
|
||||
|
||||
// The goal of the seperate error file is to make the first
|
||||
|
@ -22,7 +22,7 @@ must not be misrepresented as being the original software.
|
||||
distribution.
|
||||
*/
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "tinyxmlA.h"
|
||||
|
||||
//#define DEBUG_PARSER
|
||||
|
@ -22,7 +22,6 @@ must not be misrepresented as being the original software.
|
||||
distribution.
|
||||
*/
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#ifndef TIXML_USE_STL
|
||||
|
||||
|
@ -22,7 +22,7 @@ must not be misrepresented as being the original software.
|
||||
distribution.
|
||||
*/
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include <sstream>
|
||||
#include "tinyxml.h"
|
||||
|
||||
bool TiXmlBase::condenseWhiteSpace = true;
|
||||
|
@ -22,7 +22,7 @@ must not be misrepresented as being the original software.
|
||||
distribution.
|
||||
*/
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "tinyxml.h"
|
||||
|
||||
// The goal of the seperate error file is to make the first
|
||||
|
@ -22,7 +22,7 @@ must not be misrepresented as being the original software.
|
||||
distribution.
|
||||
*/
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "tinyxml.h"
|
||||
|
||||
//#define DEBUG_PARSER
|
||||
|
@ -5,7 +5,7 @@
|
||||
// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
|
||||
// The License.txt file describes the conditions under which this software may be distributed.
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include <windows.h>
|
||||
#include "UniConversion.h"
|
||||
|
||||
unsigned int UTF8Length(const wchar_t *uptr, unsigned int tlen) {
|
||||
|
@ -5,9 +5,14 @@
|
||||
// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
|
||||
// The License.txt file describes the conditions under which this software may be distributed.
|
||||
|
||||
#ifndef UNICONVERSION_H
|
||||
#define UNICONVERSION_H
|
||||
|
||||
unsigned int UTF8Length(const wchar_t * uptr, unsigned int tlen);
|
||||
void UTF8FromUCS2(const wchar_t * uptr, unsigned int tlen, char * putf, unsigned int len);
|
||||
unsigned int UCS2Length(const char * s, unsigned int len);
|
||||
unsigned int UCS2FromUTF8(const char * s, unsigned int len, wchar_t * tbuf, unsigned int tlen);
|
||||
unsigned int ascii_to_utf8(const char * pszASCII, unsigned int lenASCII, char * pszUTF8);
|
||||
int utf8_to_ascii(const char * pszUTF8, unsigned int lenUTF8, char * pszASCII);
|
||||
|
||||
#endif //UNICONVERSION_H
|
||||
|
@ -16,7 +16,6 @@
|
||||
// - Add convert function in Utf8_16_Write
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include "Utf8_16.h"
|
||||
|
||||
const Utf8_16::utf8 Utf8_16::k_Boms[][3] = {
|
||||
|
@ -26,7 +26,7 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "ListView.h"
|
||||
#include "Parameters.h"
|
||||
#include "localization.h"
|
||||
|
@ -30,6 +30,7 @@
|
||||
#define LISTVIEW_H
|
||||
|
||||
#include "window.h"
|
||||
#include "Common.h"
|
||||
|
||||
class ListView : public Window
|
||||
{
|
||||
|
@ -29,17 +29,10 @@
|
||||
#ifndef WORD_STYLE_H
|
||||
#define WORD_STYLE_H
|
||||
|
||||
#ifndef COLOUR_PICKER_H
|
||||
#include "ColourPicker.h"
|
||||
#endif //COLOUR_PICKER_H
|
||||
|
||||
#ifndef WORD_STYLE_DLG_RES_H
|
||||
#include "WordStyleDlgRes.h"
|
||||
#endif //WORD_STYLE_DLG_RES_H
|
||||
|
||||
#ifndef PARAMETERS_H
|
||||
#include "Parameters.h"
|
||||
#endif //PARAMETERS_H
|
||||
|
||||
|
||||
#define WM_UPDATESCINTILLAS (WORDSTYLE_USER + 1) //GlobalStyleDlg's msg 2 send 2 its parent
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "DockingManager.h"
|
||||
#include "DockingSplitter.h"
|
||||
#include "DockingCont.h"
|
||||
@ -44,18 +44,24 @@ static HHOOK gWinCallHook = NULL;
|
||||
LRESULT CALLBACK FocusWndProc(int nCode, WPARAM wParam, LPARAM lParam);
|
||||
|
||||
// Callback function that handles messages (to test focus)
|
||||
LRESULT CALLBACK FocusWndProc(int nCode, WPARAM wParam, LPARAM lParam) {
|
||||
if (nCode == HC_ACTION && hWndServer) {
|
||||
LRESULT CALLBACK FocusWndProc(int nCode, WPARAM wParam, LPARAM lParam)
|
||||
{
|
||||
if (nCode == HC_ACTION && hWndServer)
|
||||
{
|
||||
DockingManager *pDockingManager = (DockingManager *)::GetWindowLongPtr(hWndServer, GWL_USERDATA);
|
||||
if (pDockingManager) {
|
||||
if (pDockingManager)
|
||||
{
|
||||
vector<DockingCont*> & vcontainer = pDockingManager->getContainerInfo();
|
||||
CWPSTRUCT * pCwp = (CWPSTRUCT*)lParam;
|
||||
if (pCwp->message == WM_KILLFOCUS) {
|
||||
if (pCwp->message == WM_KILLFOCUS)
|
||||
{
|
||||
for (int i = 0; i < DOCKCONT_MAX; ++i)
|
||||
{
|
||||
vcontainer[i]->SetActive(FALSE); //deactivate all containers
|
||||
}
|
||||
} else if (pCwp->message == WM_SETFOCUS) {
|
||||
}
|
||||
else if (pCwp->message == WM_SETFOCUS)
|
||||
{
|
||||
for (int i = 0; i < DOCKCONT_MAX; ++i)
|
||||
{
|
||||
vcontainer[i]->SetActive(IsChild(vcontainer[i]->getHSelf(), pCwp->hwnd)); //activate the container that contains the window with focus, this can be none
|
||||
|
@ -29,6 +29,11 @@
|
||||
#ifndef DOCKINGMANAGER_H
|
||||
#define DOCKINGMANAGER_H
|
||||
|
||||
#include <vector>
|
||||
#include <windows.h>
|
||||
#include <commctrl.h>
|
||||
#include "Window.h"
|
||||
|
||||
#ifndef DOCKINGCONT
|
||||
#include "DockingCont.h"
|
||||
#endif //DOCKINGCONT
|
||||
@ -39,6 +44,7 @@ class DockingSplitter;
|
||||
#include "SplitterContainer.h"
|
||||
#endif //SPLITTER_CONTAINER_H
|
||||
|
||||
|
||||
#define DSPC_CLASS_NAME TEXT("dockingManager")
|
||||
#define CONT_MAP_MAX 50
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "DockingSplitter.h"
|
||||
#include "Notepad_plus_msgs.h"
|
||||
#include "Parameters.h"
|
||||
|
@ -29,6 +29,8 @@
|
||||
#ifndef DOCKINGSPLITTER_H
|
||||
#define DOCKINGSPLITTER_H
|
||||
|
||||
#include "Window.h"
|
||||
|
||||
#ifndef DOCKING_H
|
||||
#include "Docking.h"
|
||||
#endif //DOCKING_H
|
||||
|
@ -29,7 +29,6 @@
|
||||
// speed and consistency of the drag-rectangle - August 2010, Joern Gruel (jg)
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include "Gripper.h"
|
||||
#include "DockingManager.h"
|
||||
#include "Parameters.h"
|
||||
|
@ -29,6 +29,10 @@
|
||||
#ifndef GRIPPER_H
|
||||
#define GRIPPER_H
|
||||
|
||||
#include <windows.h>
|
||||
#include <commctrl.h>
|
||||
#include "Common.h"
|
||||
|
||||
#ifndef DOCKING_H
|
||||
#include "Docking.h"
|
||||
#endif //DOCKING_H
|
||||
|
@ -26,7 +26,6 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include "documentMap.h"
|
||||
#include "ScintillaEditView.h"
|
||||
|
||||
|
@ -26,7 +26,6 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include "FindCharsInRange.h"
|
||||
#include "FindCharsInRange_rc.h"
|
||||
|
||||
|
@ -26,7 +26,6 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include "functionListPanel.h"
|
||||
#include "ScintillaEditView.h"
|
||||
#include "localization.h"
|
||||
|
@ -25,7 +25,7 @@
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include <shlwapi.h>
|
||||
#include "ScintillaEditView.h"
|
||||
#include "functionParser.h"
|
||||
#include "boostregexsearch.h"
|
||||
|
@ -26,7 +26,6 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include "ImageListSet.h"
|
||||
|
||||
void IconList::create(HINSTANCE hInst, int iconSize)
|
||||
|
@ -29,6 +29,8 @@
|
||||
#ifndef IMAGE_LIST_H
|
||||
#define IMAGE_LIST_H
|
||||
|
||||
#include <vector>
|
||||
#include <windows.h>
|
||||
#include <commctrl.h>
|
||||
|
||||
const int nbMax = 45;
|
||||
|
@ -25,8 +25,9 @@
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include <shlwapi.h>
|
||||
#include <Shlobj.h>
|
||||
#include <uxtheme.h>
|
||||
#include "preferenceDlg.h"
|
||||
#include "lesDlgs.h"
|
||||
#include "EncodingMapper.h"
|
||||
|
@ -26,7 +26,6 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include "ProjectPanel.h"
|
||||
#include "resource.h"
|
||||
#include "tinyxml.h"
|
||||
|
@ -26,7 +26,7 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "TreeView.h"
|
||||
|
||||
#define CY_ITEMHEIGHT 18
|
||||
|
@ -28,7 +28,10 @@
|
||||
#ifndef TREE_VIEW_H
|
||||
#define TREE_VIEW_H
|
||||
|
||||
#include <windows.h>
|
||||
#include <commctrl.h>
|
||||
#include "window.h"
|
||||
#include "Common.h"
|
||||
|
||||
struct TreeStateNode {
|
||||
generic_string _label;
|
||||
|
@ -15,7 +15,7 @@
|
||||
//along with this program; if not, write to the Free Software
|
||||
//Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include "StaticDialog.h"
|
||||
#include "RunDlg.h"
|
||||
#include "FileDialog.h"
|
||||
#include "Notepad_plus_msgs.h"
|
||||
|
@ -18,6 +18,9 @@
|
||||
#ifndef RUN_DLG_H
|
||||
#define RUN_DLG_H
|
||||
|
||||
#include <Oleacc.h>
|
||||
#include "Common.h"
|
||||
|
||||
#ifndef RUN_DLG_RC_H
|
||||
#include "RunDlg_rc.h"
|
||||
#endif //RUN_DLG_RC_H
|
||||
|
@ -29,10 +29,7 @@
|
||||
#ifndef STATIC_DIALOG_H
|
||||
#define STATIC_DIALOG_H
|
||||
|
||||
#ifndef NOTEPAD_PLUS_MSGS_H
|
||||
#include "Notepad_plus_msgs.h"
|
||||
#endif //NOTEPAD_PLUS_MSGS_H
|
||||
|
||||
#include "Window.h"
|
||||
|
||||
typedef HRESULT (WINAPI * ETDTProc) (HWND, DWORD);
|
||||
|
@ -26,7 +26,7 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "TabBar.h"
|
||||
#include "Parameters.h"
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "TaskList.h"
|
||||
#include "TaskListDlg_rc.h"
|
||||
#include "colors.h"
|
||||
|
@ -29,6 +29,10 @@
|
||||
#ifndef TASKLIST_H
|
||||
#define TASKLIST_H
|
||||
|
||||
#include <windows.h>
|
||||
#include <commctrl.h>
|
||||
#include "Window.h"
|
||||
|
||||
#ifndef WM_MOUSEWHEEL
|
||||
#define WM_MOUSEWHEEL 0x020A
|
||||
#endif //WM_MOUSEWHEEL
|
||||
|
@ -26,7 +26,7 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "TaskListDlg.h"
|
||||
#include "Parameters.h"
|
||||
#include "resource.h"
|
||||
|
@ -29,6 +29,9 @@
|
||||
#ifndef TASKLISTDLG_H
|
||||
#define TASKLISTDLG_H
|
||||
|
||||
#include "Common.h"
|
||||
#include "StaticDialog.h"
|
||||
|
||||
#ifndef TASKLISTDLGRC_H
|
||||
#include "TaskListDlg_rc.h"
|
||||
#endif //TASKLISTDLGRC_H
|
||||
|
@ -26,7 +26,7 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "ToolBar.h"
|
||||
#include "Shortcut.h"
|
||||
#include "Parameters.h"
|
||||
|
@ -29,11 +29,9 @@
|
||||
#ifndef TOOL_BAR_H
|
||||
#define TOOL_BAR_H
|
||||
|
||||
#ifndef NOTEPAD_PLUS_MSGS_H
|
||||
#include "Notepad_plus_msgs.h"
|
||||
#endif //NOTEPAD_PLUS_MSGS_H
|
||||
|
||||
#include "Common.h"
|
||||
#include "Window.h"
|
||||
#include "Notepad_plus_msgs.h"
|
||||
#include "ImageListSet.h"
|
||||
|
||||
#define REBAR_BAR_TOOLBAR 0
|
||||
|
@ -26,14 +26,11 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include <iostream>
|
||||
#include "ToolTip.h"
|
||||
|
||||
|
||||
|
||||
LRESULT CALLBACK dlgProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
|
||||
|
||||
|
||||
void ToolTip::init(HINSTANCE hInst, HWND hParent)
|
||||
{
|
||||
if (_hSelf == NULL)
|
||||
|
@ -29,7 +29,9 @@
|
||||
#ifndef __TOOLTIP_H__
|
||||
#define __TOOLTIP_H__
|
||||
|
||||
#include <windows.h>
|
||||
#include <commctrl.h>
|
||||
#include "Window.h"
|
||||
|
||||
class ToolTip : public Window
|
||||
{
|
||||
|
@ -26,7 +26,6 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include "trayIconControler.h"
|
||||
|
||||
trayIconControler::trayIconControler(HWND hwnd, UINT uID, UINT uCBMsg, HICON hicon, TCHAR *tip)
|
||||
|
@ -29,6 +29,8 @@
|
||||
#ifndef TRAY_ICON_CONTROLER_H
|
||||
#define TRAY_ICON_CONTROLER_H
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
#define ADD NIM_ADD
|
||||
#define REMOVE NIM_DELETE
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "VerticalFileSwitcher.h"
|
||||
#include "menuCmdID.h"
|
||||
#include "Parameters.h"
|
||||
|
@ -29,11 +29,7 @@
|
||||
#ifndef VERTICALFILESWITCHER_H
|
||||
#define VERTICALFILESWITCHER_H
|
||||
|
||||
//#include <windows.h>
|
||||
#ifndef DOCKINGDLGINTERFACE_H
|
||||
#include "DockingDlgInterface.h"
|
||||
#endif //DOCKINGDLGINTERFACE_H
|
||||
|
||||
#include "VerticalFileSwitcher_rc.h"
|
||||
#include "VerticalFileSwitcherListView.h"
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
// Theo - Heavily modified to remove MFC dependencies.
|
||||
// Replaced CWnd*/HWND, CRect/RECT, CSize/SIZE, CPoint/POINT
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "WinMgr.h"
|
||||
|
||||
// Theo - Style Helpers
|
||||
|
@ -7,7 +7,6 @@
|
||||
//
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include "WinMgr.h"
|
||||
|
||||
//////////////////
|
||||
|
@ -29,10 +29,7 @@
|
||||
#ifndef WINDOWS_DLG_H
|
||||
#define WINDOWS_DLG_H
|
||||
|
||||
#ifndef SIZABLE_DLG_H
|
||||
#include "SizeableDlg.h"
|
||||
#endif //SIZABLE_DLG_H
|
||||
|
||||
#include "Common.h"
|
||||
|
||||
class DocTabView;
|
||||
|
@ -26,7 +26,7 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "lastRecentFileList.h"
|
||||
#include "menuCmdID.h"
|
||||
#include "localization.h"
|
||||
|
@ -26,7 +26,7 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "lesDlgs.h"
|
||||
#include "resource.h"
|
||||
#include "menuCmdID.h"
|
||||
|
@ -29,6 +29,9 @@
|
||||
#ifndef SIZE_DLG_H
|
||||
#define SIZE_DLG_H
|
||||
|
||||
#include "StaticDialog.h"
|
||||
#include "Common.h"
|
||||
|
||||
const int DEFAULT_NB_NUMBER = 2;
|
||||
class ValueDlg : public StaticDialog
|
||||
{
|
||||
|
@ -26,7 +26,6 @@
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include "Notepad_plus.h"
|
||||
#include "ShortcutMapper.h"
|
||||
#include "EncodingMapper.h"
|
||||
|
@ -29,9 +29,9 @@
|
||||
#ifndef LOCALIZATION_H
|
||||
#define LOCALIZATION_H
|
||||
|
||||
#ifndef TINYXMLA_INCLUDED
|
||||
#include "Common.h"
|
||||
#include "tinyxmlA.h"
|
||||
#endif //TINYXMLA_INCLUDED
|
||||
|
||||
|
||||
class FindReplaceDlg;
|
||||
class PreferenceDlg;
|
||||
|
@ -34,7 +34,7 @@
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "nscore.h"
|
||||
#include "JpCntx.h"
|
||||
|
||||
|
@ -34,7 +34,7 @@
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "nsSBCharSetProber.h"
|
||||
/****************************************************************
|
||||
255: Control characters that usually does not exist in any text
|
||||
|
@ -34,7 +34,7 @@
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "nsSBCharSetProber.h"
|
||||
|
||||
|
||||
|
@ -34,7 +34,7 @@
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "nsSBCharSetProber.h"
|
||||
/****************************************************************
|
||||
255: Control characters that usually does not exist in any text
|
||||
|
@ -36,7 +36,7 @@
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "nsSBCharSetProber.h"
|
||||
|
||||
|
||||
|
@ -34,7 +34,7 @@
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "nsSBCharSetProber.h"
|
||||
/****************************************************************
|
||||
255: Control characters that usually does not exist in any text
|
||||
|
@ -34,7 +34,7 @@
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "nsSBCharSetProber.h"
|
||||
|
||||
|
||||
|
@ -34,7 +34,7 @@
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "nsBig5Prober.h"
|
||||
|
||||
void nsBig5Prober::Reset(void)
|
||||
|
@ -35,7 +35,7 @@
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "nsCharSetProber.h"
|
||||
#include "prmem.h"
|
||||
|
||||
|
@ -39,7 +39,7 @@
|
||||
// 1, kana character (or hankaku?) often have hight frequency of appereance
|
||||
// 2, kana character often exist in group
|
||||
// 3, certain combination of kana is never used in japanese language
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "nsEUCJPProber.h"
|
||||
|
||||
void nsEUCJPProber::Reset(void)
|
||||
|
@ -34,7 +34,7 @@
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "nsEUCKRProber.h"
|
||||
|
||||
void nsEUCKRProber::Reset(void)
|
||||
|
@ -34,7 +34,7 @@
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "nsEUCTWProber.h"
|
||||
|
||||
void nsEUCTWProber::Reset(void)
|
||||
|
@ -35,7 +35,7 @@
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "nsEscCharsetProber.h"
|
||||
#include "nsUniversalDetector.h"
|
||||
|
||||
|
@ -34,7 +34,7 @@
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "nsCodingStateMachine.h"
|
||||
|
||||
static const PRUint32 HZ_cls[ 256 / 8 ] = {
|
||||
|
@ -39,7 +39,7 @@
|
||||
// 1, kana character (or hankaku?) often have hight frequency of appereance
|
||||
// 2, kana character often exist in group
|
||||
// 3, certain combination of kana is never used in japanese language
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "nsGB2312Prober.h"
|
||||
|
||||
void nsGB18030Prober::Reset(void)
|
||||
|
@ -35,7 +35,6 @@
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include "nsHebrewProber.h"
|
||||
#include <stdio.h>
|
||||
|
||||
|
@ -36,7 +36,6 @@
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include "nsLatin1Prober.h"
|
||||
#include "prmem.h"
|
||||
#include <stdio.h>
|
||||
|
@ -36,7 +36,7 @@
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "nsMBCSGroupProber.h"
|
||||
|
@ -34,7 +34,7 @@
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include "nsCodingStateMachine.h"
|
||||
|
||||
/*
|
||||
|
@ -36,7 +36,6 @@
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
#include "precompiledHeaders.h"
|
||||
#include <stdio.h>
|
||||
#include "prmem.h"
|
||||
|
||||
|
@ -35,7 +35,7 @@
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
#include "precompiledHeaders.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include "nsSBCharSetProber.h"
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user