Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.qt.widgets.QAbstractItemView Maven / Gradle / Ivy
Go to download
QtJambi base module containing QtCore, QtGui and QtWidgets.
package io.qt.widgets;
/**
* The basic functionality for item view classes
* Java wrapper for Qt class QAbstractItemView
*/
public abstract class QAbstractItemView extends io.qt.widgets.QAbstractScrollArea
{
@io.qt.QtPropertyMember(enabled=false)
private java.util.Map __rcDelegatesForColumns;
@io.qt.QtPropertyMember(enabled=false)
private java.util.Map __rcDelegatesForRows;
@io.qt.QtPropertyMember(enabled=false)
private Object __rcItemDelegate = null;
@io.qt.QtPropertyMember(enabled=false)
private Object __rcItemModel = null;
@io.qt.QtPropertyMember(enabled=false)
private Object __rcItemSelectionModel = null;
/**
* This variable stores the meta-object for the class.
*/
public static final io.qt.core.QMetaObject staticMetaObject = io.qt.core.QMetaObject.forType(QAbstractItemView.class);
@io.qt.NativeAccess
private static final class ConcreteWrapper extends QAbstractItemView {
@io.qt.NativeAccess
private ConcreteWrapper(QPrivateConstructor p) { super(p); }
@Override
@io.qt.QtUninvokable
protected int horizontalOffset(){
return horizontalOffset_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native int horizontalOffset_native_constfct(long __this__nativeId);
@Override
@io.qt.QtUninvokable
public io.qt.core.QModelIndex indexAt(io.qt.core.QPoint point){
return indexAt_native_cref_QPoint_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(point));
}
@io.qt.QtUninvokable
private native io.qt.core.QModelIndex indexAt_native_cref_QPoint_constfct(long __this__nativeId, long point);
@Override
@io.qt.QtUninvokable
protected boolean isIndexHidden(io.qt.core.QModelIndex index){
return isIndexHidden_native_cref_QModelIndex_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), index);
}
@io.qt.QtUninvokable
private native boolean isIndexHidden_native_cref_QModelIndex_constfct(long __this__nativeId, io.qt.core.QModelIndex index);
@Override
@io.qt.QtUninvokable
protected io.qt.core.QModelIndex moveCursor(io.qt.widgets.QAbstractItemView.CursorAction cursorAction, io.qt.core.Qt.KeyboardModifiers modifiers){
return moveCursor_native_QAbstractItemView_CursorAction_QFlags_Qt_KeyboardModifier_(QtJambi_LibraryUtilities.internal.nativeId(this), cursorAction.value(), modifiers.value());
}
@io.qt.QtUninvokable
private native io.qt.core.QModelIndex moveCursor_native_QAbstractItemView_CursorAction_QFlags_Qt_KeyboardModifier_(long __this__nativeId, int cursorAction, int modifiers);
@Override
@io.qt.QtUninvokable
public void scrollTo(io.qt.core.QModelIndex index, io.qt.widgets.QAbstractItemView.ScrollHint hint){
scrollTo_native_cref_QModelIndex_QAbstractItemView_ScrollHint(QtJambi_LibraryUtilities.internal.nativeId(this), index, hint.value());
}
@io.qt.QtUninvokable
private native void scrollTo_native_cref_QModelIndex_QAbstractItemView_ScrollHint(long __this__nativeId, io.qt.core.QModelIndex index, int hint);
@Override
@io.qt.QtUninvokable
protected void setSelection(io.qt.core.QRect rect, io.qt.core.QItemSelectionModel.SelectionFlags command){
setSelection_native_cref_QRect_QFlags_QItemSelectionModel_SelectionFlag_(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(rect), command.value());
}
@io.qt.QtUninvokable
private native void setSelection_native_cref_QRect_QFlags_QItemSelectionModel_SelectionFlag_(long __this__nativeId, long rect, int command);
@Override
@io.qt.QtUninvokable
protected int verticalOffset(){
return verticalOffset_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native int verticalOffset_native_constfct(long __this__nativeId);
@Override
@io.qt.QtUninvokable
public io.qt.core.QRect visualRect(io.qt.core.QModelIndex index){
return visualRect_native_cref_QModelIndex_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), index);
}
@io.qt.QtUninvokable
private native io.qt.core.QRect visualRect_native_cref_QModelIndex_constfct(long __this__nativeId, io.qt.core.QModelIndex index);
@Override
@io.qt.QtUninvokable
protected io.qt.gui.QRegion visualRegionForSelection(io.qt.core.QItemSelection selection){
return visualRegionForSelection_native_cref_QItemSelection_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(selection));
}
@io.qt.QtUninvokable
private native io.qt.gui.QRegion visualRegionForSelection_native_cref_QItemSelection_constfct(long __this__nativeId, long selection);
}
/**
* Java wrapper for Qt enum QAbstractItemView::CursorAction
*/
@io.qt.QtUnlistedEnum
protected enum CursorAction implements io.qt.QtEnumerator {
MoveUp(0),
MoveDown(1),
MoveLeft(2),
MoveRight(3),
MoveHome(4),
MoveEnd(5),
MovePageUp(6),
MovePageDown(7),
MoveNext(8),
MovePrevious(9);
private CursorAction(int value) {
this.value = value;
}
/**
* {@inheritDoc}
*/
public int value() {
return value;
}
/**
* Returns the corresponding enum entry for the given value.
* @param value
* @return enum entry
*/
public static CursorAction resolve(int value) {
switch (value) {
case 0: return MoveUp;
case 1: return MoveDown;
case 2: return MoveLeft;
case 3: return MoveRight;
case 4: return MoveHome;
case 5: return MoveEnd;
case 6: return MovePageUp;
case 7: return MovePageDown;
case 8: return MoveNext;
case 9: return MovePrevious;
default: throw new io.qt.QNoSuchEnumValueException(value);
}
}
private final int value;
}
/**
* Java wrapper for Qt enum QAbstractItemView::DragDropMode
*/
public enum DragDropMode implements io.qt.QtEnumerator {
NoDragDrop(0),
DragOnly(1),
DropOnly(2),
DragDrop(3),
InternalMove(4);
private DragDropMode(int value) {
this.value = value;
}
/**
* {@inheritDoc}
*/
public int value() {
return value;
}
/**
* Returns the corresponding enum entry for the given value.
* @param value
* @return enum entry
*/
public static DragDropMode resolve(int value) {
switch (value) {
case 0: return NoDragDrop;
case 1: return DragOnly;
case 2: return DropOnly;
case 3: return DragDrop;
case 4: return InternalMove;
default: throw new io.qt.QNoSuchEnumValueException(value);
}
}
private final int value;
}
/**
* Java wrapper for Qt enum QAbstractItemView::DropIndicatorPosition
*/
@io.qt.QtUnlistedEnum
protected enum DropIndicatorPosition implements io.qt.QtEnumerator {
OnItem(0),
AboveItem(1),
BelowItem(2),
OnViewport(3);
private DropIndicatorPosition(int value) {
this.value = value;
}
/**
* {@inheritDoc}
*/
public int value() {
return value;
}
/**
* Returns the corresponding enum entry for the given value.
* @param value
* @return enum entry
*/
public static DropIndicatorPosition resolve(int value) {
switch (value) {
case 0: return OnItem;
case 1: return AboveItem;
case 2: return BelowItem;
case 3: return OnViewport;
default: throw new io.qt.QNoSuchEnumValueException(value);
}
}
private final int value;
}
/**
* Java wrapper for Qt enum QAbstractItemView::EditTrigger
*
* @see EditTriggers
*/
public enum EditTrigger implements io.qt.QtFlagEnumerator {
NoEditTriggers(0),
CurrentChanged(1),
DoubleClicked(2),
SelectedClicked(4),
EditKeyPressed(8),
AnyKeyPressed(16),
AllEditTriggers(31);
private EditTrigger(int value) {
this.value = value;
}
/**
* {@inheritDoc}
*/
public int value() {
return value;
}
/**
* Create a QFlags of the enum entry.
* @return QFlags
*/
public EditTriggers asFlags() {
return new EditTriggers(value);
}
/**
* Combines this entry with other enum entry.
* @param e enum entry
* @return new flag
*/
public EditTriggers combined(EditTrigger e) {
return new EditTriggers(this, e);
}
/**
* Creates a new {@link EditTriggers} from the entries.
* @param values entries
* @return new flag
*/
public static EditTriggers flags(EditTrigger ... values) {
return new EditTriggers(values);
}
/**
* Returns the corresponding enum entry for the given value.
* @param value
* @return enum entry
*/
public static EditTrigger resolve(int value) {
switch (value) {
case 0: return NoEditTriggers;
case 1: return CurrentChanged;
case 2: return DoubleClicked;
case 4: return SelectedClicked;
case 8: return EditKeyPressed;
case 16: return AnyKeyPressed;
case 31: return AllEditTriggers;
default: throw new io.qt.QNoSuchEnumValueException(value);
}
}
private final int value;
}
/**
* QFlags type for enum {@link EditTrigger}
*/
public static final class EditTriggers extends io.qt.QFlags implements Comparable {
private static final long serialVersionUID = 0xe99149884c801c53L;
/**
* Creates a new EditTriggers where the flags in args
are set.
* @param args enum entries
*/
public EditTriggers(EditTrigger ... args){
super(args);
}
/**
* Creates a new EditTriggers with given value
.
* @param value
*/
public EditTriggers(int value) {
super(value);
}
/**
* Combines this flags with enum entry.
* @param e enum entry
* @return new EditTriggers
*/
@Override
public final EditTriggers combined(EditTrigger e){
return new EditTriggers(value() | e.value());
}
/**
* Sets the flag e
* @param e enum entry
* @return this
*/
public final EditTriggers setFlag(EditTrigger e){
super.setFlag(e);
return this;
}
/**
* Sets or clears the flag flag
* @param e enum entry
* @param on set (true) or clear (false)
* @return this
*/
public final EditTriggers setFlag(EditTrigger e, boolean on){
super.setFlag(e, on);
return this;
}
/**
* Returns an array of flag objects represented by this EditTriggers.
* @return array of enum entries
*/
@Override
public final EditTrigger[] flags(){
return super.flags(EditTrigger.values());
}
/**
* {@inheritDoc}
*/
@Override
public final EditTriggers clone(){
return new EditTriggers(value());
}
/**
* {@inheritDoc}
*/
@Override
public final int compareTo(EditTriggers other){
return Integer.compare(value(), other.value());
}
}
/**
* Java wrapper for Qt enum QAbstractItemView::ScrollHint
*/
public enum ScrollHint implements io.qt.QtEnumerator {
EnsureVisible(0),
PositionAtTop(1),
PositionAtBottom(2),
PositionAtCenter(3);
private ScrollHint(int value) {
this.value = value;
}
/**
* {@inheritDoc}
*/
public int value() {
return value;
}
/**
* Returns the corresponding enum entry for the given value.
* @param value
* @return enum entry
*/
public static ScrollHint resolve(int value) {
switch (value) {
case 0: return EnsureVisible;
case 1: return PositionAtTop;
case 2: return PositionAtBottom;
case 3: return PositionAtCenter;
default: throw new io.qt.QNoSuchEnumValueException(value);
}
}
private final int value;
}
/**
* Java wrapper for Qt enum QAbstractItemView::ScrollMode
*/
public enum ScrollMode implements io.qt.QtEnumerator {
ScrollPerItem(0),
ScrollPerPixel(1);
private ScrollMode(int value) {
this.value = value;
}
/**
* {@inheritDoc}
*/
public int value() {
return value;
}
/**
* Returns the corresponding enum entry for the given value.
* @param value
* @return enum entry
*/
public static ScrollMode resolve(int value) {
switch (value) {
case 0: return ScrollPerItem;
case 1: return ScrollPerPixel;
default: throw new io.qt.QNoSuchEnumValueException(value);
}
}
private final int value;
}
/**
* Java wrapper for Qt enum QAbstractItemView::SelectionBehavior
*/
public enum SelectionBehavior implements io.qt.QtEnumerator {
SelectItems(0),
SelectRows(1),
SelectColumns(2);
private SelectionBehavior(int value) {
this.value = value;
}
/**
* {@inheritDoc}
*/
public int value() {
return value;
}
/**
* Returns the corresponding enum entry for the given value.
* @param value
* @return enum entry
*/
public static SelectionBehavior resolve(int value) {
switch (value) {
case 0: return SelectItems;
case 1: return SelectRows;
case 2: return SelectColumns;
default: throw new io.qt.QNoSuchEnumValueException(value);
}
}
private final int value;
}
/**
* Java wrapper for Qt enum QAbstractItemView::SelectionMode
*/
public enum SelectionMode implements io.qt.QtEnumerator {
NoSelection(0),
SingleSelection(1),
MultiSelection(2),
ExtendedSelection(3),
ContiguousSelection(4);
private SelectionMode(int value) {
this.value = value;
}
/**
* {@inheritDoc}
*/
public int value() {
return value;
}
/**
* Returns the corresponding enum entry for the given value.
* @param value
* @return enum entry
*/
public static SelectionMode resolve(int value) {
switch (value) {
case 0: return NoSelection;
case 1: return SingleSelection;
case 2: return MultiSelection;
case 3: return ExtendedSelection;
case 4: return ContiguousSelection;
default: throw new io.qt.QNoSuchEnumValueException(value);
}
}
private final int value;
}
/**
* Java wrapper for Qt enum QAbstractItemView::State
*/
@io.qt.QtUnlistedEnum
protected enum State implements io.qt.QtEnumerator {
NoState(0),
DraggingState(1),
DragSelectingState(2),
EditingState(3),
ExpandingState(4),
CollapsingState(5),
AnimatingState(6);
private State(int value) {
this.value = value;
}
/**
* {@inheritDoc}
*/
public int value() {
return value;
}
/**
* Returns the corresponding enum entry for the given value.
* @param value
* @return enum entry
*/
public static State resolve(int value) {
switch (value) {
case 0: return NoState;
case 1: return DraggingState;
case 2: return DragSelectingState;
case 3: return EditingState;
case 4: return ExpandingState;
case 5: return CollapsingState;
case 6: return AnimatingState;
default: throw new io.qt.QNoSuchEnumValueException(value);
}
}
private final int value;
}
/**
* See QAbstractItemView::activated(QModelIndex)
*/
public final Signal1 activated = new Signal1<>();
/**
* See QAbstractItemView::clicked(QModelIndex)
*/
public final Signal1 clicked = new Signal1<>();
/**
* See QAbstractItemView::doubleClicked(QModelIndex)
*/
public final Signal1 doubleClicked = new Signal1<>();
/**
* See QAbstractItemView::entered(QModelIndex)
*/
public final Signal1 entered = new Signal1<>();
/**
* See QAbstractItemView::iconSizeChanged(QSize)
*/
@io.qt.QtPropertyNotify(name="iconSize")
public final Signal1 iconSizeChanged = new Signal1<>();
/**
* See QAbstractItemView::pressed(QModelIndex)
*/
public final Signal1 pressed = new Signal1<>();
/**
* See QAbstractItemView::viewportEntered()
*/
public final Signal0 viewportEntered = new Signal0();
/**
* Overloaded constructor for {@link #QAbstractItemView(io.qt.widgets.QWidget)}
* with parent = null
.
*/
public QAbstractItemView() {
this((io.qt.widgets.QWidget)null);
}
/**
* See QAbstractItemView::QAbstractItemView(QWidget*)
*/
public QAbstractItemView(io.qt.widgets.QWidget parent){
super((QPrivateConstructor)null);
initialize_native(this, parent);
}
private native static void initialize_native(QAbstractItemView instance, io.qt.widgets.QWidget parent);
/**
* See QAbstractItemView::alternatingRowColors()const
*/
@io.qt.QtPropertyReader(name="alternatingRowColors")
@io.qt.QtUninvokable
public final boolean alternatingRowColors(){
return alternatingRowColors_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native boolean alternatingRowColors_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::autoScrollMargin()const
*/
@io.qt.QtPropertyReader(name="autoScrollMargin")
@io.qt.QtUninvokable
public final int autoScrollMargin(){
return autoScrollMargin_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native int autoScrollMargin_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::clearSelection()
*/
public final void clearSelection(){
clearSelection_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void clearSelection_native(long __this__nativeId);
/**
* See QAbstractItemView::closePersistentEditor(QModelIndex)
*/
@io.qt.QtUninvokable
public final void closePersistentEditor(io.qt.core.QModelIndex index){
closePersistentEditor_native_cref_QModelIndex(QtJambi_LibraryUtilities.internal.nativeId(this), index);
}
@io.qt.QtUninvokable
private native void closePersistentEditor_native_cref_QModelIndex(long __this__nativeId, io.qt.core.QModelIndex index);
/**
* See QAbstractItemView::currentIndex()const
*/
@io.qt.QtUninvokable
public final io.qt.core.QModelIndex currentIndex(){
return currentIndex_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.core.QModelIndex currentIndex_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::defaultDropAction()const
*/
@io.qt.QtPropertyReader(name="defaultDropAction")
@io.qt.QtUninvokable
public final io.qt.core.Qt.DropAction defaultDropAction(){
return io.qt.core.Qt.DropAction.resolve(defaultDropAction_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)));
}
@io.qt.QtUninvokable
private native int defaultDropAction_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::dirtyRegionOffset()const
*/
@io.qt.QtUninvokable
protected final io.qt.core.QPoint dirtyRegionOffset(){
return dirtyRegionOffset_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.core.QPoint dirtyRegionOffset_native_constfct(long __this__nativeId);
@io.qt.QtUninvokable
protected final void doAutoScroll(){
doAutoScroll_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native void doAutoScroll_native(long __this__nativeId);
/**
* See QAbstractItemView::dragDropMode()const
*/
@io.qt.QtPropertyReader(name="dragDropMode")
@io.qt.QtUninvokable
public final io.qt.widgets.QAbstractItemView.DragDropMode dragDropMode(){
return io.qt.widgets.QAbstractItemView.DragDropMode.resolve(dragDropMode_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)));
}
@io.qt.QtUninvokable
private native int dragDropMode_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::dragDropOverwriteMode()const
*/
@io.qt.QtPropertyReader(name="dragDropOverwriteMode")
@io.qt.QtUninvokable
public final boolean dragDropOverwriteMode(){
return dragDropOverwriteMode_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native boolean dragDropOverwriteMode_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::dragEnabled()const
*/
@io.qt.QtPropertyReader(name="dragEnabled")
@io.qt.QtUninvokable
public final boolean dragEnabled(){
return dragEnabled_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native boolean dragEnabled_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::dropIndicatorPosition()const
*/
@io.qt.QtUninvokable
protected final io.qt.widgets.QAbstractItemView.DropIndicatorPosition dropIndicatorPosition(){
return io.qt.widgets.QAbstractItemView.DropIndicatorPosition.resolve(dropIndicatorPosition_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)));
}
@io.qt.QtUninvokable
private native int dropIndicatorPosition_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::edit(QModelIndex)
*/
public final void edit(io.qt.core.QModelIndex index){
edit_native_cref_QModelIndex(QtJambi_LibraryUtilities.internal.nativeId(this), index);
}
private native void edit_native_cref_QModelIndex(long __this__nativeId, io.qt.core.QModelIndex index);
/**
* See QAbstractItemView::editTriggers()const
*/
@io.qt.QtPropertyReader(name="editTriggers")
@io.qt.QtUninvokable
public final io.qt.widgets.QAbstractItemView.EditTriggers editTriggers(){
return new io.qt.widgets.QAbstractItemView.EditTriggers(editTriggers_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)));
}
@io.qt.QtUninvokable
private native int editTriggers_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::executeDelayedItemsLayout()
*/
@io.qt.QtUninvokable
protected final void executeDelayedItemsLayout(){
executeDelayedItemsLayout_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native void executeDelayedItemsLayout_native(long __this__nativeId);
/**
* See QAbstractItemView::hasAutoScroll()const
*/
@io.qt.QtPropertyReader(name="autoScroll")
@io.qt.QtUninvokable
public final boolean hasAutoScroll(){
return hasAutoScroll_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native boolean hasAutoScroll_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::horizontalScrollMode()const
*/
@io.qt.QtPropertyReader(name="horizontalScrollMode")
@io.qt.QtUninvokable
public final io.qt.widgets.QAbstractItemView.ScrollMode horizontalScrollMode(){
return io.qt.widgets.QAbstractItemView.ScrollMode.resolve(horizontalScrollMode_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)));
}
@io.qt.QtUninvokable
private native int horizontalScrollMode_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::iconSize()const
*/
@io.qt.QtPropertyReader(name="iconSize")
@io.qt.QtUninvokable
public final io.qt.core.QSize iconSize(){
return iconSize_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.core.QSize iconSize_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::indexWidget(QModelIndex)const
*/
@io.qt.QtUninvokable
public final io.qt.widgets.QWidget indexWidget(io.qt.core.QModelIndex index){
return indexWidget_native_cref_QModelIndex_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), index);
}
@io.qt.QtUninvokable
private native io.qt.widgets.QWidget indexWidget_native_cref_QModelIndex_constfct(long __this__nativeId, io.qt.core.QModelIndex index);
/**
* See QAbstractItemView::isPersistentEditorOpen(QModelIndex)const
*/
@io.qt.QtUninvokable
public final boolean isPersistentEditorOpen(io.qt.core.QModelIndex index){
return isPersistentEditorOpen_native_cref_QModelIndex_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), index);
}
@io.qt.QtUninvokable
private native boolean isPersistentEditorOpen_native_cref_QModelIndex_constfct(long __this__nativeId, io.qt.core.QModelIndex index);
/**
* See QAbstractItemView::itemDelegate()const
*/
@io.qt.QtUninvokable
public final io.qt.widgets.QAbstractItemDelegate itemDelegate(){
return itemDelegate_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.widgets.QAbstractItemDelegate itemDelegate_native_constfct(long __this__nativeId);
/**
* @deprecated Use {@link io.qt.widgets.QAbstractItemView#itemDelegateForIndex(io.qt.core.QModelIndex)} instead
*/
@Deprecated
@io.qt.QtUninvokable
public final io.qt.widgets.QAbstractItemDelegate itemDelegate(io.qt.core.QModelIndex index){
return itemDelegate_native_cref_QModelIndex_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), index);
}
@Deprecated
@io.qt.QtUninvokable
private native io.qt.widgets.QAbstractItemDelegate itemDelegate_native_cref_QModelIndex_constfct(long __this__nativeId, io.qt.core.QModelIndex index);
/**
* See QAbstractItemView::itemDelegateForColumn(int)const
*/
@io.qt.QtUninvokable
public final io.qt.widgets.QAbstractItemDelegate itemDelegateForColumn(int column){
return itemDelegateForColumn_native_int_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), column);
}
@io.qt.QtUninvokable
private native io.qt.widgets.QAbstractItemDelegate itemDelegateForColumn_native_int_constfct(long __this__nativeId, int column);
/**
* See QAbstractItemView::itemDelegateForRow(int)const
*/
@io.qt.QtUninvokable
public final io.qt.widgets.QAbstractItemDelegate itemDelegateForRow(int row){
return itemDelegateForRow_native_int_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), row);
}
@io.qt.QtUninvokable
private native io.qt.widgets.QAbstractItemDelegate itemDelegateForRow_native_int_constfct(long __this__nativeId, int row);
/**
* See QAbstractItemView::model()const
*/
@io.qt.QtUninvokable
public final io.qt.core.QAbstractItemModel model(){
return model_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.core.QAbstractItemModel model_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::openPersistentEditor(QModelIndex)
*/
@io.qt.QtUninvokable
public final void openPersistentEditor(io.qt.core.QModelIndex index){
openPersistentEditor_native_cref_QModelIndex(QtJambi_LibraryUtilities.internal.nativeId(this), index);
}
@io.qt.QtUninvokable
private native void openPersistentEditor_native_cref_QModelIndex(long __this__nativeId, io.qt.core.QModelIndex index);
/**
* See QAbstractItemView::resetHorizontalScrollMode()
*/
@io.qt.QtPropertyResetter(name="horizontalScrollMode")
@io.qt.QtUninvokable
public final void resetHorizontalScrollMode(){
resetHorizontalScrollMode_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native void resetHorizontalScrollMode_native(long __this__nativeId);
/**
* See QAbstractItemView::resetVerticalScrollMode()
*/
@io.qt.QtPropertyResetter(name="verticalScrollMode")
@io.qt.QtUninvokable
public final void resetVerticalScrollMode(){
resetVerticalScrollMode_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native void resetVerticalScrollMode_native(long __this__nativeId);
/**
* See QAbstractItemView::rootIndex()const
*/
@io.qt.QtUninvokable
public final io.qt.core.QModelIndex rootIndex(){
return rootIndex_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.core.QModelIndex rootIndex_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::scheduleDelayedItemsLayout()
*/
@io.qt.QtUninvokable
protected final void scheduleDelayedItemsLayout(){
scheduleDelayedItemsLayout_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native void scheduleDelayedItemsLayout_native(long __this__nativeId);
/**
* See QAbstractItemView::scrollDirtyRegion(int,int)
*/
@io.qt.QtUninvokable
protected final void scrollDirtyRegion(int dx, int dy){
scrollDirtyRegion_native_int_int(QtJambi_LibraryUtilities.internal.nativeId(this), dx, dy);
}
@io.qt.QtUninvokable
private native void scrollDirtyRegion_native_int_int(long __this__nativeId, int dx, int dy);
/**
* See QAbstractItemView::scrollToBottom()
*/
public final void scrollToBottom(){
scrollToBottom_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void scrollToBottom_native(long __this__nativeId);
/**
* See QAbstractItemView::scrollToTop()
*/
public final void scrollToTop(){
scrollToTop_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void scrollToTop_native(long __this__nativeId);
/**
* See QAbstractItemView::selectionBehavior()const
*/
@io.qt.QtPropertyReader(name="selectionBehavior")
@io.qt.QtUninvokable
public final io.qt.widgets.QAbstractItemView.SelectionBehavior selectionBehavior(){
return io.qt.widgets.QAbstractItemView.SelectionBehavior.resolve(selectionBehavior_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)));
}
@io.qt.QtUninvokable
private native int selectionBehavior_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::selectionMode()const
*/
@io.qt.QtPropertyReader(name="selectionMode")
@io.qt.QtUninvokable
public final io.qt.widgets.QAbstractItemView.SelectionMode selectionMode(){
return io.qt.widgets.QAbstractItemView.SelectionMode.resolve(selectionMode_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)));
}
@io.qt.QtUninvokable
private native int selectionMode_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::selectionModel()const
*/
@io.qt.QtUninvokable
public final io.qt.core.QItemSelectionModel selectionModel(){
return selectionModel_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.core.QItemSelectionModel selectionModel_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::setAlternatingRowColors(bool)
*/
@io.qt.QtPropertyWriter(name="alternatingRowColors")
@io.qt.QtUninvokable
public final void setAlternatingRowColors(boolean enable){
setAlternatingRowColors_native_bool(QtJambi_LibraryUtilities.internal.nativeId(this), enable);
}
@io.qt.QtUninvokable
private native void setAlternatingRowColors_native_bool(long __this__nativeId, boolean enable);
/**
* See QAbstractItemView::setAutoScroll(bool)
*/
@io.qt.QtPropertyWriter(name="autoScroll")
@io.qt.QtUninvokable
public final void setAutoScroll(boolean enable){
setAutoScroll_native_bool(QtJambi_LibraryUtilities.internal.nativeId(this), enable);
}
@io.qt.QtUninvokable
private native void setAutoScroll_native_bool(long __this__nativeId, boolean enable);
/**
* See QAbstractItemView::setAutoScrollMargin(int)
*/
@io.qt.QtPropertyWriter(name="autoScrollMargin")
@io.qt.QtUninvokable
public final void setAutoScrollMargin(int margin){
setAutoScrollMargin_native_int(QtJambi_LibraryUtilities.internal.nativeId(this), margin);
}
@io.qt.QtUninvokable
private native void setAutoScrollMargin_native_int(long __this__nativeId, int margin);
/**
* See QAbstractItemView::setCurrentIndex(QModelIndex)
*/
public final void setCurrentIndex(io.qt.core.QModelIndex index){
setCurrentIndex_native_cref_QModelIndex(QtJambi_LibraryUtilities.internal.nativeId(this), index);
}
private native void setCurrentIndex_native_cref_QModelIndex(long __this__nativeId, io.qt.core.QModelIndex index);
/**
* See QAbstractItemView::setDefaultDropAction(Qt::DropAction)
*/
@io.qt.QtPropertyWriter(name="defaultDropAction")
@io.qt.QtUninvokable
public final void setDefaultDropAction(io.qt.core.Qt.DropAction dropAction){
setDefaultDropAction_native_Qt_DropAction(QtJambi_LibraryUtilities.internal.nativeId(this), dropAction.value());
}
@io.qt.QtUninvokable
private native void setDefaultDropAction_native_Qt_DropAction(long __this__nativeId, int dropAction);
/**
* See QAbstractItemView::setDirtyRegion(QRegion)
*/
@io.qt.QtUninvokable
protected final void setDirtyRegion(io.qt.gui.QRegion region){
setDirtyRegion_native_cref_QRegion(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(region));
}
@io.qt.QtUninvokable
private native void setDirtyRegion_native_cref_QRegion(long __this__nativeId, long region);
/**
* See QAbstractItemView::setDragDropMode(QAbstractItemView::DragDropMode)
*/
@io.qt.QtPropertyWriter(name="dragDropMode")
@io.qt.QtUninvokable
public final void setDragDropMode(io.qt.widgets.QAbstractItemView.DragDropMode behavior){
setDragDropMode_native_QAbstractItemView_DragDropMode(QtJambi_LibraryUtilities.internal.nativeId(this), behavior.value());
}
@io.qt.QtUninvokable
private native void setDragDropMode_native_QAbstractItemView_DragDropMode(long __this__nativeId, int behavior);
/**
* See QAbstractItemView::setDragDropOverwriteMode(bool)
*/
@io.qt.QtPropertyWriter(name="dragDropOverwriteMode")
@io.qt.QtUninvokable
public final void setDragDropOverwriteMode(boolean overwrite){
setDragDropOverwriteMode_native_bool(QtJambi_LibraryUtilities.internal.nativeId(this), overwrite);
}
@io.qt.QtUninvokable
private native void setDragDropOverwriteMode_native_bool(long __this__nativeId, boolean overwrite);
/**
* See QAbstractItemView::setDragEnabled(bool)
*/
@io.qt.QtPropertyWriter(name="dragEnabled")
@io.qt.QtUninvokable
public final void setDragEnabled(boolean enable){
setDragEnabled_native_bool(QtJambi_LibraryUtilities.internal.nativeId(this), enable);
}
@io.qt.QtUninvokable
private native void setDragEnabled_native_bool(long __this__nativeId, boolean enable);
/**
* See QAbstractItemView::setDropIndicatorShown(bool)
*/
@io.qt.QtPropertyWriter(name="showDropIndicator")
@io.qt.QtUninvokable
public final void setDropIndicatorShown(boolean enable){
setDropIndicatorShown_native_bool(QtJambi_LibraryUtilities.internal.nativeId(this), enable);
}
@io.qt.QtUninvokable
private native void setDropIndicatorShown_native_bool(long __this__nativeId, boolean enable);
/**
* Overloaded function for {@link #setEditTriggers(io.qt.widgets.QAbstractItemView.EditTriggers)}.
*/
@io.qt.QtUninvokable
public final void setEditTriggers(io.qt.widgets.QAbstractItemView.EditTrigger ... triggers){
setEditTriggers(new io.qt.widgets.QAbstractItemView.EditTriggers(triggers));
}
/**
* See QAbstractItemView::setEditTriggers(EditTriggers)
*/
@io.qt.QtPropertyWriter(name="editTriggers")
@io.qt.QtUninvokable
public final void setEditTriggers(io.qt.widgets.QAbstractItemView.EditTriggers triggers){
setEditTriggers_native_QFlags_QAbstractItemView_EditTrigger_(QtJambi_LibraryUtilities.internal.nativeId(this), triggers.value());
}
@io.qt.QtUninvokable
private native void setEditTriggers_native_QFlags_QAbstractItemView_EditTrigger_(long __this__nativeId, int triggers);
/**
* See QAbstractItemView::setHorizontalScrollMode(QAbstractItemView::ScrollMode)
*/
@io.qt.QtPropertyWriter(name="horizontalScrollMode")
@io.qt.QtUninvokable
public final void setHorizontalScrollMode(io.qt.widgets.QAbstractItemView.ScrollMode mode){
setHorizontalScrollMode_native_QAbstractItemView_ScrollMode(QtJambi_LibraryUtilities.internal.nativeId(this), mode.value());
}
@io.qt.QtUninvokable
private native void setHorizontalScrollMode_native_QAbstractItemView_ScrollMode(long __this__nativeId, int mode);
/**
* See QAbstractItemView::setIconSize(QSize)
*/
@io.qt.QtPropertyWriter(name="iconSize")
@io.qt.QtUninvokable
public final void setIconSize(io.qt.core.QSize size){
setIconSize_native_cref_QSize(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(size));
}
@io.qt.QtUninvokable
private native void setIconSize_native_cref_QSize(long __this__nativeId, long size);
/**
* See QAbstractItemView::setIndexWidget(QModelIndex,QWidget*)
*/
@io.qt.QtUninvokable
public final void setIndexWidget(io.qt.core.QModelIndex index, io.qt.widgets.QWidget widget){
setIndexWidget_native_cref_QModelIndex_QWidget_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), index, QtJambi_LibraryUtilities.internal.checkedNativeId(widget));
}
@io.qt.QtUninvokable
private native void setIndexWidget_native_cref_QModelIndex_QWidget_ptr(long __this__nativeId, io.qt.core.QModelIndex index, long widget);
/**
* See QAbstractItemView::setItemDelegate(QAbstractItemDelegate*)
*/
@io.qt.QtUninvokable
public final void setItemDelegate(io.qt.widgets.QAbstractItemDelegate delegate){
setItemDelegate_native_QAbstractItemDelegate_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(delegate));
__rcItemDelegate = delegate;
}
@io.qt.QtUninvokable
private native void setItemDelegate_native_QAbstractItemDelegate_ptr(long __this__nativeId, long delegate);
/**
* See QAbstractItemView::setItemDelegateForColumn(int,QAbstractItemDelegate*)
*/
@io.qt.QtUninvokable
public final void setItemDelegateForColumn(int column, io.qt.widgets.QAbstractItemDelegate delegate){
setItemDelegateForColumn_native_int_QAbstractItemDelegate_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), column, QtJambi_LibraryUtilities.internal.checkedNativeId(delegate));
if (delegate != null) {
if(__rcDelegatesForColumns==null)
__rcDelegatesForColumns = QtJambi_LibraryUtilities.internal.newRCMap();
__rcDelegatesForColumns.put(column, delegate);
}
else{
if(__rcDelegatesForColumns!=null)
__rcDelegatesForColumns.remove(column);
}
}
@io.qt.QtUninvokable
private native void setItemDelegateForColumn_native_int_QAbstractItemDelegate_ptr(long __this__nativeId, int column, long delegate);
/**
* See QAbstractItemView::setItemDelegateForRow(int,QAbstractItemDelegate*)
*/
@io.qt.QtUninvokable
public final void setItemDelegateForRow(int row, io.qt.widgets.QAbstractItemDelegate delegate){
setItemDelegateForRow_native_int_QAbstractItemDelegate_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), row, QtJambi_LibraryUtilities.internal.checkedNativeId(delegate));
if (delegate != null) {
if(__rcDelegatesForRows==null)
__rcDelegatesForRows = QtJambi_LibraryUtilities.internal.newRCMap();
__rcDelegatesForRows.put(row, delegate);
}
else{
if(__rcDelegatesForRows!=null)
__rcDelegatesForRows.remove(row);
}
}
@io.qt.QtUninvokable
private native void setItemDelegateForRow_native_int_QAbstractItemDelegate_ptr(long __this__nativeId, int row, long delegate);
/**
* See QAbstractItemView::setSelectionBehavior(QAbstractItemView::SelectionBehavior)
*/
@io.qt.QtPropertyWriter(name="selectionBehavior")
@io.qt.QtUninvokable
public final void setSelectionBehavior(io.qt.widgets.QAbstractItemView.SelectionBehavior behavior){
setSelectionBehavior_native_QAbstractItemView_SelectionBehavior(QtJambi_LibraryUtilities.internal.nativeId(this), behavior.value());
}
@io.qt.QtUninvokable
private native void setSelectionBehavior_native_QAbstractItemView_SelectionBehavior(long __this__nativeId, int behavior);
/**
* See QAbstractItemView::setSelectionMode(QAbstractItemView::SelectionMode)
*/
@io.qt.QtPropertyWriter(name="selectionMode")
@io.qt.QtUninvokable
public final void setSelectionMode(io.qt.widgets.QAbstractItemView.SelectionMode mode){
setSelectionMode_native_QAbstractItemView_SelectionMode(QtJambi_LibraryUtilities.internal.nativeId(this), mode.value());
}
@io.qt.QtUninvokable
private native void setSelectionMode_native_QAbstractItemView_SelectionMode(long __this__nativeId, int mode);
/**
* See QAbstractItemView::setState(QAbstractItemView::State)
*/
@io.qt.QtUninvokable
protected final void setState(io.qt.widgets.QAbstractItemView.State state){
setState_native_QAbstractItemView_State(QtJambi_LibraryUtilities.internal.nativeId(this), state.value());
}
@io.qt.QtUninvokable
private native void setState_native_QAbstractItemView_State(long __this__nativeId, int state);
/**
* See QAbstractItemView::setTabKeyNavigation(bool)
*/
@io.qt.QtPropertyWriter(name="tabKeyNavigation")
@io.qt.QtUninvokable
public final void setTabKeyNavigation(boolean enable){
setTabKeyNavigation_native_bool(QtJambi_LibraryUtilities.internal.nativeId(this), enable);
}
@io.qt.QtUninvokable
private native void setTabKeyNavigation_native_bool(long __this__nativeId, boolean enable);
/**
* See QAbstractItemView::setTextElideMode(Qt::TextElideMode)
*/
@io.qt.QtPropertyWriter(name="textElideMode")
@io.qt.QtUninvokable
public final void setTextElideMode(io.qt.core.Qt.TextElideMode mode){
setTextElideMode_native_Qt_TextElideMode(QtJambi_LibraryUtilities.internal.nativeId(this), mode.value());
}
@io.qt.QtUninvokable
private native void setTextElideMode_native_Qt_TextElideMode(long __this__nativeId, int mode);
/**
* See QAbstractItemView::setVerticalScrollMode(QAbstractItemView::ScrollMode)
*/
@io.qt.QtPropertyWriter(name="verticalScrollMode")
@io.qt.QtUninvokable
public final void setVerticalScrollMode(io.qt.widgets.QAbstractItemView.ScrollMode mode){
setVerticalScrollMode_native_QAbstractItemView_ScrollMode(QtJambi_LibraryUtilities.internal.nativeId(this), mode.value());
}
@io.qt.QtUninvokable
private native void setVerticalScrollMode_native_QAbstractItemView_ScrollMode(long __this__nativeId, int mode);
/**
* See QAbstractItemView::showDropIndicator()const
*/
@io.qt.QtPropertyReader(name="showDropIndicator")
@io.qt.QtUninvokable
public final boolean showDropIndicator(){
return showDropIndicator_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native boolean showDropIndicator_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::sizeHintForIndex(QModelIndex)const
*/
@io.qt.QtUninvokable
public final io.qt.core.QSize sizeHintForIndex(io.qt.core.QModelIndex index){
return sizeHintForIndex_native_cref_QModelIndex_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), index);
}
@io.qt.QtUninvokable
private native io.qt.core.QSize sizeHintForIndex_native_cref_QModelIndex_constfct(long __this__nativeId, io.qt.core.QModelIndex index);
@io.qt.QtUninvokable
protected final void startAutoScroll(){
startAutoScroll_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native void startAutoScroll_native(long __this__nativeId);
/**
* See QAbstractItemView::state()const
*/
@io.qt.QtUninvokable
protected final io.qt.widgets.QAbstractItemView.State state(){
return io.qt.widgets.QAbstractItemView.State.resolve(state_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)));
}
@io.qt.QtUninvokable
private native int state_native_constfct(long __this__nativeId);
@io.qt.QtUninvokable
protected final void stopAutoScroll(){
stopAutoScroll_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native void stopAutoScroll_native(long __this__nativeId);
/**
* See QAbstractItemView::tabKeyNavigation()const
*/
@io.qt.QtPropertyReader(name="tabKeyNavigation")
@io.qt.QtUninvokable
public final boolean tabKeyNavigation(){
return tabKeyNavigation_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native boolean tabKeyNavigation_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::textElideMode()const
*/
@io.qt.QtPropertyReader(name="textElideMode")
@io.qt.QtUninvokable
public final io.qt.core.Qt.TextElideMode textElideMode(){
return io.qt.core.Qt.TextElideMode.resolve(textElideMode_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)));
}
@io.qt.QtUninvokable
private native int textElideMode_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::update(QModelIndex)
*/
public final void update(io.qt.core.QModelIndex index){
update_native_cref_QModelIndex(QtJambi_LibraryUtilities.internal.nativeId(this), index);
}
private native void update_native_cref_QModelIndex(long __this__nativeId, io.qt.core.QModelIndex index);
/**
* See QAbstractItemView::verticalScrollMode()const
*/
@io.qt.QtPropertyReader(name="verticalScrollMode")
@io.qt.QtUninvokable
public final io.qt.widgets.QAbstractItemView.ScrollMode verticalScrollMode(){
return io.qt.widgets.QAbstractItemView.ScrollMode.resolve(verticalScrollMode_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)));
}
@io.qt.QtUninvokable
private native int verticalScrollMode_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::closeEditor(QWidget*,QAbstractItemDelegate::EndEditHint)
*/
protected void closeEditor(io.qt.widgets.QWidget editor, io.qt.widgets.QAbstractItemDelegate.EndEditHint hint){
closeEditor_native_QWidget_ptr_QAbstractItemDelegate_EndEditHint(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(editor), hint.value());
}
private native void closeEditor_native_QWidget_ptr_QAbstractItemDelegate_EndEditHint(long __this__nativeId, long editor, int hint);
/**
* See QAbstractItemView::commitData(QWidget*)
*/
protected void commitData(io.qt.widgets.QWidget editor){
commitData_native_QWidget_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(editor));
}
private native void commitData_native_QWidget_ptr(long __this__nativeId, long editor);
/**
* See QAbstractItemView::currentChanged(QModelIndex,QModelIndex)
*/
protected void currentChanged(io.qt.core.QModelIndex current, io.qt.core.QModelIndex previous){
currentChanged_native_cref_QModelIndex_cref_QModelIndex(QtJambi_LibraryUtilities.internal.nativeId(this), current, previous);
}
private native void currentChanged_native_cref_QModelIndex_cref_QModelIndex(long __this__nativeId, io.qt.core.QModelIndex current, io.qt.core.QModelIndex previous);
/**
* Overloaded function for {@link #dataChanged(io.qt.core.QModelIndex, io.qt.core.QModelIndex, java.util.Collection)}
* with roles = java.util.Collections.emptyList()
.
*/
protected final void dataChanged(io.qt.core.QModelIndex topLeft, io.qt.core.QModelIndex bottomRight) {
dataChanged(topLeft, bottomRight, java.util.Collections.emptyList());
}
/**
* See QAbstractItemView::dataChanged(QModelIndex,QModelIndex,QList<int>)
*/
protected void dataChanged(io.qt.core.QModelIndex topLeft, io.qt.core.QModelIndex bottomRight, java.util.Collection roles){
dataChanged_native_cref_QModelIndex_cref_QModelIndex_cref_QList(QtJambi_LibraryUtilities.internal.nativeId(this), topLeft, bottomRight, roles);
}
private native void dataChanged_native_cref_QModelIndex_cref_QModelIndex_cref_QList(long __this__nativeId, io.qt.core.QModelIndex topLeft, io.qt.core.QModelIndex bottomRight, java.util.Collection roles);
public void doItemsLayout(){
doItemsLayout_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void doItemsLayout_native(long __this__nativeId);
/**
* See QWidget::dragEnterEvent(QDragEnterEvent*)
*/
@io.qt.QtUninvokable
protected void dragEnterEvent(io.qt.gui.QDragEnterEvent event){
dragEnterEvent_native_QDragEnterEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(event));
}
@io.qt.QtUninvokable
private native void dragEnterEvent_native_QDragEnterEvent_ptr(long __this__nativeId, long event);
/**
* See QWidget::dragLeaveEvent(QDragLeaveEvent*)
*/
@io.qt.QtUninvokable
protected void dragLeaveEvent(io.qt.gui.QDragLeaveEvent event){
dragLeaveEvent_native_QDragLeaveEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(event));
}
@io.qt.QtUninvokable
private native void dragLeaveEvent_native_QDragLeaveEvent_ptr(long __this__nativeId, long event);
/**
* See QWidget::dragMoveEvent(QDragMoveEvent*)
*/
@io.qt.QtUninvokable
protected void dragMoveEvent(io.qt.gui.QDragMoveEvent event){
dragMoveEvent_native_QDragMoveEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(event));
}
@io.qt.QtUninvokable
private native void dragMoveEvent_native_QDragMoveEvent_ptr(long __this__nativeId, long event);
/**
* See QWidget::dropEvent(QDropEvent*)
*/
@io.qt.QtUninvokable
protected void dropEvent(io.qt.gui.QDropEvent event){
dropEvent_native_QDropEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(event));
}
@io.qt.QtUninvokable
private native void dropEvent_native_QDropEvent_ptr(long __this__nativeId, long event);
/**
* See QAbstractItemView::edit(QModelIndex,QAbstractItemView::EditTrigger,QEvent*)
*/
@io.qt.QtUninvokable
protected boolean edit(io.qt.core.QModelIndex index, io.qt.widgets.QAbstractItemView.EditTrigger trigger, io.qt.core.QEvent event){
return edit_native_cref_QModelIndex_QAbstractItemView_EditTrigger_QEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), index, trigger.value(), QtJambi_LibraryUtilities.internal.checkedNativeId(event));
}
@io.qt.QtUninvokable
private native boolean edit_native_cref_QModelIndex_QAbstractItemView_EditTrigger_QEvent_ptr(long __this__nativeId, io.qt.core.QModelIndex index, int trigger, long event);
/**
* See QAbstractItemView::editorDestroyed(QObject*)
*/
protected void editorDestroyed(io.qt.core.QObject editor){
editorDestroyed_native_QObject_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(editor));
}
private native void editorDestroyed_native_QObject_ptr(long __this__nativeId, long editor);
/**
* See QObject::event(QEvent*)
*/
@io.qt.QtUninvokable
public boolean event(io.qt.core.QEvent event){
return event_native_QEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(event));
}
@io.qt.QtUninvokable
private native boolean event_native_QEvent_ptr(long __this__nativeId, long event);
/**
* See QObject::eventFilter(QObject*,QEvent*)
*/
@io.qt.QtUninvokable
public boolean eventFilter(io.qt.core.QObject object, io.qt.core.QEvent event){
return eventFilter_native_QObject_ptr_QEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(object), QtJambi_LibraryUtilities.internal.checkedNativeId(event));
}
@io.qt.QtUninvokable
private native boolean eventFilter_native_QObject_ptr_QEvent_ptr(long __this__nativeId, long object, long event);
/**
* See QWidget::focusInEvent(QFocusEvent*)
*/
@io.qt.QtUninvokable
protected void focusInEvent(io.qt.gui.QFocusEvent event){
focusInEvent_native_QFocusEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(event));
}
@io.qt.QtUninvokable
private native void focusInEvent_native_QFocusEvent_ptr(long __this__nativeId, long event);
/**
* See QWidget::focusNextPrevChild(bool)
*/
@io.qt.QtUninvokable
protected boolean focusNextPrevChild(boolean next){
return focusNextPrevChild_native_bool(QtJambi_LibraryUtilities.internal.nativeId(this), next);
}
@io.qt.QtUninvokable
private native boolean focusNextPrevChild_native_bool(long __this__nativeId, boolean next);
/**
* See QWidget::focusOutEvent(QFocusEvent*)
*/
@io.qt.QtUninvokable
protected void focusOutEvent(io.qt.gui.QFocusEvent event){
focusOutEvent_native_QFocusEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(event));
}
@io.qt.QtUninvokable
private native void focusOutEvent_native_QFocusEvent_ptr(long __this__nativeId, long event);
/**
* See QAbstractItemView::horizontalOffset()const
*/
@io.qt.QtUninvokable
protected abstract int horizontalOffset();
@io.qt.QtUninvokable
private native int horizontalOffset_native_constfct(long __this__nativeId);
protected void horizontalScrollbarAction(int action){
horizontalScrollbarAction_native_int(QtJambi_LibraryUtilities.internal.nativeId(this), action);
}
private native void horizontalScrollbarAction_native_int(long __this__nativeId, int action);
protected void horizontalScrollbarValueChanged(int value){
horizontalScrollbarValueChanged_native_int(QtJambi_LibraryUtilities.internal.nativeId(this), value);
}
private native void horizontalScrollbarValueChanged_native_int(long __this__nativeId, int value);
/**
* See QAbstractItemView::indexAt(QPoint)const
*/
@io.qt.QtUninvokable
public abstract io.qt.core.QModelIndex indexAt(io.qt.core.QPoint point);
@io.qt.QtUninvokable
private native io.qt.core.QModelIndex indexAt_native_cref_QPoint_constfct(long __this__nativeId, long point);
/**
* See QAbstractItemView::initViewItemOption(QStyleOptionViewItem*)const
*/
@io.qt.QtUninvokable
protected void initViewItemOption(io.qt.widgets.QStyleOptionViewItem option){
initViewItemOption_native_QStyleOptionViewItem_ptr_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), option);
}
@io.qt.QtUninvokable
private native void initViewItemOption_native_QStyleOptionViewItem_ptr_constfct(long __this__nativeId, io.qt.widgets.QStyleOptionViewItem option);
/**
* See QWidget::inputMethodEvent(QInputMethodEvent*)
*/
@io.qt.QtUninvokable
protected void inputMethodEvent(io.qt.gui.QInputMethodEvent event){
inputMethodEvent_native_QInputMethodEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(event));
}
@io.qt.QtUninvokable
private native void inputMethodEvent_native_QInputMethodEvent_ptr(long __this__nativeId, long event);
/**
* See QWidget::inputMethodQuery(Qt::InputMethodQuery)const
*/
@io.qt.QtUninvokable
public java.lang.Object inputMethodQuery(io.qt.core.Qt.InputMethodQuery query){
return inputMethodQuery_native_Qt_InputMethodQuery_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), query.value());
}
@io.qt.QtUninvokable
private native java.lang.Object inputMethodQuery_native_Qt_InputMethodQuery_constfct(long __this__nativeId, int query);
/**
* See QAbstractItemView::isIndexHidden(QModelIndex)const
*/
@io.qt.QtUninvokable
protected abstract boolean isIndexHidden(io.qt.core.QModelIndex index);
@io.qt.QtUninvokable
private native boolean isIndexHidden_native_cref_QModelIndex_constfct(long __this__nativeId, io.qt.core.QModelIndex index);
/**
* See QAbstractItemView::itemDelegateForIndex(QModelIndex)const
*/
@io.qt.QtUninvokable
public io.qt.widgets.QAbstractItemDelegate itemDelegateForIndex(io.qt.core.QModelIndex index){
return itemDelegateForIndex_native_cref_QModelIndex_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), index);
}
@io.qt.QtUninvokable
private native io.qt.widgets.QAbstractItemDelegate itemDelegateForIndex_native_cref_QModelIndex_constfct(long __this__nativeId, io.qt.core.QModelIndex index);
/**
* See QWidget::keyPressEvent(QKeyEvent*)
*/
@io.qt.QtUninvokable
protected void keyPressEvent(io.qt.gui.QKeyEvent event){
keyPressEvent_native_QKeyEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(event));
}
@io.qt.QtUninvokable
private native void keyPressEvent_native_QKeyEvent_ptr(long __this__nativeId, long event);
/**
* See QAbstractItemView::keyboardSearch(QString)
*/
@io.qt.QtUninvokable
public void keyboardSearch(java.lang.String search){
keyboardSearch_native_cref_QString(QtJambi_LibraryUtilities.internal.nativeId(this), search);
}
@io.qt.QtUninvokable
private native void keyboardSearch_native_cref_QString(long __this__nativeId, java.lang.String search);
/**
* See QWidget::mouseDoubleClickEvent(QMouseEvent*)
*/
@io.qt.QtUninvokable
protected void mouseDoubleClickEvent(io.qt.gui.QMouseEvent event){
mouseDoubleClickEvent_native_QMouseEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(event));
}
@io.qt.QtUninvokable
private native void mouseDoubleClickEvent_native_QMouseEvent_ptr(long __this__nativeId, long event);
/**
* See QWidget::mouseMoveEvent(QMouseEvent*)
*/
@io.qt.QtUninvokable
protected void mouseMoveEvent(io.qt.gui.QMouseEvent event){
mouseMoveEvent_native_QMouseEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(event));
}
@io.qt.QtUninvokable
private native void mouseMoveEvent_native_QMouseEvent_ptr(long __this__nativeId, long event);
/**
* See QWidget::mousePressEvent(QMouseEvent*)
*/
@io.qt.QtUninvokable
protected void mousePressEvent(io.qt.gui.QMouseEvent event){
mousePressEvent_native_QMouseEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(event));
}
@io.qt.QtUninvokable
private native void mousePressEvent_native_QMouseEvent_ptr(long __this__nativeId, long event);
/**
* See QWidget::mouseReleaseEvent(QMouseEvent*)
*/
@io.qt.QtUninvokable
protected void mouseReleaseEvent(io.qt.gui.QMouseEvent event){
mouseReleaseEvent_native_QMouseEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(event));
}
@io.qt.QtUninvokable
private native void mouseReleaseEvent_native_QMouseEvent_ptr(long __this__nativeId, long event);
/**
* See QAbstractItemView::moveCursor(QAbstractItemView::CursorAction,Qt::KeyboardModifiers)
*/
@io.qt.QtUninvokable
protected abstract io.qt.core.QModelIndex moveCursor(io.qt.widgets.QAbstractItemView.CursorAction cursorAction, io.qt.core.Qt.KeyboardModifiers modifiers);
@io.qt.QtUninvokable
private native io.qt.core.QModelIndex moveCursor_native_QAbstractItemView_CursorAction_QFlags_Qt_KeyboardModifier_(long __this__nativeId, int cursorAction, int modifiers);
/**
* See QAbstractItemView::reset()
*/
public void reset(){
reset_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void reset_native(long __this__nativeId);
/**
* See QWidget::resizeEvent(QResizeEvent*)
*/
@io.qt.QtUninvokable
protected void resizeEvent(io.qt.gui.QResizeEvent event){
resizeEvent_native_QResizeEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(event));
}
@io.qt.QtUninvokable
private native void resizeEvent_native_QResizeEvent_ptr(long __this__nativeId, long event);
/**
* See QAbstractItemView::rowsAboutToBeRemoved(QModelIndex,int,int)
*/
protected void rowsAboutToBeRemoved(io.qt.core.QModelIndex parent, int start, int end){
rowsAboutToBeRemoved_native_cref_QModelIndex_int_int(QtJambi_LibraryUtilities.internal.nativeId(this), parent, start, end);
}
private native void rowsAboutToBeRemoved_native_cref_QModelIndex_int_int(long __this__nativeId, io.qt.core.QModelIndex parent, int start, int end);
/**
* See QAbstractItemView::rowsInserted(QModelIndex,int,int)
*/
protected void rowsInserted(io.qt.core.QModelIndex parent, int start, int end){
rowsInserted_native_cref_QModelIndex_int_int(QtJambi_LibraryUtilities.internal.nativeId(this), parent, start, end);
}
private native void rowsInserted_native_cref_QModelIndex_int_int(long __this__nativeId, io.qt.core.QModelIndex parent, int start, int end);
/**
* Overloaded function for {@link #scrollTo(io.qt.core.QModelIndex, io.qt.widgets.QAbstractItemView.ScrollHint)}
* with hint = io.qt.widgets.QAbstractItemView.ScrollHint.EnsureVisible
.
*/
@io.qt.QtUninvokable
public final void scrollTo(io.qt.core.QModelIndex index) {
scrollTo(index, io.qt.widgets.QAbstractItemView.ScrollHint.EnsureVisible);
}
/**
* See QAbstractItemView::scrollTo(QModelIndex,QAbstractItemView::ScrollHint)
*/
@io.qt.QtUninvokable
public abstract void scrollTo(io.qt.core.QModelIndex index, io.qt.widgets.QAbstractItemView.ScrollHint hint);
@io.qt.QtUninvokable
private native void scrollTo_native_cref_QModelIndex_QAbstractItemView_ScrollHint(long __this__nativeId, io.qt.core.QModelIndex index, int hint);
/**
* See QAbstractItemView::selectAll()
*/
public void selectAll(){
selectAll_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void selectAll_native(long __this__nativeId);
/**
* See QAbstractItemView::selectedIndexes()const
*/
@io.qt.QtUninvokable
protected java.util.List selectedIndexes(){
return selectedIndexes_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native java.util.List selectedIndexes_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::selectionChanged(QItemSelection,QItemSelection)
*/
protected void selectionChanged(io.qt.core.QItemSelection selected, io.qt.core.QItemSelection deselected){
selectionChanged_native_cref_QItemSelection_cref_QItemSelection(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(selected), QtJambi_LibraryUtilities.internal.checkedNativeId(deselected));
}
private native void selectionChanged_native_cref_QItemSelection_cref_QItemSelection(long __this__nativeId, long selected, long deselected);
/**
* Overloaded function for {@link #selectionCommand(io.qt.core.QModelIndex, io.qt.core.QEvent)}
* with event = null
.
*/
@io.qt.QtUninvokable
protected final io.qt.core.QItemSelectionModel.SelectionFlags selectionCommand(io.qt.core.QModelIndex index) {
return selectionCommand(index, (io.qt.core.QEvent)null);
}
/**
* See QAbstractItemView::selectionCommand(QModelIndex,const QEvent*)const
*/
@io.qt.QtUninvokable
protected io.qt.core.QItemSelectionModel.SelectionFlags selectionCommand(io.qt.core.QModelIndex index, io.qt.core.QEvent event){
return new io.qt.core.QItemSelectionModel.SelectionFlags(selectionCommand_native_cref_QModelIndex_const_QEvent_ptr_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), index, QtJambi_LibraryUtilities.internal.checkedNativeId(event)));
}
@io.qt.QtUninvokable
private native int selectionCommand_native_cref_QModelIndex_const_QEvent_ptr_constfct(long __this__nativeId, io.qt.core.QModelIndex index, long event);
/**
* See QAbstractItemView::setModel(QAbstractItemModel*)
*/
@io.qt.QtUninvokable
public void setModel(io.qt.core.QAbstractItemModel model){
setModel_native_QAbstractItemModel_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(model));
__rcItemModel = model;
// setModel() creates a new selection model for the object
QtJambi_LibraryUtilities.internal.setReferenceCount(this, io.qt.widgets.QAbstractItemView.class, "__rcItemSelectionModel", false, false, null);
}
@io.qt.QtUninvokable
private native void setModel_native_QAbstractItemModel_ptr(long __this__nativeId, long model);
/**
* See QAbstractItemView::setRootIndex(QModelIndex)
*/
public void setRootIndex(io.qt.core.QModelIndex index){
setRootIndex_native_cref_QModelIndex(QtJambi_LibraryUtilities.internal.nativeId(this), index);
}
private native void setRootIndex_native_cref_QModelIndex(long __this__nativeId, io.qt.core.QModelIndex index);
/**
* See QAbstractItemView::setSelection(QRect,QItemSelectionModel::SelectionFlags)
*/
@io.qt.QtUninvokable
protected abstract void setSelection(io.qt.core.QRect rect, io.qt.core.QItemSelectionModel.SelectionFlags command);
@io.qt.QtUninvokable
private native void setSelection_native_cref_QRect_QFlags_QItemSelectionModel_SelectionFlag_(long __this__nativeId, long rect, int command);
/**
* See QAbstractItemView::setSelectionModel(QItemSelectionModel*)
*/
@io.qt.QtUninvokable
public void setSelectionModel(io.qt.core.QItemSelectionModel selectionModel){
java.util.Objects.requireNonNull(selectionModel, "Argument 'selectionModel': null not expected.");
setSelectionModel_native_QItemSelectionModel_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(selectionModel));
__rcItemSelectionModel = selectionModel;
}
@io.qt.QtUninvokable
private native void setSelectionModel_native_QItemSelectionModel_ptr(long __this__nativeId, long selectionModel);
/**
* See QAbstractItemView::sizeHintForColumn(int)const
*/
@io.qt.QtUninvokable
public int sizeHintForColumn(int column){
return sizeHintForColumn_native_int_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), column);
}
@io.qt.QtUninvokable
private native int sizeHintForColumn_native_int_constfct(long __this__nativeId, int column);
/**
* See QAbstractItemView::sizeHintForRow(int)const
*/
@io.qt.QtUninvokable
public int sizeHintForRow(int row){
return sizeHintForRow_native_int_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), row);
}
@io.qt.QtUninvokable
private native int sizeHintForRow_native_int_constfct(long __this__nativeId, int row);
/**
* Overloaded function for {@link #startDrag(io.qt.core.Qt.DropActions)}.
*/
@io.qt.QtUninvokable
protected final void startDrag(io.qt.core.Qt.DropAction ... supportedActions){
startDrag(new io.qt.core.Qt.DropActions(supportedActions));
}
/**
* See QAbstractItemView::startDrag(Qt::DropActions)
*/
@io.qt.QtUninvokable
protected void startDrag(io.qt.core.Qt.DropActions supportedActions){
startDrag_native_QFlags_Qt_DropAction_(QtJambi_LibraryUtilities.internal.nativeId(this), supportedActions.value());
}
@io.qt.QtUninvokable
private native void startDrag_native_QFlags_Qt_DropAction_(long __this__nativeId, int supportedActions);
/**
* See QObject::timerEvent(QTimerEvent*)
*/
@io.qt.QtUninvokable
protected void timerEvent(io.qt.core.QTimerEvent event){
timerEvent_native_QTimerEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(event));
}
@io.qt.QtUninvokable
private native void timerEvent_native_QTimerEvent_ptr(long __this__nativeId, long event);
protected void updateEditorData(){
updateEditorData_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void updateEditorData_native(long __this__nativeId);
protected void updateEditorGeometries(){
updateEditorGeometries_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void updateEditorGeometries_native(long __this__nativeId);
/**
* See QAbstractItemView::updateGeometries()
*/
protected void updateGeometries(){
updateGeometries_native(QtJambi_LibraryUtilities.internal.nativeId(this));
}
private native void updateGeometries_native(long __this__nativeId);
/**
* See QAbstractItemView::verticalOffset()const
*/
@io.qt.QtUninvokable
protected abstract int verticalOffset();
@io.qt.QtUninvokable
private native int verticalOffset_native_constfct(long __this__nativeId);
protected void verticalScrollbarAction(int action){
verticalScrollbarAction_native_int(QtJambi_LibraryUtilities.internal.nativeId(this), action);
}
private native void verticalScrollbarAction_native_int(long __this__nativeId, int action);
protected void verticalScrollbarValueChanged(int value){
verticalScrollbarValueChanged_native_int(QtJambi_LibraryUtilities.internal.nativeId(this), value);
}
private native void verticalScrollbarValueChanged_native_int(long __this__nativeId, int value);
/**
* See QAbstractScrollArea::viewportEvent(QEvent*)
*/
@io.qt.QtUninvokable
protected boolean viewportEvent(io.qt.core.QEvent event){
return viewportEvent_native_QEvent_ptr(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(event));
}
@io.qt.QtUninvokable
private native boolean viewportEvent_native_QEvent_ptr(long __this__nativeId, long event);
/**
* See QAbstractScrollArea::viewportSizeHint()const
*/
@io.qt.QtUninvokable
protected io.qt.core.QSize viewportSizeHint(){
return viewportSizeHint_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native io.qt.core.QSize viewportSizeHint_native_constfct(long __this__nativeId);
/**
* See QAbstractItemView::visualRect(QModelIndex)const
*/
@io.qt.QtUninvokable
public abstract io.qt.core.QRect visualRect(io.qt.core.QModelIndex index);
@io.qt.QtUninvokable
private native io.qt.core.QRect visualRect_native_cref_QModelIndex_constfct(long __this__nativeId, io.qt.core.QModelIndex index);
/**
* See QAbstractItemView::visualRegionForSelection(QItemSelection)const
*/
@io.qt.QtUninvokable
protected abstract io.qt.gui.QRegion visualRegionForSelection(io.qt.core.QItemSelection selection);
@io.qt.QtUninvokable
private native io.qt.gui.QRegion visualRegionForSelection_native_cref_QItemSelection_constfct(long __this__nativeId, long selection);
/**
* Constructor for internal use only.
* @param p expected to be null
.
*/
@io.qt.NativeAccess
protected QAbstractItemView(QPrivateConstructor p) { super(p); }
/**
* Constructor for internal use only.
* It is not allowed to call the declarative constructor from inside Java.
*/
@io.qt.NativeAccess
protected QAbstractItemView(QDeclarativeConstructor constructor) {
super((QPrivateConstructor)null);
initialize_native(this, constructor);
}
@io.qt.QtUninvokable
private static native void initialize_native(QAbstractItemView instance, QDeclarativeConstructor constructor);
}