Home
last modified time | relevance | path

Searched refs:scrollfields (Results 1 – 2 of 2) sorted by relevance

/trunk/main/wizards/com/sun/star/wizards/agenda/
H A DTopicsControl.java238 int l = scrollfields.size(); in insertRowAtEnd()
258 for (int i = 0; i < scrollfields.size() - 1; i++) in saveTopics()
261 new CGTopic(scrollfields.get(i))); in saveTopics()
281 int l = scrollfields.size(); in removeLastRow()
348 …UnoDialog2.setEnabled(getAD().btnInsert, (lastFocusRow < scrollfields.size() - 1 ? Boolean.TRUE : … in enableButtons()
349 …UnoDialog2.setEnabled(getAD().btnRemove, (lastFocusRow < scrollfields.size() - 1 ? Boolean.TRUE : … in enableButtons()
351 …UnoDialog2.setEnabled(getAD().btnDown, (lastFocusRow < scrollfields.size() - 1 ? Boolean.TRUE : Bo… in enableButtons()
414 for (int i = lastFocusRow; i < scrollfields.size() - 1; i++)
416 PropertyValue[] pv1 = (PropertyValue[]) scrollfields.get(i);
417 PropertyValue[] pv2 = (PropertyValue[]) scrollfields.get(i + 1);
[all …]
/trunk/main/wizards/com/sun/star/wizards/ui/
H A DControlScroller.java45 protected Vector scrollfields; field in ControlScroller
133 scrollfields = new Vector(); in ControlScroller()
223 PropertyValue[] nameProps = (PropertyValue[]) scrollfields.get(guiRow); in fillupControls()
224 PropertyValue[] valueProps = (PropertyValue[]) scrollfields.get(guiRow + nscrollvalue); in fillupControls()
303 for (int n = 0; n < scrollfields.size(); n++) in toggleControls()
305 PropertyValue[] curproperties = (PropertyValue[]) scrollfields.elementAt(n); in toggleControls()
370 scrollfields.size() > 0 in scrollRowsInfo()
371 ? ((PropertyValue[]) scrollfields.get(0)).length in scrollRowsInfo()
392 if (guiRow + nscrollvalue < scrollfields.size()) in fieldInfo()
395 ((PropertyValue[]) scrollfields.elementAt(guiRow + nscrollvalue))[column], in fieldInfo()
[all …]