How to Use QPushButton/zh: Difference between revisions
Jump to navigation
Jump to search
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_Bulgarian|Български]] [[How_to_Use_QPushButton_Spanish|Spanish]] | |||
[[How_to_Use_QPushButton_Russian|Русский]] | |||
= 怎样使用QPushButton? = | |||
== | == QPushButton概览 == | ||
===继承自QAbstractButton的=== | 开发人员可以使用 [http://doc.qt.io/qt-5.0/qtwidgets/qpushbutton.html QPushButton] 来创建和操控按钮。这个类易于使用和被定制,所以它是Qt中最有用的类之一。一般来说,按钮只显示位于其上的文字,不过它也可以同时显示一个图标。 | ||
QPushButton继承自 [http://doc.qt.io/qt-5.0/qtwidgets/qabstractbutton.html QAbstractButton] ,后者继承自 [http://doc.qt.io/qt-5.0/qtwidgets/qwidget.html QWidget] 。 | |||
== 信号 == | |||
=== 继承自QAbstractButton的 === | |||
* void clicked ( bool checked = false ) | * void clicked ( bool checked = false ) | ||
Line 18: | Line 27: | ||
* void toggled ( bool checked ) | * void toggled ( bool checked ) | ||
===继承自QWidget的=== | === 继承自QWidget的 === | ||
* void customContextMenuRequested ( const QPoint & | * void customContextMenuRequested ( const QPoint & pos ) | ||
===继承自QObject的=== | === 继承自QObject的 === | ||
* void destroyed ( QObject * obj = 0 ) | * void destroyed ( QObject * obj = 0 ) | ||
==基本用法== | == 基本用法 == | ||
===文本=== | === 文本 === | ||
QPushButton的文本可以在按钮被创建时设置,也可以在之后使用 [http://doc.qt.io/qt-5.0/qtwidgets/qabstractbutton.html#text-prop setText()] | 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的图标可以在按钮被创建时设置,也可以在之后使用 [http://doc.qt.io/qt-5.0/qtwidgets/qabstractbutton.html#icon-prop setIcon()] | 同样的,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()] 方法来获得按钮当前的图标。 | ||
===位置和大小的设置=== | === 位置和大小的设置 === | ||
使用 [http://doc.qt.io/qt-5.0/qtwidgets/qwidget.html#geometry-prop setGeometry()] | 使用 [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()] 方法来设置。 | ||
===按钮的操控=== | === 按钮的操控 === | ||
当有事件发生时,QPushButton会发出信号。要操控按钮,把确切的信号和一个信号相连接: | 当有事件发生时,QPushButton会发出信号。要操控按钮,把确切的信号和一个信号相连接: | ||
==示例== | <code> connect(m_button, SIGNAL (released()),this, SLOT (handleButton())); <code> | ||
== 示例 == | |||
下面这个简单的代码片段演示了怎样创建和使用QPushButton。它已经在Qt Symbian Simulator上通过了测试。 | 下面这个简单的代码片段演示了怎样创建和使用QPushButton。它已经在Qt Symbian Simulator上通过了测试。 | ||
Line 50: | Line 61: | ||
你会看到,一个QPushButton的实例被创建出来。信号 '''released()''' 和槽 '''handleButton()''' 连接在一起,它们用于改变按钮的文本和大小。 | 你会看到,一个QPushButton的实例被创建出来。信号 '''released()''' 和槽 '''handleButton()''' 连接在一起,它们用于改变按钮的文本和大小。 | ||
===mainwindow.h=== | === mainwindow.h === | ||
</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_button; | |||
}; | |||
#endif // MAINWINDOW_H | |||
<code> | |||
=== mainwindow.cpp === | |||
</code> | |||
#include "mainwindow.h" | |||
#include <QCoreApplication> | |||
MainWindow::MainWindow(QWidget *parent) | |||
: QMainWindow(parent) | |||
{ | |||
// 创建按钮 | |||
m_button = new QPushButton("My Button", this); | |||
// 设置按钮的大小和位置 | |||
m_button->setGeometry(QRect(QPoint(100, 100), | |||
QSize(200, 50))); | |||
// 把按钮发出的信号连接到确切的槽 | |||
connect(m_button, SIGNAL (released()), this, SLOT (handleButton())); | |||
} | |||
void MainWindow::handleButton() | |||
{ | |||
// 改变按钮的文本 | |||
m_button->setText("Example"); | |||
// 改变按钮的大小 | |||
m_button->resize(100,100); | |||
} | |||
MainWindow::~MainWindow() | |||
{ | |||
} | |||
<code> | |||
=== main.cpp === | |||
</code> | |||
#include "mainwindow.h" | |||
#include <QApplication> | |||
int main(int argc, char *argv[]) | |||
{ | |||
QApplication app(argc, argv); | |||
MainWindow mainWindow; | |||
mainWindow.showMaximized(); | |||
return app.exec(); | |||
} | |||
<code> | |||
== 参见 == | |||
[http://developer.qt.nokia.com/wiki/Qt_Buttons Qt Buttons] | |||
[http:// | [http://developer.qt.nokia.com/wiki/Basic_Qt_Programming_Tutorial Basic Qt Programming Tutorial] | ||
=== | ==== 欢迎讨论: ==== | ||
[http://blog.csdn.net/qter_wd007 Qt 博客-wd007的专栏] | |||
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概览
开发人员可以使用 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() 方法来获得按钮当前的图标。
位置和大小的设置
使用 setGeometry() 方法来设置按钮的位置和大小。如果只是想修改按钮的大小,使用 resize() 方法来设置。
按钮的操控
当有事件发生时,QPushButton会发出信号。要操控按钮,把确切的信号和一个信号相连接:
connect(m_button, 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_button;
};
- endif // MAINWINDOW_H
=== mainwindow.cpp ===
- include "mainwindow.h"
- include <QCoreApplication>
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
{
// 创建按钮 m_button = new QPushButton("My Button", this);
// 设置按钮的大小和位置
m_button->setGeometry(QRect(QPoint(100, 100), QSize(200, 50)));
// 把按钮发出的信号连接到确切的槽
connect(m_button, SIGNAL (released()), this, SLOT (handleButton()));
}
void MainWindow::handleButton() {
// 改变按钮的文本 m_button->setText("Example");
// 改变按钮的大小
m_button->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();
}
参见
欢迎讨论: