summaryrefslogtreecommitdiff
path: root/LiteEditor/filechecklist.h
blob: f0711276f190ca48cb6cb984a63b522fe81e5d77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#ifndef __filechecklist__
#define __filechecklist__

/**
@file
Subclass of filechecklistbase, which is generated by wxFormBuilder.
*/

#include <vector>
#include <wx/filename.h>
#include "filechecklistbase.h"

/** Implementing filechecklistbase */
class FileCheckList : public FileCheckListBase
{
    std::vector<std::pair<wxFileName,bool> > m_files;
    wxFileName m_baseDir;
    
protected:
	// Handlers for filechecklistbase events.
	void OnCheckAll( wxCommandEvent& event );
	void OnClearAll( wxCommandEvent& event );
	void OnFileSelected( wxCommandEvent& event );
    void OnFileCheckChanged( wxCommandEvent& event );
	
    void ShowFilePath(size_t n);
    
public:
	/** Constructor */
	FileCheckList( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxEmptyString, 
                   const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize);
    ~FileCheckList();
	
    void SetCancellable(bool can) { m_cancelButton->Show(can); }
    void SetCaption(const wxString &caption);
    void SetBaseDir(const wxFileName &dir);
    
    void SetFiles(const std::vector<std::pair<wxFileName, bool> > &files);
    const std::vector<std::pair<wxFileName,bool> >  &GetFiles() const { 
        return m_files; 
    }
};

#endif // __filechecklist__