io.qt.widgets.QTableWidgetSelectionRange Maven / Gradle / Ivy
The newest version!
package io.qt.widgets;
/**
* Way to interact with selection in a model without using model indexes and a selection model
* Java wrapper for Qt class QTableWidgetSelectionRange
*/
public class QTableWidgetSelectionRange extends io.qt.QtObject
implements java.lang.Cloneable
{
static {
QtJambi_LibraryUtilities.initialize();
}
/**
* See QTableWidgetSelectionRange::QTableWidgetSelectionRange()
*/
public QTableWidgetSelectionRange(){
super((QPrivateConstructor)null);
initialize_native(this);
}
private native static void initialize_native(QTableWidgetSelectionRange instance);
/**
* See QTableWidgetSelectionRange::QTableWidgetSelectionRange(int,int,int,int)
*/
public QTableWidgetSelectionRange(int top, int left, int bottom, int right){
super((QPrivateConstructor)null);
initialize_native(this, top, left, bottom, right);
}
private native static void initialize_native(QTableWidgetSelectionRange instance, int top, int left, int bottom, int right);
/**
* See QTableWidgetSelectionRange::bottomRow()const
*/
@io.qt.QtUninvokable
public final int bottomRow(){
return bottomRow_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native int bottomRow_native_constfct(long __this__nativeId);
/**
* See QTableWidgetSelectionRange::columnCount()const
*/
@io.qt.QtUninvokable
public final int columnCount(){
return columnCount_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native int columnCount_native_constfct(long __this__nativeId);
/**
* See QTableWidgetSelectionRange::leftColumn()const
*/
@io.qt.QtUninvokable
public final int leftColumn(){
return leftColumn_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native int leftColumn_native_constfct(long __this__nativeId);
@io.qt.QtUninvokable
private final boolean operator_equal(io.qt.widgets.QTableWidgetSelectionRange rhs){
return operator_equal_native_cref_QTableWidgetSelectionRange(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(rhs));
}
@io.qt.QtUninvokable
private native boolean operator_equal_native_cref_QTableWidgetSelectionRange(long __this__nativeId, long rhs);
/**
* See QTableWidgetSelectionRange::rightColumn()const
*/
@io.qt.QtUninvokable
public final int rightColumn(){
return rightColumn_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native int rightColumn_native_constfct(long __this__nativeId);
/**
* See QTableWidgetSelectionRange::rowCount()const
*/
@io.qt.QtUninvokable
public final int rowCount(){
return rowCount_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native int rowCount_native_constfct(long __this__nativeId);
/**
* See QTableWidgetSelectionRange::topRow()const
*/
@io.qt.QtUninvokable
public final int topRow(){
return topRow_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native int topRow_native_constfct(long __this__nativeId);
/**
* Constructor for internal use only.
* @param p expected to be null
.
*/
@io.qt.NativeAccess
protected QTableWidgetSelectionRange(QPrivateConstructor p) { super(p); }
@Override
@io.qt.QtUninvokable
public boolean equals(Object other) {
if (other instanceof io.qt.widgets.QTableWidgetSelectionRange) {
return operator_equal((io.qt.widgets.QTableWidgetSelectionRange) other);
}
return false;
}
@io.qt.QtUninvokable
@Override
public int hashCode() {
return hashCode_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native static int hashCode_native(long __this_nativeId);
@Override
public QTableWidgetSelectionRange clone() {
return clone_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native QTableWidgetSelectionRange clone_native(long __this_nativeId);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy