git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27408 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /////////////////////////////////////////////////////////////////////////////
 | |
| // Name:        fontdlgg.h
 | |
| // Purpose:     wxFontDialog
 | |
| // Author:      Robert Roebling
 | |
| // Created:
 | |
| // RCS-ID:      $Id$
 | |
| // Copyright:   (c) Robert Roebling
 | |
| // Licence:     wxWindows licence
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| #ifndef __GTK_FONTDLGH__
 | |
| #define __GTK_FONTDLGH__
 | |
| 
 | |
| #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 | |
| #pragma interface "fontdlg.h"
 | |
| #endif
 | |
| 
 | |
| //-----------------------------------------------------------------------------
 | |
| // wxFontDialog
 | |
| //-----------------------------------------------------------------------------
 | |
| 
 | |
| class wxFontDialog : public wxFontDialogBase
 | |
| {
 | |
| public:
 | |
|     wxFontDialog() : wxFontDialogBase() { /* must be Create()d later */ }
 | |
|     wxFontDialog(wxWindow *parent)
 | |
|         : wxFontDialogBase(parent) { Create(parent); }
 | |
|     wxFontDialog(wxWindow *parent, const wxFontData& data)
 | |
|         : wxFontDialogBase(parent, data) { Create(parent, data); }
 | |
| 
 | |
|     virtual ~wxFontDialog();
 | |
| 
 | |
|     // implementation only
 | |
|     void SetChosenFont(const char *name);
 | |
| 
 | |
|     // deprecated interface, don't use
 | |
|     wxFontDialog(wxWindow *parent, const wxFontData *data)
 | |
|         : wxFontDialogBase(parent, data) { Create(parent, data); }
 | |
| 
 | |
| protected:
 | |
|     // create the GTK dialog
 | |
|     virtual bool DoCreate(wxWindow *parent);
 | |
| 
 | |
| private:
 | |
|     DECLARE_DYNAMIC_CLASS(wxFontDialog)
 | |
| };
 | |
| 
 | |
| #endif
 |