[BUG_FIXED] Fix unicode input problem for non ansi characters.

Fix missing fonts in font list problem (Styler configurator).
 

git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository@141 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
donho 2008-03-05 23:37:13 +00:00
parent d550ce44b2
commit 147d885a44
11 changed files with 81 additions and 47 deletions

View File

@ -166,7 +166,7 @@ void Notepad_plus::init(HINSTANCE hInst, HWND parent, const char *cmdLine, CmdLi
nppClass.cbWndExtra = 0; nppClass.cbWndExtra = 0;
nppClass.hInstance = _hInst; nppClass.hInstance = _hInst;
nppClass.hIcon = ::LoadIcon(_hInst, MAKEINTRESOURCE(IDI_M30ICON)); nppClass.hIcon = ::LoadIcon(_hInst, MAKEINTRESOURCE(IDI_M30ICON));
nppClass.hCursor = NULL; nppClass.hCursor = ::LoadCursor(NULL, IDC_ARROW);
nppClass.hbrBackground = ::CreateSolidBrush(::GetSysColor(COLOR_MENU)); nppClass.hbrBackground = ::CreateSolidBrush(::GetSysColor(COLOR_MENU));
nppClass.lpszMenuName = MAKEINTRESOURCE(IDR_M30_MENU); nppClass.lpszMenuName = MAKEINTRESOURCE(IDR_M30_MENU);
nppClass.lpszClassName = _className; nppClass.lpszClassName = _className;

View File

@ -340,11 +340,28 @@ NppParameters::NppParameters() : _pXmlDoc(NULL),_pXmlUserDoc(NULL), _pXmlUserSty
_asNotepadStyle = (PathFileExists(notepadStylePath) == TRUE); _asNotepadStyle = (PathFileExists(notepadStylePath) == TRUE);
::AddFontResource(LINEDRAW_FONT);
//Load initial accelerator key definitions //Load initial accelerator key definitions
initMenuKeys(); initMenuKeys();
initScintillaKeys(); initScintillaKeys();
} }
NppParameters::~NppParameters()
{
for (int i = 0 ; i < _nbLang ; i++)
delete _langList[i];
for (int i = 0 ; i < _nbFile ; i++)
delete _LRFileList[i];
for (int i = 0 ; i < _nbUserLang ; i++)
delete _userLangArray[i];
if (_hUser32)
FreeLibrary(_hUser32);
if (_hUXTheme)
FreeLibrary(_hUXTheme);
::RemoveFontResource(LINEDRAW_FONT);
}
void cutString(const char *str2cut, vector<string> & patternVect) void cutString(const char *str2cut, vector<string> & patternVect)
{ {
char str2scan[MAX_PATH]; char str2scan[MAX_PATH];
@ -718,10 +735,12 @@ void NppParameters::setFontList(HWND hWnd)
//---------------// //---------------//
LOGFONT lf; LOGFONT lf;
_fontlist.clear();
_fontlist.push_back(""); _fontlist.push_back("");
lf.lfCharSet = DEFAULT_CHARSET; lf.lfCharSet = DEFAULT_CHARSET;
lf.lfFaceName[0]='\0'; lf.lfFaceName[0]='\0';
lf.lfPitchAndFamily = 0;
HDC hDC = ::GetDC(hWnd); HDC hDC = ::GetDC(hWnd);
::EnumFontFamiliesEx(hDC, ::EnumFontFamiliesEx(hDC,
&lf, &lf,

View File

@ -917,7 +917,7 @@ public:
return false; return false;
}; };
const char * getLangNameFromExt(char *ext) { const char * getUserDefinedLangNameFromExt(char *ext) {
if ((!ext) || (!ext[0])) if ((!ext) || (!ext[0]))
return NULL; return NULL;
@ -1060,19 +1060,8 @@ public:
} }
private: private:
NppParameters(); NppParameters();
~NppParameters() { ~NppParameters();
for (int i = 0 ; i < _nbLang ; i++)
delete _langList[i];
for (int i = 0 ; i < _nbFile ; i++)
delete _LRFileList[i];
for (int i = 0 ; i < _nbUserLang ; i++)
delete _userLangArray[i];
if (_hUser32)
FreeLibrary(_hUser32);
if (_hUXTheme)
FreeLibrary(_hUXTheme);
//::RemoveFontResource(LINEDRAW_FONT);
};
static NppParameters *_pSelf; static NppParameters *_pSelf;
TiXmlDocument *_pXmlDoc, *_pXmlUserDoc, *_pXmlUserStylerDoc, *_pXmlUserLangDoc, *_pXmlNativeLangDoc,\ TiXmlDocument *_pXmlDoc, *_pXmlUserDoc, *_pXmlUserStylerDoc, *_pXmlUserLangDoc, *_pXmlNativeLangDoc,\
@ -1142,14 +1131,16 @@ private:
static int CALLBACK EnumFontFamExProc(ENUMLOGFONTEX *lpelfe, NEWTEXTMETRICEX *lpntme, int FontType, LPARAM lParam) { static int CALLBACK EnumFontFamExProc(ENUMLOGFONTEX *lpelfe, NEWTEXTMETRICEX *lpntme, int FontType, LPARAM lParam) {
vector<string> *pStrVect = (vector<string> *)lParam; vector<string> *pStrVect = (vector<string> *)lParam;
size_t vectSize = pStrVect->size(); size_t vectSize = pStrVect->size();
if (vectSize == 0)
pStrVect->push_back((char *)lpelfe->elfFullName); //Search through all the fonts, EnumFontFamiliesEx never states anything about order
else //Start at the end though, that's the most likely place to find a duplicate
{ for(int i = vectSize - 1 ; i >= 0 ; i--) {
const char *lastFontName = pStrVect->at(vectSize - 1).c_str(); if ( !strcmp((*pStrVect)[i].c_str(), (const char *)lpelfe->elfLogFont.lfFaceName) )
if (strcmp(lastFontName, (const char *)lpelfe->elfFullName)) return 1; //we already have seen this typeface, ignore it
pStrVect->push_back((char *)lpelfe->elfFullName); }
} //We can add the font
//Add the face name and not the full name, we do not care about any styles
pStrVect->push_back((char *)lpelfe->elfLogFont.lfFaceName);
return 1; // I want to get all fonts return 1; // I want to get all fonts
}; };

View File

@ -2,10 +2,11 @@
long Buffer::_recentTagCtr = 0; long Buffer::_recentTagCtr = 0;
// Set full path file name in buffer object,
// and determinate its language by its extension.
// If the ext is not in the list, the defaultLang passed as argument will be set.
void Buffer::setFileName(const char *fn, LangType defaultLang) void Buffer::setFileName(const char *fn, LangType defaultLang)
{ {
bool isExtSet = false;
NppParameters *pNppParamInst = NppParameters::getInstance(); NppParameters *pNppParamInst = NppParameters::getInstance();
strcpy(_fullPathName, fn); strcpy(_fullPathName, fn);
if (PathFileExists(_fullPathName)) if (PathFileExists(_fullPathName))
@ -16,11 +17,10 @@ void Buffer::setFileName(const char *fn, LangType defaultLang)
// Define User Lang firstly // Define User Lang firstly
const char *langName = NULL; const char *langName = NULL;
if ((langName = pNppParamInst->getLangNameFromExt(ext))) if ((langName = pNppParamInst->getUserDefinedLangNameFromExt(ext)))
{ {
_lang = L_USER; _lang = L_USER;
strcpy(_userLangExt, langName); strcpy(_userLangExt, langName);
isExtSet = true;
} }
else // if it's not user lang, then check if it's supported lang else // if it's not user lang, then check if it's supported lang
{ {
@ -34,10 +34,9 @@ void Buffer::setFileName(const char *fn, LangType defaultLang)
else if (!_stricmp(fileName, "CmakeLists.txt")) else if (!_stricmp(fileName, "CmakeLists.txt"))
_lang = L_CMAKE; _lang = L_CMAKE;
} }
}
if (!isExtSet)
_userLangExt[0] = '\0'; _userLangExt[0] = '\0';
}
// for _timeStamp // for _timeStamp
updatTimeStamp(); updatTimeStamp();
} }

