1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #ifndef DEBUGGERQUICKWATCHDLG_H_
- #define DEBUGGERQUICKWATCHDLG_H_
- class rvDebuggerWindow;
- class rvDebuggerQuickWatchDlg
- {
- public:
- rvDebuggerQuickWatchDlg ( );
- bool DoModal ( rvDebuggerWindow* window, int callstackDepth, const char* variable = NULL );
- protected:
- HWND mWnd;
- int mCallstackDepth;
- idStr mVariable;
- rvDebuggerWindow* mDebuggerWindow;
- void SetVariable ( const char* varname, bool force = false );
- private:
- int mEditFromRight;
- int mButtonFromRight;
- int mEditFromBottom;
- static INT_PTR CALLBACK DlgProc ( HWND wnd, UINT msg, WPARAM wparam, LPARAM lparam );
- };
- #endif
|