win32object.h

来自「这是VCF框架的代码」· C头文件 代码 · 共 232 行

H
232
字号
#ifndef _VCF_WIN32OBJECT_H__#define _VCF_WIN32OBJECT_H__//Win32Object.h/*Copyright 2000-2004 The VCF Project.Please see License.txt in the top level directorywhere you installed the VCF.*/#if _MSC_VER > 1000#   pragma once#endifnamespace VCF{#define SIMPLE_VIEW				WS_CHILD | WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_OVERLAPPED#define BORDERED_VIEW			WS_CHILD | WS_BORDER | WS_CLIPSIBLINGS | WS_CLIPCHILDREN#define SIMPLE_DIALOG			WS_CHILD | WS_CLIPSIBLINGS | WS_CLIPCHILDREN#define FRAME_WINDOW			WS_OVERLAPPEDWINDOWclass Control;class APPLICATIONKIT_API Win32Object : public ObjectWithEvents{public:	typedef std::pair<DWORD,DWORD> CreateParams;	Win32Object();	virtual ~Win32Object();	void registerWin32Class( const String& className, WNDPROC wndProc );	static void addRegisterWin32Class( const String& className );	/**	*Checks whether the class has been registered. Performs a	*std::find() using the registeredWindowClasses_ static list	*/	bool isRegistered();	/**	*called before the create window is called. Overide this to change the	style and style ex parameters. Returns a pair, the pair.first is the style	parameter, the pair.second is the style ex paramater.	*/	virtual CreateParams createParams();	/**	*This is where the window is actually created. Called from constructors	*/	void init();		/**	returns true if no further handling is required, otherwise returns false, which means 	the rest of the handling needs to be done by the default wnd proc.	*/	virtual bool handleEventMessages( UINT message, WPARAM wParam, LPARAM lParam, LRESULT& wndProcResult, WNDPROC defaultWndProc = NULL);	static Win32Object* getWin32ObjectFromHWND( HWND hwnd );	static void registerWin32Object( Win32Object* wndObj );	HWND getHwnd();	LRESULT defaultWndProcedure( UINT message, WPARAM wParam, LPARAM lParam );	void setCreated( const bool& creationComplete );	bool isCreated();	void setPeerControl( Control* control );	Control* getPeerControl();	virtual bool acceptsWMCommandMessages(){		return false;	}	void subclassWindow();protected:	void destroyWindowHandle();	static std::vector< String > registeredWindowClasses_;	static std::map<HWND, Win32Object*> windowMap_;	/**	*this actually contains the current window proc	*/	WNDPROC wndProc_;	/**	*this contains the window proc used for window	*subclassing or just performing the default	*behaviour. By default it is set	*to point to ::DefWindowProc()	*/	WNDPROC defaultWndProc_;	HWND hwnd_;	bool created_;	Control* peerControl_;};};/***CVS Log info*$Log$*Revision 1.4  2005/07/09 23:14:58  ddiego*merging in changes from devmain-0-6-7 branch.**Revision 1.3.2.1  2005/02/16 05:09:32  ddiego*bunch o bug fixes and enhancements to the property editor and treelist control.**Revision 1.3  2004/12/01 04:31:39  ddiego*merged over devmain-0-6-6 code. Marcello did a kick ass job*of fixing a nasty bug (1074768VCF application slows down modal dialogs.)*that he found. Many, many thanks for this Marcello.**Revision 1.2.2.2  2004/11/10 19:07:38  marcelloptr*fixed documentation for doxygen**Revision 1.2.2.1  2004/09/06 18:33:43  ddiego*fixed some more transparent drawing issues**Revision 1.2  2004/08/07 02:49:11  ddiego*merged in the devmain-0-6-5 branch to stable**Revision 1.1.2.6  2004/07/14 18:18:14  ddiego*fixed problem with edit control. Turns out we were using the wrong*subclassed wndproc. This is now fixed.**Revision 1.1.2.5  2004/07/12 02:05:45  ddiego*fixed a subtle bug (that only showed up when using a lightweight*control) that happened with MouseClick events being handled twice.**Revision 1.1.2.4  2004/07/01 20:53:43  ddiego*minor fix in WS_XXX styles**Revision 1.1.2.3  2004/06/06 07:05:31  marcelloptr*changed macros, text reformatting, copyright sections**Revision 1.1.2.2  2004/04/29 03:43:16  marcelloptr*reformatting of source files: macros and csvlog and copyright sections**Revision 1.1.2.1  2004/04/28 00:28:21  ddiego*migration towards new directory structure**Revision 1.13.4.2  2004/04/26 21:58:44  marcelloptr*changes for dir reorganization: _VCF_MACRO_H__**Revision 1.13.4.1  2004/04/21 02:17:23  ddiego*checking in change to FoundationKit, GraphicsKit and Application*Kit to support unicode in Win32**Revision 1.13  2003/12/18 05:15:59  ddiego*merge from devmain-0-6-2 branch into the stable branch**Revision 1.12.2.2  2003/10/31 05:06:23  ddiego*added toolbar impl**Revision 1.12.2.1  2003/09/12 00:09:33  ddiego*added better tabbing behaviour - fixed an earlier bug.*Code is easier to understand and it simplified the implementation*a bit as well*Moved around the RTTI definitions for various Appkit classes to a*single inline and stripped them from the various class headers**Revision 1.12  2003/08/09 02:56:44  ddiego*merge over from the devmain-0-6-1 branch*Changes*Features:*-Added additional implementation to better support the MVC architecture in*the VCF**-Added a Document/View architecure that is similar to MFC's or NextSteps's*Doc/View architectures**-Integrated the Anti Grain Graphics library into the GraphicsKit. There is*now basic support for it in terms of drawing vector shapes*(fills and strokes). Image support will come in the next release**-Added several documented graphics tutorials**Bugfixes:**[ 775744 ] wrong buttons on a dialog*[ 585239 ] Painting weirdness in a modal dialog ?*[ 585238 ] Modal dialog which makes a modal Dialog*[ 509004 ] Opening a modal Dialog causes flicker*[ 524878 ] onDropped not called for MLTcontrol**Plus an issue with some focus and getting the right popup window to activate*has also been fixed**Revision 1.11.2.1  2003/05/27 04:45:32  ddiego*doing some code cleanup to fix some bugs in the way dialogs and popups*work in Win32 port. Cleaned up the ControlPeer and DialogPeer interfaces*a bit.**Revision 1.11  2003/05/17 20:37:13  ddiego*this is the checkin for the 0.6.1 release - represents the merge over from*the devmain-0-6-0 branch plus a few minor bug fixes**Revision 1.10.22.2  2003/03/23 03:23:50  marcelloptr*3 empty lines at the end of the files**Revision 1.10.22.1  2003/03/12 03:11:25  ddiego*switched all member variable that used the "m_"<name> prefix to* <name>"_" suffix nameing standard.*Also changed all vcf builder files to accomadate this.*Changes were made to the Stream classes to NOT multiple inheritance and to*be a little more correct. Changes include breaking the FileStream into two*distinct classes, one for input and one for output.**Revision 1.10  2002/01/24 01:46:48  ddiego*added a cvs "log" comment to the top of all files in vcf/src and vcf/include*to facilitate change tracking**/#endif // _VCF_WIN32OBJECT_H__

⌨️ 快捷键说明

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