View File

@ -115,8 +115,19 @@ void ScintillaEditView::init(HINSTANCE hInst, HWND hPere)
_codepage = ::GetACP(); _codepage = ::GetACP();
_oemCodepage = ::GetOEMCP(); _oemCodepage = ::GetOEMCP();
::SetWindowLong(_hSelf, GWL_USERDATA, reinterpret_cast<LONG>(this)); //Use either Unicode or ANSI setwindowlong, depending on environment
_scintillaDefaultProc = reinterpret_cast<WNDPROC>(::SetWindowLong(_hSelf, GWL_WNDPROC, reinterpret_cast<LONG>(scintillaStatic_Proc))); if (::IsWindowUnicode(_hSelf))
{
::SetWindowLongW(_hSelf, GWL_USERDATA, reinterpret_cast<LONG>(this));
_callWindowProc = CallWindowProcW;
_scintillaDefaultProc = reinterpret_cast<WNDPROC>(::SetWindowLongW(_hSelf, GWL_WNDPROC, reinterpret_cast<LONG>(scintillaStatic_Proc)));
}
else
{
::SetWindowLongA(_hSelf, GWL_USERDATA, reinterpret_cast<LONG>(this));
_callWindowProc = CallWindowProcA;
_scintillaDefaultProc = reinterpret_cast<WNDPROC>(::SetWindowLongA(_hSelf, GWL_WNDPROC, reinterpret_cast<LONG>(scintillaStatic_Proc)));
}
} }
LRESULT ScintillaEditView::scintillaNew_Proc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam) LRESULT ScintillaEditView::scintillaNew_Proc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam)
@ -178,7 +189,7 @@ LRESULT ScintillaEditView::scintillaNew_Proc(HWND hwnd, UINT Message, WPARAM wPa
break; break;
} }
} }
return ::CallWindowProc(_scintillaDefaultProc, hwnd, Message, wParam, lParam); return _callWindowProc(_scintillaDefaultProc, hwnd, Message, wParam, lParam);
} }
void ScintillaEditView::setSpecialStyle(int styleID, COLORREF fgColour, COLORREF bgColour, const char *fontName, int fontStyle, int fontSize) void ScintillaEditView::setSpecialStyle(int styleID, COLORREF fgColour, COLORREF bgColour, const char *fontName, int fontStyle, int fontSize)
{ {

View File

@ -123,6 +123,8 @@ static int getNbChiffre(int aNum, int base)
char * int2str(char *str, int strLen, int number, int base, int nbChiffre, bool isZeroLeading); char * int2str(char *str, int strLen, int number, int base, int nbChiffre, bool isZeroLeading);
typedef LRESULT (WINAPI *CallWindowProcFunc) (WNDPROC,HWND,UINT,WPARAM,LPARAM);
class ScintillaEditView : public Window class ScintillaEditView : public Window
{ {
friend class Notepad_plus; friend class Notepad_plus;
@ -644,6 +646,7 @@ protected:
// the current active buffer index of _buffers // the current active buffer index of _buffers
int _currentIndex; int _currentIndex;
static WNDPROC _scintillaDefaultProc; static WNDPROC _scintillaDefaultProc;
CallWindowProcFunc _callWindowProc;
// the list of docs // the list of docs
buf_vec_t _buffers; buf_vec_t _buffers;

View File

@ -83,7 +83,7 @@ void DockingManager::init(HINSTANCE hInst, HWND hWnd, Window ** ppWin)
clz.cbWndExtra = 0; clz.cbWndExtra = 0;
clz.hInstance = _hInst; clz.hInstance = _hInst;
clz.hIcon = NULL; clz.hIcon = NULL;
clz.hCursor = NULL; clz.hCursor = ::LoadCursor(NULL, IDC_ARROW);
clz.hbrBackground = NULL; clz.hbrBackground = NULL;
clz.lpszMenuName = NULL; clz.lpszMenuName = NULL;
clz.lpszClassName = DSPC_CLASS_NAME; clz.lpszClassName = DSPC_CLASS_NAME;

View File

@ -127,7 +127,7 @@ void Gripper::startGrip(DockingCont* pCont, DockingManager* pDockMgr, void* pRes
clz.cbWndExtra = 0; clz.cbWndExtra = 0;
clz.hInstance = _hInst; clz.hInstance = _hInst;
clz.hIcon = NULL; clz.hIcon = NULL;
clz.hCursor = NULL; clz.hCursor = ::LoadCursor(NULL, IDC_ARROW);
clz.hbrBackground = NULL; clz.hbrBackground = NULL;
clz.lpszMenuName = NULL; clz.lpszMenuName = NULL;

View File

@ -1328,7 +1328,7 @@ ATOM RegisterGridClass(HINSTANCE hInstance)
wclass.cbWndExtra = 0; wclass.cbWndExtra = 0;
wclass.hInstance = hInstance; wclass.hInstance = hInstance;
wclass.hIcon = NULL; wclass.hIcon = NULL;
wclass.hCursor = NULL; wclass.hCursor = ::LoadCursor(NULL, IDC_ARROW);
wclass.hbrBackground = (HBRUSH)(GetStockObject(GRAY_BRUSH)); wclass.hbrBackground = (HBRUSH)(GetStockObject(GRAY_BRUSH));
wclass.lpszClassName = "BABYGRID"; wclass.lpszClassName = "BABYGRID";

View File

@ -46,7 +46,7 @@ void SplitterContainer::create(Window *pWin0, Window *pWin1, int splitterSize,
splitterContainerClass.cbWndExtra = 0; splitterContainerClass.cbWndExtra = 0;
splitterContainerClass.hInstance = _hInst; splitterContainerClass.hInstance = _hInst;
splitterContainerClass.hIcon = NULL; splitterContainerClass.hIcon = NULL;
splitterContainerClass.hCursor = NULL; splitterContainerClass.hCursor = ::LoadCursor(NULL, IDC_ARROW);
// hbrBackground must be NULL, // hbrBackground must be NULL,
// otherwise this window will hide some parts of 2 windows // otherwise this window will hide some parts of 2 windows

View File

@ -20,7 +20,7 @@
<Tool <Tool
Name="VCCLCompilerTool" Name="VCCLCompilerTool"
Optimization="0" Optimization="0"
AdditionalIncludeDirectories="..\src\WinControls\AboutDlg;..\..\scintilla\include;..\include;..\src\WinControls;..\src\WinControls\ImageListSet;..\src\WinControls\OpenSaveFileDialog;..\src\WinControls\SplitterContainer;..\src\WinControls\StaticDialog;..\src\WinControls\TabBar;..\src\WinControls\ToolBar;..\src\MISC\Process;..\src\ScitillaComponent;..\src\MISC;..\src\MISC\SysMsg;..\src\WinControls\StatusBar;..\src;..\src\WinControls\StaticDialog\RunDlg;..\src\tinyxml;..\src\WinControls\ColourPicker;..\src\MISC\RegExt;..\src\WinControls\TrayIcon;..\src\WinControls\shortcut;..\src\WinControls\Grid;..\src\WinControls\ContextMenu;..\src\MISC\PluginsManager;..\src\WinControls\Preference;..\src\WinControls\WindowsDlg;..\src\WinControls\TaskList;..\src\WinControls\DockingWnd" AdditionalIncludeDirectories="..\src\WinControls\AboutDlg;..\..\scintilla\include;..\include;..\src\WinControls;..\src\WinControls\ImageListSet;..\src\WinControls\OpenSaveFileDialog;..\src\WinControls\SplitterContainer;..\src\WinControls\StaticDialog;..\src\WinControls\TabBar;..\src\WinControls\ToolBar;..\src\MISC\Process;..\src\ScitillaComponent;..\src\MISC;..\src\MISC\SysMsg;..\src\WinControls\StatusBar;..\src;..\src\WinControls\StaticDialog\RunDlg;..\src\tinyxml;..\src\WinControls\ColourPicker;..\src\MISC\RegExt;..\src\WinControls\TrayIcon;..\src\WinControls\shortcut;..\src\WinControls\Grid;..\src\WinControls\ContextMenu;..\src\MISC\PluginsManager;..\src\WinControls\Preference;..\src\WinControls\WindowsDlg;..\src\WinControls\TaskList;..\src\WinControls\DockingWnd;..\src\WinControls\ToolTip"
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS" PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS"
MinimalRebuild="TRUE" MinimalRebuild="TRUE"
BasicRuntimeChecks="0" BasicRuntimeChecks="0"
@ -35,7 +35,7 @@
<Tool <Tool
Name="VCLinkerTool" Name="VCLinkerTool"
AdditionalOptions="/fixed:no" AdditionalOptions="/fixed:no"
AdditionalDependencies="comctl32.lib shlwapi.lib shell32.lib" AdditionalDependencies="comctl32.lib shlwapi.lib shell32.lib Oleacc.lib"
ShowProgress="2" ShowProgress="2"
OutputFile="$(OutDir)/../../bin/notepad++Debug.exe" OutputFile="$(OutDir)/../../bin/notepad++Debug.exe"
Version="1.0" Version="1.0"
@ -57,9 +57,10 @@ IF NOT EXIST ..\bin\langs.model.xml COPY ..\src\langs.model.xml ..\bin\langs.mod
IF NOT EXIST ..\bin\stylers.xml COPY ..\src\stylers.model.xml ..\bin\stylers.xml IF NOT EXIST ..\bin\stylers.xml COPY ..\src\stylers.model.xml ..\bin\stylers.xml
IF NOT EXIST ..\bin\stylers.model.xml COPY ..\src\stylers.model.xml ..\bin\stylers.model.xml IF NOT EXIST ..\bin\stylers.model.xml COPY ..\src\stylers.model.xml ..\bin\stylers.model.xml
IF NOT EXIST ..\bin\LINEDRAW.TTF COPY ..\src\font\LINEDRAW.TTF ..\bin\LINEDRAW.TTF IF NOT EXIST ..\bin\LINEDRAW.TTF COPY ..\src\font\LINEDRAW.TTF ..\bin\LINEDRAW.TTF
IF NOT EXIST ..\bin\contextMenu.xml COPY ..\src\contextMenu.xml ..\bin\contextMenu.xml IF NOT EXIST ..\bin\contextMenu.xml COPY ..\src\contextMenu.xml ..\bin\contextMenu.xml
IF NOT EXIST ..\bin\shortcuts.xml COPY ..\src\shortcuts.xml ..\bin\shortcuts.xml IF NOT EXIST ..\bin\shortcuts.xml COPY ..\src\shortcuts.xml ..\bin\shortcuts.xml
IF NOT EXIST ..\bin\userDefineLang.xml COPY ..\src\userDefineLang.xml ..\bin\userDefineLang.xml "/> IF NOT EXIST ..\bin\userDefineLang.xml COPY ..\src\userDefineLang.xml ..\bin\userDefineLang.xml
"/>
<Tool <Tool
Name="VCPreBuildEventTool"/> Name="VCPreBuildEventTool"/>
<Tool <Tool
@ -92,7 +93,7 @@ IF NOT EXIST ..\bin\userDefineLang.xml COPY ..\src\userDefineLang.xml ..\bin\use
FavorSizeOrSpeed="2" FavorSizeOrSpeed="2"
OmitFramePointers="TRUE" OmitFramePointers="TRUE"
OptimizeForWindowsApplication="TRUE" OptimizeForWindowsApplication="TRUE"
AdditionalIncludeDirectories="..\src\WinControls\AboutDlg;..\..\scintilla\include;..\include;..\src\WinControls;..\src\WinControls\ImageListSet;..\src\WinControls\OpenSaveFileDialog;..\src\WinControls\SplitterContainer;..\src\WinControls\StaticDialog;..\src\WinControls\TabBar;..\src\WinControls\ToolBar;..\src\MISC\Process;..\src\ScitillaComponent;..\src\MISC;..\src\MISC\SysMsg;..\src\WinControls\StatusBar;..\src;..\src\WinControls\StaticDialog\RunDlg;..\src\tinyxml;..\src\WinControls\ColourPicker;..\src\Win32Explr;..\src\MISC\RegExt;..\src\WinControls\TrayIcon;..\src\WinControls\shortcut;..\src\WinControls\Grid;..\src\WinControls\ContextMenu;..\src\MISC\PluginsManager;..\src\WinControls\Preference;..\src\WinControls\WindowsDlg;..\src\WinControls\TaskList;..\src\WinControls\DockingWnd" AdditionalIncludeDirectories="..\src\WinControls\AboutDlg;..\..\scintilla\include;..\include;..\src\WinControls;..\src\WinControls\ImageListSet;..\src\WinControls\OpenSaveFileDialog;..\src\WinControls\SplitterContainer;..\src\WinControls\StaticDialog;..\src\WinControls\TabBar;..\src\WinControls\ToolBar;..\src\MISC\Process;..\src\ScitillaComponent;..\src\MISC;..\src\MISC\SysMsg;..\src\WinControls\StatusBar;..\src;..\src\WinControls\StaticDialog\RunDlg;..\src\tinyxml;..\src\WinControls\ColourPicker;..\src\Win32Explr;..\src\MISC\RegExt;..\src\WinControls\TrayIcon;..\src\WinControls\shortcut;..\src\WinControls\Grid;..\src\WinControls\ContextMenu;..\src\MISC\PluginsManager;..\src\WinControls\Preference;..\src\WinControls\WindowsDlg;..\src\WinControls\TaskList;..\src\WinControls\DockingWnd;..\src\WinControls\ToolTip"
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS" PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS"
StringPooling="TRUE" StringPooling="TRUE"
RuntimeLibrary="4" RuntimeLibrary="4"
@ -106,7 +107,7 @@ IF NOT EXIST ..\bin\userDefineLang.xml COPY ..\src\userDefineLang.xml ..\bin\use
<Tool <Tool
Name="VCLinkerTool" Name="VCLinkerTool"
AdditionalOptions="/OPT:WIN98" AdditionalOptions="/OPT:WIN98"
AdditionalDependencies="comctl32.lib shlwapi.lib shell32.lib odbc32.lib odbccp32.lib" AdditionalDependencies="comctl32.lib shlwapi.lib shell32.lib odbc32.lib odbccp32.lib Oleacc.lib"
ShowProgress="2" ShowProgress="2"
OutputFile="$(OutDir)/notepad++.exe" OutputFile="$(OutDir)/notepad++.exe"
Version="1.0" Version="1.0"
@ -129,9 +130,10 @@ IF NOT EXIST ..\bin\langs.model.xml COPY ..\src\langs.model.xml ..\bin\langs.mod
IF NOT EXIST ..\bin\stylers.xml COPY ..\src\stylers.model.xml ..\bin\stylers.xml IF NOT EXIST ..\bin\stylers.xml COPY ..\src\stylers.model.xml ..\bin\stylers.xml
IF NOT EXIST ..\bin\stylers.model.xml COPY ..\src\stylers.model.xml ..\bin\stylers.model.xml IF NOT EXIST ..\bin\stylers.model.xml COPY ..\src\stylers.model.xml ..\bin\stylers.model.xml
IF NOT EXIST ..\bin\LINEDRAW.TTF COPY ..\src\font\LINEDRAW.TTF ..\bin\LINEDRAW.TTF IF NOT EXIST ..\bin\LINEDRAW.TTF COPY ..\src\font\LINEDRAW.TTF ..\bin\LINEDRAW.TTF
IF NOT EXIST ..\bin\contextMenu.xml COPY ..\src\contextMenu.xml ..\bin\contextMenu.xml IF NOT EXIST ..\bin\contextMenu.xml COPY ..\src\contextMenu.xml ..\bin\contextMenu.xml
IF NOT EXIST ..\bin\shortcuts.xml COPY ..\src\shortcuts.xml ..\bin\shortcuts.xml IF NOT EXIST ..\bin\shortcuts.xml COPY ..\src\shortcuts.xml ..\bin\shortcuts.xml
IF NOT EXIST ..\bin\userDefineLang.xml COPY ..\src\userDefineLang.xml ..\bin\userDefineLang.xml "/> IF NOT EXIST ..\bin\userDefineLang.xml COPY ..\src\userDefineLang.xml ..\bin\userDefineLang.xml
"/>
<Tool <Tool
Name="VCPreBuildEventTool"/> Name="VCPreBuildEventTool"/>
<Tool <Tool
@ -312,6 +314,9 @@ IF NOT EXIST ..\bin\userDefineLang.xml COPY ..\src\userDefineLang.xml ..\bin\use
<File <File
RelativePath="..\src\WinControls\ToolBar\ToolBar.cpp"> RelativePath="..\src\WinControls\ToolBar\ToolBar.cpp">
</File> </File>
<File
RelativePath="..\src\WinControls\ToolTip\ToolTip.cpp">
</File>
<File <File
RelativePath="..\src\WinControls\TrayIcon\trayIconControler.cpp"> RelativePath="..\src\WinControls\TrayIcon\trayIconControler.cpp">
</File> </File>
@ -347,6 +352,9 @@ IF NOT EXIST ..\bin\userDefineLang.xml COPY ..\src\userDefineLang.xml ..\bin\use
<File <File
RelativePath="..\src\lesDlgs.h"> RelativePath="..\src\lesDlgs.h">
</File> </File>
<File
RelativePath="..\src\menuCmdID.h">
</File>
<File <File
RelativePath="..\src\Notepad_plus.h"> RelativePath="..\src\Notepad_plus.h">
</File> </File>
@ -551,6 +559,9 @@ IF NOT EXIST ..\bin\userDefineLang.xml COPY ..\src\userDefineLang.xml ..\bin\use
<File <File
RelativePath="..\src\WinControls\ToolBar\ToolBar.h"> RelativePath="..\src\WinControls\ToolBar\ToolBar.h">
</File> </File>
<File
RelativePath="..\src\WinControls\ToolTip\ToolTip.h">
</File>
<File <File
RelativePath="..\src\WinControls\TrayIcon\trayIconControler.h"> RelativePath="..\src\WinControls\TrayIcon\trayIconControler.h">
</File> </File>