]> git.saurik.com Git - wxWidgets.git/blame - src/msw/statline.cpp
compilation fixes
[wxWidgets.git] / src / msw / statline.cpp
CommitLineData
c50f1fb9
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: msw/statline.cpp
3// Purpose: MSW version of wxStaticLine class
4// Author: Vadim Zeitlin
5// Created: 28.06.99
6// Version: $Id$
7// Copyright: (c) 1998 Vadim Zeitlin
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11// ============================================================================
12// declarations
13// ============================================================================
14
15// ----------------------------------------------------------------------------
16// headers
17// ----------------------------------------------------------------------------
18
19#ifdef __GNUG__
20 #pragma implementation "statline.h"
21#endif
22
23// For compilers that support precompilation, includes "wx.h".
24#include "wx/wxprec.h"
25
26#ifdef __BORLANDC__
27 #pragma hdrstop
28#endif
29
30#include "wx/statline.h"
31
f3c0f9e7
JS
32#if wxUSE_STATLINE
33
c50f1fb9
VZ
34#include "wx/msw/private.h"
35
36// ============================================================================
37// implementation
38// ============================================================================
39
40IMPLEMENT_DYNAMIC_CLASS(wxStaticLine, wxControl)
41
42// ----------------------------------------------------------------------------
43// wxStaticLine
44// ----------------------------------------------------------------------------
45
46bool wxStaticLine::Create( wxWindow *parent,
47 wxWindowID id,
48 const wxPoint &pos,
49 const wxSize &size,
50 long style,
51 const wxString &name)
52{
53 if ( !CreateBase(parent, id, pos, size, style, name) )
54 return FALSE;
55
56 parent->AddChild(this);
57
58 wxSize sizeReal = AdjustSize(size);
59
cc985fac
PA
60#ifndef WIN32
61#define SS_SUNKEN 0
62#endif
63
c50f1fb9
VZ
64 m_hWnd = (WXHWND)::CreateWindow
65 (
66 _T("STATIC"),
67 "",
68 WS_VISIBLE | WS_CHILD |
cc985fac 69 SS_GRAYRECT | SS_SUNKEN, // | SS_ETCHEDFRAME,
c50f1fb9
VZ
70 pos.x, pos.y, sizeReal.x, sizeReal.y,
71 GetWinHwnd(parent),
72 (HMENU)m_windowId,
73 wxGetInstance(),
74 NULL
75 );
76
77 if ( !m_hWnd )
78 {
0c07f09e 79#ifdef __WXDEBUG__
c50f1fb9 80 wxLogDebug(_T("Failed to create static control"));
0c07f09e 81#endif
c50f1fb9
VZ
82 return FALSE;
83 }
84
85 SubclassWin(m_hWnd);
86
87 return TRUE;
88}
f3c0f9e7 89#endif
c50f1fb9 90