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

Lines Matching refs:and

21 The scrolling is also "virtual" in the sense that row widths and column heights
22 only need to be known for the rows and columns that are currently visible.
26 used when all rows have a constant height and columns have a constant width.
28 scrolling another window or only scrolling a rectangle of the window and not
37 To use this class, you need to derive from it and implement both the
38 \helpref{OnGetRowHeight()}{wxhvscrolledwindowongetrowheight} and the
42 base class know how many rows and columns it should display. After these
48 \helpref{GetVisibleRowsEnd()}{wxhvscrolledwindowgetvisiblerowsend}, and
52 {\tt PrepareDC()}), child windows are moved as the window scrolls, and the
74 Note that {\tt wxVSCROLL} and {\tt wxHSCROLL} are always automatically added to
105 Just as with the ctor above, both the {\tt wxVSCROLL} and the {\tt wxHSCROLL}
113 wxDC is prepared using {\tt PrepareDC()}, children are actually moved and layed
114 out according to the current scroll position, and the contents of the window
135 the average row height using some rows in the beginning, middle and the end.
138 shown) just for the total height calculation, you may override the function and
139 provide your own guess using a better and/or faster method.
155 the average column width using some columns in the beginning, middle and the end.
158 shown) just for the total width calculation, you may override the function and
159 provide your own guess using a better and/or faster method.
186 Get the number of rows (X or width) and columns (Y or height) this window
195 Returns the indicies of the first visible row (Y) and column (X).
232 Returns the indicies of the row and column after the last visible row (Y) and
274 Y, or X and Y means it is outside the range availible rows and/or columns.
297 Returns {\tt true} if the given row and column are both at least partially
306 and should return the width of the given column in pixels.
338 and should return the height of the given row in pixels.
397 Refreshes the columns between {\it fromColumn} and {\it toColumn} (inclusive).
409 Refreshes the rows between {\it fromRow} and {\it toRow} (inclusive).
421 Refreshes the region of cells between {\it fromRow}, {\it fromColumn} and
422 {\it toRow}, {\it toColumn} (inclusive). {\it fromRow} and {\it fromColumn}
423 should be less than or equal to {\it toRow} and {\it toColumn}, respectively.
435 items shown on screen and repainting them. It should be called when the values
438 reason and the window must be updated to reflect this.
473 Scroll by the specified number of rows and columns which may be positive (to
497 Scroll by the specified number of row pages and column pages, both of which may
542 Scroll to the specified row and column. The cell described will be the top left
552 Set the number of rows and columns the window contains. The derived class must
553 provide the heights for all rows and the widths for all columns with indices up
555 \helpref{OnGetRowHeight()}{wxhvscrolledwindowongetrowheight} and