X-Git-Url: http://git.sourceforge.jp/view?p=tortoisegit%2FTortoiseGitJp.git;a=blobdiff_plain;f=src%2FTortoiseProc%2FGitLogListBase.h;h=d668f14b3526ce99e6d5086d85d494728860bf98;hp=bd643e271bc9b0068dcc399d82edb66921410a83;hb=7624c10b2629e632191a1ed7329d35e6f0f9fe46;hpb=658e7d1c3bd8e072736cd8b212c394078bc8affc;ds=inline diff --git a/src/TortoiseProc/GitLogListBase.h b/src/TortoiseProc/GitLogListBase.h index bd643e2..d668f14 100644 --- a/src/TortoiseProc/GitLogListBase.h +++ b/src/TortoiseProc/GitLogListBase.h @@ -148,6 +148,10 @@ public: CString m_sFilterText; CTime m_From; CTime m_To; + + CTGitPath m_Path; + BOOL m_bAllBranch; + void GetTimeRange(CTime &oldest,CTime &latest); virtual void ContextMenuAction(int cmd,int FirstSelect, int LastSelect)=0; void ReloadHashMap() @@ -155,6 +159,14 @@ public: m_HashMap.clear(); g_Git.GetMapHashToFriendName(m_HashMap); } + void TerminateThread() + { + if(this->m_LoadingThread) + AfxTermThread((HINSTANCE)m_LoadingThread->m_hThread); + }; + + volatile bool m_bExitThread; + CWinThread* m_LoadingThread; protected: DECLARE_MESSAGE_MAP() afx_msg void OnNMCustomdrawLoglist(NMHDR *pNMHDR, LRESULT *pResult); @@ -201,6 +213,10 @@ protected: void *m_ProcData; CStoreSelection* m_pStoreSelection; MAP_HASH_NAME m_HashMap; + + + + };