summaryrefslogtreecommitdiff
path: root/LiteEditor/addincludefiledlg.cpp
blob: 5e2f233c2a8304c83c3c6b49e5ab862971770d5a (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright            : (C) 2008 by Eran Ifrah                            
// file name            : addincludefiledlg.cpp              
//                                                                          
// -------------------------------------------------------------------------
// A                                                                        
//              _____           _      _     _ _                            
//             /  __ \         | |    | |   (_) |                           
//             | /  \/ ___   __| | ___| |    _| |_ ___                      
//             | |    / _ \ / _  |/ _ \ |   | | __/ _ )                     
//             | \__/\ (_) | (_| |  __/ |___| | ||  __/                     
//              \____/\___/ \__,_|\___\_____/_|\__\___|                     
//                                                                          
//                                                  F i l e                 
//                                                                          
//    This program is free software; you can redistribute it and/or modify  
//    it under the terms of the GNU General Public License as published by  
//    the Free Software Foundation; either version 2 of the License, or     
//    (at your option) any later version.                                   
//                                                                          
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
 #include "addincludefiledlg.h"
#include "manager.h"
#include "wx/filename.h"
#include "wx/regex.h"

wxArrayString AddIncludeFileDlg::m_includePath;

AddIncludeFileDlg::AddIncludeFileDlg( wxWindow* parent, const wxString &fullpath, const wxString &text, int lineNo )
		:
		AddIncludeFileDlgBase( parent )
		, m_fullpath(fullpath)
		, m_text(text)
		, m_line(lineNo)
{
	UpdateLineToAdd();
	
	//initialise the preview window
	//---------------------------------------------------------
	wxFont font(10, wxFONTFAMILY_TELETYPE, wxNORMAL, wxNORMAL);
	m_textCtrlPreview->MarkerDefine(0x7, wxSCI_MARK_ARROW);
	m_textCtrlPreview->MarkerSetBackground(0x7, wxT("YELLOW GREEN"));
	m_textCtrlPreview->StyleSetFont(0, font);
	

	//set the initial text
	m_textCtrlPreview->SetReadOnly(false);
	m_textCtrlPreview->AddText(m_text);
	m_textCtrlPreview->EmptyUndoBuffer();
	SetAndMarkLine();
	Centre();
	m_textCtrlLineToAdd->SetFocus();
}

void AddIncludeFileDlg::UpdateLineToAdd()
{
	wxString line;
	wxFileName fn(m_fullpath);
	m_textCtrlFullPath->SetValue(fn.GetFullPath());

	//try to get a match in the include path for this file
	wxString pp = fn.GetFullPath();
	pp.Replace(wxT("\\"), wxT("/"));
	
	wxString rest;
	for(size_t i=0; i< m_includePath.GetCount(); i++){
		if(pp.StartsWith( m_includePath.Item(i) , &rest )){
			break;
		}
	}
	
	if(rest.IsEmpty()){
		rest = fn.GetFullName();
	}
	
	if (!ManagerST::Get()->IsFileInWorkspace(m_fullpath)) {
		line << wxT("#include <") << rest << wxT(">");
	} else {
		line << wxT("#include \"") << rest << wxT("\"");
	}
	
	m_textCtrlLineToAdd->SetValue(line);

}

void AddIncludeFileDlg::SetAndMarkLine()
{
	wxString line = m_textCtrlLineToAdd->GetValue();
	m_textCtrlPreview->SetReadOnly(false);
	if (m_textCtrlPreview->CanUndo()) {
		m_textCtrlPreview->Undo();
	}

	m_textCtrlPreview->BeginUndoAction();
	if (m_line == wxNOT_FOUND) {
		m_line = 0;
	}
	m_textCtrlPreview->MarkerDeleteAll(0x7);
	long pos = m_textCtrlPreview->PositionFromLine(m_line);
	m_textCtrlPreview->InsertText(pos, line + wxT("\n"));
	m_textCtrlPreview->MarkerAdd(m_line, 0x7);
	m_textCtrlPreview->SetCurrentPos(pos);
	m_textCtrlPreview->SetSelectionStart(pos);
	m_textCtrlPreview->SetSelectionEnd(pos);
	m_textCtrlPreview->EnsureCaretVisible();
	m_textCtrlPreview->EndUndoAction();
	m_textCtrlPreview->SetReadOnly(true);
}

void AddIncludeFileDlg::OnTextUpdated(wxCommandEvent &e)
{
	wxUnusedVar(e);
	SetAndMarkLine();
}

void AddIncludeFileDlg::OnButtonDown(wxCommandEvent &event)
{
	wxUnusedVar(event);
	if (m_line+2 >= m_textCtrlPreview->GetLineCount()) {
		return;
	}
	m_line++;
	SetAndMarkLine();
}

void AddIncludeFileDlg::OnButtonUp(wxCommandEvent &event)
{
	wxUnusedVar(event);
	if (m_line-1 < 0) {
		return;
	}
	m_line--;
	SetAndMarkLine();
}

void AddIncludeFileDlg::OnButtonOK(wxCommandEvent &e)
{
	wxUnusedVar(e);
	//get the include file to add
	wxString fullpath = m_textCtrlFullPath->GetValue();
	static wxRegEx reIncludeFile(wxT("include *[\\\"\\<]{1}([a-zA-Z0-9_/\\.]*)"));
	wxString relativePath;

	if (reIncludeFile.Matches(m_textCtrlLineToAdd->GetValue())) {
		relativePath = reIncludeFile.GetMatch(m_textCtrlLineToAdd->GetValue(), 1);
	}

	fullpath.Replace(wxT("\\"), wxT("/"));
	relativePath.Replace(wxT("\\"), wxT("/"));
	wxFileName fn(fullpath);
	
	wxString inclPath;
	if (fullpath.EndsWith(relativePath, &inclPath) && 
		fullpath != relativePath &&	//dont save the '.' path this is done by default
		fn.GetFullName() != relativePath)  //if the relative path is only file name, nothing to cache
	{
		m_includePath.Add(inclPath);
	}
	EndModal(wxID_OK);
}

void AddIncludeFileDlg::OnClearCachedPaths(wxCommandEvent &e)
{
	wxUnusedVar(e);
	m_includePath.Clear();
	UpdateLineToAdd();
	SetAndMarkLine();
}