blob: 933ab3c23b47c37c4e638e34787b65e88fe44c96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
public class TQGridView extends TQScrollView {
protected TQGridView(Class dummy){super((Class) null);}
public native TQMetaObject metaObject();
public native String className();
public native int numRows();
public native void setNumRows(int arg1);
public native int numCols();
public native void setNumCols(int arg1);
public native int cellWidth();
public native void setCellWidth(int arg1);
public native int cellHeight();
public native void setCellHeight(int arg1);
public native TQRect cellRect();
public native TQRect cellGeometry(int row, int column);
public native TQSize gridSize();
public native int rowAt(int y);
public native int columnAt(int x);
public native void repaintCell(int row, int column, boolean erase);
public native void repaintCell(int row, int column);
public native void updateCell(int row, int column);
public native void ensureCellVisible(int row, int column);
public static native String tr(String arg1, String arg2);
public static native String tr(String arg1);
}
|