io.qt.widgets.QWhatsThis 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;
/**
* Simple description of any widget, i.e. answering the question "What's This?"
* Java wrapper for Qt class QWhatsThis
*/
public final class QWhatsThis extends io.qt.QtObject
{
static {
QtJambi_LibraryUtilities.initialize();
}
/**
* Overloaded function for {@link #createAction(io.qt.core.QObject)}
* with parent = null
.
*/
public static io.qt.gui.QAction createAction() {
return createAction((io.qt.core.QObject)null);
}
/**
* See QWhatsThis::createAction(QObject*)
*/
public static io.qt.gui.QAction createAction(io.qt.core.QObject parent){
return createAction_native_QObject_ptr(QtJambi_LibraryUtilities.internal.checkedNativeId(parent));
}
private native static io.qt.gui.QAction createAction_native_QObject_ptr(long parent);
/**
* See QWhatsThis::enterWhatsThisMode()
*/
public native static void enterWhatsThisMode();
/**
*
*/
public native static void hideText();
/**
* See QWhatsThis::inWhatsThisMode()
*/
public native static boolean inWhatsThisMode();
/**
* See QWhatsThis::leaveWhatsThisMode()
*/
public native static void leaveWhatsThisMode();
/**
* Overloaded function for {@link #showText(io.qt.core.QPoint, java.lang.String, io.qt.widgets.QWidget)}
* with w = null
.
*/
public static void showText(io.qt.core.QPoint pos, java.lang.String text) {
showText(pos, text, (io.qt.widgets.QWidget)null);
}
/**
* See QWhatsThis::showText(QPoint,QString,QWidget*)
*/
public static void showText(io.qt.core.QPoint pos, java.lang.String text, io.qt.widgets.QWidget w){
showText_native_cref_QPoint_cref_QString_QWidget_ptr(QtJambi_LibraryUtilities.internal.checkedNativeId(pos), text, QtJambi_LibraryUtilities.internal.checkedNativeId(w));
}
private native static void showText_native_cref_QPoint_cref_QString_QWidget_ptr(long pos, java.lang.String text, long w);
/**
* Constructor for internal use only.
* @param p expected to be null
.
*/
@io.qt.NativeAccess
protected QWhatsThis(QPrivateConstructor p) { super(p); }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy