Esempio n. 1
0
def search_for_page(notebook: wx.Notebook, page_name: str):
    """
	Search for a page with a specific name inside the notebook.
	"""
    n_pages = notebook.GetPageCount()
    l_pages = [notebook.GetPageText(i) for i in range(n_pages)]
    return page_name in l_pages
Esempio n. 2
0
def delete_all_excluding(notebook: wx.Notebook, exclusion_list: list):
    """
	Delete all pages in the notebook, except specified ones.
	:exclusion_list: is a list of string, containing some page names.
	"""
    if exclusion_list:
        l_index = []
        n_pages = notebook.GetPageCount()
        for i in range(n_pages):
            if notebook.GetPageText(i) not in exclusion_list:
                l_index.append(i)  # Gather index of pages to delete
        l_index.sort(reverse=True)
        for index in l_index:
            notebook.DeletePage(index)
    else:
        notebook.DeleteAllPages()