Lines Matching refs:TopFrame

76 class TopFrame: public wxFrame  class
79 TopFrame(const wxString& title, const wxPoint& pos, const wxSize& size);
80 void SetActiveTopFrame(TopFrame *frame);
171 static TopFrame *m_ActiveTopFrame; //< The active TopFrame, used in test run event handlers.
206 BEGIN_EVENT_TABLE(TopFrame, wxFrame)
207 EVT_MENU(menu_FileExit, TopFrame::OnQuit)
208 EVT_MENU(menu_ViewExpandAll, TopFrame::OnTreeExpandAll)
209 EVT_MENU(menu_ViewCollapseAll, TopFrame::OnTreeCollapseAll)
210 EVT_MENU(menu_OptionActivateSelected, TopFrame::OnActivateSelected)
211 EVT_MENU(menu_OptionActivateAllSuites, TopFrame::OnActivateAllSuites)
212 EVT_MENU(menu_OptionActivateAll, TopFrame::OnActivateAll)
213 EVT_MENU(menu_OptionDeactivateSelected, TopFrame::OnDeactivateSelected)
214 EVT_MENU(menu_OptionDeactivateAllSuites, TopFrame::OnDeactivateAllSuites)
215 EVT_MENU(menu_OptionDeactivateAll, TopFrame::OnDeactivateAll)
216 EVT_MENU(menu_ViewColorizeTreeItems, TopFrame::OnOptionColorizeTreeItems)
217 EVT_MENU(menu_OptionFailOnInactive, TopFrame::OnOptionFailOnInactive)
218 EVT_MENU(menu_RunRunAll, TopFrame::OnRunAll)
219 EVT_MENU(menu_HelpAbout, TopFrame::OnAbout)
221 EVT_CLOSE( TopFrame::OnCloseWindow)
222 EVT_CHECKBOX(checkbox_SuiteActive, TopFrame::OnSuiteActiveCheckbox)
223 EVT_CHECKBOX(checkbox_TestActive, TopFrame::OnTestActiveCheckbox)
224 EVT_TREE_SEL_CHANGED(tree_Listing, TopFrame::OnTreeSelectionChanged)
298 ? TopFrame::TreeCtrlIcon_SuiteActiveOpen in FormatTreeItem_Suite()
299 : TopFrame::TreeCtrlIcon_SuiteActive), in FormatTreeItem_Suite()
306 ? TopFrame::TreeCtrlIcon_SuiteInactiveOpen in FormatTreeItem_Suite()
307 : TopFrame::TreeCtrlIcon_SuiteInactive), in FormatTreeItem_Suite()
322 ? TopFrame::TreeCtrlIcon_TestActive in FormatTreeItem_Test()
323 : TopFrame::TreeCtrlIcon_TestActiveSuiteInactive), in FormatTreeItem_Test()
330 ? TopFrame::TreeCtrlIcon_TestInactive in FormatTreeItem_Test()
331 : TopFrame::TreeCtrlIcon_TestInactiveSuiteInactive), in FormatTreeItem_Test()
591 TopFrame *frame = new TopFrame(_("CUnit Testing - wxWidgets Interface"), in OnInit()
600 TopFrame *TopFrame::m_ActiveTopFrame = NULL;
602 void TopFrame::ClearPreviousStats(void) in ClearPreviousStats()
614 void TopFrame::SetActiveTopFrame(TopFrame *frame) in SetActiveTopFrame()
619 wxTreeItemId TopFrame::FindSuite(CU_pSuite pSuite) in FindSuite()
636 wxTreeItemId TopFrame::FindTest(CU_pSuite pSuite, CU_pTest pTest) in FindTest()
660 void TopFrame::DeactivateSuiteInfo(void) in DeactivateSuiteInfo()
695 void TopFrame::ActivateSuiteInfo(void) in ActivateSuiteInfo()
726 void TopFrame::DeactivateTestInfo(void) in DeactivateTestInfo()
746 void TopFrame::ActivateTestInfo(void) in ActivateTestInfo()
766 void TopFrame::DeactivateRunResultInfo(void) in DeactivateRunResultInfo()
804 void TopFrame::ActivateRunResultInfo(void) in ActivateRunResultInfo()
839 void TopFrame::WriteFailureRecords(wxTextCtrl *textctrl, in WriteFailureRecords()
872 TopFrame::TopFrame(const wxString& title, const wxPoint& pos, const wxSize& size) in TopFrame() function in TopFrame
1222 void TopFrame::OnQuit(wxCommandEvent& WXUNUSED(event)) in OnQuit()
1227 void TopFrame::OnCloseWindow(wxCloseEvent& WXUNUSED(event)) in OnCloseWindow()
1238 void TopFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) in OnAbout()
1253 void TopFrame::OnTreeExpandAll(wxCommandEvent& WXUNUSED(event)) in OnTreeExpandAll()
1258 void TopFrame::OnTreeCollapseAll(wxCommandEvent& WXUNUSED(event)) in OnTreeCollapseAll()
1263 void TopFrame::OnTreeSelectionChanged(wxTreeEvent& event) in OnTreeSelectionChanged()
1361 void TopFrame::OnActivateSelected(wxCommandEvent& WXUNUSED(event)) in OnActivateSelected()
1375 void TopFrame::OnDeactivateSelected(wxCommandEvent& WXUNUSED(event)) in OnDeactivateSelected()
1389 void TopFrame::OnActivateAllSuites(wxCommandEvent& WXUNUSED(event)) in OnActivateAllSuites()
1395 void TopFrame::OnDeactivateAllSuites(wxCommandEvent& WXUNUSED(event)) in OnDeactivateAllSuites()
1401 void TopFrame::OnActivateAll(wxCommandEvent& WXUNUSED(event)) in OnActivateAll()
1409 void TopFrame::OnDeactivateAll(wxCommandEvent& WXUNUSED(event)) in OnDeactivateAll()
1417 void TopFrame::OnRunAll(wxCommandEvent& WXUNUSED(event)) in OnRunAll()
1420 CU_set_suite_start_handler(&TopFrame::SuiteStartMessageHandler); in OnRunAll()
1421 CU_set_test_start_handler(&TopFrame::TestStartMessageHandler); in OnRunAll()
1422 CU_set_test_complete_handler(&TopFrame::TestCompleteMessageHandler); in OnRunAll()
1423 CU_set_suite_complete_handler(&TopFrame::SuiteCompleteMessageHandler); in OnRunAll()
1452 void TopFrame::OnOptionColorizeTreeItems(wxCommandEvent& event) in OnOptionColorizeTreeItems()
1468 void TopFrame::OnOptionFailOnInactive(wxCommandEvent& event) in OnOptionFailOnInactive()
1480 void TopFrame::OnSuiteActiveCheckbox(wxCommandEvent& event) in OnSuiteActiveCheckbox()
1499 void TopFrame::OnTestActiveCheckbox(wxCommandEvent& event) in OnTestActiveCheckbox()
1512 void TopFrame::SuiteStartMessageHandler(const CU_pSuite pSuite) in SuiteStartMessageHandler()
1520 void TopFrame::TestStartMessageHandler(const CU_pTest pTest, const CU_pSuite pSuite) in TestStartMessageHandler()
1529 void TopFrame::TestCompleteMessageHandler(const CU_pTest pTest, in TestCompleteMessageHandler()
1538 TopFrame *frame = m_ActiveTopFrame; in TestCompleteMessageHandler()
1551 void TopFrame::SuiteCompleteMessageHandler(const CU_pSuite pSuite, in SuiteCompleteMessageHandler()
1559 TopFrame *frame = m_ActiveTopFrame; in SuiteCompleteMessageHandler()