• 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/mac/classic/
1///////////////////////////////////////////////////////////////////////////////
2// Name:        wx/mac/apptrait.h
3// Purpose:     standard implementations of wxAppTraits for MacOS
4// Author:      Vadim Zeitlin
5// Modified by: Stefan Csomor
6// Created:     23.06.2003
7// RCS-ID:      $Id: apptrait.h 27408 2004-05-23 20:53:33Z JS $
8// Copyright:   (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
9// Licence:     wxWindows licence
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_MAC_APPTRAIT_H_
13#define _WX_MAC_APPTRAIT_H_
14
15// ----------------------------------------------------------------------------
16// wxGUI/ConsoleAppTraits: must derive from wxAppTraits, not wxAppTraitsBase
17// ----------------------------------------------------------------------------
18
19class WXDLLEXPORT wxConsoleAppTraits : public wxConsoleAppTraitsBase
20{
21public:
22    // other miscellaneous helpers
23    // ---------------------------
24
25    virtual wxToolkitInfo& GetToolkitInfo();
26};
27
28#if wxUSE_GUI
29
30class WXDLLEXPORT wxGUIAppTraits : public wxGUIAppTraitsBase
31{
32public:
33    // other miscellaneous helpers
34    // ---------------------------
35
36    virtual wxToolkitInfo& GetToolkitInfo();
37};
38
39#endif // wxUSE_GUI
40
41#endif // _WX_MAC_APPTRAIT_H_
42
43