mirror of https://github.com/PCSX2/pcsx2.git
75 lines
2.2 KiB
C++
75 lines
2.2 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/msw/statline.cpp
|
|
// Purpose: MSW version of wxStaticLine class
|
|
// Author: Vadim Zeitlin
|
|
// Created: 28.06.99
|
|
// Copyright: (c) 1998 Vadim Zeitlin
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ============================================================================
|
|
// declarations
|
|
// ============================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// headers
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#include "wx/statline.h"
|
|
|
|
#if wxUSE_STATLINE
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/msw/private.h"
|
|
#include "wx/msw/missing.h"
|
|
#endif
|
|
|
|
// ============================================================================
|
|
// implementation
|
|
// ============================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxStaticLine
|
|
// ----------------------------------------------------------------------------
|
|
|
|
bool wxStaticLine::Create(wxWindow *parent,
|
|
wxWindowID id,
|
|
const wxPoint& pos,
|
|
const wxSize& sizeOrig,
|
|
long style,
|
|
const wxString &name)
|
|
{
|
|
wxSize size = AdjustSize(sizeOrig);
|
|
|
|
if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) )
|
|
return false;
|
|
|
|
return MSWCreateControl(wxT("STATIC"), wxEmptyString, pos, size);
|
|
}
|
|
|
|
WXDWORD wxStaticLine::MSWGetStyle(long style, WXDWORD *exstyle) const
|
|
{
|
|
// we never have border
|
|
style &= ~wxBORDER_MASK;
|
|
style |= wxBORDER_NONE;
|
|
|
|
WXDWORD msStyle = wxControl::MSWGetStyle(style, exstyle);
|
|
|
|
// add our default styles
|
|
msStyle |= SS_SUNKEN | SS_NOTIFY | WS_CLIPSIBLINGS;
|
|
#ifndef __WXWINCE__
|
|
msStyle |= SS_GRAYRECT ;
|
|
#endif
|
|
|
|
return msStyle ;
|
|
}
|
|
|
|
#endif // wxUSE_STATLINE
|