author | Michael Krelin <hacker@klever.net> | 2005-07-06 21:49:03 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2005-07-06 21:49:03 (UTC) |
commit | bdbe0e4fff764357d0bb6236f22d6f1dcc0548ba (patch) (side-by-side diff) | |
tree | 346c632a5308885dc657de9b724256c62c80f3b8 /KLogDlg.h | |
parent | c8fe0207895827e5533f4100d203a187f021ebe8 (diff) | |
download | klog-bdbe0e4fff764357d0bb6236f22d6f1dcc0548ba.zip klog-bdbe0e4fff764357d0bb6236f22d6f1dcc0548ba.tar.gz klog-bdbe0e4fff764357d0bb6236f22d6f1dcc0548ba.tar.bz2 |
added vertical resizability and changed version to trunk
git-svn-id: http://svn.klever.net/kin/klog/trunk@115 fe716a7a-6dde-0310-88d9-d003556173a8
-rw-r--r-- | KLogDlg.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -76,64 +76,65 @@ public: virtual ~CKLogDlg(); void SaveSettings(); void LoadSettings(); BOOL m_bExiting; BOOL m_bShown; CTrayer* m_Trayer; virtual BOOL PreTranslateMessage(MSG* pMsg); void AddLogLine(CLogEntry *le); void LogMessage(UINT pri,UINT fac,LPCTSTR line,SOCKADDR_IN *sin); CKLogSocket m_KLS; virtual void Serialize(CArchive& ar); void TotalCleanUp(); BITMAP m_bitmapBack;
CBitmap m_bmpBack;
void UpdateLogLength(BOOL bSave=TRUE,BOOL update=FALSE); int m_LogItems; void UpdateLogto(BOOL bSave=TRUE,BOOL update=TRUE); void UpdatePriface(BOOL bSave=TRUE,BOOL update=TRUE); static UINT m_PriorityCtls[CSyslogSocket::totalPriorities]; CLogger* m_Logger; void SetTab(CLogger* l); int m_iTriggered; int m_iNormal; CImageList m_Images; CLoggers m_Logs; CKLogDlg(CWnd* pParent = NULL); // standard constructor
DECLARE_SERIAL( CKLogDlg )
// Dialog Data
//{{AFX_DATA(CKLogDlg)
enum { IDD = IDD_KLOG_DIALOG };
+ CButton m_CancelCtl;
CButton m_LogPatternCtl;
CButton m_FilesCtl;
CSpinButtonCtrl m_LogLenSpinCtl;
CStatic m_LogLengthCtl;
CButton m_PriInvertCtl;
CButton m_LogtoFileCtl;
CButton m_LogtoHostCtl;
CButton m_LogtoNoneCtl;
CStatic m_HFNameCaptionCtl;
CListBox m_hlCtl;
CButton m_BrowseSoundCtl;
CButton m_PriNoneCtl;
CButton m_hlRemoveCtl;
CEdit m_hlMaskCtl;
CEdit m_hlIPCtl;
CButton m_hlAddCtl;
CButton m_PriAllCtl;
CComboBox m_SoundCtl;
CButton m_RemoveCtl;
CButton m_PlaySoundCtl;
CListBox m_Log;
CEdit m_HFNameCtl;
CComboBox m_FacilityCtl;
CButton m_BrowseCtl;
CEdit m_DescCtl;
CTabCtrl m_Tabs;
int m_Logto;
CString m_Desc;
CString m_Facility;
CString m_HFName;
CString m_HFNameCaption;
CString m_hlIP;
@@ -164,35 +165,37 @@ protected: afx_msg void OnSelchangeFacility();
afx_msg void OnPriority();
afx_msg void OnLogto();
afx_msg void OnPriAll();
afx_msg void OnPriNone();
afx_msg void OnChangeDesc();
afx_msg void OnPriInvert();
afx_msg void OnHlAdd();
afx_msg void OnSelchangeHosts();
afx_msg void OnHlRemove();
afx_msg void OnRemove();
afx_msg void OnPlaysound();
afx_msg void OnEditchangeSound();
afx_msg void OnKillfocusSound();
afx_msg void OnDeltaposLoglenspin(NMHDR* pNMHDR, LRESULT* pResult);
afx_msg void OnExit();
afx_msg void OnFiles();
afx_msg void OnFilesExport();
afx_msg void OnFilesImport();
afx_msg void OnBrowsesound();
afx_msg void OnKillfocusHostfile();
virtual void OnOK();
afx_msg void OnBrowse();
afx_msg void OnFilesReset();
afx_msg void OnSelchangeLog();
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnClose();
afx_msg void OnTrayAboutklog();
afx_msg void OnTrayExit();
afx_msg void OnTrayShowklogwindow();
afx_msg void OnWindowPosChanging(WINDOWPOS FAR* lpwndpos);
afx_msg void OnLogpattern();
+ afx_msg void OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI);
+ afx_msg void OnSize(UINT nType, int cx, int cy);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
|