wxRTC functions now operate on the currently focused object, which by default is the whole buffer. Up to three property commands are now shown on the context menu, depending on available objects in the current hierarchy. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66680 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
| /////////////////////////////////////////////////////////////////////////////
 | |
| // Name:        wx/richtext/richtextdialogpage.h
 | |
| // Purpose:     Formatting dialog page base class for wxRTC
 | |
| // Author:      Julian Smart
 | |
| // Modified by:
 | |
| // Created:     2010-11-14
 | |
| // RCS-ID:      $Id$
 | |
| // Copyright:   (c) Julian Smart
 | |
| // Licence:     wxWindows Licence
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| #ifndef _WX_RICHTEXTDIALOGPAGE_H_
 | |
| #define _WX_RICHTEXTDIALOGPAGE_H_
 | |
| 
 | |
| #if wxUSE_RICHTEXT
 | |
| 
 | |
| #include "wx/panel.h"
 | |
| #include "wx/richtext/richtextuicustomization.h"
 | |
| 
 | |
| /**
 | |
|     @class wxRichTextDialogPage
 | |
|     The base class for formatting dialog pages.
 | |
|  **/
 | |
| 
 | |
| class WXDLLIMPEXP_RICHTEXT wxRichTextDialogPage: public wxPanel
 | |
| {
 | |
| public:
 | |
|     wxRichTextDialogPage() {}
 | |
|     wxRichTextDialogPage(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0)
 | |
|     {
 | |
|         Create(parent, id, pos, size, style);
 | |
|     }
 | |
| 
 | |
|     DECLARE_BASE_CLASS_HELP_PROVISION()
 | |
| };
 | |
| 
 | |
| #endif
 | |
|     // wxUSE_RICHTEXT
 | |
| 
 | |
| #endif
 | |
|     // _WX_RICHTEXTDIALOGPAGE_H_
 |