-
Notifications
You must be signed in to change notification settings - Fork 204
/
CP_Main.h
218 lines (171 loc) · 5.72 KB
/
CP_Main.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
#pragma once
#ifndef __AFXWIN_H__
#error include 'stdafx.h' before including this file for PCH
#endif
#include "resource.h" // main symbols
#include "Clip.h"
#include "DatabaseUtilities.h"
#include "Misc.h"
#include "Options.h"
#include "Shared/ArrayEx.h"
#include "MainFrm.h"
#include "ProcessPaste.h"
#include "MultiLanguage.h"
#include "CopyThread.h"
#include "ClipboardSaveRestore.h"
#include "DittoCopyBuffer.h"
#include "sqlite\CppSQLite3.h"
#include "DittoAddins.h"
#include "externalwindowtracker.h"
#include "HotKeys.h"
#include "UAC_Thread.h"
#include "ICU_String.h"
extern class CCP_MainApp theApp;
class CCP_MainApp : public CWinApp
{
public:
CCP_MainApp();
~CCP_MainApp();
CppSQLite3DB m_db;
bool m_databaseOnNetworkShare;
HANDLE m_hMutex; // for singleton app
HANDLE m_adminPasteMutex;
// track stages of startup / shutdown
bool m_bAppRunning;
bool m_bAppExiting;
int m_connectOnStartup;
bool m_bExitServerThread;
// MainFrame
HWND m_MainhWnd;
CMainFrame* m_pMainFrame;
CFrameWnd* m_pNoDbMainFrame;
void AfterMainCreate(); // called after main window creation
void BeforeMainClose(); // called before main window close
// System-wide HotKeys
CHotKey* m_pDittoHotKey; // activate ditto's qpaste window
CHotKey* m_pDittoHotKey2; // activate ditto's qpaste window
CHotKey* m_pDittoHotKey3; // activate ditto's qpaste window
CHotKey* m_pPosOne;
CHotKey* m_pPosTwo;
CHotKey* m_pPosThree;
CHotKey* m_pPosFour;
CHotKey* m_pPosFive;
CHotKey* m_pPosSix;
CHotKey* m_pPosSeven;
CHotKey* m_pPosEight;
CHotKey* m_pPosNine;
CHotKey* m_pPosTen;
CHotKey* m_pCopyBuffer1;
CHotKey* m_pPasteBuffer1;
CHotKey* m_pCutBuffer1;
CHotKey* m_pCopyBuffer2;
CHotKey* m_pPasteBuffer2;
CHotKey* m_pCutBuffer2;
CHotKey* m_pCopyBuffer3;
CHotKey* m_pPasteBuffer3;
CHotKey* m_pCutBuffer3;
CHotKey* m_pCopyBuffer4;
CHotKey* m_pPasteBuffer4;
CHotKey* m_pCutBuffer4;
CHotKey* m_pCopyBuffer5;
CHotKey* m_pPasteBuffer5;
CHotKey* m_pCutBuffer5;
CHotKey* m_pTextOnlyPaste;
CHotKey* m_pSaveClipboard;
CHotKey* m_pCopyAndSaveClipboard;
ExternalWindowTracker m_activeWnd;
// CopyThread and ClipViewer (Copy and Paste Management)
CCopyThread m_CopyThread;
void StartCopyThread();
void StopCopyThread();
// for posting messages
HWND GetClipboardViewer() { return m_CopyThread.m_pClipboardViewer->m_hWnd; }
bool EnableCbCopy(bool bState) { return m_CopyThread.SetCopyOnChange(bState); }
bool IsClipboardViewerConnected() { return m_CopyThread.IsClipboardViewerConnected(); }
bool GetConnectCV() { return m_CopyThread.GetConnectCV(); }
void SetConnectCV(bool bConnect);
bool ToggleConnectCV();
void UpdateMenuConnectCV(CMenu* pMenu, UINT nMenuID);
bool ImportClips(HWND hWnd);
void LoadGlobalClips();
void OnDeleteID(long lID);
BOOL GetClipData(long lID, CClipFormat& Clip);
bool EditItems(CClipIDs& Ids, bool bShowError);
CClipTypes* LoadTypesFromDB(); // returns a "new" allocated object
void ReloadTypes();
void RefreshView(CopyReasonEnum::CopyReason copyReason = CopyReasonEnum::COPY_TO_UNKOWN); // refreshes the view if it is visible
void RefreshClipAfterPaste(int clipId, int updateFlags);
void OnCopyCompleted(long lLastID, int count = 1, CopyReasonEnum::CopyReason copyReason = CopyReasonEnum::COPY_TO_UNKOWN);
void OnPasteCompleted();
// Groups
long m_GroupDefaultID; // new clips are saved to this group
long m_GroupID; // current group
long m_GroupParentID; // current group's parent
CString m_GroupText; // current group's description
long m_oldGroupID;
long m_oldGroupParentID;
CString m_oldGroupText;
void SaveCurrentGroupState();
void ClearOldGroupState();
BOOL TryEnterOldGroupState();
BOOL EnterGroupID(long lID, BOOL clearOldGroupState = TRUE, BOOL saveCurrentGroupState = FALSE);
long GetValidGroupID(); // returns a valid id (not negative)
void SetGroupDefaultID(long lID); // sets a valid id
// Window States
// the ID given focus by CQPasteWnd::FillList
long m_FocusID;
bool m_bShowingQuickPaste;
bool m_bRefreshView;
CString m_Status;
CQPasteWnd* QPasteWnd();
HWND QPastehWnd();
void SetStatus(const TCHAR* status = NULL, bool bRepaintImmediately = false);
void ShowPersistent(bool bVal);
bool m_bAsynchronousRefreshView;
//Socket Info
SOCKET m_sSocket;
void StartStopServerThread();
void StopServerThread();
long m_lClipsSent;
long m_lClipsRecieved;
long m_lLastGoodIndexForNextworkPassword;
CLIPFORMAT m_cfIgnoreClipboard; // used by CClip::LoadFromClipboard
CLIPFORMAT m_cfDelaySavingData;
CLIPFORMAT m_PingFormat;
CLIPFORMAT m_HTML_Format;
CLIPFORMAT m_RemoteCF_HDROP;
CLIPFORMAT m_RTFFormat;
CLIPFORMAT m_DittoFileData;
CLIPFORMAT m_PNG_Format;
COleDateTime m_oldtStartUp;
CMultiLanguage m_Language;
CDittoCopyBuffer m_CopyBuffer;
void PumpMessageEx(HWND hWnd = NULL);
CDittoAddins m_Addins;
ULONG_PTR m_gdiplusToken;
bool UACPaste();
bool UACCopy();
bool UACCut();
bool UACThreadRunning();
void RefreshShowInTaskBar();
void SetActiveGroupId(int groupId);
int GetActiveGroupId();
void SetCopyReason(CopyReasonEnum::CopyReason copyReason);
CopyReasonEnum::CopyReason GetCopyReason();
void CreateMainWnd();
void CloseNoDbWindow();
CICU_String m_icuString;
public:
virtual BOOL InitInstance();
virtual int ExitInstance();
afx_msg void OnAppAbout();
DECLARE_MESSAGE_MAP()
virtual BOOL OnIdle(LONG lCount);
protected:
void ShowCommandLineError(CString csTitle, CString csMessage);
CUAC_Thread* m_pUacPasteThread;
int m_activeGroupId;
DWORD m_activeGroupStartTime;
CopyReasonEnum::CopyReason m_copyReason;
DWORD m_copyReasonStartTime;
};