Lines Matching refs:nId
654 sal_uInt16 nId = BROWSER_NONE; in PreNotify() local
659 case KEY_DOWN: nId = BROWSER_CURSORDOWN; break; in PreNotify()
660 case KEY_UP: nId = BROWSER_CURSORUP; break; in PreNotify()
661 case KEY_PAGEDOWN: nId = BROWSER_CURSORPAGEDOWN; break; in PreNotify()
662 case KEY_PAGEUP: nId = BROWSER_CURSORPAGEUP; break; in PreNotify()
663 case KEY_HOME: nId = BROWSER_CURSORHOME; break; in PreNotify()
664 case KEY_END: nId = BROWSER_CURSOREND; break; in PreNotify()
669 nId = BROWSER_CURSORRIGHT; in PreNotify()
683 nId = BROWSER_CURSORRIGHT; in PreNotify()
686 case KEY_RIGHT: nId = BROWSER_CURSORRIGHT; break; in PreNotify()
687 case KEY_LEFT: nId = BROWSER_CURSORLEFT; break; in PreNotify()
688 case KEY_SPACE: nId = BROWSER_SELECT; bNonEditOnly = bLocalSelect = sal_True;break; in PreNotify()
694 case KEY_DOWN: nId = BROWSER_SELECTDOWN; bLocalSelect = sal_True;break; in PreNotify()
695 case KEY_UP: nId = BROWSER_SELECTUP; bLocalSelect = sal_True;break; in PreNotify()
696 case KEY_HOME: nId = BROWSER_SELECTHOME; bLocalSelect = sal_True;break; in PreNotify()
697 case KEY_END: nId = BROWSER_SELECTEND; bLocalSelect = sal_True;break; in PreNotify()
700 nId = BROWSER_CURSORLEFT; in PreNotify()
707 case KEY_SPACE: nId = BROWSER_SELECTCOLUMN; bLocalSelect = sal_True; break; in PreNotify()
714 case KEY_DOWN: nId = BROWSER_SCROLLUP; break; in PreNotify()
715 case KEY_UP: nId = BROWSER_SCROLLDOWN; break; in PreNotify()
716 case KEY_PAGEDOWN: nId = BROWSER_CURSORENDOFFILE; break; in PreNotify()
717 case KEY_PAGEUP: nId = BROWSER_CURSORTOPOFFILE; break; in PreNotify()
718 case KEY_HOME: nId = BROWSER_CURSORTOPOFSCREEN; break; in PreNotify()
719 case KEY_END: nId = BROWSER_CURSORENDOFSCREEN; break; in PreNotify()
720 case KEY_SPACE: nId = BROWSER_ENHANCESELECTION; bLocalSelect = sal_True;break; in PreNotify()
724 if ( ( nId != BROWSER_NONE ) in PreNotify()
732 if (nId == BROWSER_SELECT || BROWSER_SELECTCOLUMN == nId ) in PreNotify()
744 Dispatch(nId); in PreNotify()
980 void EditBrowseBox::ColumnMoved(sal_uInt16 nId) in ColumnMoved() argument
982 BrowseBox::ColumnMoved(nId); in ColumnMoved()
1174 …ditBrowseBox::AppendColumn(const String& rName, sal_uInt16 nWidth, sal_uInt16 nPos, sal_uInt16 nId) in AppendColumn() argument
1176 if (nId == (sal_uInt16)-1) in AppendColumn()
1179 for (nId = ColCount(); nId > 0 && GetColumnPos(nId) != BROWSER_INVALIDID; nId--) in AppendColumn()
1182 if (!nId) in AppendColumn()
1187 nId = ColCount() + 1; in AppendColumn()
1191 DBG_ASSERT(nId, "EditBrowseBox::AppendColumn: invalid id!"); in AppendColumn()
1197 InsertDataColumn(nId, rName, w, (HIB_CENTER | HIB_VCENTER | HIB_CLICKABLE), nPos); in AppendColumn()
1198 return nId; in AppendColumn()