⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 q3dwebcamtxttotal_int.h

📁 可在q3d裡接收webcam的數值
💻 H
字号:
#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; \
} \
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -