日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > c/c++ >内容正文

c/c++

QT设置背景图片的三种方式

發布時間:2024/3/12 c/c++ 46 豆豆
生活随笔 收集整理的這篇文章主要介紹了 QT设置背景图片的三种方式 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
  • QPalette的方法
  • 基本步驟:

    (1). 首先設置QWidget的autoFillBackground屬性為真

    (2). 然后定義一個QPalette對象,設置QPalette對象的背景屬性(顏色或者圖片);

    (3). 最后設置QWidget對象的QPalette。

    QWidget *widget=new QWidget;widget->autoFillBackground(true);QPalette palette;palette.setColor(QPalette::Background,QColor(192,253,123)); //設置背景色//palette.setBrush(QPalette::Background,QBrush(QPixmap(":/background.png"))); //設置背景圖片widget->setPalette(palette);

    或者:

    #include <QApplication> #include <QtGui>int main(int argc, char *argv[]) {QApplication app(argc,argv);QFrame *frame = new QFrame;frame->resize(400,700);QPixmap pixmap(":/images/frame.png");//設定圖片QPalette palette;//創建一個調色板對象palette.setBrush(frame->backgroundRole(),QBrush(pixmap));//用調色板的畫筆把映射到pixmap上的圖片畫到 frame.backgroundRole()這個背景上//palette.setColor(frame->backgroundRole(),QColor(192,253,123));frame->setPalette(palette);//設置窗口調色板為palette,窗口和畫筆相關聯frame->setMask(pixmap.mask()); //可以將圖片中透明部分顯示為透明的frame->setAutoFillBackground(true);//設置窗體自動填充背景frame->show();return app.exec(); }

    存在問題:圖片可以顯示出來,但是圖片大小不能和frame大小一致,顯示效果不好,具體怎樣調整大小,以后再補充;

  • setStyleSheet方法(非常好用的方法)
  • #include <QApplication> #include <QtGui>int main(int argc, char *argv[]) {QApplication app(argc,argv);QFrame *frame = new QFrame;frame->setObjectName("myframe");frame->resize(400,700);frame->setStyleSheet("QFrame#myframe{border-image:url(images/frame.png)}" );frame->show();return app.exec(); }

    注意:frame->setObjectName(“myframe”);,設置ObjectName后,才能保證setStyleSheet 只作用在我們的frame上,不影響其子控件的背景設置。之所以用border-image而不用background-image,還是上面的問題,用 background-image不能保證圖片大小和控件大小一致,圖片不能完全顯示,這個以后再補充了,現在還沒有找到方法。

  • paintEvent事件方法
  • //myframe.h文件 #ifndef MYFRAME_H #define MYFRAME_H#include <QWidget> #include <QtGui>class MyFrame : public QWidget { public:MyFrame();void paintEvent(QPaintEvent *event); };#endif // MYFRAME_H//myframe.cpp文件 #include "myframe.h"MyFrame::MyFrame() { }void MyFrame::paintEvent(QPaintEvent *event) {QPainter painter(this);painter.drawPixmap(0,0,400,700,QPixmap("images/frame.png")); }//main.cpp文件 #include <QApplication> #include <QtGui>#include "myframe.h"int main(int argc, char *argv[]) {QApplication app(argc,argv);MyFrame *frame = new MyFrame;frame->resize(400,700);frame->show();return app.exec(); }

    與前面的差別就是這個背景圖片不隨著窗口的大小而變化,因為它的固定大小被設置成(400,700)了。重寫QWidget的paintEvent事件,當控件發生重繪事件,比如show()時,系統就會自動調用paintEvent函數。

    好了,上面是三種設置背景圖片的方法,下面我要說一個設置QPushButton的背景圖片的方法,用的是setIcon方法(其實QPushButton設置背景圖片也可以用前面三種方法的,不過現在這種Icon方法的看起來也不錯)

    #include <QApplication> #include <QtGui>int main(int argc, char *argv[]) {QApplication app(argc,argv);QFrame *frame = new QFrame;QPushButton * button0 = new QPushButton(frame);QPushButton * button1 = new QPushButton(frame);QPushButton * button2 = new QPushButton(frame);QPushButton * button3 = new QPushButton(frame);QPushButton * button4 = new QPushButton(frame);QPushButton * button5 = new QPushButton(frame);frame->setObjectName("myframe");frame->resize(400,700);frame->setStyleSheet("QFrame#myframe{border-image:url(images/frame.png)}" );button0->setGeometry(60,150,68,68);button1->setGeometry(160,150,68,68);button2->setGeometry(260,150,68,68);button3->setGeometry(60,280,68,68);button4->setGeometry(160,280,68,68);button5->setGeometry(260,280,68,68);QIcon icon;QPixmap pixmap0("images/SMS.png");icon.addPixmap(pixmap0);button0->setIcon(icon);button0->setIconSize(QSize(68,68));button0->setFixedSize(pixmap0.size());button0->setMask(pixmap0.mask());QPixmap pixmap1("images/EMail.png");icon.addPixmap(pixmap1);button1->setIcon(icon);button1->setIconSize(QSize(68,68));button1->setFixedSize(pixmap1.size());button1->setMask(pixmap1.mask());QPixmap pixmap2("images/Contacts.png");icon.addPixmap(pixmap2);button2->setIcon(icon);button2->setIconSize(QSize(68,68));button2->setFixedSize(pixmap2.size());button2->setMask(pixmap2.mask());QPixmap pixmap3("images/Calendar.png");icon.addPixmap(pixmap3);button3->setIcon(icon);button3->setIconSize(QSize(68,68));button3->setFixedSize(pixmap3.size());button3->setMask(pixmap3.mask());QPixmap pixmap4("images/GoogleVoice.png");icon.addPixmap(pixmap4);button4->setIcon(icon);button4->setIconSize(QSize(68,68));button4->setFixedSize(pixmap4.size());button4->setMask(pixmap4.mask());QPixmap pixmap5("images/AndroidMarket.png");icon.addPixmap(pixmap5);button5->setIcon(icon);button5->setIconSize(QSize(68,68));button5->setFixedSize(pixmap5.size());button5->setMask(pixmap5.mask());frame->show();return app.exec(); }

    補充:

    這樣就可以讓圖片跟窗口一樣大小了

    int main(int argc, char *argv[]) {QApplication app(argc,argv);QFrame *frame = new QFrame;frame->resize(400,700);QImage image1;image1.load("images/frame1.jpg");QImage image2 = image1.scaled(400,700);QPalette palette;palette.setBrush(frame->backgroundRole(),QBrush(image2));frame->setPalette(palette);frame->setMask(pixmap.mask()); //可以將圖片中透明部分顯示為透明的frame->setAutoFillBackground(true);frame->show();return app.exec(); }

    總結

    以上是生活随笔為你收集整理的QT设置背景图片的三种方式的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。