1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Animation sample
4 // Author: Julian Smart
5 // Modified by: Francesco Montorsi
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx/wx.h".
21 #include "wx/wxprec.h"
39 // ---------------------------------------------------------------------------
41 // ---------------------------------------------------------------------------
43 // ---------------------------------------------------------------------------
45 // ---------------------------------------------------------------------------
52 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
53 EVT_MENU(ID_PLAY
, MyFrame::OnPlay
)
54 EVT_MENU(wxID_STOP
, MyFrame::OnStop
)
55 EVT_MENU(wxID_ABOUT
, MyFrame::OnAbout
)
56 EVT_MENU(wxID_EXIT
, MyFrame::OnQuit
)
58 EVT_MENU(wxID_OPEN
, MyFrame::OnOpen
)
59 #endif // wxUSE_FILEDLG
61 EVT_SIZE(MyFrame::OnSize
)
62 EVT_UPDATE_UI(wxID_ANY
, MyFrame::OnUpdateUI
)
65 // ===========================================================================
67 // ===========================================================================
69 // ---------------------------------------------------------------------------
71 // ---------------------------------------------------------------------------
73 // Initialise this in OnInit, not statically
76 // Create the main frame window
78 MyFrame
* frame
= new MyFrame((wxFrame
*)NULL
, wxID_ANY
, _T("Animation Demo"));
81 frame
->SetIcon(wxICON(sample
));
84 wxMenu
*file_menu
= new wxMenu
;
87 file_menu
->Append(wxID_OPEN
, _T("&Open Animation...\tCtrl+O"), _T("Loads an animation"));
88 #endif // wxUSE_FILEDLG
89 file_menu
->Append(wxID_EXIT
);
91 wxMenu
*play_menu
= new wxMenu
;
92 play_menu
->Append(ID_PLAY
, _T("Play\tCtrl+P"), _T("Play the animation"));
93 play_menu
->Append(wxID_STOP
, _T("Stop\tCtrl+P"), _T("Stop the animation"));
95 wxMenu
*help_menu
= new wxMenu
;
96 help_menu
->Append(wxID_ABOUT
);
98 wxMenuBar
*menu_bar
= new wxMenuBar
;
100 menu_bar
->Append(file_menu
, _T("&File"));
101 menu_bar
->Append(play_menu
, _T("&Animation"));
102 menu_bar
->Append(help_menu
, _T("&Help"));
104 // Associate the menu bar with the frame
105 frame
->SetMenuBar(menu_bar
);
108 frame
->CreateStatusBar();
109 #endif // wxUSE_STATUSBAR
118 // ---------------------------------------------------------------------------
120 // ---------------------------------------------------------------------------
122 #include "wx/wfstream.h"
124 // Define my frame constructor
125 MyFrame::MyFrame(wxWindow
*parent
,
127 const wxString
& title
,
131 : wxFrame(parent
, id
, title
, pos
, size
,
132 style
| wxNO_FULL_REPAINT_ON_RESIZE
)
134 //m_canvas = new MyCanvas(this, wxPoint(0, 0), wxDefaultSize);
136 //wxSizer *sz = new wxBoxSizer(wxVERTICAL);
138 m_animationCtrl
= new wxAnimationCtrl(this, wxID_ANY
, wxNullAnimation
,
139 wxPoint(0,0),wxSize(100,100));
140 if (m_animationCtrl
->LoadFile(wxT("throbber.gif")))
141 m_animationCtrl
->Play();
143 //sz->Add(m_animationCtrl, 1, wxGROW);
152 void MyFrame::OnPlay(wxCommandEvent
& WXUNUSED(event
))
154 if (!m_animationCtrl
->Play())
155 wxLogError(wxT("Invalid animation"));
158 void MyFrame::OnStop(wxCommandEvent
& WXUNUSED(event
))
160 m_animationCtrl
->Stop();
163 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
168 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
) )
172 FIXME: on wxGTK at least using File->About command it shows
173 the message dialog but does not focus it
177 (void)wxMessageBox(_T("wxWidgets 2 Animation Demo\n")
178 _T("Author: Julian Smart (c) 2001\n"),
179 _T("About Animation Demo"));
183 void MyFrame::OnOpen(wxCommandEvent
& WXUNUSED(event
))
185 wxFileDialog
dialog(this, _T("Please choose an animation"),
186 wxEmptyString
, wxEmptyString
, wxT("*.gif;*.ani"), wxFD_OPEN
);
187 if (dialog
.ShowModal() == wxID_OK
)
189 wxString
filename(dialog
.GetPath());
191 // enable one of the two chunk of codes to test different parts of wxAnimation/wxAnimationCtrl
193 if (m_animationCtrl
->LoadFile(filename
))
194 m_animationCtrl
->Play();
196 wxMessageBox(_T("Sorry, this animation is not a valid format for wxAnimation."));
200 if (!temp
.LoadFile(filename
))
202 wxLogError(wxT("Sorry, this animation is not a valid format for wxAnimation."));
206 m_animationCtrl
->SetAnimation(temp
);
207 m_animationCtrl
->Play();
209 wxFileInputStream
stream(filename
);
212 wxLogError(wxT("Sorry, this animation is not a valid format for wxAnimation."));
217 if (!temp
.Load(stream
))
219 wxLogError(wxT("Sorry, this animation is not a valid format for wxAnimation."));
223 m_animationCtrl
->SetAnimation(temp
);
224 m_animationCtrl
->Play();
229 #endif // wxUSE_FILEDLG
231 void MyFrame::OnUpdateUI(wxUpdateUIEvent
& WXUNUSED(event
) )
233 GetMenuBar()->FindItem(wxID_STOP
)->Enable(m_animationCtrl
->IsPlaying());
234 GetMenuBar()->FindItem(ID_PLAY
)->Enable(!m_animationCtrl
->IsPlaying());
237 // ---------------------------------------------------------------------------
239 // ---------------------------------------------------------------------------
241 BEGIN_EVENT_TABLE(MyCanvas
, wxScrolledWindow
)
242 //EVT_PAINT(MyCanvas::OnPaint)
245 // Define a constructor for my canvas
246 MyCanvas::MyCanvas(wxWindow
*parent
, const wxPoint
& pos
, const wxSize
& size
)
247 : wxScrolledWindow(parent
, wxID_ANY
, pos
, size
,
249 wxNO_FULL_REPAINT_ON_RESIZE
|
250 wxVSCROLL
| wxHSCROLL
)
252 SetBackgroundColour(wxColour(_T("YELLOW")));
255 void MyCanvas::OnPaint(wxPaintEvent
& WXUNUSED(event
))
257 //wxPaintDC dc(this);
259 //dc.DrawRotatedText(wxT("Background"),