OSDN Git Service

Add SCI Edit to GitBlameView
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / Settings / SetLookAndFeelPage.h
1 // TortoiseSVN - a Windows shell extension for easy version control\r
2 \r
3 // Copyright (C) 2003-2008 - TortoiseSVN\r
4 \r
5 // This program is free software; you can redistribute it and/or\r
6 // modify it under the terms of the GNU General Public License\r
7 // as published by the Free Software Foundation; either version 2\r
8 // of the License, or (at your option) any later version.\r
9 \r
10 // This program is distributed in the hope that it will be useful,\r
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13 // GNU General Public License for more details.\r
14 \r
15 // You should have received a copy of the GNU General Public License\r
16 // along with this program; if not, write to the Free Software Foundation,\r
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\r
18 //\r
19 #pragma once\r
20 \r
21 #include "SettingsPropPage.h"\r
22 #include "Tooltip.h"\r
23 #include "Registry.h"\r
24 \r
25 /**\r
26  * \ingroup TortoiseProc\r
27  * Settings page look and feel.\r
28  */\r
29 class CSetLookAndFeelPage : public ISettingsPropPage\r
30 {\r
31         DECLARE_DYNAMIC(CSetLookAndFeelPage)\r
32 \r
33 public:\r
34         CSetLookAndFeelPage();\r
35         virtual ~CSetLookAndFeelPage();\r
36 \r
37         UINT GetIconID() {return IDI_MISC;}\r
38 \r
39 // Dialog Data\r
40         enum { IDD = IDD_SETTINGSLOOKANDFEEL };\r
41 \r
42 protected:\r
43         virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support\r
44         virtual BOOL PreTranslateMessage(MSG* pMsg);\r
45         virtual BOOL OnApply();\r
46         afx_msg void OnBnClickedOnlyexplorer();\r
47         afx_msg void OnLvnItemchangedMenulist(NMHDR *pNMHDR, LRESULT *pResult);\r
48         afx_msg void OnChange();\r
49         afx_msg void OnEnChangeNocontextpaths();\r
50 \r
51         DECLARE_MESSAGE_MAP()\r
52 public:\r
53         virtual BOOL OnInitDialog();\r
54 \r
55 private:\r
56         void InsertItem(UINT nTextID, UINT nIconID, unsigned __int64 dwFlags);\r
57 \r
58         CToolTips                       m_tooltips;\r
59         CRegDWORD                       m_regTopmenu;\r
60         CRegDWORD                       m_regTopmenuhigh;\r
61 \r
62         CImageList                      m_imgList;\r
63         CListCtrl                       m_cMenuList;\r
64         BOOL                            m_bModified;\r
65         unsigned __int64        m_topmenu;\r
66         bool                            m_bBlock;\r
67         \r
68         CRegDWORD                       m_regGetLockTop;\r
69         BOOL                            m_bGetLockTop;\r
70 \r
71         CString                         m_sNoContextPaths;\r
72         CRegString                      m_regNoContextPaths;\r
73 };\r