Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
How to Use QPushButton/de: Difference between revisions
No edit summary |
(Use LangSwitch instead of manual links to other languages) |
||
(8 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
{{Cleanup | reason=Auto-imported from ExpressionEngine.}} | |||
[[Category:HowTo/de]] | |||
{{LangSwitch}} | |||
=Verwendung von QPushButton= | = Verwendung von QPushButton = | ||
==Überblick== | == Überblick == | ||
Mit der Klasse QPushButton kann man Knöpfe erstellen und handhaben. | Mit der Klasse QPushButton kann man Knöpfe erstellen und handhaben. | ||
==Signale== | == Signale == | ||
Folgende Signale können von einem QPushButton-Objekt ausgelöst werden: | Folgende Signale können von einem QPushButton-Objekt ausgelöst werden: | ||
===Signale der Klasse QAbstractButton=== | === Signale der Klasse QAbstractButton === | ||
* void clicked(bool checked = false) | * void clicked(bool checked = false) | ||
Line 18: | Line 20: | ||
* void toggled(bool checked) | * void toggled(bool checked) | ||
===Sonstige Signale=== | === Sonstige Signale === | ||
* void customContextMenuRequested(const QPoint & | * void customContextMenuRequested(const QPoint & pos) (aus QWidget) | ||
* void destroyed(QObject * obj = 0) (aus QObject) | * void destroyed(QObject * obj = 0) (aus QObject) | ||
==Verwendung== | == Verwendung == | ||
===Text=== | === Text === | ||
Den Text, der aus dem Knopf angezeigt werden soll, kann man mit setText() festlegen. Den aktuell angezeigten Text bekommt man mit text(). | Den Text, der aus dem Knopf angezeigt werden soll, kann man mit setText() festlegen. Den aktuell angezeigten Text bekommt man mit text(). | ||
===Icon=== | === Icon === | ||
Ein Icon kann man mit setIcon() spezifizieren, während man das aktuelle Icon mit icon() bekommt. | Ein Icon kann man mit setIcon() spezifizieren, während man das aktuelle Icon mit icon() bekommt. | ||
==Beispiel== | == Beispiel == | ||
Ein Beispiel für einen QPushButton: | Ein Beispiel für einen QPushButton: | ||
<code> | |||
#include <QApplication> | |||
#include <QPushButton> | |||
* [ | int main(int argc, char* argv[]) | ||
{ | |||
QApplication app(argc, argv); | |||
QPushButton quit; | |||
quit.setText("Beenden…"); | |||
QObject::connect(&quit, SIGNAL (clicked()), &app, SLOT (quit())); | |||
quit.show(); | |||
return app.exec(); | |||
} |
Latest revision as of 16:48, 22 November 2016
This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine. Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean. |
Verwendung von QPushButton
Überblick
Mit der Klasse QPushButton kann man Knöpfe erstellen und handhaben.
Signale
Folgende Signale können von einem QPushButton-Objekt ausgelöst werden:
Signale der Klasse QAbstractButton
- void clicked(bool checked = false)
- void pressed()
- void released()
- void toggled(bool checked)
Sonstige Signale
- void customContextMenuRequested(const QPoint & pos) (aus QWidget)
- void destroyed(QObject * obj = 0) (aus QObject)
Verwendung
Text
Den Text, der aus dem Knopf angezeigt werden soll, kann man mit setText() festlegen. Den aktuell angezeigten Text bekommt man mit text().
Icon
Ein Icon kann man mit setIcon() spezifizieren, während man das aktuelle Icon mit icon() bekommt.
Beispiel
Ein Beispiel für einen QPushButton:
- include <QApplication>
- include <QPushButton>
int main(int argc, char* argv[])
{
QApplication app(argc, argv);
QPushButton quit;
quit.setText("Beenden…");
QObject::connect(&quit, SIGNAL (clicked()), &app, SLOT (quit()));
quit.show();
return app.exec();
}