io.qt.widgets.QVBoxLayout Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtjambi Show documentation
Show all versions of qtjambi Show documentation
QtJambi base module containing QtCore, QtGui and QtWidgets.
package io.qt.widgets;
import io.qt.*;
/**
* Lines up widgets vertically
* Java wrapper for Qt class QVBoxLayout
*/
public class QVBoxLayout extends io.qt.widgets.QBoxLayout
{
/**
* This variable stores the meta-object for the class.
*/
public static final io.qt.core.@NonNull QMetaObject staticMetaObject = io.qt.core.QMetaObject.forType(QVBoxLayout.class);
/**
* See QVBoxLayout:: QVBoxLayout()
*/
public QVBoxLayout(){
super((QPrivateConstructor)null);
initialize_native(this);
}
private native static void initialize_native(QVBoxLayout instance);
/**
* See QVBoxLayout:: QVBoxLayout(QWidget*)
*/
public QVBoxLayout(io.qt.widgets.@Nullable QWidget parent){
super((QPrivateConstructor)null);
initialize_native(this, parent);
}
private native static void initialize_native(QVBoxLayout instance, io.qt.widgets.QWidget parent);
/**
* Constructor for internal use only.
* @param p expected to be null
.
* @hidden
*/
@NativeAccess
protected QVBoxLayout(QPrivateConstructor p) { super(p); }
/**
* Constructor for internal use only.
* It is not allowed to call the declarative constructor from inside Java.
* @hidden
*/
@NativeAccess
protected QVBoxLayout(QDeclarativeConstructor constructor) {
super((QPrivateConstructor)null);
initialize_native(this, constructor);
}
@QtUninvokable
private static native void initialize_native(QVBoxLayout instance, QDeclarativeConstructor constructor);
}