- wxFontDialog(wxWindow* parent, wxFontData* data = NULL);
-
- wxFontData& GetFontData();
- int ShowModal();
-};
-
-
-//----------------------------------------------------------------------
-
-class wxPageSetupData {
-public:
- wxPageSetupData();
- ~wxPageSetupData();
-
- void EnableHelp(bool flag);
- void EnableMargins(bool flag);
- void EnableOrientation(bool flag);
- void EnablePaper(bool flag);
- void EnablePrinter(bool flag);
- wxPoint GetPaperSize();
- wxPoint GetMarginTopLeft();
- wxPoint GetMarginBottomRight();
- wxPoint GetMinMarginTopLeft();
- wxPoint GetMinMarginBottomRight();
- int GetOrientation();
- bool GetDefaultMinMargins();
- bool GetEnableMargins();
- bool GetEnableOrientation();
- bool GetEnablePaper();
- bool GetEnablePrinter();
- bool GetEnableHelp();
- bool GetDefaultInfo();
- void SetPaperSize(const wxPoint& size);
- void SetMarginTopLeft(const wxPoint& pt);
- void SetMarginBottomRight(const wxPoint& pt);
- void SetMinMarginTopLeft(const wxPoint& pt);
- void SetMinMarginBottomRight(const wxPoint& pt);
- void SetOrientation(int orientation);
- void SetDefaultMinMargins(bool flag);
- void SetDefaultInfo(bool flag);
-};
-