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

Lines Matching refs:m_notebook

93 	m_notebook = CastChild( ID_NOTEBOOK, CMuleNotebook );
102 m_notebook->AssignImageList(m_ImageList);
160 int nPages = m_notebook->GetPageCount();
162 CSearchListCtrl* page = dynamic_cast<CSearchListCtrl*>(m_notebook->GetPage(i));
220 int nPages = m_notebook->GetPageCount();
222 CSearchListCtrl* page = dynamic_cast<CSearchListCtrl*>(m_notebook->GetPage(i));
234 if ( evt.GetSelection() == ((int)m_notebook->GetPageCount() - 1 ) ) {
238 CSearchListCtrl *ctrl = dynamic_cast<CSearchListCtrl*>(m_notebook->GetPage(evt.GetSelection()));
245 if ( m_notebook->GetPageCount() == 1 ) {
254 int selection = m_notebook->GetSelection();
259 if (selection >= (int)m_notebook->GetPageCount()) {
260 selection = m_notebook->GetPageCount() - 1;
265 CSearchListCtrl *ctrl = dynamic_cast<CSearchListCtrl*>(m_notebook->GetPage(selection));
368 int nPages = m_notebook->GetPageCount();
370 CSearchListCtrl* page = dynamic_cast<CSearchListCtrl*>(m_notebook->GetPage(i));
382 int nPages = m_notebook->GetPageCount();
385 if ( m_notebook->GetPageText(i).BeforeLast(wxT(' ')) == searchString ) {
396 CSearchListCtrl* list = new CSearchListCtrl( (wxWindow*)m_notebook, ID_SEARCHLISTCTRL, wxDefaultPosition, wxDefaultSize, wxLC_REPORT|wxNO_BORDER);
397 m_notebook->AddPage(list, searchString, true, 0);
437 int nPages = m_notebook->GetPageCount();
440 dynamic_cast<CSearchListCtrl*>(m_notebook->GetPage(i));
443 if (m_notebook->GetPageText(i).StartsWith(wxT("!"),&rest)) {
444 m_notebook->SetPageText(i,rest);
452 int sel = m_notebook->GetSelection();
454 CSearchListCtrl* list = dynamic_cast<CSearchListCtrl*>(m_notebook->GetPage(sel));
466 m_notebook->DeleteAllPages();
582 for ( uint32 i = 0; i < (uint32)m_notebook->GetPageCount(); ++i ) {
583 if ( m_notebook->GetPage(i) == page ) {
584 wxString searchtxt = m_notebook->GetPageText(i).BeforeLast(wxT(' '));
596 m_notebook->SetPageText(i, searchtxt);