Menu

[r13158]: / trunk / src / src / goto_file.h  Maximize  Restore  History

Download this file

58 lines (43 with data), 1.2 kB

 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
45
46
47
48
49
50
51
52
53
54
55
56
57
#ifndef GOTO_FILE_H
#define GOTO_FILE_H
#ifndef WX_PRECOMP
//(*HeadersPCH(GotoFile)
#include <wx/dialog.h>
class wxBoxSizer;
class wxListCtrl;
class wxStaticText;
class wxTextCtrl;
//*)
#endif
//(*Headers(GotoFile)
//*)
#include "incremental_select_helper.h"
class GotoFile: public wxDialog
{
public:
GotoFile(wxWindow* parent, IncrementalSelectIterator *iterator, const wxString &title, const wxString &message);
~GotoFile() override;
int GetSelection();
void AddControlBelowList(wxControl *control);
private:
void FilterItems();
private:
IncrementalSelectHandler m_handler;
private:
//(*Declarations(GotoFile)
IncrementalListCtrl* m_ResultList;
wxBoxSizer* m_sizer;
wxTextCtrl* m_Text;
//*)
//(*Identifiers(GotoFile)
static const long ID_TEXTCTRL1;
static const long ID_RESULT_LIST;
//*)
//(*Handlers(GotoFile)
//*)
protected:
void BuildContent(wxWindow* parent, IncrementalSelectIterator *iterator, const wxString &title,
const wxString &message);
DECLARE_EVENT_TABLE()
};
#endif
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.