![JAR search and dependency download from the Maven repository](/logo.png)
io.qt.activex.QAxSelect Maven / Gradle / Ivy
package io.qt.activex;
/**
* Selection dialog for registered COM components
* Java wrapper for Qt class QAxSelect
*/
public class QAxSelect extends io.qt.widgets.QDialog
{
static {
QtJambi_LibraryUtilities.initialize();
}
/**
* This variable stores the meta-object for the class.
*/
public static final io.qt.core.QMetaObject staticMetaObject = io.qt.core.QMetaObject.forType(QAxSelect.class);
/**
* Java wrapper for Qt enum QAxSelect::SandboxingLevel
*/
@io.qt.QtUnlistedEnum
public enum SandboxingLevel implements io.qt.QtEnumerator {
SandboxingNone(0),
SandboxingProcess(1),
SandboxingLowIntegrity(2);
private SandboxingLevel(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 SandboxingLevel resolve(int value) {
switch (value) {
case 0: return SandboxingNone;
case 1: return SandboxingProcess;
case 2: return SandboxingLowIntegrity;
default: throw new io.qt.QNoSuchEnumValueException(value);
}
}
private final int value;
}
/**
* Overloaded constructor for {@link #QAxSelect(io.qt.widgets.QWidget, io.qt.core.Qt.WindowFlags)}.
*/
public QAxSelect(io.qt.widgets.QWidget parent, io.qt.core.Qt.WindowType ... flags){
this(parent, new io.qt.core.Qt.WindowFlags(flags));
}
/**
* Overloaded constructor for {@link #QAxSelect(io.qt.widgets.QWidget, io.qt.core.Qt.WindowFlags)}
* with flags = new io.qt.core.Qt.WindowFlags(0)
.
*/
public QAxSelect(io.qt.widgets.QWidget parent) {
this(parent, new io.qt.core.Qt.WindowFlags(0));
}
/**
* Overloaded constructor for {@link #QAxSelect(io.qt.widgets.QWidget, io.qt.core.Qt.WindowFlags)}
* with:
* parent = null
* flags = new io.qt.core.Qt.WindowFlags(0)
*
*/
public QAxSelect() {
this((io.qt.widgets.QWidget)null, new io.qt.core.Qt.WindowFlags(0));
}
/**
* See QAxSelect::QAxSelect(QWidget*,Qt::WindowFlags)
*/
public QAxSelect(io.qt.widgets.QWidget parent, io.qt.core.Qt.WindowFlags flags){
super((QPrivateConstructor)null);
initialize_native(this, parent, flags);
}
private native static void initialize_native(QAxSelect instance, io.qt.widgets.QWidget parent, io.qt.core.Qt.WindowFlags flags);
/**
*
*/
@io.qt.QtUninvokable
public final java.lang.String clsid(){
return clsid_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this));
}
@io.qt.QtUninvokable
private native java.lang.String clsid_native_constfct(long __this__nativeId);
/**
* See QAxSelect::sandboxingLevel()const
*/
@io.qt.QtUninvokable
public final io.qt.activex.QAxSelect.SandboxingLevel sandboxingLevel(){
return io.qt.activex.QAxSelect.SandboxingLevel.resolve(sandboxingLevel_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)));
}
@io.qt.QtUninvokable
private native int sandboxingLevel_native_constfct(long __this__nativeId);
/**
* Constructor for internal use only.
* @param p expected to be null
.
*/
@io.qt.NativeAccess
protected QAxSelect(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 QAxSelect(QDeclarativeConstructor constructor) {
super((QPrivateConstructor)null);
initialize_native(this, constructor);
}
@io.qt.QtUninvokable
private static native void initialize_native(QAxSelect instance, QDeclarativeConstructor constructor);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy