/// Delete all styles void wxRichTextStyleSheet::DeleteStyles() { WX_CLEAR_LIST(wxList, m_characterStyleDefinitions); WX_CLEAR_LIST(wxList, m_paragraphStyleDefinitions); WX_CLEAR_LIST(wxList, m_listStyleDefinitions); WX_CLEAR_LIST(wxList, m_boxStyleDefinitions); }
bool wxGenericImageList::RemoveAll() { WX_CLEAR_LIST(wxObjectList, m_images); m_images.Clear(); return true; }
void ListsTestCase::wxListCtorTest() { { wxListBazs list1; list1.Append(new Baz(_T("first"))); list1.Append(new Baz(_T("second"))); CPPUNIT_ASSERT( list1.GetCount() == 2 ); CPPUNIT_ASSERT( Baz::GetNumber() == 2 ); wxListBazs list2; list2 = list1; CPPUNIT_ASSERT( list1.GetCount() == 2 ); CPPUNIT_ASSERT( list2.GetCount() == 2 ); CPPUNIT_ASSERT( Baz::GetNumber() == 2 ); #if !wxUSE_STL list1.DeleteContents(true); #else WX_CLEAR_LIST(wxListBazs, list1); #endif } CPPUNIT_ASSERT( Baz::GetNumber() == 0 ); }
bool wxImageList::RemoveAll() { WX_CLEAR_LIST(wxList, m_images); m_images.Clear(); return true; }
void CPathCtrl::Clear() { /*ItemList::Node *node = m_PathList.GetFirst(); while (node) { CPathItem *item = (CPathItem*)node->GetData(); node = node->GetNext(); delete item; }*/ WX_CLEAR_LIST(ItemList, m_PathList); }
wxRadioBox::~wxRadioBox() { wxRadioBoxButtonsInfoList::compatibility_iterator node = m_buttonsInfo.GetFirst(); while (node) { GtkWidget *button = GTK_WIDGET( node->GetData()->button ); gtk_widget_destroy( button ); node = node->GetNext(); } WX_CLEAR_LIST( wxRadioBoxButtonsInfoList, m_buttonsInfo ); }
void wxModule::CleanUpModules() { // Cleanup user-defined modules wxModuleList::compatibility_iterator node; for ( node = m_modules.GetFirst(); node; node = node->GetNext() ) { node->GetData()->Exit(); } WX_CLEAR_LIST(wxModuleList, m_modules); }
wxToolBarBase::~wxToolBarBase() { WX_CLEAR_LIST(wxToolBarToolsList, m_tools); // notify the frame that it doesn't have a tool bar any longer to avoid // dangling pointers wxFrame *frame = wxDynamicCast(GetParent(), wxFrame); if ( frame && frame->GetToolBar() == this ) { frame->SetToolBar(NULL); } }
const wxMenuInfoList& wxMenuBar::GetMenuInfos() const { wxMenuInfoList* list = const_cast< wxMenuInfoList* >( &m_menuInfos ) ; WX_CLEAR_LIST( wxMenuInfoList , *list ) ; for( size_t i = 0 ; i < GetMenuCount() ; ++i ) { wxMenuInfo* info = new wxMenuInfo() ; info->Create( const_cast<wxMenuBar*>(this)->GetMenu(i) , GetLabelTop(i) ) ; list->Append( info ) ; } return m_menuInfos ; }
const wxMenuInfoHelperList& wxMenuBarBase::GetMenuInfos() const { wxMenuInfoHelperList* list = const_cast< wxMenuInfoHelperList* > (& m_menuInfos); WX_CLEAR_LIST( wxMenuInfoHelperList, *list); for (size_t i = 0 ; i < GetMenuCount(); ++i) { wxMenuInfoHelper* info = new wxMenuInfoHelper(); info->Create( GetMenu(i), GetMenuLabel(i)); list->Append(info); } return m_menuInfos; }
const wxNotebookPageInfoList& wxNotebook::GetPageInfos() const { wxNotebookPageInfoList* list = const_cast< wxNotebookPageInfoList* >( &m_pageInfos ) ; WX_CLEAR_LIST( wxNotebookPageInfoList , *list ) ; for( size_t i = 0 ; i < GetPageCount() ; ++i ) { wxNotebookPageInfo *info = new wxNotebookPageInfo() ; info->Create( const_cast<wxNotebook*>(this)->GetPage(i) , GetPageText(i) , GetSelection() == int(i) , GetPageImage(i) ) ; list->Append( info ) ; } return m_pageInfos ; }
wxMenu::~wxMenu() { WX_CLEAR_LIST(wxMenuItemList, m_items); if ( GTK_IS_WIDGET( m_menu )) { // see wxMenu::Init gtk_widget_unref( m_menu ); // if the menu is inserted in another menu at this time, there was // one more reference to it: if ( m_owner ) gtk_widget_destroy( m_menu ); } }
void wxStatusBarBase::FreeStacks() { if ( !m_statusTextStacks ) return; for ( size_t i = 0; i < (size_t)m_nFields; ++i ) { if ( m_statusTextStacks[i] ) { wxListString& t = *m_statusTextStacks[i]; WX_CLEAR_LIST(wxListString, t); delete m_statusTextStacks[i]; } } delete[] m_statusTextStacks; }
//--------------------------------------------------------------------------- wxMultiCellSizer::~wxMultiCellSizer() { WX_CLEAR_LIST(wxSizerItemList, m_children); free(m_maxHeight); free(m_maxWidth); free(m_rowStretch); free(m_colStretch); for (int x = 0; x < 1 + wxMax(m_cell_count.GetHeight(), m_cell_count.GetWidth()); x++) { delete m_weights[x]; delete m_minSizes[x]; } free(m_weights); free(m_minSizes); }
wx28HtmlParser::~wx28HtmlParser() { while (RestoreState()) {} DestroyDOMTree(); if (m_HandlersStack) { wxList& tmp = *m_HandlersStack; wxList::iterator it, en; for( it = tmp.begin(), en = tmp.end(); it != en; ++it ) delete (wxHashTable*)*it; tmp.clear(); } delete m_HandlersStack; m_HandlersHash.Clear(); WX_CLEAR_LIST(wxList, m_HandlersList); delete m_entitiesParser; }
// Clean up all currently initialized modules void wxModule::DoCleanUpModules(const wxModuleList& modules) { // cleanup user-defined modules in the reverse order compared to their // initialization -- this ensures that dependencies are respected for ( wxModuleList::compatibility_iterator node = modules.GetLast(); node; node = node->GetPrevious() ) { wxLogTrace(TRACE_MODULE, wxT("Cleanup module %s"), node->GetData()->GetClassInfo()->GetClassName()); wxModule * module = node->GetData(); wxASSERT_MSG( module->m_state == State_Initialized, wxT("not initialized module being cleaned up") ); module->Exit(); module->m_state = State_Registered; } // clear all modules, even the non-initialized ones WX_CLEAR_LIST(wxModuleList, m_modules); }
DoodleSegment::~DoodleSegment(void) { WX_CLEAR_LIST(wxList, lines); }
wxMenuBase::~wxMenuBase() { WX_CLEAR_LIST(wxMenuItemList, m_items); }
// `Main program' equivalent, creating windows and returning main app frame bool MyApp::OnInit() { // Use default list of macros defined in tex2any.cc DefineDefaultMacros(); AddMacroDef(ltHARDY, _T("hardy"), 0); FileRoot = new wxChar[300]; ContentsName = new wxChar[300]; TmpContentsName = new wxChar[300]; TmpFrameContentsName = new wxChar[300]; WinHelpContentsFileName = new wxChar[300]; RefFileName = new wxChar[300]; WX_CLEAR_LIST(wxList,ColourTable); int n = 1; // Read input/output files if (argc > 1) { if (argv[1][0] != _T('-')) { InputFile = argv[1]; n ++; if (argc > 2) { if (argv[2][0] != _T('-')) { OutputFile = argv[2]; n ++; } } } } #ifdef NO_GUI if (InputFile.empty() || OutputFile.empty()) { wxSTD cout << "Tex2RTF: input or output file is missing.\n"; ShowOptions(); exit(1); } #endif if (!InputFile.empty()) { TexPathList.EnsureFileAccessible(InputFile); } if (InputFile.empty() || OutputFile.empty()) isInteractive = true; int i; for (i = n; i < argc;) { if (wxStrcmp(argv[i], _T("-winhelp")) == 0) { i ++; convertMode = TEX_RTF; winHelp = true; } #ifndef NO_GUI else if (wxStrcmp(argv[i], _T("-interactive")) == 0) { i ++; isInteractive = true; } #endif else if (wxStrcmp(argv[i], _T("-sync")) == 0) // Don't yield { i ++; isSync = true; } else if (wxStrcmp(argv[i], _T("-rtf")) == 0) { i ++; convertMode = TEX_RTF; } else if (wxStrcmp(argv[i], _T("-html")) == 0) { i ++; convertMode = TEX_HTML; } else if (wxStrcmp(argv[i], _T("-xlp")) == 0) { i ++; convertMode = TEX_XLP; } else if (wxStrcmp(argv[i], _T("-twice")) == 0) { i ++; runTwice = true; } else if (wxStrcmp(argv[i], _T("-macros")) == 0) { i ++; if (i < argc) { MacroFile = copystring(argv[i]); i ++; } } else if (wxStrcmp(argv[i], _T("-bufsize")) == 0) { i ++; if (i < argc) { BufSize = wxAtoi(argv[i]); i ++; } } else if (wxStrcmp(argv[i], _T("-charset")) == 0) { i ++; if (i < argc) { wxChar *s = argv[i]; i ++; if (wxStrcmp(s, _T("ansi")) == 0 || wxStrcmp(s, _T("pc")) == 0 || wxStrcmp(s, _T("mac")) == 0 || wxStrcmp(s, _T("pca")) == 0) RTFCharset = copystring(s); else { OnError(_T("Incorrect argument for -charset")); return false; } } } else if (wxStrcmp(argv[i], _T("-checkcurlybraces")) == 0) { i ++; checkCurlyBraces = true; } else if (wxStrcmp(argv[i], _T("-checkcurleybraces")) == 0) { // Support the old, incorrectly spelled version of -checkcurlybraces // so that old scripts which run tex2rtf -checkcurleybraces still work. i ++; checkCurlyBraces = true; } else if (wxStrcmp(argv[i], _T("-checksyntax")) == 0) { i ++; checkSyntax = true; } else { wxString buf; buf.Printf(_T("Invalid switch %s.\n"), argv[i]); OnError((wxChar *)buf.c_str()); #ifdef NO_GUI ShowOptions(); exit(1); #else return false; #endif } } #if defined(__WXMSW__) && !defined(NO_GUI) wxDDEInitialize(); Tex2RTFLastStatus[0] = 0; // DDE connection return value TheTex2RTFServer = new Tex2RTFServer; TheTex2RTFServer->Create(_T("TEX2RTF")); #endif TexInitialize(BufSize); ResetContentsLevels(0); #ifndef NO_GUI if (isInteractive) { // Create the main frame window frame = new MyFrame(NULL, wxID_ANY, _T("Tex2RTF"), wxDefaultPosition, wxSize(400, 300)); #if wxUSE_STATUSBAR frame->CreateStatusBar(2); #endif // wxUSE_STATUSBAR // Give it an icon // TODO: uncomment this when we have tex2rtf.xpm frame->SetIcon(wxICON(tex2rtf)); if (!InputFile.empty()) { wxString title; title.Printf( _T("Tex2RTF [%s]"), wxFileNameFromPath(InputFile).c_str()); frame->SetTitle(title); } // Make a menubar wxMenu *file_menu = new wxMenu; file_menu->Append(TEX_GO, _T("&Go"), _T("Run converter")); file_menu->Append(TEX_SET_INPUT, _T("Set &Input File"), _T("Set the LaTeX input file")); file_menu->Append(TEX_SET_OUTPUT, _T("Set &Output File"), _T("Set the output file")); file_menu->AppendSeparator(); file_menu->Append(TEX_VIEW_LATEX, _T("View &LaTeX File"), _T("View the LaTeX input file")); file_menu->Append(TEX_VIEW_OUTPUT, _T("View Output &File"), _T("View output file")); file_menu->Append(TEX_SAVE_FILE, _T("&Save log file"), _T("Save displayed text into file")); file_menu->AppendSeparator(); file_menu->Append(TEX_QUIT, _T("E&xit"), _T("Exit Tex2RTF")); wxMenu *macro_menu = new wxMenu; macro_menu->Append(TEX_LOAD_CUSTOM_MACROS, _T("&Load Custom Macros"), _T("Load custom LaTeX macro file")); macro_menu->Append(TEX_VIEW_CUSTOM_MACROS, _T("View &Custom Macros"), _T("View custom LaTeX macros")); wxMenu *mode_menu = new wxMenu; mode_menu->Append(TEX_MODE_RTF, _T("Output linear &RTF"), _T("Wordprocessor-compatible RTF")); mode_menu->Append(TEX_MODE_WINHELP, _T("Output &WinHelp RTF"), _T("WinHelp-compatible RTF")); mode_menu->Append(TEX_MODE_HTML, _T("Output &HTML"), _T("HTML World Wide Web hypertext file")); mode_menu->Append(TEX_MODE_XLP, _T("Output &XLP"), _T("wxHelp hypertext help file")); wxMenu *options_menu = new wxMenu; options_menu->Append(TEX_OPTIONS_CURLY_BRACE, _T("Curly brace matching"), _T("Checks for mismatched curly braces"),true); options_menu->Append(TEX_OPTIONS_SYNTAX_CHECKING, _T("Syntax checking"), _T("Syntax checking for common errors"),true); options_menu->Check(TEX_OPTIONS_CURLY_BRACE, checkCurlyBraces); options_menu->Check(TEX_OPTIONS_SYNTAX_CHECKING, checkSyntax); wxMenu *help_menu = new wxMenu; help_menu->Append(TEX_HELP, _T("&Help"), _T("Tex2RTF Contents Page")); help_menu->Append(TEX_ABOUT, _T("&About Tex2RTF"), _T("About Tex2RTF")); menuBar = new wxMenuBar; menuBar->Append(file_menu, _T("&File")); menuBar->Append(macro_menu, _T("&Macros")); menuBar->Append(mode_menu, _T("&Conversion Mode")); menuBar->Append(options_menu, _T("&Options")); menuBar->Append(help_menu, _T("&Help")); frame->SetMenuBar(menuBar); frame->textWindow = new wxTextCtrl(frame, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_READONLY|wxTE_MULTILINE); (*frame->textWindow) << _T("Welcome to Tex2RTF.\n"); // ShowOptions(); #if wxUSE_HELP #if wxUSE_MS_HTML_HELP && !defined(__WXUNIVERSAL__) HelpInstance = new wxCHMHelpController; #else HelpInstance = new wxHelpController; #endif HelpInstance->Initialize(_T("tex2rtf")); #endif // wxUSE_HELP /* * Read macro/initialisation file * */ wxString path = TexPathList.FindValidPath(MacroFile); if (!path.empty()) ReadCustomMacros(path); #if wxUSE_STATUSBAR wxString inStr(_T("In ")); switch (convertMode) { case TEX_RTF: if(winHelp) inStr += _T("WinHelp RTF"); else inStr += _T("linear RTF"); break; case TEX_HTML: inStr += _T("HTML"); break; case TEX_XLP: inStr += _T("XLP"); break; default: inStr += _T("unknown"); break; } inStr += _T(" mode."); frame->SetStatusText(inStr, 1); #endif // wxUSE_STATUSBAR frame->Show(true); return true; } else #endif // NO_GUI { /* * Read macro/initialisation file * */ wxString path = TexPathList.FindValidPath(MacroFile); if (!path.empty()) ReadCustomMacros(path); Go(); if (runTwice) { Go(); } #ifdef NO_GUI return true; #else OnExit(); // Do cleanup since OnExit won't be called now return false; #endif } }
void wxFileSystem::CleanUpHandlers() { WX_CLEAR_LIST(wxList, m_Handlers); }
virtual ~wxAccelRefData() { WX_CLEAR_LIST(wxAccelList, m_accels); }
wxDataObjectComposite::~wxDataObjectComposite() { WX_CLEAR_LIST( wxSimpleDataObjectList, m_dataObjects ); }
void wxHtmlPrintout::CleanUpStatics() { WX_CLEAR_LIST(wxList, m_Filters); }
wxMenuBase::~wxMenuBase() { WX_CLEAR_LIST(wxMenuItemList, m_items); // Actually, in GTK, the submenus have to get deleted first. }
wxMenuBarBase::~wxMenuBarBase() { WX_CLEAR_LIST(wxMenuList, m_menus); }
void ctProperties::Clear() { WX_CLEAR_LIST(wxObjectList,m_list); }
DrawingDocument::~DrawingDocument(void) { WX_CLEAR_LIST(wxList, doodleSegments); }