QPushButton

Z DooBLER wiki

Spis treści


Wstęp

The QPushButton widget provides a command button. Więcej...

#include <QPushButton>

Dziedziczy z
QAbstractButton.

Jest dziedziczony przez
QCommandLinkButton.

Właściwości


  • 11 właściwości jest dziedziczonych z QAbstractButton
  • 57 właściwości jest dziedziczonych z QWidget
  • 1 właściwość jest dziedziczona z QObject

Publiczne funkcje


  • 21 publicznych funkcji jest dziedziczonych z QAbstractButton
  • 206 publicznych funkcji jest dziedziczonych z QWidget
  • 29 publicznych funkcji jest dziedziczonych z QObject
  • 12 publicznych funkcji jest dziedziczonych z QPaintDevice

Publiczne sloty


  • 5 publicznych slotów jest dziedziczonych z QAbstractButton
  • 19 publicznych slotów jest dziedziczonych z QWidget
  • 1 publiczny slot jest dziedziczy z QObject

Chronione funkcje


  • 3 chronione funkcje jest dziedziczone z QAbstractButton
  • 38 chronionych funkcji jest dziedziczonych z QWidget
  • 7 chronionych funkcji jest dziedziczonych z QObject
  • 1 chroniona funkcja jest dziedziczona z QPaintDevice

Inne dziedziczone


  • 4 static public members inherited from QWidget <- do edycji
  • 5 static public members inherited from QObject <- do edycji


  • 1 chroniony slot jest dziedziczony z QWidget

Opis szczegółowy

The QPushButton widget provides a command button.

Przycisk jest prawdopodobnie najczęściej używaną kontrolką w każdym graficznym interfejsie użytkownika (GUI). Wciskasz (klikasz) przycisk w celu powiedzenia komputerowi, aby wykonał jakąś akcję, lub odpowiedziałna pytanie. Typowymi przyciskami są: OK, Zastosuj, Anuluj, Zamknij, Tak, Nie, oraz Pomoc.



Przycisk ma kształt prostokąta i zazwyczaj posiada tekstową etykietę (label) opisującą jego działanie. Do przycisku może zostać przypisany klawisz skrutu przez dodanie znaku ampersand '&' przed wybraną literą w etykiecie tekstowej. Na przykład:


QPushButton *button = new QPushButton("&Download", this);

W przykładzie skrótem klawiszowym przycisku będzie Alt+D. Zobacz opis QShortcut aby dowiedzieć się więcej o skrótach klawiszowych (aby wyświetlić znak ampersand w etykiecie tekstowej użyj formy '&&').



Przyciski wyświetlają etykietę tekstową i dodatkowo mogą wyświetlać małą ikonę. Oba te parametry mogą być ustawione przez setText() i setIcon(). Jeśli przycisk jest nie aktywny wygląd tekstu i ikony będzie zmieniony w stosunku do interfejsu użytkownika, aby przycisk wyglądał na "nie aktywny".



Przycisk emituje sygnał clicked() gdy jest aktywowany przez kliknięcie myszą, lub skrót klawiszowy. Należy połączyć się z tym sygnałem aby wykonać akcję przycisku. Przycisk posiada także rzadziej używane sygnały, które spełniają podobne funkcje na przykład pressed() lub released()















Other classes of buttons are option buttons (see QRadioButton) and check boxes (see QCheckBox).

Obrazek A push button shown in the Macintosh widget style.

Note that when a button's width becomes smaller than 50 or its height becomes smaller than 30, the button's corners are changed from round to square. Use the setMinimumSize() function to prevent this behavior.

Obrazek A push button shown in the Windows XP widget style.
Obrazek A push button shown in the Plastique widget style.

In Qt, the QAbstractButton base class provides most of the modes and other API, and QPushButton provides GUI logic. See QAbstractButton for more information about the API.


See also QToolButton, QRadioButton, QCheckBox, and GUI Design Handbook: Push Button.

Opis Właściwości

autoDefault

autoDefault : bool


This property holds whether the push button is an auto default button.


