Files correlati : Commento : Spostamento in libraries delle librerie esterne di Campo per una maggiore pulizia e organizzazione git-svn-id: svn://10.65.10.50/branches/R_10_00@24150 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /////////////////////////////////////////////////////////////////////////////
 | |
| // Name:        wx/xrc/xh_hyperlink.h
 | |
| // Purpose:     Hyperlink control (wxAdv)
 | |
| // Author:      David Norris <danorris@gmail.com>
 | |
| // Modified by: Ryan Norton, Francesco Montorsi
 | |
| // Created:     04/02/2005
 | |
| // RCS-ID:      $Id: xh_hyperlink.h 41590 2006-10-03 14:53:40Z VZ $
 | |
| // Copyright:   (c) 2005 David Norris
 | |
| // Licence:     wxWindows licence
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| #ifndef _WX_XH_HYPERLINKH__
 | |
| #define _WX_XH_HYPERLINKH__
 | |
| 
 | |
| #include "wx/xrc/xmlres.h"
 | |
| 
 | |
| #if wxUSE_XRC && wxUSE_HYPERLINKCTRL
 | |
| 
 | |
| class WXDLLIMPEXP_XRC wxHyperlinkCtrlXmlHandler : public wxXmlResourceHandler
 | |
| {
 | |
|     // Register with wxWindows' dynamic class subsystem.
 | |
|     DECLARE_DYNAMIC_CLASS(wxHyperlinkCtrlXmlHandler)
 | |
| 
 | |
| public:
 | |
|     // Constructor.
 | |
|     wxHyperlinkCtrlXmlHandler();
 | |
| 
 | |
|     // Creates the control and returns a pointer to it.
 | |
|     virtual wxObject *DoCreateResource();
 | |
| 
 | |
|     // Returns true if we know how to create a control for the given node.
 | |
|     virtual bool CanHandle(wxXmlNode *node);
 | |
| };
 | |
| 
 | |
| #endif // wxUSE_XRC && wxUSE_HYPERLINKCTRL
 | |
| 
 | |
| #endif // _WX_XH_HYPERLINKH__
 |