1999-08-24 20:30:10 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: fontdlgg.h
|
|
|
|
// Purpose: wxFontDialog
|
|
|
|
// Author: Robert Roebling
|
1999-11-05 19:03:19 +00:00
|
|
|
// Created:
|
1999-08-24 20:30:10 +00:00
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Robert Roebling
|
1999-11-05 19:03:19 +00:00
|
|
|
// Licence: wxWindows licence
|
1999-08-24 20:30:10 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __GTK_FONTDLGH__
|
|
|
|
#define __GTK_FONTDLGH__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "fontdlg.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/setup.h"
|
|
|
|
#include "wx/gdicmn.h"
|
|
|
|
#include "wx/font.h"
|
|
|
|
#include "wx/dialog.h"
|
|
|
|
#include "wx/cmndata.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxFontDialog;
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxFontDialog
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxFontDialog: public wxDialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxFontDialog() {}
|
|
|
|
wxFontDialog( wxWindow *parent, wxFontData *data = (wxFontData *) NULL );
|
|
|
|
~wxFontDialog();
|
|
|
|
|
1999-11-05 19:03:19 +00:00
|
|
|
wxFontData& GetFontData() { return m_fontData; }
|
1999-08-24 20:30:10 +00:00
|
|
|
|
|
|
|
//protected:
|
|
|
|
wxFontData m_fontData;
|
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxFontDialog)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|