This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
150 lines
3.7 KiB
C++
150 lines
3.7 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/univ/bmpbuttn.cpp
|
|
// Purpose: wxBitmapButton implementation
|
|
// Author: Vadim Zeitlin
|
|
// Modified by:
|
|
// Created: 25.08.00
|
|
// Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ============================================================================
|
|
// declarations
|
|
// ============================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// headers
|
|
// ----------------------------------------------------------------------------
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#if wxUSE_BMPBUTTON
|
|
|
|
#include "wx/bmpbuttn.h"
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/dc.h"
|
|
#include "wx/validate.h"
|
|
#endif
|
|
|
|
#include "wx/univ/renderer.h"
|
|
|
|
// ============================================================================
|
|
// implementation
|
|
// ============================================================================
|
|
|
|
BEGIN_EVENT_TABLE(wxBitmapButton, wxButton)
|
|
EVT_SET_FOCUS(wxBitmapButton::OnSetFocus)
|
|
EVT_KILL_FOCUS(wxBitmapButton::OnKillFocus)
|
|
END_EVENT_TABLE()
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxBitmapButton
|
|
// ----------------------------------------------------------------------------
|
|
|
|
bool wxBitmapButton::Create(wxWindow *parent,
|
|
wxWindowID id,
|
|
const wxBitmap& bitmap,
|
|
const wxPoint &pos,
|
|
const wxSize &size,
|
|
long style,
|
|
const wxValidator& validator,
|
|
const wxString &name)
|
|
{
|
|
// we add wxBU_EXACTFIT because the bitmap buttons are not the standard
|
|
// ones and so shouldn't be forced to be of the standard size which is
|
|
// typically too big for them
|
|
if ( !wxButton::Create(parent, id, bitmap, wxEmptyString,
|
|
pos, size, style | wxBU_EXACTFIT, validator, name) )
|
|
return false;
|
|
|
|
m_bitmaps[State_Normal] = bitmap;
|
|
|
|
return true;
|
|
}
|
|
|
|
void wxBitmapButton::OnSetBitmap()
|
|
{
|
|
wxBitmap bmp;
|
|
if ( !IsEnabled() )
|
|
{
|
|
bmp = GetBitmapDisabled();
|
|
}
|
|
else if ( IsPressed() )
|
|
{
|
|
bmp = GetBitmapPressed();
|
|
}
|
|
else if ( IsFocused() )
|
|
{
|
|
bmp = GetBitmapFocus();
|
|
}
|
|
//else: just leave it invalid, this means "normal" anyhow in ChangeBitmap()
|
|
|
|
ChangeBitmap(bmp);
|
|
}
|
|
|
|
bool wxBitmapButton::ChangeBitmap(const wxBitmap& bmp)
|
|
{
|
|
wxBitmap bitmap = bmp.IsOk() ? bmp : GetBitmapLabel();
|
|
if ( bitmap.IsSameAs(m_bitmap) )
|
|
return false;
|
|
|
|
m_bitmap = bitmap;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool wxBitmapButton::Enable(bool enable)
|
|
{
|
|
if ( !wxButton::Enable(enable) )
|
|
return false;
|
|
|
|
if ( !enable && ChangeBitmap(GetBitmapDisabled()) )
|
|
Refresh();
|
|
|
|
return true;
|
|
}
|
|
|
|
bool wxBitmapButton::SetCurrent(bool doit)
|
|
{
|
|
ChangeBitmap(doit ? GetBitmapFocus() : GetBitmapLabel());
|
|
|
|
return wxButton::SetCurrent(doit);
|
|
}
|
|
|
|
void wxBitmapButton::OnSetFocus(wxFocusEvent& event)
|
|
{
|
|
if ( ChangeBitmap(GetBitmapFocus()) )
|
|
Refresh();
|
|
|
|
event.Skip();
|
|
}
|
|
|
|
void wxBitmapButton::OnKillFocus(wxFocusEvent& event)
|
|
{
|
|
if ( ChangeBitmap(GetBitmapLabel()) )
|
|
Refresh();
|
|
|
|
event.Skip();
|
|
}
|
|
|
|
void wxBitmapButton::Press()
|
|
{
|
|
ChangeBitmap(GetBitmapPressed());
|
|
|
|
wxButton::Press();
|
|
}
|
|
|
|
void wxBitmapButton::Release()
|
|
{
|
|
ChangeBitmap(IsFocused() ? GetBitmapFocus() : GetBitmapLabel());
|
|
|
|
wxButton::Release();
|
|
}
|
|
|
|
#endif // wxUSE_BMPBUTTON
|