Develop and Download Open Source Software

Browse CVS Repository

Diff of /malonnote/mnNotePanel.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.4 by maloninc, Thu Dec 22 10:48:29 2005 UTC revision 1.13 by maloninc, Mon Jan 30 00:48:55 2006 UTC
# Line 11  Line 11 
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          wxSplitterWindow* spWindow = XRCCTRL(*this, "splitWindow", wxSplitterWindow);          searchTree       = XRCCTRL(*this, "searchTree", wxTreeCtrl);
         searchTree       = XRCCTRL(*spWindow, "searchTree", wxTreeCtrl);  
15    
16  #ifdef __WXMAC__  #ifdef __WXMAC__
17          wikiHtmlTextCtrl = new mnHtmlWindow(spWindow, -1, wxT(""), wxPoint(0,-100), wxSize(200, 200));          wxSplitterWindow* spWindow = XRCCTRL(*this, "splitWindow", wxSplitterWindow);
18            wikiHtmlTextCtrl = new mnHtmlWindow(spWindow, -1, wxT(""), wxDefaultPosition, wxSize(200, 200));
19          spWindow->SplitVertically(searchTree, wikiHtmlTextCtrl, 250);          spWindow->SplitVertically(searchTree, wikiHtmlTextCtrl, 250);
20  #else  #else
21          /* init members */          /* init members */
22          wikiHtmlTextCtrl = XRCCTRL(*spWindow, "wikiHtmlTextCtrl", mnHtmlWindow);          wxFont font(12, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL);
23            wikiHtmlTextCtrl = XRCCTRL(*this, "wikiHtmlTextCtrl", mnHtmlWindow);
24            wikiHtmlTextCtrl->SetFonts(font.GetFaceName(), font.GetFaceName());
25  #endif  #endif
26    
27    
28          /* create search tree */          /* create search tree */
29          searchItemRoot = searchTree->AddRoot(wxT(LABEL_ITEM_TREE), -1, -1, NULL);          searchItemRoot = searchTree->AddRoot(wxT(LABEL_ITEM_TREE), -1, -1, NULL);
30                    
# Line 129  void mnNotePanel::makeHtml(WikiData* wik Line 132  void mnNotePanel::makeHtml(WikiData* wik
132          /* escape > */          /* escape > */
133          wxRegEx exp02(wxT(">"), wxRE_NEWLINE|wxRE_DEFAULT);          wxRegEx exp02(wxT(">"), wxRE_NEWLINE|wxRE_DEFAULT);
134          exp02.Replace(&htmlText, wxT("\\&gt "));          exp02.Replace(&htmlText, wxT("\\&gt "));
135            
136            /* http://  */  
137            wxRegEx exp2(wxT("((http|https|ftp)://[-_.!~*'a-zA-Z0-9;/?:@&=+$,%#]+)"), wxRE_NEWLINE|wxRE_DEFAULT);
138            exp2.Replace(&htmlText, wxT("<a href=\\1>\\1</a>"));
139                    
140          /* [[ ]] */          /* [[ ]] */
141          wxRegEx exp1(wxT("\\[\\[([^\\}]+)\\]\\]"));          wxRegEx exp1(wxT("\\[\\[([^]]+)\\]\\]"));
142          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>"));  
143    
144          /* file://  */            /* file://  */  
145          wxRegEx exp3(wxT("(file://[^ ]+)"), wxRE_NEWLINE|wxRE_DEFAULT);          wxRegEx exp3(wxT("(file://[^ ]+)"), wxRE_NEWLINE|wxRE_DEFAULT);
146          exp3.Replace(&htmlText, wxT("<a href=\\1> \\1 </a>"));          exp3.Replace(&htmlText, wxT("<a href=\\1>\\1</a>"));
147                    
148          /* **XXXX */          /* **XXXX */
149          wxRegEx exp5(wxT("^\\*\\*([^*]+)"), wxRE_NEWLINE|wxRE_DEFAULT);          wxRegEx exp5(wxT("^\\*\\*([^*]+)"), wxRE_NEWLINE|wxRE_DEFAULT);
150          exp5.Replace(&htmlText, wxT("<h4> \\1 </h4>"));  #ifdef __WXMAC__
151            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>"));
152    #else
153            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>"));
154    #endif
155    
156          /* *XXXX */          /* *XXXX */
157          wxRegEx exp4(wxT("^\\*([^*]+)"), wxRE_NEWLINE|wxRE_DEFAULT);          wxRegEx exp4(wxT("^\\*([^*]+)"), wxRE_NEWLINE|wxRE_DEFAULT);
158          //wxRegEx exp4(wxT("^\\*(..*)"), wxRE_NEWLINE|wxRE_DEFAULT);  #ifdef __WXMAC__
159          exp4.Replace(&htmlText, wxT("<h3> \\1 </h3>"));          exp4.Replace(&htmlText, wxT("<TABLE WIDTH=\"100%\" CELLPADDING=5 CELLSPACING=2 BORDER=1><TR><TD BGCOLOR=\"#CCFFFF\"><FONT SIZE=4><B>\\1</B></FONT></TD></TR></TABLE>"));
160    #else
161            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>"));
162    #endif
163                    
164          /* :''XXXX'': */          /* :''XXXX'': */
165          wxRegEx exp6(wxT("^:''(.+)'':(.+)"), wxRE_NEWLINE|wxRE_DEFAULT);          wxRegEx exp6(wxT("^:''(.+)'':(.+)"), wxRE_NEWLINE|wxRE_DEFAULT);
166          exp6.Replace(&htmlText, wxT("<u><b> \\1:\\2 </b></u>"));          exp6.Replace(&htmlText, wxT("<u><b>\\1:\\2</b></u>"));
167    
168          /* ---- */          /* ---- */
169          wxRegEx exp7(wxT("^----.*"), wxRE_NEWLINE|wxRE_DEFAULT);          wxRegEx exp7(wxT("^----.*"), wxRE_NEWLINE|wxRE_DEFAULT);
# Line 161  void mnNotePanel::makeHtml(WikiData* wik Line 171  void mnNotePanel::makeHtml(WikiData* wik
171    
172          /* {{ }} */          /* {{ }} */
173          wxRegEx exp8(wxT("\\{\\{([^\\}]+)\\}\\}"));          wxRegEx exp8(wxT("\\{\\{([^\\}]+)\\}\\}"));
174          exp8.Replace(&htmlText, wxT("<a href=mndoc:\\1> \\1 </a>"));          exp8.Replace(&htmlText, wxT("<a href=\"" MNDOC "\\1\">\\1</a>"));
175    
176          /* table */          /* table */
177          wxRegEx exp10(wxT("^,([^,]+)"), wxRE_NEWLINE|wxRE_DEFAULT);          wxRegEx exp10(wxT("^,([^,]+)"), wxRE_NEWLINE|wxRE_DEFAULT);
178          exp10.Replace(&htmlText, wxT("<td> \\1 </td>"));          exp10.Replace(&htmlText, wxT("<td> \\1 </td>"));
179          for(int i = 0; i < 10; i++){ // It's not good.  :P          for(int i = 0; i < 10; i++){ // It's not good.  :P
180                  wxRegEx exp16(wxT("</td>,([^,\n]+)"), wxRE_DEFAULT);                  wxRegEx exp16(wxT("</td>,([^,\n]+)"), wxRE_DEFAULT);
181                  exp16.Replace(&htmlText, wxT("</td><td> \\1 </td>"));                  exp16.Replace(&htmlText, wxT("</td><td>\\1</td>"));
182          }          }
183          wxRegEx exp11(wxT("^<td>"), wxRE_NEWLINE|wxRE_DEFAULT);          wxRegEx exp11(wxT("^<td>"), wxRE_NEWLINE|wxRE_DEFAULT);
184          exp11.Replace(&htmlText, wxT("<tr><td>"));          exp11.Replace(&htmlText, wxT("<tr><td>"));
# Line 193  void mnNotePanel::makeHtml(WikiData* wik Line 203  void mnNotePanel::makeHtml(WikiData* wik
203                  {                  {
204                          wxString token = tkz.GetNextToken();                          wxString token = tkz.GetNextToken();
205                          wxRegEx exp9(wxT("(?!<[^>]+)(") + token + wxT(")(?![^<]+>)"), wxRE_ADVANCED|wxRE_ICASE|wxRE_NEWLINE);                          wxRegEx exp9(wxT("(?!<[^>]+)(") + token + wxT(")(?![^<]+>)"), wxRE_ADVANCED|wxRE_ICASE|wxRE_NEWLINE);
206                          exp9.Replace(&htmlText, wxT("<b><font color=\"red\"> \\1 </font></b>"));                          exp9.Replace(&htmlText, wxT("<b><font color=\"red\">\\1</font></b>"));
207                  }                  }
208          }          }
209    
210          /* make HTML document */          /* make HTML document */
211          wxString wikiHtml;          wxString wikiHtml;
212          wikiHtml.Append(wxT("<meta http-equiv=\"Content-Type\"content=\"text/html; charset="));          wikiHtml.Append(wxT("<meta http-equiv=\"Content-Type\" content=\"text/html; charset="));
213          wikiHtml.Append(wxT(CODE_SET_SYSTEM));          wikiHtml.Append(wxT(CODE_SET_SYSTEM));
214          wikiHtml.Append(wxT("\">"));          wikiHtml.Append(wxT("\">"));
215          wikiHtml.Append(wxT("<pre>"));          wikiHtml.Append(wxT("<pre>"));
# Line 220  void mnNotePanel::showSelectedItemText(w Line 230  void mnNotePanel::showSelectedItemText(w
230          item = searchTree->GetItemData(id);          item = searchTree->GetItemData(id);
231    
232          if(!id.IsOk() || !isEditableTreeLabel(id) || item == NULL) { /* selection is not memo data */          if(!id.IsOk() || !isEditableTreeLabel(id) || item == NULL) { /* selection is not memo data */
233                  wikiHtmlTextCtrl->SetPage(wxT(""));                  wikiHtmlTextCtrl->SetPage(wxT("<html></html>"));
234                  return;                  return;
235          }          }
236          makeHtml((WikiData*)item, false);          makeHtml((WikiData*)item, false);

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.13

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26