QPasteWnd.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490
  1. #pragma once
  2. #include "QListCtrl.h"
  3. #include "SearchEditBox.h"
  4. #include "WndEx.h"
  5. #include "GroupStatic.h"
  6. #include "GroupTree.h"
  7. #include "AlphaBlend.h"
  8. #include "Sqlite\CppSQLite3.h"
  9. #include <vector>
  10. #include <list>
  11. #include <map>
  12. #include <afxmt.h>
  13. #include "ClipFormatQListCtrl.h"
  14. #include "QPasteWndThread.h"
  15. #include "editwithbutton.h"
  16. #include "GdipButton.h"
  17. #include "SpecialPasteOptions.h"
  18. #include "ClipIds.h"
  19. #include "SymbolEdit.h"
  20. class CMainTable
  21. {
  22. public:
  23. CMainTable():
  24. m_lID( - 1),
  25. m_bDontAutoDelete(false),
  26. m_bIsGroup(false),
  27. m_bHasShortCut(false),
  28. m_bHasParent(false),
  29. m_dateCopied(0),
  30. m_datePasted(0)
  31. {
  32. }
  33. ~CMainTable()
  34. {
  35. }
  36. long m_lID;
  37. CString m_Desc;
  38. bool m_bDontAutoDelete;
  39. bool m_bIsGroup;
  40. bool m_bHasShortCut;
  41. bool m_bHasParent;
  42. CString m_QuickPaste;
  43. double m_clipOrder;
  44. double m_clipGroupOrder;
  45. double m_stickyClipOrder;
  46. double m_stickyClipGroupOrder;
  47. int m_dateCopied;
  48. int m_datePasted;
  49. static bool SortDesc(const CMainTable& d1, const CMainTable& d2)
  50. {
  51. double d1StickyOrder = d1.m_stickyClipOrder;
  52. double d2StickyOrder = d2.m_stickyClipOrder;
  53. if (d1StickyOrder != d2StickyOrder)
  54. return d1StickyOrder > d2StickyOrder;
  55. if (d1.m_bIsGroup != d2.m_bIsGroup)
  56. return d1.m_bIsGroup < d2.m_bIsGroup;
  57. return d1.m_clipOrder > d2.m_clipOrder;
  58. }
  59. static bool GroupSortDesc(const CMainTable& d1, const CMainTable& d2)
  60. {
  61. double d1StickyOrder = d1.m_stickyClipGroupOrder;
  62. double d2StickyOrder = d2.m_stickyClipGroupOrder;
  63. if (d1StickyOrder != d2StickyOrder)
  64. return d1StickyOrder > d2StickyOrder;
  65. if (d1.m_bIsGroup != d2.m_bIsGroup)
  66. return d1.m_bIsGroup < d2.m_bIsGroup;
  67. return d1.m_clipGroupOrder > d2.m_clipGroupOrder;
  68. }
  69. };
  70. typedef std::map < int, CMainTable > MainTypeMap;
  71. typedef std::map < int, CClipFormatQListCtrl > CF_DibTypeMap;
  72. /////////////////////////////////////////////////////////////////////////////
  73. // CQPasteWnd window
  74. class CQPasteWnd: public CWndEx
  75. {
  76. // Construction
  77. public:
  78. CQPasteWnd();
  79. // Attributes
  80. public:
  81. // Operations
  82. public:
  83. // Overrides
  84. // ClassWizard generated virtual function overrides
  85. //{{AFX_VIRTUAL(CQPasteWnd)
  86. public:
  87. virtual BOOL Create(CRect rect, CWnd *pParentWnd);
  88. virtual BOOL PreTranslateMessage(MSG *pMsg);
  89. bool CheckActions(MSG * pMsg);
  90. //}}AFX_VIRTUAL
  91. // Implementation
  92. public:
  93. bool Add(const CString &csHeader, const CString &csText, int nID);
  94. virtual ~CQPasteWnd();
  95. void UpdateFont();
  96. //protected:
  97. CQListCtrl m_lstHeader;
  98. CAlphaBlend m_Alpha;
  99. //CEditWithButton m_search;
  100. CSymbolEdit m_search;
  101. CFont m_SearchFont;
  102. bool m_bHideWnd;
  103. CString m_strSQLSearch;
  104. CGroupStatic m_stGroup;
  105. CFont m_groupFont;
  106. CString m_Title;
  107. CGroupTree m_GroupTree;
  108. CGdipButton m_ShowGroupsFolderBottom;
  109. CGdipButton m_BackButton;
  110. CGroupStatic m_alwaysOnToWarningStatic;
  111. CGdipButton m_systemMenu;
  112. CString m_SQL;
  113. CString m_CountSQL;
  114. long m_lRecordCount;
  115. bool m_bStopQuery;
  116. bool m_bHandleSearchTextChange;
  117. bool m_bModifersMoveActive;
  118. CQPasteWndThread m_thread;
  119. std::vector<CMainTable> m_listItems;
  120. std::list<CPoint> m_loadItems;
  121. std::list<CClipFormatQListCtrl> m_ExtraDataLoadItems;
  122. CF_DibTypeMap m_cf_dibCache;
  123. CF_DibTypeMap m_cf_rtfCache;
  124. CCriticalSection m_CritSection;
  125. CAccels m_actions;
  126. CAccels m_modifierKeyActions;
  127. bool m_showScrollBars;
  128. int m_leftSelectedCompareId;
  129. void RefreshNc();
  130. void UpdateStatus(bool bRepaintImmediately = false); // regenerates the status (caption) text
  131. BOOL FillList(CString csSQLSearch = "");
  132. BOOL HideQPasteWindow(bool releaseFocus, bool clearSearchData = true);
  133. BOOL ShowQPasteWindow(BOOL bFillList = TRUE);
  134. void MoveControls();
  135. void DeleteSelectedRows();
  136. BOOL OpenID(int id, CSpecialPasteOptions pasteOptions);
  137. BOOL OpenSelection(CSpecialPasteOptions pasteOptions);
  138. BOOL OpenIndex(int item);
  139. BOOL NewGroup(bool bGroupSelection = true, int parentId = -1);
  140. CString LoadDescription(int nItem);
  141. bool SaveDescription(int nItem, CString text);
  142. //Menu Items
  143. void SetLinesPerRow(int lines);
  144. void SetTransparency(int percent);
  145. void OnUpdateLinesPerRow(CCmdUI *pCmdUI, int nValue);
  146. void OnUpdateTransparency(CCmdUI *pCmdUI, int nValue);
  147. void SetMenuChecks(CMenu *pMenu);
  148. void SetSendToMenu(CMenu *pMenu, int nMenuID, int nArrayPos);
  149. void SetFriendChecks(CMenu *pMenu);
  150. BOOL SendToFriendbyPos(int nPos);
  151. bool InsertNextNRecords(int nEnd);
  152. CString GetDisplayText(int lDontAutoDelete, int lShortCut, bool bIsGroup, int lParentID, CString csText);
  153. void FillMainTable(CMainTable &table, CppSQLite3Query &q);
  154. void RunThread();
  155. void MoveSelection(bool down);
  156. void OnKeyStateUp();
  157. void SetKeyModiferState(bool bActive);
  158. void SaveWindowSize();
  159. void SelectFocusID();
  160. void HideMenuGroup(CMenu* menu, CString text);
  161. void SetSearchImages();
  162. DROPEFFECT OnDragOver(COleDataObject* pDataObject, DWORD dwKeyState, CPoint point);
  163. DROPEFFECT OnDragEnter(COleDataObject* pDataObject, DWORD dwKeyState, CPoint point);
  164. BOOL OnDrop(COleDataObject* pDataObject, DROPEFFECT dropEffect, CPoint point);
  165. void OnDragLeave();
  166. COleDropTarget *m_pDropTarget;
  167. bool DoAction(DWORD actionId);
  168. bool DoActionShowDescription();
  169. bool DoActionNextDescription();
  170. bool DoActionPrevDescription();
  171. bool DoActionShowMenu();
  172. bool DoActionNewGroup();
  173. bool DoActionNewGroupSelection();
  174. bool DoActionToggleFileLogging();
  175. bool DoActionToggleOutputDebugString();
  176. bool DoActionCloseWindow();
  177. bool DoActionNextTabControl();
  178. bool DoActionPrevTabControl();
  179. bool DoActionShowGroups();
  180. bool DoActionNewClip();
  181. bool DoActionEditClip();
  182. bool DoModifierActiveActionSelectionUp();
  183. bool DoModifierActiveActionSelectionDown();
  184. bool DoModifierActiveActionMoveFirst();
  185. bool DoModifierActiveActionMoveLast();
  186. bool DoActionCancelFilter();
  187. bool DoActionHomeList();
  188. bool DoActionBackGroup();
  189. bool DoActionToggleShowPersistant();
  190. bool DoActionDeleteSelected();
  191. bool DoActionPasteSelected();
  192. bool DoActionClipProperties();
  193. bool DoActionPasteSelectedPlainText();
  194. bool DoActionMoveClipToGroup();
  195. bool DoActionElevatePrivleges();
  196. bool DoShowInTaskBar();
  197. bool DoClipCompare();
  198. bool DoSelectLeftSideCompare();
  199. bool DoSelectRightSideAndDoCompare();
  200. bool DoExportToQRCode();
  201. bool DoExportToTextFile();
  202. bool DoExportToGoogleTranslate();
  203. bool DoExportToBitMapFile();
  204. bool DoSaveCurrentClipboard();
  205. bool DoMoveClipDown();
  206. bool DoMoveClipUp();
  207. bool DoMoveClipTOP();
  208. bool DoFilterOnSelectedClip();
  209. bool DoPasteUpperCase();
  210. bool DoPasteLowerCase();
  211. bool DoPasteCapitalize();
  212. bool DoPasteSentenceCase();
  213. bool DoPasteRemoveLineFeeds();
  214. bool DoPastePlusAddLineFeed();
  215. bool DoPasteAddTwoLineFeeds();
  216. bool DoPasteTypoglycemia();
  217. bool DoPasteAddCurrentTime();
  218. bool OnShowFirstTenText();
  219. bool OnShowClipWasPasted();
  220. bool OnToggleLastGroupToggle();
  221. bool OnMakeTopSticky();
  222. bool OnMakeLastSticky();
  223. bool OnRemoveStickySetting();
  224. bool OnNewClip();
  225. bool OnImportClip();
  226. bool OnDeleteClipData();
  227. bool OnGlobalHotkyes();
  228. void UpdateMenuShortCut(CCmdUI *pCmdUI, DWORD action);
  229. bool ShowProperties(int id, int row);
  230. bool DeleteClips(CClipIDs &IDs, ARRAY &Indexs);
  231. bool SyncClipDataToArrayData(CClip &clip);
  232. bool SelectIds(ARRAY &ids);
  233. void LoadShortcuts();
  234. void ShowRightClickMenu();;
  235. // Generated message map functions
  236. protected:
  237. //{{AFX_MSG(CQPasteWnd)
  238. DECLARE_MESSAGE_MAP()
  239. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  240. afx_msg void OnSize(UINT nType, int cx, int cy);
  241. afx_msg void OnSetFocus(CWnd *pOldWnd);
  242. afx_msg void OnActivate(UINT nState, CWnd *pWndOther, BOOL bMinimized);
  243. afx_msg void OnMenuLinesperrow1();
  244. afx_msg void OnMenuLinesperrow2();
  245. afx_msg void OnMenuLinesperrow3();
  246. afx_msg void OnMenuLinesperrow4();
  247. afx_msg void OnMenuLinesperrow5();
  248. afx_msg void OnMenuTransparency10();
  249. afx_msg void OnMenuTransparency15();
  250. afx_msg void OnMenuTransparency20();
  251. afx_msg void OnMenuTransparency25();
  252. afx_msg void OnMenuTransparency30();
  253. afx_msg void OnMenuTransparency40();
  254. afx_msg void OnMenuTransparency5();
  255. afx_msg void OnMenuTransparencyNone();
  256. afx_msg void OnMenuDelete();
  257. afx_msg void OnMenuPositioningAtcaret();
  258. afx_msg void OnMenuPositioningAtcursor();
  259. afx_msg void OnMenuPositioningAtpreviousposition();
  260. afx_msg void OnMenuOptions();
  261. afx_msg LRESULT OnCancelFilter(WPARAM wParam, LPARAM lParam);
  262. afx_msg void OnMenuExitprogram();
  263. afx_msg void OnMenuToggleConnectCV();
  264. afx_msg void OnMenuProperties();
  265. afx_msg void OnClose();
  266. afx_msg void OnBegindrag(NMHDR *pNMHDR, LRESULT *pResult);
  267. afx_msg void OnSysKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  268. afx_msg void GetDispInfo(NMHDR *pNMHDR, LRESULT *pResult);
  269. afx_msg void OnFindItem(NMHDR *pNMHDR, LRESULT *pResult);
  270. afx_msg void OnMenuFirsttenhotkeysUsectrlnum();
  271. afx_msg void OnMenuFirsttenhotkeysShowhotkeytext();
  272. afx_msg void OnMenuQuickoptionsAllwaysshowdescription();
  273. afx_msg void OnMenuQuickoptionsDoubleclickingoncaptionTogglesalwaysontop();
  274. afx_msg void OnMenuQuickoptionsDoubleclickingoncaptionRollupwindow();
  275. afx_msg void OnMenuQuickoptionsDoubleclickingoncaptionTogglesshowdescription();
  276. afx_msg void OnMenuQuickoptionsPromptfornewgroupnames();
  277. afx_msg void OnShowGroupsBottom();
  278. afx_msg void OnShowGroupsTop();
  279. afx_msg void OnMenuViewgroups();
  280. afx_msg void OnMenuQuickpropertiesSettoneverautodelete();
  281. afx_msg void OnMenuQuickpropertiesAutodelete();
  282. afx_msg void OnMenuQuickpropertiesRemovehotkey();
  283. afx_msg void OnMenuSenttoFriendEight();
  284. afx_msg void OnMenuSenttoFriendEleven();
  285. afx_msg void OnMenuSenttoFriendFifteen();
  286. afx_msg void OnMenuSenttoFriendFive();
  287. afx_msg void OnMenuSenttoFriendFore();
  288. afx_msg void OnMenuSenttoFriendForeteen();
  289. afx_msg void OnMenuSenttoFriendNine();
  290. afx_msg void OnMenuSenttoFriendSeven();
  291. afx_msg void OnMenuSenttoFriendSix();
  292. afx_msg void OnMenuSenttoFriendTen();
  293. afx_msg void OnMenuSenttoFriendThirteen();
  294. afx_msg void OnMenuSenttoFriendThree();
  295. afx_msg void OnMenuSenttoFriendTwelve();
  296. afx_msg void OnMenuSenttoFriendTwo();
  297. afx_msg void OnMenuSenttoFriendone();
  298. afx_msg void OnMenuSenttoPromptforip();
  299. afx_msg void OnMenuGroupsMovetogroup();
  300. afx_msg void OnMenuPasteplaintextonly();
  301. afx_msg void OnMenuHelp();
  302. afx_msg void OnMenuQuickoptionsFont();
  303. afx_msg void OnMenuQuickoptionsShowthumbnails();
  304. afx_msg void OnMenuQuickoptionsDrawrtftext();
  305. afx_msg void OnMenuQuickoptionsPasteclipafterselection();
  306. afx_msg void OnSearchEditChange();
  307. afx_msg void OnMenuQuickoptionsFindasyoutype();
  308. afx_msg void OnMenuQuickoptionsEnsureentirewindowisvisible();
  309. afx_msg void OnMenuQuickoptionsShowclipsthatareingroupsinmainlist();
  310. afx_msg void OnMenuPastehtmlasplaintext();
  311. afx_msg void OnPromptToDeleteClip();
  312. afx_msg void OnUpdateMenuNewgroup(CCmdUI *pCmdUI);
  313. afx_msg void OnUpdateMenuNewgroupselection(CCmdUI *pCmdUI);
  314. afx_msg void OnUpdateMenuAllwaysontop(CCmdUI *pCmdUI);
  315. afx_msg void OnUpdateMenuViewfulldescription(CCmdUI *pCmdUI);
  316. afx_msg void OnUpdateMenuViewgroups(CCmdUI *pCmdUI);
  317. afx_msg void OnUpdateMenuPasteplaintextonly(CCmdUI *pCmdUI);
  318. afx_msg void OnUpdateMenuDelete(CCmdUI *pCmdUI);
  319. afx_msg void OnUpdateMenuProperties(CCmdUI *pCmdUI);
  320. afx_msg void OnDestroy();
  321. afx_msg LRESULT OnSearchEnterKeyPressed(WPARAM wParam, LPARAM lParam);
  322. afx_msg LRESULT OnListEnd(WPARAM wParam, LPARAM lParam);
  323. afx_msg LRESULT OnSearch(WPARAM wParam, LPARAM lParam);
  324. afx_msg LRESULT OnDelete(WPARAM wParam, LPARAM lParam);
  325. afx_msg void OnGetToolTipText(NMHDR *pNMHDR, LRESULT *pResult);
  326. afx_msg LRESULT OnListSelect_DB_ID(WPARAM wParam, LPARAM lParam);
  327. afx_msg LRESULT OnListMoveSelectionToGroup(WPARAM wParam, LPARAM lParam);
  328. afx_msg LRESULT OnRefreshView(WPARAM wParam, LPARAM lParam);
  329. afx_msg LRESULT OnReloadClipAfterPaste(WPARAM wParam, LPARAM lParam);
  330. afx_msg LRESULT OnGroupTreeMessage(WPARAM wParam, LPARAM lParam);
  331. afx_msg LRESULT OnFillRestOfList(WPARAM wParam, LPARAM lParam);
  332. afx_msg LRESULT OnRefeshRow(WPARAM wParam, LPARAM lParam);
  333. afx_msg LRESULT OnSetListCount(WPARAM wParam, LPARAM lParam);
  334. afx_msg HBRUSH CtlColor(CDC *pDC, UINT nCtlColor);
  335. afx_msg void OnNcLButtonDblClk(UINT nHitTest, CPoint point);
  336. afx_msg void OnWindowPosChanging(WINDOWPOS *lpwndpos);
  337. afx_msg void OnViewcaptionbaronRight();
  338. afx_msg void OnViewcaptionbaronBottom();
  339. afx_msg void OnViewcaptionbaronLeft();
  340. afx_msg void OnViewcaptionbaronTop();
  341. afx_msg void OnMenuAutohide();
  342. afx_msg void OnMenuViewfulldescription();
  343. afx_msg void OnMenuAllwaysontop();
  344. afx_msg void OnMenuNewGroup();
  345. afx_msg void OnMenuNewGroupSelection();
  346. afx_msg void OnBackButton();
  347. afx_msg void OnSystemButton();
  348. afx_msg LRESULT OnUpDown(WPARAM wParam, LPARAM lParam);
  349. afx_msg LRESULT OnItemDeleted(WPARAM wParam, LPARAM lParam);
  350. LRESULT OnToolTipWndInactive(WPARAM wParam, LPARAM lParam);
  351. afx_msg void OnTimer(UINT_PTR nIDEvent);
  352. afx_msg void OnMenuExport();
  353. afx_msg void OnMenuImport();
  354. afx_msg void OnQuickpropertiesRemovequickpaste();
  355. afx_msg void OnMenuEdititem();
  356. afx_msg void OnMenuNewclip();
  357. afx_msg void OnUpdateMenuEdititem(CCmdUI *pCmdUI);
  358. afx_msg void OnUpdateMenuNewclip(CCmdUI *pCmdUI);
  359. afx_msg void CQPasteWnd::OnAddinSelect(UINT id);
  360. afx_msg LRESULT OnSelectAll(WPARAM wParam, LPARAM lParam);
  361. afx_msg LRESULT OnShowHideScrollBar(WPARAM wParam, LPARAM lParam);
  362. afx_msg void OnMenuSearchDescription();
  363. afx_msg void OnMenuSearchFullText();
  364. afx_msg void OnMenuSearchQuickPaste();
  365. afx_msg void OnMenuSimpleTextSearch();
  366. afx_msg LRESULT OnPostOptions(WPARAM wParam, LPARAM lParam);
  367. afx_msg void OnMakeTopStickyClip();
  368. afx_msg void OnMakeLastStickyClip();
  369. afx_msg void OnRemoveSticky();
  370. afx_msg void OnElevateAppToPasteIntoElevatedApp();
  371. public:
  372. afx_msg void OnQuickoptionsShowintaskbar();
  373. afx_msg void OnMenuViewasqrcode();
  374. afx_msg void OnExportExporttotextfile();
  375. afx_msg void OnCompareCompare();
  376. afx_msg void OnCompareSelectleftcompare();
  377. afx_msg void OnCompareCompareagainst();
  378. afx_msg void OnUpdateCompareCompare(CCmdUI *pCmdUI);
  379. afx_msg LRESULT OnShowProperties(WPARAM wParam, LPARAM lParam);
  380. afx_msg LRESULT OnNewGroup(WPARAM wParam, LPARAM lParam);
  381. afx_msg LRESULT OnDeleteId(WPARAM wParam, LPARAM lParam);
  382. afx_msg void OnMenuRegularexpressionsearch();
  383. afx_msg void OnImportExporttogoogletranslate();
  384. afx_msg void OnUpdateImportExporttogoogletranslate(CCmdUI *pCmdUI);
  385. afx_msg void OnImportExportclipBitmap();
  386. afx_msg void OnUpdateImportExportclipBitmap(CCmdUI *pCmdUI);
  387. afx_msg void OnMenuWildcardsearch();
  388. afx_msg void OnMenuSavecurrentclipboard();
  389. afx_msg void OnUpdateMenuSavecurrentclipboard(CCmdUI *pCmdUI);
  390. afx_msg void OnCliporderMoveup();
  391. afx_msg void OnUpdateCliporderMoveup(CCmdUI *pCmdUI);
  392. afx_msg void OnCliporderMovedown();
  393. afx_msg void OnUpdateCliporderMovedown(CCmdUI *pCmdUI);
  394. afx_msg void OnCliporderMovetotop();
  395. afx_msg void OnUpdateCliporderMovetotop(CCmdUI *pCmdUI);
  396. afx_msg void OnMenuFilteron();
  397. afx_msg void OnUpdateMenuFilteron(CCmdUI *pCmdUI);
  398. afx_msg void OnAlwaysOnTopClicked();
  399. //afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
  400. afx_msg void OnSpecialpasteUppercase();
  401. afx_msg void OnUpdateSpecialpasteUppercase(CCmdUI *pCmdUI);
  402. afx_msg void OnSpecialpasteLowercase();
  403. afx_msg void OnUpdateSpecialpasteLowercase(CCmdUI *pCmdUI);
  404. afx_msg void OnSpecialpasteCapitalize();
  405. afx_msg void OnUpdateSpecialpasteCapitalize(CCmdUI *pCmdUI);
  406. afx_msg void OnSpecialpasteSentence();
  407. afx_msg void OnUpdateSpecialpasteSentence(CCmdUI *pCmdUI);
  408. afx_msg void OnSpecialpasteRemovelinefeeds();
  409. afx_msg void OnUpdateSpecialpasteRemovelinefeeds(CCmdUI *pCmdUI);
  410. afx_msg void OnSpecialpastePaste();
  411. afx_msg void OnUpdateSpecialpastePaste(CCmdUI *pCmdUI);
  412. afx_msg void OnSpecialpastePaste32919();
  413. afx_msg void OnUpdateSpecialpastePaste32919(CCmdUI *pCmdUI);
  414. afx_msg void OnSpecialpasteTypoglycemia();
  415. afx_msg void OnUpdateSpecialpasteTypoglycemia(CCmdUI *pCmdUI);
  416. afx_msg void OnNMClickList1(NMHDR *pNMHDR, LRESULT *pResult);
  417. afx_msg void OnNMDblclkList1(NMHDR *pNMHDR, LRESULT *pResult);
  418. afx_msg void OnNMRClickList1(NMHDR *pNMHDR, LRESULT *pResult);
  419. afx_msg void OnNMRDblclkList1(NMHDR *pNMHDR, LRESULT *pResult);
  420. afx_msg void OnQuickoptionsShowtextforfirsttencopyhotkeys();
  421. afx_msg void OnUpdateQuickoptionsShowtextforfirsttencopyhotkeys(CCmdUI *pCmdUI);
  422. afx_msg void OnQuickoptionsShowindicatoracliphasbeenpasted();
  423. afx_msg void OnUpdateQuickoptionsShowindicatoracliphasbeenpasted(CCmdUI *pCmdUI);
  424. afx_msg void OnGroupsTogglelastgroup();
  425. afx_msg void OnUpdateGroupsTogglelastgroup(CCmdUI *pCmdUI);
  426. afx_msg void OnUpdateStickyclipsMaketopstickyclip(CCmdUI *pCmdUI);
  427. afx_msg void OnUpdateStickyclipsMakelaststickyclip(CCmdUI *pCmdUI);
  428. afx_msg void OnUpdateStickyclipsRemovestickysetting(CCmdUI *pCmdUI);
  429. afx_msg void OnSpecialpastePaste32927();
  430. afx_msg void OnUpdateSpecialpastePaste32927(CCmdUI *pCmdUI);
  431. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  432. afx_msg void OnMenuGlobalhotkeys32933();
  433. afx_msg void OnMenuDeleteclipdata32934();
  434. afx_msg void OnMenuImportclip32935();
  435. afx_msg void OnMenuNewclip32937();
  436. afx_msg void OnUpdateMenuImportclip32935(CCmdUI *pCmdUI);
  437. afx_msg void OnUpdateMenuNewclip32937(CCmdUI *pCmdUI);
  438. afx_msg void OnUpdateMenuGlobalhotkeys32933(CCmdUI *pCmdUI);
  439. afx_msg void OnUpdateMenuDeleteclipdata32934(CCmdUI *pCmdUI);
  440. };