| 11 |
mnNotePanel::mnNotePanel(wxWindow* parent, wxString* dirName) |
mnNotePanel::mnNotePanel(wxWindow* parent, wxString* dirName) |
| 12 |
{ |
{ |
| 13 |
wxXmlResource::Get()->LoadPanel(this, parent, wxT("notePanel")); |
wxXmlResource::Get()->LoadPanel(this, parent, wxT("notePanel")); |
| 14 |
|
searchTree = XRCCTRL(*this, "searchTree", wxTreeCtrl); |
| 15 |
|
|
| 16 |
|
#ifdef __WXMAC__ |
| 17 |
|
wxSplitterWindow* spWindow = XRCCTRL(*this, "splitWindow", wxSplitterWindow); |
| 18 |
|
wikiHtmlTextCtrl = new mnHtmlWindow(spWindow, -1, wxT(""), wxDefaultPosition, wxSize(200, 200)); |
| 19 |
|
spWindow->SplitVertically(searchTree, wikiHtmlTextCtrl, 250); |
| 20 |
|
#else |
| 21 |
/* init members */ |
/* init members */ |
|
searchTree = XRCCTRL(*this, "searchTree", wxTreeCtrl); |
|
| 22 |
wikiHtmlTextCtrl = XRCCTRL(*this, "wikiHtmlTextCtrl", mnHtmlWindow); |
wikiHtmlTextCtrl = XRCCTRL(*this, "wikiHtmlTextCtrl", mnHtmlWindow); |
| 23 |
|
#endif |
| 24 |
|
|
| 25 |
/* create search tree */ |
/* create search tree */ |
| 26 |
searchItemRoot = searchTree->AddRoot(wxT(LABEL_ITEM_TREE), -1, -1, NULL); |
searchItemRoot = searchTree->AddRoot(wxT(LABEL_ITEM_TREE), -1, -1, NULL); |
| 35 |
return panelController; |
return panelController; |
| 36 |
} |
} |
| 37 |
|
|
|
#if 0 |
|
| 38 |
void mnNotePanel::updateSearchResult(mnModel* wiki, wxString* searchStr, bool isExpand) |
void mnNotePanel::updateSearchResult(mnModel* wiki, wxString* searchStr, bool isExpand) |
| 39 |
{ |
{ |
| 40 |
wxTreeItemIdValue cookie1, cookie2; |
wxTreeItemIdValue cookie1, cookie2; |
| 81 |
searchTree->Collapse(searchStrId); |
searchTree->Collapse(searchStrId); |
| 82 |
} |
} |
| 83 |
} |
} |
|
#endif |
|
| 84 |
|
|
| 85 |
|
|
| 86 |
void mnNotePanel::addSearchResult(mnModel* wiki, wxString* searchStr, bool isExpand) |
void mnNotePanel::addSearchResult(mnModel* wiki, wxString* searchStr, bool isExpand) |
| 116 |
} |
} |
| 117 |
} |
} |
| 118 |
|
|
|
#if 0 |
|
| 119 |
void mnNotePanel::makeHtml(WikiData* wikiData, bool isHighlight) |
void mnNotePanel::makeHtml(WikiData* wikiData, bool isHighlight) |
| 120 |
{ |
{ |
| 121 |
const wxString* fileName = wikiData->getFileName(); |
const wxString* fileName = wikiData->getFileName(); |
| 129 |
/* escape > */ |
/* escape > */ |
| 130 |
wxRegEx exp02(wxT(">"), wxRE_NEWLINE|wxRE_DEFAULT); |
wxRegEx exp02(wxT(">"), wxRE_NEWLINE|wxRE_DEFAULT); |
| 131 |
exp02.Replace(&htmlText, wxT("\\> ")); |
exp02.Replace(&htmlText, wxT("\\> ")); |
| 132 |
|
|
| 133 |
|
/* http:// */ |
| 134 |
|
wxRegEx exp2(wxT("((http|https|ftp)://[-_.!~*'a-zA-Z0-9;/?:@&=+$,%#]+)"), wxRE_NEWLINE|wxRE_DEFAULT); |
| 135 |
|
exp2.Replace(&htmlText, wxT("<a href=\\1>\\1</a>")); |
| 136 |
|
|
| 137 |
/* [[ ]] */ |
/* [[ ]] */ |
| 138 |
wxRegEx exp1(wxT("\\[\\[([^\\}]+)\\]\\]")); |
wxRegEx exp1(wxT("\\[\\[([^\\}]+)\\]\\]")); |
| 139 |
exp1.Replace(&htmlText, wxT("<a href=mnlink:\\1>\\1</a>")); |
exp1.Replace(&htmlText, wxT("<a href=" MNLINK "\\1>\\1</a>")); |
|
|
|
|
/* http:// */ |
|
|
wxRegEx exp2(wxT("(http://[-_.!~*'a-zA-Z0-9;/?:@&=+$,%#]+)"), wxRE_NEWLINE|wxRE_DEFAULT); |
|
|
exp2.Replace(&htmlText, wxT("<a href=\\1>\\1</a>")); |
|
| 140 |
|
|
| 141 |
/* file:// */ |
/* file:// */ |
| 142 |
wxRegEx exp3(wxT("(file://[^ ]+)"), wxRE_NEWLINE|wxRE_DEFAULT); |
wxRegEx exp3(wxT("(file://[^ ]+)"), wxRE_NEWLINE|wxRE_DEFAULT); |
| 143 |
exp3.Replace(&htmlText, wxT("<a href=\\1>\\1</a>")); |
exp3.Replace(&htmlText, wxT("<a href=\\1>\\1</a>")); |
|
|
|
|
/* *XXXX */ |
|
|
wxRegEx exp4(wxT("^\\*([^\\*]+)"), wxRE_NEWLINE|wxRE_DEFAULT); |
|
|
exp4.Replace(&htmlText, wxT("<h3>\\1</h3>")); |
|
| 144 |
|
|
| 145 |
/* **XXXX */ |
/* **XXXX */ |
| 146 |
wxRegEx exp5(wxT("^\\*\\*([^\\*]+)"), wxRE_NEWLINE|wxRE_DEFAULT); |
wxRegEx exp5(wxT("^\\*\\*([^*]+)"), wxRE_NEWLINE|wxRE_DEFAULT); |
| 147 |
exp5.Replace(&htmlText, wxT("<h4>\\1</h4>")); |
//exp5.Replace(&htmlText, wxT("<h4>\\1</h4>")); |
| 148 |
|
exp5.Replace(&htmlText, wxT("<TABLE WIDTH=\"100%\" CELLPADDING=2 CELLSPACING=1 BORDER=0><TR><TD BGCOLOR=\"#CCFFFF\"><FONT SIZE=3><B>\\1</B></FONT></TD></TR></TABLE><BR>")); |
| 149 |
|
|
| 150 |
|
/* *XXXX */ |
| 151 |
|
wxRegEx exp4(wxT("^\\*([^*]+)"), wxRE_NEWLINE|wxRE_DEFAULT); |
| 152 |
|
//exp4.Replace(&htmlText, wxT("<h3>\\1</h3>")); |
| 153 |
|
exp4.Replace(&htmlText, wxT("<TABLE WIDTH=\"100%\" CELLPADDING=5 CELLSPACING=2 BORDER=1><TR><TD BGCOLOR=\"#CCFFFF\"><FONT SIZE=5><B>\\1</B></FONT></TD></TR></TABLE><BR>")); |
| 154 |
|
|
| 155 |
/* :''XXXX'': */ |
/* :''XXXX'': */ |
| 156 |
wxRegEx exp6(wxT("^:''(.+)'':(.+)"), wxRE_NEWLINE|wxRE_DEFAULT); |
wxRegEx exp6(wxT("^:''(.+)'':(.+)"), wxRE_NEWLINE|wxRE_DEFAULT); |
| 162 |
|
|
| 163 |
/* {{ }} */ |
/* {{ }} */ |
| 164 |
wxRegEx exp8(wxT("\\{\\{([^\\}]+)\\}\\}")); |
wxRegEx exp8(wxT("\\{\\{([^\\}]+)\\}\\}")); |
| 165 |
exp8.Replace(&htmlText, wxT("<a href=mndoc:\\1>\\1</a>")); |
exp8.Replace(&htmlText, wxT("<a href=" MNDOC "\\1>\\1</a>")); |
| 166 |
|
|
| 167 |
/* table */ |
/* table */ |
| 168 |
wxRegEx exp10(wxT(",([^,\n]+)"), wxRE_DEFAULT); |
wxRegEx exp10(wxT("^,([^,]+)"), wxRE_NEWLINE|wxRE_DEFAULT); |
| 169 |
exp10.Replace(&htmlText, wxT("<td>\\1</td>")); |
exp10.Replace(&htmlText, wxT("<td> \\1 </td>")); |
| 170 |
|
for(int i = 0; i < 10; i++){ // It's not good. :P |
| 171 |
|
wxRegEx exp16(wxT("</td>,([^,\n]+)"), wxRE_DEFAULT); |
| 172 |
|
exp16.Replace(&htmlText, wxT("</td><td>\\1</td>")); |
| 173 |
|
} |
| 174 |
wxRegEx exp11(wxT("^<td>"), wxRE_NEWLINE|wxRE_DEFAULT); |
wxRegEx exp11(wxT("^<td>"), wxRE_NEWLINE|wxRE_DEFAULT); |
| 175 |
exp11.Replace(&htmlText, wxT("<tr><td>")); |
exp11.Replace(&htmlText, wxT("<tr><td>")); |
| 176 |
wxRegEx exp12(wxT("</td>$"), wxRE_NEWLINE|wxRE_DEFAULT); |
wxRegEx exp12(wxT("</td>$"), wxRE_NEWLINE|wxRE_DEFAULT); |
| 198 |
} |
} |
| 199 |
} |
} |
| 200 |
|
|
|
|
|
| 201 |
/* make HTML document */ |
/* make HTML document */ |
| 202 |
wxString wikiHtml; |
wxString wikiHtml; |
| 203 |
wikiHtml.Append(wxT("<meta http-equiv=\"Content-Type\"content=\"text/html; charset=")); |
wikiHtml.Append(wxT("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=")); |
| 204 |
wikiHtml.Append(wxT(CODE_SET_SYSTEM)); |
wikiHtml.Append(wxT(CODE_SET_SYSTEM)); |
| 205 |
wikiHtml.Append(wxT("\">")); |
wikiHtml.Append(wxT("\">")); |
| 206 |
wikiHtml.Append(wxT("<pre>")); |
wikiHtml.Append(wxT("<pre>")); |
| 207 |
wikiHtml.Append(htmlText); |
wikiHtml.Append(wxT("<html>")); |
| 208 |
|
wikiHtml.Append(htmlText.c_str()); |
| 209 |
wikiHtml.Append(wxT("</pre>")); |
wikiHtml.Append(wxT("</pre>")); |
| 210 |
|
wikiHtml.Append(wxT("</html>")); |
| 211 |
|
|
| 212 |
wikiHtmlTextCtrl->SetPage(wikiHtml); |
wikiHtmlTextCtrl->SetPage(wikiHtml); |
| 213 |
} |
} |
| 221 |
item = searchTree->GetItemData(id); |
item = searchTree->GetItemData(id); |
| 222 |
|
|
| 223 |
if(!id.IsOk() || !isEditableTreeLabel(id) || item == NULL) { /* selection is not memo data */ |
if(!id.IsOk() || !isEditableTreeLabel(id) || item == NULL) { /* selection is not memo data */ |
| 224 |
wikiHtmlTextCtrl->SetPage(wxT("")); |
wikiHtmlTextCtrl->SetPage(wxT("<html></html>")); |
| 225 |
return; |
return; |
| 226 |
} |
} |
| 227 |
makeHtml((WikiData*)item, false); |
makeHtml((WikiData*)item, false); |
| 249 |
} |
} |
| 250 |
} |
} |
| 251 |
|
|
| 252 |
|
|
| 253 |
void mnNotePanel::expandAllTree() |
void mnNotePanel::expandAllTree() |
| 254 |
{ |
{ |
| 255 |
wxTreeItemIdValue cookie; |
wxTreeItemIdValue cookie; |
| 322 |
} |
} |
| 323 |
} |
} |
| 324 |
|
|
|
#endif |
|