1 // TortoiseSVN - a Windows shell extension for easy version control
3 // Copyright (C) 2007,2009 - TortoiseUDiff
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include "BaseWindow.h"
22 #include "Scintilla.h"
32 * \ingroup TortoiseUDiff
33 * Main window of TortoiseUDiff. Handles the child windows (Scintilla control,
36 class CMainWindow
: public CWindow
39 CMainWindow(HINSTANCE hInst
, const WNDCLASSEX
* wcx
= NULL
);
43 * Registers the window class and creates the window.
45 bool RegisterAndCreateWindow();
47 LRESULT
SendEditor(UINT Msg
, WPARAM wParam
= 0, LPARAM lParam
= 0);
48 HWND
GetHWNDEdit() { return m_hWndEdit
; }
49 bool LoadFile(LPCTSTR filename
);
50 bool SaveFile(LPCTSTR filename
);
51 void SetTitle(LPCTSTR title
);
54 /// the message handler for this window
55 LRESULT CALLBACK
WinMsgHandler(HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
);
56 /// Handles all the WM_COMMAND window messages (e.g. menu commands)
57 LRESULT
DoCommand(int id
);
62 void SetAStyle(int style
, COLORREF fore
, COLORREF back
=::GetSysColor(COLOR_WINDOW
), int size
=-1, const char *face
=0);
63 bool IsUTF8(LPVOID pBuffer
, size_t cb
);
66 LRESULT m_directFunction
;
67 LRESULT m_directPointer
;