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 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2013 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 "frame.h"
#include "wx/filename.h"
#include "wx/regex.h"
#include <algorithm>
#include "editor_config.h"
#include "lexer_configuration.h"
#include "windowattrmanager.h"
wxArrayString AddIncludeFileDlg::m_includePath;
struct SAscendingSort {
bool operator()(const wxString &s1, const wxString& s2) {
return s1.Len() > s2.Len();
}
};
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
LexerConf::Ptr_t cppLex = EditorConfigST::Get()->GetLexer("C++");
cppLex->Apply( m_textCtrlPreview, true );
//---------------------------------------------------------
m_textCtrlPreview->MarkerDefine(0x7, wxSTC_MARK_ARROW);
m_textCtrlPreview->MarkerSetBackground(0x7, wxT("YELLOW GREEN"));
// Set the initial text
m_textCtrlPreview->SetReadOnly(false);
m_textCtrlPreview->AddText(m_text);
m_textCtrlPreview->EmptyUndoBuffer();
SetAndMarkLine();
m_textCtrlLineToAdd->SetFocus();
WindowAttrManager::Load(this, "AddIncludeFileDlg", NULL);
Centre();
}
AddIncludeFileDlg::~AddIncludeFileDlg()
{
WindowAttrManager::Save(this, "AddIncludeFileDlg", NULL);
}
void AddIncludeFileDlg::UpdateLineToAdd()
{
wxString line;
wxFileName fn(m_fullpath);
m_textCtrlFullPath->ChangeValue(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();
}
wxString errMsg;
wxString projectName = clMainFrame::Get()->GetMainBook()->GetActiveEditor()->GetProject();
ProjectPtr proj = WorkspaceST::Get()->FindProjectByName(projectName, errMsg);
if(proj) {
wxArrayString incls = proj->GetIncludePaths();
std::sort(incls.begin(), incls.end(), SAscendingSort());
for(size_t i=0; i<incls.GetCount(); i++) {
wxString path = incls.Item(i);
#ifdef __WXMSW__
path.MakeLower();
#endif
if(m_fullpath.StartsWith(path, &rest) ) {
break;
}
}
}
rest.Replace(wxT("\\"), wxT("/"));
if(rest.StartsWith(wxT("/"))) {
rest.Remove(0, 1);
}
if(!ManagerST::Get()->IsFileInWorkspace(m_fullpath)) {
line << wxT("#include <") << rest << wxT(">");
} else {
line << wxT("#include \"") << rest << wxT("\"");
}
m_textCtrlLineToAdd->ChangeValue(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();
}
|