Statistics
| Revision:

svn-gvsig-desktop / trunk / install / launcher / izpack-launcher-1.3_linux / src / wx / include / wx / stattext.h @ 6834

History | View | Annotate | Download (1.16 KB)

1
/////////////////////////////////////////////////////////////////////////////
2
// Name:        stattext.h
3
// Purpose:     wxStaticText base header
4
// Author:      Julian Smart
5
// Modified by:
6
// Created:
7
// Copyright:   (c) Julian Smart
8
// RCS-ID:      $Id: stattext.h 6834 2006-08-24 08:23:24Z jmvivo $
9
// Licence:     wxWindows licence
10
/////////////////////////////////////////////////////////////////////////////
11

    
12
#ifndef _WX_STATTEXT_H_BASE_
13
#define _WX_STATTEXT_H_BASE_
14

    
15
#if wxUSE_STATTEXT
16

    
17
#include "wx/control.h"
18

    
19
WXDLLEXPORT_DATA(extern const wxChar*) wxStaticTextNameStr;
20

    
21
class WXDLLEXPORT wxStaticTextBase : public wxControl
22
{
23
public:
24
    // overriden base class virtuals
25
    virtual bool AcceptsFocus() const { return FALSE; }
26
};
27

    
28
#if defined(__WXUNIVERSAL__)
29
    #include "wx/univ/stattext.h"
30
#elif defined(__WXMSW__)
31
    #include "wx/msw/stattext.h"
32
#elif defined(__WXMOTIF__)
33
    #include "wx/motif/stattext.h"
34
#elif defined(__WXGTK__)
35
    #include "wx/gtk/stattext.h"
36
#elif defined(__WXMAC__)
37
    #include "wx/mac/stattext.h"
38
#elif defined(__WXPM__)
39
    #include "wx/os2/stattext.h"
40
#elif defined(__WXSTUBS__)
41
    #include "wx/stubs/stattext.h"
42
#endif
43

    
44
#endif // wxUSE_STATTEXT
45

    
46
#endif
47
    // _WX_STATTEXT_H_BASE_