git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7512 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
96 lines
2.6 KiB
C++
96 lines
2.6 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: msw/statline.cpp
|
|
// Purpose: MSW version of wxStaticLine class
|
|
// Author: Vadim Zeitlin
|
|
// Created: 28.06.99
|
|
// Version: $Id$
|
|
// Copyright: (c) 1998 Vadim Zeitlin
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ============================================================================
|
|
// declarations
|
|
// ============================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// headers
|
|
// ----------------------------------------------------------------------------
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation "statline.h"
|
|
#endif
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#include "wx/statline.h"
|
|
|
|
#if wxUSE_STATLINE
|
|
|
|
#include "wx/msw/private.h"
|
|
#include "wx/log.h"
|
|
|
|
#ifndef SS_SUNKEN
|
|
#define SS_SUNKEN 0x00001000L
|
|
#endif
|
|
|
|
#ifndef SS_NOTIFY
|
|
#define SS_NOTIFY 0x00000100L
|
|
#endif
|
|
|
|
// ============================================================================
|
|
// implementation
|
|
// ============================================================================
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxStaticLine, wxControl)
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxStaticLine
|
|
// ----------------------------------------------------------------------------
|
|
|
|
bool wxStaticLine::Create( wxWindow *parent,
|
|
wxWindowID id,
|
|
const wxPoint &pos,
|
|
const wxSize &size,
|
|
long style,
|
|
const wxString &name)
|
|
{
|
|
if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) )
|
|
return FALSE;
|
|
|
|
parent->AddChild(this);
|
|
|
|
wxSize sizeReal = AdjustSize(size);
|
|
|
|
m_hWnd = (WXHWND)::CreateWindow
|
|
(
|
|
wxT("STATIC"),
|
|
wxT(""),
|
|
WS_VISIBLE | WS_CHILD /* | WS_CLIPSIBLINGS */ |
|
|
SS_GRAYRECT | SS_SUNKEN | SS_NOTIFY,
|
|
pos.x, pos.y, sizeReal.x, sizeReal.y,
|
|
GetWinHwnd(parent),
|
|
(HMENU)m_windowId,
|
|
wxGetInstance(),
|
|
NULL
|
|
);
|
|
|
|
if ( !m_hWnd )
|
|
{
|
|
wxLogDebug(wxT("Failed to create static control"));
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
SubclassWin(m_hWnd);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
#endif // wxUSE_STATLINE
|
|
|