Develop and Download Open Source Software

Browse CVS Repository

Diff of /malonnote/main.cpp

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

revision 1.3 by maloninc, Sun Jul 31 02:40:05 2005 UTC revision 1.8 by maloninc, Mon Jan 23 13:37:10 2006 UTC
# Line 3  Line 3 
3  #include <wx/wx.h>  #include <wx/wx.h>
4  #include <wx/image.h>  #include <wx/image.h>
5  #include <wx/snglinst.h>  #include <wx/snglinst.h>
6    #include <wx/xrc/xmlres.h>
7  #include "mnDef.h"  #include "mnDef.h"
8  #include "mnFrame.h"  #include "mnFrame.h"
9  #include "mnController.h"  #include "mnFrameController.h"
10    
11    extern void InitXmlResource(); // defined in mnResource.cpp generated by wxrc
12    
13  class mnApp: public wxApp {  class mnApp: public wxApp {
14  public:  public:
# Line 24  IMPLEMENT_APP(mnApp) Line 26  IMPLEMENT_APP(mnApp)
26    
27  bool mnApp::OnInit()  bool mnApp::OnInit()
28  {  {
29            wxString* dirName = new wxString();
30            wxString gotDirName;
31            wxDirDialog* dlg;
32            wxString confKey;
33            
34          const wxString appName = wxString::Format(wxT(MN_APP_NAME) wxT("-%s"), wxGetUserId().c_str());          const wxString appName = wxString::Format(wxT(MN_APP_NAME) wxT("-%s"), wxGetUserId().c_str());
35    
36      m_checker = new wxSingleInstanceChecker(appName);      m_checker = new wxSingleInstanceChecker(appName);
# Line 35  bool mnApp::OnInit() Line 41  bool mnApp::OnInit()
41      }      }
42    
43      wxInitAllImageHandlers();      wxInitAllImageHandlers();
44      mainFrame = new mnFrame(0, -1, wxT(""));          wxXmlResource::Get()->InitAllHandlers();
45            InitXmlResource();
46    
47        mainFrame = new mnFrame(0);
48    
49          /* set controller object as event handler */          /* set controller object as event handler */
50          mnController* controller = new mnController(mainFrame);          mnFrameController* controller = new mnFrameController(mainFrame);
51          mainFrame->PushEventHandler(controller);          mainFrame->PushEventHandler(controller);
52    
53      SetTopWindow(mainFrame);      SetTopWindow(mainFrame);
54      mainFrame->Show();      mainFrame->Show();
55            
56            /* add note panel */
57            wxConfig* config = new wxConfig(wxT(CONF_APP_NAME));
58            if(config->Read(wxT(CONF_WIKI_DIR), dirName) == FALSE) {
59                    delete dirName;
60                    dlg = new wxDirDialog(mainFrame);
61                    if(dlg->ShowModal() == wxID_OK) {
62                            gotDirName = dlg->GetPath();
63    wxLogMessage(wxT("gotDirName:[%s]"), gotDirName.c_str());
64                            //config->Write(wxT(CONF_WIKI_DIR), gotDirName.c_str());
65                            //mainFrame->addNotePanel(&gotDirName);
66                    }
67                    else {
68                            mainFrame->Close();
69                    }
70            }
71            else {
72                    mainFrame->addNotePanel(dirName);
73    
74                    for(int i = 1; ;i++) {
75                            confKey.sprintf(wxT(CONF_WIKI_DIR) "%d", i);
76                            if(config->Read(confKey.c_str(), dirName) == FALSE) break;
77                            mainFrame->addNotePanel(dirName);
78                    }
79                    mainFrame->getNotebook()->SetSelection(0);
80            }
81    
82            delete config;
83    
84            mainFrame->setFocusToSearchTextCtrl();
85      return true;      return true;
86  }  }
87    

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.8

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