• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/

Lines Matching refs:wxDocManager

84 IMPLEMENT_DYNAMIC_CLASS(wxDocManager, wxEvtHandler)
179 wxDocManager* manager = GetDocumentManager();
228 wxDocManager *wxDocument::GetDocumentManager() const
230 return (m_documentTemplate ? m_documentTemplate->GetDocumentManager() : (wxDocManager*) NULL);
717 wxDocTemplate::wxDocTemplate(wxDocManager *manager,
834 // wxDocManager
837 BEGIN_EVENT_TABLE(wxDocManager, wxEvtHandler)
838 EVT_MENU(wxID_OPEN, wxDocManager::OnFileOpen)
839 EVT_MENU(wxID_CLOSE, wxDocManager::OnFileClose)
840 EVT_MENU(wxID_CLOSE_ALL, wxDocManager::OnFileCloseAll)
841 EVT_MENU(wxID_REVERT, wxDocManager::OnFileRevert)
842 EVT_MENU(wxID_NEW, wxDocManager::OnFileNew)
843 EVT_MENU(wxID_SAVE, wxDocManager::OnFileSave)
844 EVT_MENU(wxID_SAVEAS, wxDocManager::OnFileSaveAs)
845 EVT_MENU(wxID_UNDO, wxDocManager::OnUndo)
846 EVT_MENU(wxID_REDO, wxDocManager::OnRedo)
848 EVT_UPDATE_UI(wxID_OPEN, wxDocManager::OnUpdateFileOpen)
849 EVT_UPDATE_UI(wxID_CLOSE, wxDocManager::OnUpdateFileClose)
850 EVT_UPDATE_UI(wxID_CLOSE_ALL, wxDocManager::OnUpdateFileClose)
851 EVT_UPDATE_UI(wxID_REVERT, wxDocManager::OnUpdateFileRevert)
852 EVT_UPDATE_UI(wxID_NEW, wxDocManager::OnUpdateFileNew)
853 EVT_UPDATE_UI(wxID_SAVE, wxDocManager::OnUpdateFileSave)
854 EVT_UPDATE_UI(wxID_SAVEAS, wxDocManager::OnUpdateFileSaveAs)
855 EVT_UPDATE_UI(wxID_UNDO, wxDocManager::OnUpdateUndo)
856 EVT_UPDATE_UI(wxID_REDO, wxDocManager::OnUpdateRedo)
859 EVT_MENU(wxID_PRINT, wxDocManager::OnPrint)
860 EVT_MENU(wxID_PREVIEW, wxDocManager::OnPreview)
862 EVT_UPDATE_UI(wxID_PRINT, wxDocManager::OnUpdatePrint)
863 EVT_UPDATE_UI(wxID_PREVIEW, wxDocManager::OnUpdatePreview)
867 wxDocManager* wxDocManager::sm_docManager = (wxDocManager*) NULL;
869 wxDocManager::wxDocManager(long flags, bool initialize)
881 wxDocManager::~wxDocManager()
886 sm_docManager = (wxDocManager*) NULL;
890 bool wxDocManager::CloseDocument(wxDocument* doc, bool force)
907 bool wxDocManager::CloseDocuments(bool force)
926 bool wxDocManager::Clear(bool force)
944 bool wxDocManager::Initialize()
950 wxFileHistory *wxDocManager::OnCreateFileHistory()
955 void wxDocManager::OnFileClose(wxCommandEvent& WXUNUSED(event))
968 void wxDocManager::OnFileCloseAll(wxCommandEvent& WXUNUSED(event))
973 void wxDocManager::OnFileNew(wxCommandEvent& WXUNUSED(event))
978 void wxDocManager::OnFileOpen(wxCommandEvent& WXUNUSED(event))
986 void wxDocManager::OnFileRevert(wxCommandEvent& WXUNUSED(event))
994 void wxDocManager::OnFileSave(wxCommandEvent& WXUNUSED(event))
1002 void wxDocManager::OnFileSaveAs(wxCommandEvent& WXUNUSED(event))
1010 void wxDocManager::OnPrint(wxCommandEvent& WXUNUSED(event))
1028 void wxDocManager::OnPreview(wxCommandEvent& WXUNUSED(event))
1057 void wxDocManager::OnUndo(wxCommandEvent& event)
1068 void wxDocManager::OnRedo(wxCommandEvent& event)
1081 void wxDocManager::OnUpdateFileOpen(wxUpdateUIEvent& event)
1086 void wxDocManager::OnUpdateFileClose(wxUpdateUIEvent& event)
1092 void wxDocManager::OnUpdateFileRevert(wxUpdateUIEvent& event)
1098 void wxDocManager::OnUpdateFileNew(wxUpdateUIEvent& event)
1103 void wxDocManager::OnUpdateFileSave(wxUpdateUIEvent& event)
1109 void wxDocManager::OnUpdateFileSaveAs(wxUpdateUIEvent& event)
1115 void wxDocManager::OnUpdateUndo(wxUpdateUIEvent& event)
1129 void wxDocManager::OnUpdateRedo(wxUpdateUIEvent& event)
1143 void wxDocManager::OnUpdatePrint(wxUpdateUIEvent& event)
1149 void wxDocManager::OnUpdatePreview(wxUpdateUIEvent& event)
1155 wxView *wxDocManager::GetCurrentView() const
1168 bool wxDocManager::ProcessEvent(wxEvent& event)
1179 wxDocument *wxDocManager::CreateDocument(const wxString& path, long flags)
1349 wxView *wxDocManager::CreateView(wxDocument *doc, long flags)
1395 void wxDocManager::DeleteTemplate(wxDocTemplate *WXUNUSED(temp), long WXUNUSED(flags))
1400 bool wxDocManager::FlushDoc(wxDocument *WXUNUSED(doc))
1405 wxDocument *wxDocManager::GetCurrentDocument() const
1415 bool wxDocManager::MakeDefaultName(wxString& name)
1425 wxString wxDocManager::MakeFrameTitle(wxDocument* doc)
1442 wxDocTemplate *wxDocManager::MatchTemplate(const wxString& WXUNUSED(path))
1448 void wxDocManager::AddFileToHistory(const wxString& file)
1454 void wxDocManager::RemoveFileFromHistory(size_t i)
1460 wxString wxDocManager::GetHistoryFile(size_t i) const
1470 void wxDocManager::FileHistoryUseMenu(wxMenu *menu)
1476 void wxDocManager::FileHistoryRemoveMenu(wxMenu *menu)
1483 void wxDocManager::FileHistoryLoad(wxConfigBase& config)
1489 void wxDocManager::FileHistorySave(wxConfigBase& config)
1496 void wxDocManager::FileHistoryAddFilesToMenu(wxMenu* menu)
1502 void wxDocManager::FileHistoryAddFilesToMenu()
1508 size_t wxDocManager::GetHistoryFilesCount() const
1516 wxDocTemplate *wxDocManager::FindTemplateForPath(const wxString& path)
1559 wxDocTemplate *wxDocManager::SelectDocumentPath(wxDocTemplate **templates,
1647 wxDocTemplate *wxDocManager::SelectDocumentType(wxDocTemplate **templates,
1728 wxDocTemplate *wxDocManager::SelectViewType(wxDocTemplate **templates,
1805 void wxDocManager::AssociateTemplate(wxDocTemplate *temp)
1811 void wxDocManager::DisassociateTemplate(wxDocTemplate *temp)
1817 void wxDocManager::AddDocument(wxDocument *doc)
1823 void wxDocManager::RemoveDocument(wxDocument *doc)
1830 void wxDocManager::ActivateView(wxView *view, bool activate)
1937 wxDocParentFrame::wxDocParentFrame(wxDocManager *manager,
1950 bool wxDocParentFrame::Create(wxDocManager *manager,