mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-25 21:31:25 +00:00
39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/gtk1/fontdlg.h
|
|
// Purpose: wxFontDialog
|
|
// Author: Robert Roebling
|
|
// Created:
|
|
// Copyright: (c) Robert Roebling
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __GTK_FONTDLGH__
|
|
#define __GTK_FONTDLGH__
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// wxFontDialog
|
|
//-----------------------------------------------------------------------------
|
|
|
|
class WXDLLIMPEXP_CORE 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);
|
|
|
|
protected:
|
|
// create the GTK dialog
|
|
virtual bool DoCreate(wxWindow *parent);
|
|
|
|
private:
|
|
wxDECLARE_DYNAMIC_CLASS(wxFontDialog);
|
|
};
|
|
|
|
#endif
|