OSDN Git Service

Fix Email patch body show subject problem
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / LogCacheStatisticsDlg.h
1 // TortoiseSVN - a Windows shell extension for easy version control\r
2 \r
3 // Copyright (C) 2007-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 #include "Tooltip.h"\r
21 \r
22 ///////////////////////////////////////////////////////////////\r
23 // forward declarations\r
24 ///////////////////////////////////////////////////////////////\r
25 \r
26 namespace LogCache\r
27 {\r
28     struct CLogCacheStatisticsData;\r
29 }\r
30 \r
31 \r
32 class CLogCacheStatisticsDlg : public CDialog\r
33 {\r
34         DECLARE_DYNAMIC(CLogCacheStatisticsDlg)\r
35 \r
36 public:\r
37     CLogCacheStatisticsDlg (const LogCache::CLogCacheStatisticsData& data, CWnd * pParentWnd = NULL); \r
38         virtual ~CLogCacheStatisticsDlg();\r
39 \r
40         enum { IDD = IDD_LOGCACHESTATISTICS };\r
41 \r
42 protected:\r
43         virtual void DoDataExchange(CDataExchange* pDX); \r
44         virtual BOOL OnInitDialog();\r
45         virtual BOOL PreTranslateMessage(MSG* pMsg);\r
46 \r
47         DECLARE_MESSAGE_MAP()\r
48 \r
49 private:\r
50 \r
51     CString sizeRAM;\r
52     CString sizeDisk;\r
53     CString connectionState;\r
54     CString lastRead;\r
55     CString lastWrite;\r
56     CString lastHeadUpdate;\r
57     CString authors;\r
58     CString paths;\r
59     CString pathElements;\r
60     CString skipRanges;\r
61     CString wordTokens;\r
62     CString pairTokens;\r
63     CString textSize;\r
64     CString uncompressedSize;\r
65     CString maxRevision;\r
66     CString revisionCount;\r
67     CString changesTotal;\r
68     CString changedRevisions;\r
69     CString changesMissing;\r
70     CString mergesTotal;\r
71     CString mergesRevisions;\r
72     CString mergesMissing;\r
73     CString userRevpropsTotal;\r
74     CString userRevpropsRevisions;\r
75     CString userRevpropsMissing;\r
76 \r
77     CString DateToString (__time64_t time);\r
78     CString ToString (__int64 value);\r
79 \r
80         CToolTips m_tooltips;\r
81 };\r