If this property is set to true then the push button is an auto default button.


In some GUI styles a default button is drawn with an extra frame around it, up to 3 pixels or more. Qt automatically keeps this space free around auto-default buttons, i.e. auto-default buttons may have a slightly larger size hint.


This property's default is true for buttons that have a QDialog parent; otherwise it defaults to false.


See the default property for details of how default and auto-default interact.

Access functions:

  • bool autoDefault () const
  • void setAutoDefault ( bool )

default

default : bool


This property holds whether the push button is the default button.


Default and autodefault buttons decide what happens when the user presses enter in a dialog.


A button with this property set to true (i.e., the dialog's default button,) will automatically be pressed when the user presses enter, with one exception: if an autoDefault button currently has focus, the autoDefault button is pressed. When the dialog has autoDefault buttons but no default button, pressing enter will press either the autoDefault button that currently has focus, or if no button has focus, the next autoDefault button in the focus chain.


In a dialog, only one push button at a time can be the default button. This button is then displayed with an additional frame (depending on the GUI style).


The default button behavior is provided only in dialogs. Buttons can always be clicked from the keyboard by pressing Spacebar when the button has focus.


If the default property is set to false on the current default button while the dialog is visible, a new default will automatically be assigned the next time a pushbutton in the dialog receives focus.


This property's default is false.

Access functions:

  • bool isDefault () const
  • void setDefault ( bool )

flat

flat : bool


This property holds whether the button border is raised.


This property's default is false. If this property is set, most styles will not paint the button background unless the button is being pressed. setAutoFillBackground() can be used to ensure that the background is filled using the QPalette::Button brush.

Access functions:

  • bool isFlat () const
  • void setFlat ( bool )

Opis funkcji

QPushButton::QPushButton

QPushButton::QPushButton ( QWidget * parent = 0 )


Constructs a push button with no text and a parent.


QPushButton::QPushButton ( const QString & text, QWidget * parent = 0 )


Constructs a push button with the parent parent and the text text.


QPushButton::QPushButton ( const QIcon & icon, const QString & text, QWidget * parent = 0 )


Constructs a push button with an icon and a text, and a parent.
Note that you can also pass a QPixmap object as an icon (thanks to the implicit type conversion provided by C++).


QPushButton::~QPushButton ()

Niszczy przycisk.
Destroys the push button.


QPushButton::initStyleOption

void QPushButton::initStyleOption ( QStyleOptionButton * option ) const   [protected]


Initialize option with the values from this QPushButton. This method is useful for subclasses when they need a QStyleOptionButton, but don't want to fill in all the information themselves.
Zobacz także QStyleOption::initFrom().

QPushButton::menu

QMenu * QPushButton::menu () const


Returns the button's associated popup menu or 0 if no popup menu has been set.
Zobacz także setMenu().

QPushButton::setMenu

void QPushButton::setMenu ( QMenu * menu )
Przycisk z rozwijanym menu w stylu widżetu "Plastique".
Przycisk z rozwijanym menu w stylu widżetu "Plastique".

Dołącza do przycisku rozwijane menu. Przekształca przycisk w przycisk z menu co powoduje w niektórych stylach, że po prawej stronie tekstu przycisku pojawia się mała trójkątna strzałka.



Zobacz także menu().


QPushButton::showMenu

void QPushButton::showMenu ()   [slot]

Pokazuje (rozwija) dołączone do przycisku rozwijane menu. Jeśli żadne menu nie jest dołączone funkcja nie robi nic. Tafunkcja niczego nie zwraca dopuki rozwijane menu nie zostanie zamknięte przez użytkownika.


inne



Ten artykuł jest tylko zalążkiem.
Możesz pomóc poprzez rozszeszenie tego artykułu.

Tłumaczenie na podstawie oryginalnej dokumentacji ze strony http://doc.trolltech.com
Tekst oryginału http://doc.trolltech.com/4.4/qpushbutton.html

Osobiste
Kategorie główne
Reklamy
Zaprzyjaźnione strony