Searched refs:nSel (Results 1 - 24 of 24) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mac/carbon/
H A Dtabctrl.h124 int nSel = -1, int nOldSel = -1)
127 m_nSel = nSel;
134 void SetSelection(int nSel) { m_nSel = nSel; } argument
H A Dnotebook.h128 void ChangePage(int nOldSel, int nSel); // change pages
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/msw/
H A Dtabctrl.h130 int nSel = -1, int nOldSel = -1)
133 m_nSel = nSel;
140 void SetSelection(int nSel) { m_nSel = nSel; } argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/palmos/
H A Dtabctrl.h127 int nSel = -1, int nOldSel = -1)
130 m_nSel = nSel;
137 void SetSelection(int nSel) { m_nSel = nSel; } argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/os2/
H A Dnotebook.cpp695 int nSel; local
699 for (nSel = 0; nSel < nPageCount; nSel++)
701 if (ulOS2Sel == (ULONG)m_alPageId[nSel])
711 m_pages[nSel]->Show(false);
717 for (nSel = 0; nSel < nPageCount; nSel++)
719 if (ulOS2Sel == (ULONG)m_alPageId[nSel])
[all...]
H A Dradiobox.cpp620 int nSel = GetSelection(); local
622 if (nSel != wxNOT_FOUND)
623 sResult = GetString(nSel);
789 int nSel = FindString(rsStr); local
791 if (nSel > -1)
793 SetSelection(nSel);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dnotebook.h126 int nSel = -1, int nOldSel = -1)
127 : wxBookCtrlBaseEvent(commandType, winid, nSel, nOldSel)
H A Dtoolbook.h134 int nSel = wxNOT_FOUND, int nOldSel = wxNOT_FOUND)
135 : wxBookCtrlBaseEvent(commandType, id, nSel, nOldSel)
H A Dchoicebk.h125 int nSel = -1, int nOldSel = -1)
126 : wxBookCtrlBaseEvent(commandType, id, nSel, nOldSel)
H A Dbookctrl.h343 int nSel = -1, int nOldSel = -1)
346 m_nSel = nSel;
360 void SetSelection(int nSel) { m_nSel = nSel; } argument
H A Dlistbook.h123 int nSel = wxNOT_FOUND, int nOldSel = wxNOT_FOUND)
124 : wxBookCtrlBaseEvent(commandType, id, nSel, nOldSel)
H A Dtreebook.h242 int nSel = wxNOT_FOUND, int nOldSel = wxNOT_FOUND)
243 : wxBookCtrlBaseEvent(commandType, id, nSel, nOldSel)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/generic/
H A Dnotebook.cpp204 int nSel = GetSelection();
207 SetSelection(nSel == nMax ? 0 : nSel + 1);
209 SetSelection(nSel == 0 ? nMax : nSel - 1);
614 void wxNotebook::ChangePage(int nOldSel, int nSel) argument
616 // cout << "ChangePage: " << nOldSel << ", " << nSel << "\n";
617 wxASSERT( nOldSel != nSel ); // impossible
624 wxNotebookPage *pPage = m_pages[nSel];
635 m_nSelection = nSel;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dbookctrl.cpp433 int nSel = GetSelection();
436 nPage = forward ? nSel == nMax ? 0
437 : nSel + 1
438 : nSel == 0 ? nMax
439 : nSel - 1;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mac/classic/
H A Dnotebook.h123 void ChangePage(int nOldSel, int nSel); // change pages
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/
H A Dnotebmac.cpp578 void wxNotebook::ChangePage(int nOldSel, int nSel) argument
580 if (nOldSel == nSel)
586 if ( nSel != -1 )
588 wxNotebookPage *pPage = m_pages[nSel];
593 m_nSelection = nSel;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/ownerdrw/
H A Downerdrw.cpp335 unsigned int nSel = event.GetSelection(); local
336 strSelection.Printf(wxT("item %d selected (%schecked)"), nSel,
337 m_pListBox->IsChecked(nSel) ? wxT("") : wxT("not "));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/classic/
H A Dnotebmac.cpp644 void wxNotebook::ChangePage(int nOldSel, int nSel) argument
651 if ( nSel != -1 )
653 wxNotebookPage *pPage = m_pages[nSel];
658 m_nSelection = nSel;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/generic/
H A Dnotebook.h150 void ChangePage(int nOldSel, int nSel); // change pages
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dtreebookevent.tex55 \func{}{wxTreebookEvent}{\param{wxEventType }{commandType = wxEVT\_NULL}, \param{int }{id = 0}, \param{int }{nSel = wxNOT\_FOUND}, \param{int }{nOldSel = wxNOT\_FOUND}}
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk/
H A Dnotebook.cpp200 int nSel = notebook->GetSelection(); local
203 page = (gdk_event->keyval != GDK_Left) ? nSel == nMax ? 0
204 : nSel + 1
205 : nSel == 0 ? nMax
206 : nSel - 1;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk1/
H A Dnotebook.cpp213 int nSel = notebook->GetSelection(); local
216 page = (gdk_event->keyval != GDK_Left) ? nSel == nMax ? 0
217 : nSel + 1
218 : nSel == 0 ? nMax
219 : nSel - 1;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/checklst/
H A Dchecklst.cpp426 int nSel = event.GetSelection(); local
427 wxLogStatus(this, wxT("Item %d selected (%schecked)"), nSel,
428 m_pListBox->IsChecked(nSel) ? wxT("") : wxT("not "));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/notebook/
H A Dnotebook.cpp834 int nSel = currBook ? currBook->GetSelection() : wxNOT_FOUND; local
836 if ( nPages != s_nPages || nSel != s_nSel || s_currBook != currBook )
839 s_nSel = nSel;
843 if ( nSel == wxNOT_FOUND )
846 selection << nSel; local

Completed in 371 milliseconds