+// Called from file->loop.
+// Changes the state of whether we want to loop or not.
+// ----------------------------------------------------------------------------
+void wxMediaPlayerFrame::OnLoop(wxCommandEvent& WXUNUSED(event))
+{
+ if(!m_notebook->GetCurrentPage())
+ {
+ wxMessageBox(wxT("No files are currently open!"));
+ return;
+ }
+
+ ((wxMediaPlayerNotebookPage*)m_notebook->GetCurrentPage())->m_bLoop =
+ !((wxMediaPlayerNotebookPage*)m_notebook->GetCurrentPage())->m_bLoop;
+}
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerFrame::OnLoop
+//
+// Called from file->loop.
+// Changes the state of whether we want to loop or not.
+// ----------------------------------------------------------------------------
+void wxMediaPlayerFrame::OnShowInterface(wxCommandEvent& event)
+{
+ if(!m_notebook->GetCurrentPage())
+ {
+ wxMessageBox(wxT("No files are currently open!"));
+ return;
+ }
+
+ GetCurrentMediaCtrl()->ShowPlayerControls(event.IsChecked() ?
+ wxMEDIACTRLPLAYERCONTROLS_DEFAULT :
+ wxMEDIACTRLPLAYERCONTROLS_NONE);
+}
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerFrame::OnOpenFileSamePage
+//
+// Called from file->openfile.
+// Opens and plays a media file in the current notebook page
+// ----------------------------------------------------------------------------
+void wxMediaPlayerFrame::OnOpenFileSamePage(wxCommandEvent& WXUNUSED(event))
+{
+ OpenFile(false);
+}
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerFrame::OnOpenFileNewPage
+//
+// Called from file->openfileinnewpage.
+// Opens and plays a media file in a new notebook page
+// ----------------------------------------------------------------------------
+void wxMediaPlayerFrame::OnOpenFileNewPage(wxCommandEvent& WXUNUSED(event))
+{
+ OpenFile(true);
+}
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerFrame::OpenFile
+//
+// Opens a file dialog asking the user for a filename, then
+// calls DoOpenFile which will add the file to the playlist and play it
+// ----------------------------------------------------------------------------
+void wxMediaPlayerFrame::OpenFile(bool bNewPage)
+{
+ wxFileDialog fd(this);
+
+ if(fd.ShowModal() == wxID_OK)
+ {
+ DoOpenFile(fd.GetPath(), bNewPage);
+ }
+}
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerFrame::DoOpenFile
+//
+// Adds the file to our playlist, selects it in the playlist,
+// and then calls DoPlayFile to play it
+// ----------------------------------------------------------------------------
+void wxMediaPlayerFrame::DoOpenFile(const wxString& path, bool bNewPage)
+{
+ if(bNewPage)
+ {
+ m_notebook->AddPage(
+ new wxMediaPlayerNotebookPage(this, m_notebook),
+ path,
+ true);
+ }
+
+ wxMediaPlayerListCtrl* m_playlist =
+ ((wxMediaPlayerNotebookPage*)m_notebook->GetCurrentPage())->m_playlist;
+
+ if(m_nLastFileId != -1)
+ m_playlist->SetItemState(m_nLastFileId, 0, wxLIST_STATE_SELECTED);
+
+ wxListItem newlistitem;
+ newlistitem.SetAlign(wxLIST_FORMAT_LEFT);
+
+ int nID;
+
+ newlistitem.SetId(nID = m_playlist->GetItemCount());
+ newlistitem.SetMask(wxLIST_MASK_DATA | wxLIST_MASK_STATE);
+ newlistitem.SetState(wxLIST_STATE_SELECTED);
+ newlistitem.SetData(new wxString(path));
+
+ m_playlist->InsertItem(newlistitem);
+ m_playlist->SetItem(nID, 0, _T("*"));
+ m_playlist->SetItem(nID, 1, wxFileName(path).GetName());
+
+ if (nID % 2)
+ {
+ newlistitem.SetBackgroundColour(wxColour(192,192,192));
+ m_playlist->SetItem(newlistitem);
+ }
+
+ DoPlayFile(path);
+ // m_playlist->Focus(nID);
+}
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerFrame::DoPlayFile
+//
+// Pauses the file if its the currently playing file,
+// otherwise it plays the file
+// ----------------------------------------------------------------------------
+void wxMediaPlayerFrame::DoPlayFile(const wxString& path)
+{
+ wxMediaPlayerListCtrl* m_playlist =
+ ((wxMediaPlayerNotebookPage*)m_notebook->GetCurrentPage())->m_playlist;
+
+ wxListItem listitem;
+ m_playlist->GetSelectedItem(listitem);
+
+ if(listitem.GetData() &&
+ m_szFile.compare(path) == 0 &&
+ m_nLastFileId == listitem.GetId())
+ {
+ if(GetCurrentMediaCtrl()->GetState() == wxMEDIASTATE_PLAYING)
+ {
+ if( !GetCurrentMediaCtrl()->Pause() )
+ wxMessageBox(wxT("Couldn't pause movie!"));
+ else
+ m_playlist->SetItem(listitem.GetId(), 0, _T("||"));
+ }
+ else
+ {
+ if( !GetCurrentMediaCtrl()->Play() )
+ wxMessageBox(wxT("Couldn't pause movie!"));
+ else
+ m_playlist->SetItem(listitem.GetId(), 0, _T(">"));
+ }
+ }
+ else
+ {
+ m_notebook->SetPageText(m_notebook->GetSelection(),
+ wxFileName(path).GetName());
+
+ if(m_nLastFileId != -1)
+ m_playlist->SetItem(m_nLastFileId, 0, _T("*"));
+
+ wxURI uripath(path);
+ if( uripath.IsReference() )
+ {
+ if( !GetCurrentMediaCtrl()->Load(path) )
+ {
+ wxMessageBox(wxT("Couldn't load file!"));
+ m_playlist->SetItem(listitem.GetId(), 0, _T("E"));
+ }
+ else
+ {
+ m_playlist->SetItem(listitem.GetId(), 0, _T("O"));
+ }
+ }
+ else
+ {
+ if( !GetCurrentMediaCtrl()->Load(uripath) )
+ {
+ wxMessageBox(wxT("Couldn't load file!"));
+ m_playlist->SetItem(listitem.GetId(), 0, _T("E"));
+ }
+ else
+ {
+ m_playlist->SetItem(listitem.GetId(), 0, _T("O"));
+ }
+ }
+
+ m_nLastFileId = listitem.GetId();
+ m_szFile = path;
+ m_playlist->SetItem(m_nLastFileId, 1, wxFileName(path).GetName());
+ m_playlist->SetItem(m_nLastFileId, 2, wxT(""));
+ }
+}
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerFrame::OnMediaLoaded
+//
+// Called when the media is ready to be played - and does
+// so, also gets the length of media and shows that in the list control
+// ----------------------------------------------------------------------------
+void wxMediaPlayerFrame::OnMediaLoaded(wxMediaEvent& WXUNUSED(evt))
+{
+ wxMediaPlayerListCtrl* m_playlist =
+ ((wxMediaPlayerNotebookPage*)m_notebook->GetCurrentPage())->m_playlist;
+ wxListItem listitem;
+ m_playlist->GetSelectedItem(listitem);
+
+ if( !GetCurrentMediaCtrl()->Play() )
+ {
+ wxMessageBox(wxT("Couldn't play movie!"));
+ m_playlist->SetItem(listitem.GetId(), 0, _T("E"));
+ }
+ else
+ {
+ m_playlist->SetItem(listitem.GetId(), 0, _T(">"));
+ }
+
+ m_playlist->SetItem(listitem.GetId(), 2, wxString::Format(wxT("%u"),
+ (unsigned) GetCurrentMediaCtrl()->Length() / 1000) );
+
+ ResetStatus();
+
+ GetCurrentSlider()->SetRange(0,
+ (int)(GetCurrentMediaCtrl()->Length() / 1000));
+ GetCurrentGauge()->SetRange((int)(GetCurrentMediaCtrl()->Length() / 1000));
+}
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerFrame::OnSelectBackend
+//
+// Little debugging routine - enter the class name of a backend and it
+// will use that instead of letting wxMediaCtrl search the wxMediaBackend
+// RTTI class list.
+// ----------------------------------------------------------------------------
+void wxMediaPlayerFrame::OnSelectBackend(wxCommandEvent& WXUNUSED(evt))
+{
+ wxString sBackend = wxGetTextFromUser(wxT("Enter backend to use"));
+
+ if(sBackend.empty() == false) //could have been cancelled by the user
+ {
+ int sel = m_notebook->GetSelection();
+
+ if (sel != wxNOT_FOUND)
+ {
+ m_notebook->DeletePage(sel);
+ }
+
+ m_notebook->AddPage(new wxMediaPlayerNotebookPage(this, m_notebook,
+ sBackend
+ ), wxT(""), true);
+ DoOpenFile(m_szFile, false);
+ }
+}
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerFrame::OnOpenURLSamePage
+//
+// Called from file->openurl.
+// Opens and plays a media file from a URL in the current notebook page
+// ----------------------------------------------------------------------------
+void wxMediaPlayerFrame::OnOpenURLSamePage(wxCommandEvent& WXUNUSED(event))
+{
+ OpenURL(false);
+}
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerFrame::OnOpenURLNewPage
+//
+// Called from file->openurlinnewpage.
+// Opens and plays a media file from a URL in a new notebook page
+// ----------------------------------------------------------------------------
+void wxMediaPlayerFrame::OnOpenURLNewPage(wxCommandEvent& WXUNUSED(event))
+{
+ OpenURL(true);
+}
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerFrame::OpenURL
+//
+// Just calls DoOpenFile with the url path - which calls DoPlayFile
+// which handles the real dirty work
+// ----------------------------------------------------------------------------
+void wxMediaPlayerFrame::OpenURL(bool bNewPage)
+{
+ wxString sUrl = wxGetTextFromUser(
+ wxT("Enter the URL that has the movie to play")
+ );
+
+ if(sUrl.empty() == false) //could have been cancelled by user
+ {
+ DoOpenFile(sUrl, bNewPage);
+ }
+}
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerFrame::OnCloseCurrentPage
+//
+// Called when the user wants to close the current notebook page
+//
+// 1) Get the current page number (wxControl::GetSelection)
+// 2) If there is no current page, break out
+// 3) Delete the current page
+// ----------------------------------------------------------------------------
+void wxMediaPlayerFrame::OnCloseCurrentPage(wxCommandEvent& WXUNUSED(event))
+{
+ if( m_notebook->GetPageCount() > 1 )
+ {
+ int sel = m_notebook->GetSelection();
+
+ if (sel != wxNOT_FOUND)
+ {
+ m_notebook->DeletePage(sel);
+ }
+ }
+ else
+ {
+ wxMessageBox(wxT("Cannot close main page"));
+ }
+}
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerFrame::OnPlay
+//
+// Called from file->play.
+// Resumes the media if it is paused or stopped.
+// ----------------------------------------------------------------------------
+void wxMediaPlayerFrame::OnPlay(wxCommandEvent& WXUNUSED(event))
+{
+ wxMediaPlayerListCtrl* m_playlist =
+ ((wxMediaPlayerNotebookPage*)m_notebook->GetCurrentPage())->m_playlist;
+
+ wxListItem listitem;
+ m_playlist->GetSelectedItem(listitem);
+ if ( !listitem.GetData() )
+ {
+ int nLast = -1;
+ if ((nLast = m_playlist->GetNextItem(nLast,
+ wxLIST_NEXT_ALL,
+ wxLIST_STATE_DONTCARE)) == -1)
+ {
+ //no items in list
+ wxMessageBox(_T("No items in playlist!"));
+ return;
+ }
+ wxListItem listitem;
+ listitem.SetId(nLast);
+ m_playlist->GetItem(listitem);
+ listitem.SetMask(listitem.GetMask() | wxLIST_MASK_STATE);
+ listitem.SetState(listitem.GetState() | wxLIST_STATE_SELECTED);
+ m_playlist->SetItem(listitem);
+ wxListEvent event;
+ OnChangeSong(event);
+ }
+ else
+ {
+ wxListEvent event;
+ OnChangeSong(event);
+ }
+}
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerFrame::OnKeyDown
+//
+// Deletes all selected files from the playlist if the backspace key is pressed
+// ----------------------------------------------------------------------------
+void wxMediaPlayerFrame::OnKeyDown(wxKeyEvent& event)
+{
+ if(event.GetKeyCode() == WXK_BACK/*DELETE*/)
+ {
+ wxMediaPlayerListCtrl* m_playlist =
+ ((wxMediaPlayerNotebookPage*)m_notebook->GetCurrentPage())->m_playlist;
+ //delete all selected items
+ while(true)
+ {
+ wxInt32 nSelectedItem = m_playlist->GetNextItem(
+ -1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
+ if (nSelectedItem == -1)
+ break;
+
+ wxListItem listitem;
+ listitem.SetId(nSelectedItem);
+ m_playlist->GetItem(listitem);
+ delete (wxString*) listitem.GetData();
+
+ m_playlist->DeleteItem(nSelectedItem);
+ }
+ }
+
+ //Could be wxGetTextFromUser or something else important
+ if(event.GetEventObject() != this)
+ event.Skip();
+}
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerFrame::OnStop
+//
+// Called from file->stop.
+// Where it stops depends on whether you can seek in the
+// media control or not - if you can it stops and seeks to the beginning,
+// otherwise it will appear to be at the end - but it will start over again
+// when Play() is called
+// ----------------------------------------------------------------------------
+void wxMediaPlayerFrame::OnStop(wxCommandEvent& WXUNUSED(evt))
+{
+ wxMediaPlayerListCtrl* m_playlist =
+ ((wxMediaPlayerNotebookPage*)m_notebook->GetCurrentPage())->m_playlist;
+
+ wxListItem listitem;
+ m_playlist->GetSelectedItem(listitem);
+ m_playlist->SetItem(listitem.GetId(), 0, _T("[]"));
+
+ if(!m_notebook->GetCurrentPage())
+ {
+ wxMessageBox(wxT("No files are currently open!"));
+ return;
+ }
+
+ if( !GetCurrentMediaCtrl()->Stop() )
+ wxMessageBox(wxT("Couldn't stop movie!"));
+}
+
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerFrame::OnChangeSong
+//
+// Routine that plays the currently selected file in the playlist.
+// Called when the user actives the song from the playlist,
+// and from other various places in the sample
+// ----------------------------------------------------------------------------
+void wxMediaPlayerFrame::OnChangeSong(wxListEvent& WXUNUSED(evt))
+{
+ wxMediaPlayerListCtrl* m_playlist =
+ ((wxMediaPlayerNotebookPage*)m_notebook->GetCurrentPage())->m_playlist;
+
+ wxListItem listitem;
+ m_playlist->GetSelectedItem(listitem);
+ DoPlayFile((*((wxString*) listitem.GetData())));
+}
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerFrame::OnPrev
+//
+// Tedious wxListCtrl stuff. Goes to prevous song in list, or if at the
+// beginning goes to the last in the list.
+// ----------------------------------------------------------------------------
+void wxMediaPlayerFrame::OnPrev(wxCommandEvent& WXUNUSED(event))
+{
+ wxMediaPlayerListCtrl* m_playlist =
+ ((wxMediaPlayerNotebookPage*)m_notebook->GetCurrentPage())->m_playlist;
+
+ if (m_playlist->GetItemCount() == 0)
+ return;
+
+ wxInt32 nLastSelectedItem = -1;
+ while(true)
+ {
+ wxInt32 nSelectedItem = m_playlist->GetNextItem(nLastSelectedItem,
+ wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
+ if (nSelectedItem == -1)
+ break;
+ nLastSelectedItem = nSelectedItem;
+ m_playlist->SetItemState(nSelectedItem, 0, wxLIST_STATE_SELECTED);
+ }
+
+ if (nLastSelectedItem <= 0)
+ nLastSelectedItem = m_playlist->GetItemCount() - 1;
+ else
+ nLastSelectedItem -= 1;
+
+ wxListItem listitem;
+ listitem.SetId(nLastSelectedItem);
+ m_playlist->GetItem(listitem);
+ listitem.SetMask(listitem.GetMask() | wxLIST_MASK_STATE);
+ listitem.SetState(listitem.GetState() | wxLIST_STATE_SELECTED);
+ m_playlist->SetItem(listitem);
+
+ wxListEvent emptyEvent;
+ OnChangeSong(emptyEvent);
+}
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerFrame::OnNext
+//
+// Tedious wxListCtrl stuff. Goes to next song in list, or if at the
+// end goes to the first in the list.
+// ----------------------------------------------------------------------------
+void wxMediaPlayerFrame::OnNext(wxCommandEvent& WXUNUSED(event))
+{
+ wxMediaPlayerListCtrl* m_playlist =
+ ((wxMediaPlayerNotebookPage*)m_notebook->GetCurrentPage())->m_playlist;
+
+ if (m_playlist->GetItemCount() == 0)
+ return;
+
+ wxInt32 nLastSelectedItem = -1;
+ while(true)
+ {
+ wxInt32 nSelectedItem = m_playlist->GetNextItem(nLastSelectedItem,
+ wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
+ if (nSelectedItem == -1)
+ break;
+ nLastSelectedItem = nSelectedItem;
+ m_playlist->SetItemState(nSelectedItem, 0, wxLIST_STATE_SELECTED);
+ }
+
+ if (nLastSelectedItem == -1)
+ nLastSelectedItem = 0;
+ else
+ {
+ if (nLastSelectedItem == m_playlist->GetItemCount() - 1)
+ nLastSelectedItem = 0;
+ else
+ nLastSelectedItem += 1;
+ }
+
+ wxListItem listitem;
+ listitem.SetId(nLastSelectedItem);
+ m_playlist->GetItem(listitem);
+ listitem.SetMask(listitem.GetMask() | wxLIST_MASK_STATE);
+ listitem.SetState(listitem.GetState() | wxLIST_STATE_SELECTED);
+ m_playlist->SetItem(listitem);
+
+ wxListEvent emptyEvent;
+ OnChangeSong(emptyEvent);
+}
+
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerFrame::OnVolumeDown
+//
+// Lowers the volume of the media control by 10%
+// ----------------------------------------------------------------------------
+void wxMediaPlayerFrame::OnVolumeDown(wxCommandEvent& WXUNUSED(event))
+{
+ double dVolume = GetCurrentMediaCtrl()->GetVolume();
+ GetCurrentMediaCtrl()->SetVolume(dVolume < 0.1 ? 0.0 : dVolume - .1);
+}
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerFrame::OnVolumeUp
+//
+// Increases the volume of the media control by 10%
+// ----------------------------------------------------------------------------
+void wxMediaPlayerFrame::OnVolumeUp(wxCommandEvent& WXUNUSED(event))
+{
+ double dVolume = GetCurrentMediaCtrl()->GetVolume();
+ GetCurrentMediaCtrl()->SetVolume(dVolume > 0.9 ? 1.0 : dVolume + .1);
+}
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerFrame::OnCloseCurrentPage
+//
+// Called when the user wants to closes the current notebook page
+// ----------------------------------------------------------------------------
+
+void wxMediaPlayerFrame::OnPageChange(wxNotebookEvent& WXUNUSED(event))
+{
+ ResetStatus();
+}
+
+// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+//
+// wxMediaPlayerTimer
+//
+// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerTimer::Notify
+//
+// 1) Update our slider with the position were are in in the media
+// 2) Update our status bar with the base text from wxMediaPlayerFrame::ResetStatus,
+// append some non-static (changing) info to it, then set the
+// status bar text to that result
+// ----------------------------------------------------------------------------
+void wxMediaPlayerTimer::Notify()
+{
+ if(m_frame->m_notebook->GetCurrentPage())
+ {
+ // get some control pointers from current notebook page
+ wxMediaCtrl* mediactrl =
+ ((wxMediaPlayerNotebookPage*)m_frame->m_notebook->GetCurrentPage())->m_mediactrl;
+ wxSlider* slider =
+ ((wxMediaPlayerNotebookPage*)m_frame->m_notebook->GetCurrentPage())->m_slider;
+ wxGauge* gauge =
+ ((wxMediaPlayerNotebookPage*)m_frame->m_notebook->GetCurrentPage())->m_gauge;
+
+ // if the slider is being dragged then update it with the song position
+ if(((wxMediaPlayerNotebookPage*)m_frame->m_notebook->GetCurrentPage())->IsBeingDragged() == false)
+ {
+ long lPosition = (long)( mediactrl->Tell() / 1000 );
+ slider->SetValue(lPosition);
+ }
+
+ // update guage with value from slider
+ gauge->SetValue(slider->GetValue());
+#if wxUSE_STATUSBAR
+ m_frame->SetStatusText(wxString::Format(
+ wxT("%s Pos:%u State:%s Loops:%i D/T:[%i]/[%i] V:%i%%"),
+ m_frame->m_basestatus.c_str(),
+ slider->GetValue(),
+ wxGetMediaStateText(mediactrl->GetState()),
+ ((wxMediaPlayerNotebookPage*)m_frame->m_notebook->GetCurrentPage())->m_nLoops,
+ (int)mediactrl->GetDownloadProgress(),
+ (int)mediactrl->GetDownloadTotal(),
+ (int)(mediactrl->GetVolume() * 100)));
+#endif // wxUSE_STATUSBAR
+ }
+}
+
+
+// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+//
+// wxMediaPlayerNotebookPage
+//
+// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerNotebookPage Constructor
+//
+// Creates a media control and slider and adds it to this panel,
+// along with some sizers for positioning
+// ----------------------------------------------------------------------------
+
+wxMediaPlayerNotebookPage::wxMediaPlayerNotebookPage(wxMediaPlayerFrame* parentFrame,
+ wxNotebook* theBook,
+ const wxString& szBackend)
+ : wxPanel(theBook, wxID_ANY),
+ m_nLoops(0),
+ m_bLoop(false),
+ m_bIsBeingDragged(false),
+ m_parentFrame(parentFrame)
+{
+
+ //
+ // Layout
+ //
+ // [wxMediaCtrl]
+ // [playlist]
+ // [5 control buttons]
+ // [slider]
+ // [gauge]
+ //
+
+ //
+ // Create and attach the sizer
+ //
+ wxFlexGridSizer* sizer = new wxFlexGridSizer(2, 1, 0, 0);
+ this->SetSizer(sizer);
+ this->SetAutoLayout(true);
+ sizer->AddGrowableRow(0);
+ sizer->AddGrowableCol(0);
+
+ //
+ // Create our media control
+ //
+ m_mediactrl = new wxMediaCtrl();
+
+ // Make sure creation was successful
+ bool bOK = m_mediactrl->Create(this, wxID_MEDIACTRL, wxEmptyString,
+ wxDefaultPosition, wxDefaultSize, 0,
+//you could specify a macrod backend here like
+//wxMEDIABACKEND_QUICKTIME);
+ szBackend);
+//you could change the cursor here like
+// m_mediactrl->SetCursor(wxCURSOR_BLANK);
+//note that this may not effect it if SetPlayerControls
+//is set to something else than wxMEDIACTRLPLAYERCONTROLS_NONE
+ wxASSERT_MSG(bOK, wxT("Could not create media control!"));
+ wxUnusedVar(bOK);
+
+ sizer->Add(m_mediactrl, 0, wxALIGN_CENTER_HORIZONTAL|wxALL|wxEXPAND, 5);
+
+ //
+ // Create the playlist/listctrl
+ //
+ m_playlist = new wxMediaPlayerListCtrl();
+ m_playlist->Create(this, wxID_LISTCTRL, wxDefaultPosition,
+ wxDefaultSize,
+ wxLC_REPORT //wxLC_LIST
+ | wxSUNKEN_BORDER);
+
+ // Set the background of our listctrl to white
+ m_playlist->SetBackgroundColour(wxColour(255,255,255));
+
+ // The layout of the headers of the listctrl are like
+ // | | File | Length
+ //
+ // Where Column one is a character representing the state the file is in:
+ // * - not the current file
+ // E - Error has occured
+ // > - Currently Playing
+ // [] - Stopped
+ // || - Paused
+ // (( - Volume Down 10%
+ // )) - Volume Up 10%
+ //
+ // Column two is the name of the file
+ //
+ // Column three is the length in seconds of the file
+ m_playlist->InsertColumn(0,_(""), wxLIST_FORMAT_CENTER, 20);
+ m_playlist->InsertColumn(1,_("File"), wxLIST_FORMAT_LEFT, /*wxLIST_AUTOSIZE_USEHEADER*/305);
+ m_playlist->InsertColumn(2,_("Length"), wxLIST_FORMAT_CENTER, 75);
+
+ m_playlist->SetDropTarget(new wxPlayListDropTarget(*m_playlist));
+ sizer->Add(m_playlist, 0, wxALIGN_CENTER_HORIZONTAL|wxALL|wxEXPAND, 5);
+
+ //
+ // Here we load the our configuration -
+ // in our case we load all the files that were left in
+ // the playlist the last time the user closed our application
+ //
+ // TODO: This is probably not the best practice since
+ // the user will load multiple notebook pages with multiple
+ // wxMediaCtrl elements.
+ //
+ // As an exercise to the reader try modifying it so that
+ // it properly loads the playlist for each page without
+ // conflicting (loading the same data) with the other ones.
+ //
+ wxConfigBase* conf = wxConfigBase::Get();
+ wxString key, outstring;
+ for(int i = 0; ; ++i)
+ {
+ key.clear();
+ key << i;
+ if(!conf->Read(key, &outstring))
+ break;
+ m_playlist->AddToPlayList(outstring);
+ }
+
+ //
+ // Create the control buttons
+ // TODO/FIXME/HACK: This part about sizers is really a nice hack
+ // and probably isn't proper
+ //
+ wxBoxSizer* horsizer1 = new wxBoxSizer(wxHORIZONTAL);
+ wxBoxSizer* vertsizer = new wxBoxSizer(wxHORIZONTAL);
+
+ m_prevButton = new wxButton();
+ m_playButton = new wxButton();
+ m_stopButton = new wxButton();
+ m_nextButton = new wxButton();
+ m_vdButton = new wxButton();
+ m_vuButton = new wxButton();
+
+ m_prevButton->Create(this, wxID_BUTTONPREV, _T("|<"));
+ m_playButton->Create(this, wxID_BUTTONPLAY, _T(">"));
+ m_stopButton->Create(this, wxID_BUTTONSTOP, _T("[]"));
+ m_nextButton->Create(this, wxID_BUTTONNEXT, _T(">|"));
+ m_vdButton->Create(this, wxID_BUTTONVD, _T("(("));
+ m_vuButton->Create(this, wxID_BUTTONVU, _T("))"));
+ vertsizer->Add(m_prevButton, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
+ vertsizer->Add(m_playButton, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
+ vertsizer->Add(m_stopButton, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
+ vertsizer->Add(m_nextButton, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
+ vertsizer->Add(m_vdButton, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
+ vertsizer->Add(m_vuButton, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
+ horsizer1->Add(vertsizer, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
+ sizer->Add(horsizer1, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
+
+
+ //
+ // Create our slider
+ //
+ m_slider = new wxSlider(this, wxID_SLIDER, 0, //init
+ 0, //start
+ 0, //end
+ wxDefaultPosition, wxDefaultSize,
+ wxSL_HORIZONTAL );
+ sizer->Add(m_slider, 0, wxALIGN_CENTER_HORIZONTAL|wxALL|wxEXPAND , 5);
+
+
+ //
+ // Create the gauge
+ //
+ m_gauge = new wxGauge();
+ m_gauge->Create(this, wxID_GAUGE, 0, wxDefaultPosition, wxDefaultSize,
+ wxGA_HORIZONTAL | wxGA_SMOOTH);
+ sizer->Add(m_gauge, 0, wxALIGN_CENTER_HORIZONTAL|wxALL|wxEXPAND , 5);
+
+ //
+ // ListCtrl events
+ //
+ this->Connect( wxID_LISTCTRL, wxEVT_COMMAND_LIST_ITEM_ACTIVATED,
+ wxListEventHandler(wxMediaPlayerFrame::OnChangeSong),
+ (wxObject*)0, parentFrame);
+
+ //
+ // Slider events
+ //
+ this->Connect(wxID_SLIDER, wxEVT_SCROLL_THUMBTRACK,
+ wxScrollEventHandler(wxMediaPlayerNotebookPage::OnBeginSeek));
+ this->Connect(wxID_SLIDER, wxEVT_SCROLL_THUMBRELEASE,
+ wxScrollEventHandler(wxMediaPlayerNotebookPage::OnEndSeek));
+
+ //
+ // Media Control events
+ //
+ this->Connect(wxID_MEDIACTRL, wxEVT_MEDIA_FINISHED,
+ wxMediaEventHandler(wxMediaPlayerNotebookPage::OnMediaFinished));
+ this->Connect(wxID_MEDIACTRL, wxEVT_MEDIA_LOADED,
+ wxMediaEventHandler(wxMediaPlayerFrame::OnMediaLoaded),
+ (wxObject*)0, parentFrame);
+
+ //
+ // Button events
+ //
+ this->Connect( wxID_BUTTONPREV, wxEVT_COMMAND_BUTTON_CLICKED,
+ wxCommandEventHandler(wxMediaPlayerFrame::OnPrev),
+ (wxObject*)0, parentFrame);
+ this->Connect( wxID_BUTTONPLAY, wxEVT_COMMAND_BUTTON_CLICKED,
+ wxCommandEventHandler(wxMediaPlayerFrame::OnPlay),
+ (wxObject*)0, parentFrame);
+ this->Connect( wxID_BUTTONSTOP, wxEVT_COMMAND_BUTTON_CLICKED,
+ wxCommandEventHandler(wxMediaPlayerFrame::OnStop),
+ (wxObject*)0, parentFrame);
+ this->Connect( wxID_BUTTONNEXT, wxEVT_COMMAND_BUTTON_CLICKED,
+ wxCommandEventHandler(wxMediaPlayerFrame::OnNext),
+ (wxObject*)0, parentFrame);
+ this->Connect( wxID_BUTTONVD, wxEVT_COMMAND_BUTTON_CLICKED,
+ wxCommandEventHandler(wxMediaPlayerFrame::OnVolumeDown),
+ (wxObject*)0, parentFrame);
+ this->Connect( wxID_BUTTONVU, wxEVT_COMMAND_BUTTON_CLICKED,
+ wxCommandEventHandler(wxMediaPlayerFrame::OnVolumeUp),
+ (wxObject*)0, parentFrame);
+}
+
+// ----------------------------------------------------------------------------
+// MyNotebook::OnBeginSeek
+//
+// Sets m_bIsBeingDragged to true to stop the timer from changing the position
+// of our slider
+// ----------------------------------------------------------------------------
+void wxMediaPlayerNotebookPage::OnBeginSeek(wxScrollEvent& WXUNUSED(event))
+{
+ m_bIsBeingDragged = true;
+}
+
+// ----------------------------------------------------------------------------
+// MyNotebook::OnEndSeek
+//
+// Called from file->seek.
+// Called when the user moves the slider -
+// seeks to a position within the media
+// then sets m_bIsBeingDragged to false to ok the timer to change the position
+// ----------------------------------------------------------------------------
+void wxMediaPlayerNotebookPage::OnEndSeek(wxScrollEvent& WXUNUSED(event))
+{
+ if( m_mediactrl->Seek(
+ m_slider->GetValue() * 1000
+ ) == wxInvalidOffset )
+ wxMessageBox(wxT("Couldn't seek in movie!"));
+
+ m_bIsBeingDragged = false;
+}
+
+// ----------------------------------------------------------------------------
+// wxMediaPlayerNotebookPage::IsBeingDragged
+//
+// Returns true if the user is dragging the slider
+// ----------------------------------------------------------------------------
+bool wxMediaPlayerNotebookPage::IsBeingDragged()
+{
+ return m_bIsBeingDragged;
+}
+
+// ----------------------------------------------------------------------------
+// OnMediaFinished
+//
+// Called when the media stops playing.
+// Here we loop it if the user wants to (has been selected from file menu)
+// ----------------------------------------------------------------------------
+void wxMediaPlayerNotebookPage::OnMediaFinished(wxMediaEvent& WXUNUSED(event))