• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/univ/

Lines Matching refs:item

23 // change the current item
24 #define wxACTION_LISTBOX_SETFOCUS wxT("setfocus") // select the item
25 #define wxACTION_LISTBOX_MOVEDOWN wxT("down") // select item below
26 #define wxACTION_LISTBOX_MOVEUP wxT("up") // select item above
29 #define wxACTION_LISTBOX_START wxT("start") // go to first item
30 #define wxACTION_LISTBOX_END wxT("end") // go to last item
31 #define wxACTION_LISTBOX_FIND wxT("find") // find item by 1st letter
33 // do something with the current item
45 #define wxACTION_LISTBOX_EXTENDSEL wxT("extend") // extend to item
117 virtual int DoAppendOnly(const wxString& item);
118 virtual int DoAppend(const wxString& item);
136 // the current item is the same as the selected one for wxLB_SINGLE
137 // listboxes but for the other ones it is just the focused item which may
142 // select the item which is diff items below the current one
146 // current (if -1) item
147 void Activate(int item = -1);
149 // select or unselect the specified or current (if -1) item
150 void DoSelect(int item = -1, bool sel = true);
153 void DoUnselect(int item) { DoSelect(item, false); }
155 // select an item and send a notification about it
156 void SelectAndNotify(int item);
158 // ensure that the given item is visible by scrolling it into view
161 // find the first item [strictly] after the current one which starts with
163 // item changed
168 // the specified or current item
171 // make this item the new selection anchor: extending selection with
176 // height of each line and the max width of an item
214 // refresh the given item(s) or everything
221 bool SendEvent(wxEventType type, int item = -1);
234 // update the scrollbars and then ensure that the item is visible
258 // the current item
271 // the maximal width of a listbox item and the item which has it
287 // if the current item has changed, we might need to scroll if it went out
292 // wxLB_EXTENDED style - this is set to the last item which was selected