| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #pragma once
- #include "EventThread.h"
- #include "sqlite/CppSQLite3.h"
- class CQPasteWndThread: public CEventThread
- {
- public:
- CQPasteWndThread(void);
- ~CQPasteWndThread(void);
- enum eCQPasteWndThreadEvents
- {
- DO_SET_LIST_COUNT,
- LOAD_ACCELERATORS,
- UNLOAD_ACCELERATORS,
- LOAD_ITEMS,
- LOAD_EXTRA_DATA,
- ECQPASTEWNDTHREADEVENTS_COUNT //must be last
- };
- void FireSetListCount()
- {
- FireEvent(DO_SET_LIST_COUNT);
- }
- void FireLoadItems(bool firstLoad)
- {
- FireEvent(LOAD_ITEMS);
- }
- void FireLoadExtraData(int rowHeight)
- {
- m_rowHeight = rowHeight;
- FireEvent(LOAD_EXTRA_DATA);
- }
- void FireLoadAccelerators()
- {
- FireEvent(LOAD_ACCELERATORS);
- }
- void FireUnloadAccelerators()
- {
- FireEvent(UNLOAD_ACCELERATORS);
- }
- HANDLE m_SearchingEvent;
- void SetRowHeight(int height) { m_rowHeight = height; }
- void SetSearchSql(CString sql, CString countSql) { m_sql = sql; m_countSql = countSql; }
- protected:
- virtual void OnEvent(int eventId, void *param);
- virtual void OnTimeOut(void *param);
- void OnSetListCount(void *param);
- void OnLoadItems(void *param);
- void OnLoadExtraData(void *param);
- //void ReduceMapItems(CF_DibTypeMap mapItem, CCriticalSection &critSection, CString mapName);
- void OnLoadAccelerators(void *param);
- void OnUnloadAccelerators(void *param);
- CString EnumName(eCQPasteWndThreadEvents e);
- int m_rowHeight;
- CString m_sql;
- CString m_countSql;
- };
|