~ubuntu-branches/ubuntu/vivid/guayadeque/vivid

« back to all changes in this revision

Viewing changes to src/PcListBox.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2011-02-25 11:59:10 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110225115910-13phl46pz0rgqg0a
Tags: 0.2.9-1
* Imported Upstream version 0.2.9
* Drop 02-google_cover_search_engine_crash.patch patch, applied upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
#include "ItemListBox.h"
27
27
 
 
28
class guLibPanel;
 
29
 
28
30
// -------------------------------------------------------------------------------- //
29
31
class guPcListBox : public guListBox
30
32
{
31
33
  protected :
 
34
    guLibPanel *    m_LibPanel;
 
35
 
32
36
    virtual void    GetItemsList( void );
33
37
    virtual void    CreateContextMenu( wxMenu * menu ) const;
34
38
    wxString        GetSearchText( int Item ) const;
36
40
    virtual int     GetDragFiles( wxFileDataObject * files );
37
41
 
38
42
  public :
39
 
                    guPcListBox( wxWindow * parent, guDbLibrary * db, const wxString &label );
 
43
                    guPcListBox( wxWindow * parent, guLibPanel * libpanel, guDbLibrary * db, const wxString &label );
40
44
                    ~guPcListBox();
41
45
    virtual int     GetSelectedSongs( guTrackArray * songs ) const;
42
46