?? q3dwebcamtxttotal_int.h
字號(hào):
#pragma once
#ifdef Q3DWEBCAMTXTTOTAL_INT_EXPORTS
#define Q3DWEBCAMTXTTOTAL_INT_API __declspec(dllexport)
#else
#define Q3DWEBCAMTXTTOTAL_INT_API __declspec(dllimport)
#endif
class Q3DWEBCAMTXTTOTAL_INT_API Q3DWebCamTxtTotal_Int : public ChannelDialog
{
public:
Q3DWebCamTxtTotal_Int();
virtual ~Q3DWebCamTxtTotal_Int();
// set the channel for this dialog
virtual bool GetChannelDialog(bool modeLess);
//Initialization of the dialog
virtual void InitDialog();
// Release this channel dialog
virtual void Release();
//Refresh the dialog
virtual void Refresh();
//Handles Win32 messages
virtual BOOL OnWndMessage(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
//Handles WM_COMMAND messages
virtual BOOL OnCommandMessage(HWND hwnd, int id, HWND hwndCtl, UINT codeNotify);
// docking support
// CreateDockedChannelDialog
virtual bool CreateDockedChannelDialog(HWND parentHwnd);
// HideMainWindow
virtual void HideMainWindow(bool hide);
// SetTabWindowSize
virtual void SetTabWindowSize(int X, int Y, int newWidth, int newHeight);
// GetStandardDialogRect
virtual RECT GetStandardDialogRect();
// Support cancel button (return true if a Cancel button is supported)
virtual bool GetIfSupportForCancel();
// Handler for OK click
virtual void ClickedOk();
// Handler for Cancel click
virtual void ClickedCancel();
protected:
// our hwnd
HWND dialogHwnd_;
Q3DWebCamTxtTotal * ourChannel_;
};
#define Q3DWEBCAMTXTTOTAL_INTDLL_EXPORTS extern "C" { \
__declspec(dllexport) DllInterface * __cdecl InitDLL() \
{ \
return new Q3DWebCamTxtTotal_Int; \
} \
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -