• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/cocoa/private/
1/////////////////////////////////////////////////////////////////////////////
2// Name:        wx/cocoa/fontfactory.h
3// Purpose:     wxFontFactory class
4// Author:      David Elliott
5// Modified by:
6// Created:     2007-10-13
7// RCS-ID:      $Id: fontfactory.h 60554 2009-05-08 23:10:00Z VZ $
8// Copyright:   2007 David Elliott
9// Licence:     wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_COCOA_FONTFACTORY_H_
13#define _WX_COCOA_FONTFACTORY_H_
14
15/*! @discussion
16    This class exists so that wxFont need not know about wxSettings
17    The implementation, however, is in the font.mm file because the
18    implementation needs to have knowledge of wxFontRefData.
19 */
20class wxCocoaFontFactory
21{
22public:
23    /*! @abstract   Create an instance with the specified NSFont and underline flag.
24     */
25    static wxFont InstanceForNSFont(WX_NSFont cocoaFont, bool underlined = false);
26};
27
28#endif  //_WX_COCOA_FONTFACTORY_H_
29