How to Use QPushButton/bg: Difference between revisions
No edit summary |
AutoSpider (talk | contribs) (Don't #include the module prefix) |
||
(7 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{Cleanup | reason=Auto-imported from ExpressionEngine.}} | |||
[ | [[Category:Developing with Qt::General]] | ||
[[Category:HowTo]] | |||
[[Category:Snippets]] | |||
[[Category:Tutorial]] | |||
'''Български''' [[How_to_Use_QPushButton|English]] [[How_to_Use_QPushButton_SimplifiedChinese|简体中文]] [[How_to_Use_QPushButton_Spanish|Spanish]] [[How_to_Use_QPushButton_Greek|Ελληνικά]] | |||
'''Български''' [[How_to_Use_QPushButton|English]] [[How_to_Use_QPushButton_SimplifiedChinese|简体中文]] [[How_to_Use_QPushButton_Spanish|Spanish]] [[How_to_Use_QPushButton_Greek|Ελληνικά]] | |||
[[How_to_Use_QPushButton_Russian|Русский]] | |||
= Как се използва QPushButton = | = Как се използва QPushButton = | ||
Line 9: | Line 14: | ||
== Общ преглед == | == Общ преглед == | ||
Чрез | Чрез [http://doc.qt.io/qt-5.0/qtwidgets/qpushbutton.html QPushButton] могат да създават и управляват бутони. Този клас е лесен за употреба и персонализиране, поради което е сред най-популярните класове в Qt. По принцип бутона показва текст, но също така може да показва и икона. | ||
QPushButton наследява | QPushButton наследява [http://doc.qt.io/qt-5.0/qtwidgets/qabstractbutton.html QAbstractButton], който наследява [http://doc.qt.io/qt-5.0/qtwidgets/qwidget.html QWidget]. | ||
== Сигнали == | == Сигнали == | ||
Line 24: | Line 29: | ||
=== Наследени от QWidget === | === Наследени от QWidget === | ||
* void customContextMenuRequested ( const QPoint & | * void customContextMenuRequested ( const QPoint & pos ) | ||
=== Наследени от QObject === | === Наследени от QObject === | ||
Line 34: | Line 39: | ||
=== Текст === | === Текст === | ||
Текст на QPushButton може да бъде зададен при създаването му или чрез | Текст на QPushButton може да бъде зададен при създаването му или чрез [http://doc.qt.io/qt-5.0/qtwidgets/qabstractbutton.html#text-prop setText()]. За да достъпите текста, който е сложен в момента на бутона използвайте [http://doc.qt.io/qt-5.0/qtwidgets/qabstractbutton.html#text-prop text()]. | ||
=== Икона === | === Икона === | ||
Както текст, така и икона може да се зададе при създаване на QPushButton. След това иконата може да бъде сменете посредством | Както текст, така и икона може да се зададе при създаване на QPushButton. След това иконата може да бъде сменете посредством [http://doc.qt.io/qt-5.0/qtwidgets/qabstractbutton.html#icon-prop setIcon()]. За да достъпите иконата, която е сложена на бутон използвайте [http://doc.qt.io/qt-5.0/qtwidgets/qabstractbutton.html#icon-prop icon()] | ||
=== Настройване на позиция и икона === | === Настройване на позиция и икона === | ||
To set the position and the size of the button use | To set the position and the size of the button use [http://doc.qt.io/qt-5.0/qtwidgets/qwidget.html#geometry-prop setGeometry()]. Ако желаете само да промените размера на бутона използвайте [http://doc.qt.io/qt-5.0/qtwidgets/qwidget.html#size-prop resize()]. | ||
=== Управление на бутона === | === Управление на бутона === | ||
Line 58: | Line 63: | ||
=== mainwindow.h === | === mainwindow.h === | ||
</code> | </code> | ||
#ifndef MAINWINDOW_H | |||
#define MAINWINDOW_H | |||
#include <QMainWindow> | |||
#include <QPushButton> | |||
namespace Ui { | |||
class MainWindow; | |||
} | |||
class MainWindow : public QMainWindow | |||
{ | |||
Q_OBJECT | |||
public: | |||
explicit MainWindow(QWidget '''parent = 0); | |||
virtual ~MainWindow(); | |||
private slots: | |||
void handleButton(); | |||
private: | |||
QPushButton''' m_pButton; | |||
}; | |||
#endif // MAINWINDOW_H | #endif // MAINWINDOW_H | ||
<code> | |||
=== mainwindow.cpp === | === mainwindow.cpp === | ||
</code> | </code> | ||
#include "mainwindow.h" | |||
#include | #include <QCoreApplication> | ||
MainWindow::MainWindow(QWidget *parent) | MainWindow::MainWindow(QWidget *parent) | ||
: QMainWindow(parent) | |||
{ | |||
//Create the button | |||
m_pButton = new QPushButton("My Button", this); | |||
//set size and location of the button | |||
m_pButton->setGeometry(QRect( QPoint(100, 100), | |||
QSize(200, 50) )); | |||
//Connect button signal to appropriate slot | //Connect button signal to appropriate slot | ||
connect(m_pButton, SIGNAL (released()),this, SLOT (handleButton())); | |||
} | |||
void MainWindow::handleButton() | void MainWindow::handleButton() | ||
{ | |||
//change the text | |||
m_pButton->setText("Example"); | |||
//resize button | |||
m_pButton->resize(100,100); | |||
} | |||
MainWindow::~MainWindow() | MainWindow::~MainWindow() | ||
{ | |||
} | } | ||
<code> | |||
=== main.cpp === | === main.cpp === | ||
</code> | </code> | ||
#include "mainwindow.h" | |||
#include | #include <QApplication> | ||
int main(int argc, char *argv[]) | int main(int argc, char *argv[]) | ||
{ | |||
QApplication app(argc, argv); | |||
MainWindow mainWindow; | MainWindow mainWindow; | ||
mainWindow.showMaximized(); | |||
return app.exec(); | |||
} | |||
<code> | <code> |
Latest revision as of 13:26, 27 April 2015
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. |
Български English 简体中文 Spanish Ελληνικά
Русский
Как се използва QPushButton
Общ преглед
Чрез QPushButton могат да създават и управляват бутони. Този клас е лесен за употреба и персонализиране, поради което е сред най-популярните класове в Qt. По принцип бутона показва текст, но също така може да показва и икона.
QPushButton наследява QAbstractButton, който наследява QWidget.
Сигнали
Наследени от QAbstractButton
- void clicked ( bool checked = false )
- void pressed ()
- void released ()
- void toggled ( bool checked )
Наследени от QWidget
- void customContextMenuRequested ( const QPoint & pos )
Наследени от QObject
- void destroyed ( QObject * obj = 0 )
Основна употреба
Текст
Текст на QPushButton може да бъде зададен при създаването му или чрез setText(). За да достъпите текста, който е сложен в момента на бутона използвайте text().
Икона
Както текст, така и икона може да се зададе при създаване на QPushButton. След това иконата може да бъде сменете посредством setIcon(). За да достъпите иконата, която е сложена на бутон използвайте icon()
Настройване на позиция и икона
To set the position and the size of the button use setGeometry(). Ако желаете само да промените размера на бутона използвайте resize().
Управление на бутона
QPushButton излючва сигнали, ако се настъпи някакво събитие. За да управлявате бутона трябва да свържете подходящия сигнал към слот:
connect(m_pButton, SIGNAL (released()),this, SLOT (handleButton()));<code>
= Пример =
Следният прост примерен код показва как се създава и използва QPushButton. Тестван е на Qt Symbian Simulator.
Създава се инстанция на QPushButton. Сигналът '''released()''' се свързва със слота '''handleButton()''', който променя текста и размера на прозореца при първо натискате на бутона.
=== mainwindow.h ===
- ifndef MAINWINDOW_H
- define MAINWINDOW_H
- include <QMainWindow>
- include <QPushButton>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow {
Q_OBJECT
public:
explicit MainWindow(QWidget parent = 0);
virtual ~MainWindow();
private slots:
void handleButton();
private:
QPushButton m_pButton;
};
- endif // MAINWINDOW_H
=== mainwindow.cpp ===
- include "mainwindow.h"
- include <QCoreApplication>
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
{
//Create the button m_pButton = new QPushButton("My Button", this); //set size and location of the button m_pButton->setGeometry(QRect( QPoint(100, 100), QSize(200, 50) ));
//Connect button signal to appropriate slot
connect(m_pButton, SIGNAL (released()),this, SLOT (handleButton()));
}
void MainWindow::handleButton() {
//change the text m_pButton->setText("Example"); //resize button m_pButton->resize(100,100);
}
MainWindow::~MainWindow() {
}
=== main.cpp ===
- include "mainwindow.h"
- include <QApplication>
int main(int argc, char *argv[]) {
QApplication app(argc, argv);
MainWindow mainWindow;
mainWindow.showMaximized(); return app.exec();
}