]> git.saurik.com Git - wxWidgets.git/blame - src/common/animatecmn.cpp
use gtk_file_chooser_set_show_hidden() now that GTK 2.6 is required
[wxWidgets.git] / src / common / animatecmn.cpp
CommitLineData
72045d57
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/common/animatecmn.cpp
3// Purpose: wxAnimation and wxAnimationCtrl
4// Author: Francesco Montorsi
5// Modified By:
6// Created: 24/09/2006
7// Id: $Id$
8// Copyright: (c) Francesco Montorsi
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12
13// ----------------------------------------------------------------------------
14// headers
15// ----------------------------------------------------------------------------
16
17// For compilers that support precompilation, includes "wx.h".
18#include "wx/wxprec.h"
19
b4715d08
VZ
20#ifdef __BORLANDC__
21 #pragma hdrstop
22#endif
23
72045d57
VZ
24#if wxUSE_ANIMATIONCTRL
25
26#include "wx/animate.h"
8e458bb5 27#include "wx/bitmap.h"
1bd2ceb5
RR
28#include "wx/log.h"
29#include "wx/brush.h"
30#include "wx/image.h"
31#include "wx/dcmemory.h"
72045d57 32
23318a53 33const char wxAnimationCtrlNameStr[] = "animationctrl";
72045d57
VZ
34
35// global object
36wxAnimation wxNullAnimation;
37
72045d57
VZ
38IMPLEMENT_ABSTRACT_CLASS(wxAnimationBase, wxObject)
39IMPLEMENT_ABSTRACT_CLASS(wxAnimationCtrlBase, wxControl)
40
72045d57 41
1bd2ceb5
RR
42// ----------------------------------------------------------------------------
43// wxAnimationCtrlBase
44// ----------------------------------------------------------------------------
45
46void wxAnimationCtrlBase::UpdateStaticImage()
47{
48 if (!m_bmpStaticReal.IsOk() || !m_bmpStatic.IsOk())
49 return;
50
51 // if given bitmap is not of the right size, recreate m_bmpStaticReal accordingly
52 const wxSize &sz = GetClientSize();
53 if (sz.GetWidth() != m_bmpStaticReal.GetWidth() ||
54 sz.GetHeight() != m_bmpStaticReal.GetHeight())
55 {
56 if (!m_bmpStaticReal.IsOk() ||
57 m_bmpStaticReal.GetWidth() != sz.GetWidth() ||
58 m_bmpStaticReal.GetHeight() != sz.GetHeight())
59 {
60 // need to (re)create m_bmpStaticReal
61 if (!m_bmpStaticReal.Create(sz.GetWidth(), sz.GetHeight(),
62 m_bmpStatic.GetDepth()))
63 {
64 wxLogDebug(wxT("Cannot create the static bitmap"));
65 m_bmpStatic = wxNullBitmap;
66 return;
67 }
68 }
69
70 if (m_bmpStatic.GetWidth() <= sz.GetWidth() &&
71 m_bmpStatic.GetHeight() <= sz.GetHeight())
72 {
73 // clear the background of m_bmpStaticReal
74 wxBrush brush(GetBackgroundColour());
75 wxMemoryDC dc;
76 dc.SelectObject(m_bmpStaticReal);
77 dc.SetBackground(brush);
78 dc.Clear();
79
80 // center the user-provided bitmap in m_bmpStaticReal
81 dc.DrawBitmap(m_bmpStatic,
82 (sz.GetWidth()-m_bmpStatic.GetWidth())/2,
83 (sz.GetHeight()-m_bmpStatic.GetHeight())/2,
84 true /* use mask */ );
85 }
86 else
87 {
88 // the user-provided bitmap is bigger than our control, strech it
89 wxImage temp(m_bmpStatic.ConvertToImage());
90 temp.Rescale(sz.GetWidth(), sz.GetHeight(), wxIMAGE_QUALITY_HIGH);
91 m_bmpStaticReal = wxBitmap(temp);
92 }
93 }
94}
95
96void wxAnimationCtrlBase::SetInactiveBitmap(const wxBitmap &bmp)
97{
98 m_bmpStatic = bmp;
99 m_bmpStaticReal = bmp;
100
101 // if not playing, update the control now
102 // NOTE: DisplayStaticImage() will call UpdateStaticImage automatically
103 if ( !IsPlaying() )
104 DisplayStaticImage();
105}
106
72045d57 107#endif // wxUSE_ANIMATIONCTRL