Qt编程—去掉标题栏和设置窗口透明用法

时间:2023-03-08 17:35:43
Qt编程—去掉标题栏和设置窗口透明用法

学习Qt编程,有时候我们很想做出好看又比较炫的画面,这时就常用到qt上的一些技巧。

这里我以一个小例子来展示qt的这些技巧,此qt编程写的,如图:(去掉标题栏和设置窗口透明后)

Qt编程—去掉标题栏和设置窗口透明用法

代码实现部分:

.h文件

  1. <span style="font-size:14px;">#ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3. #include <QMainWindow>
  4. #include<QLabel>
  5. #include <QMouseEvent>
  6. #include<QPalette>
  7. namespace Ui {
  8. class MainWindow;
  9. }
  10. class MainWindow : public QMainWindow
  11. {
  12. Q_OBJECT
  13. public:
  14. explicit MainWindow(QWidget *parent = 0);
  15. ~MainWindow();
  16. private:
  17. Ui::MainWindow *ui;
  18. private slots:
  19. void on_pushButton_Set_clicked();
  20. };
  21. #endif // MAINWINDOW_H
  22. </span>

mainwindow.cpp

  1. <span style="font-size:14px;">#include "mainwindow.h"
  2. #include "ui_mainwindow.h"
  3. MainWindow::MainWindow(QWidget *parent) :
  4. QMainWindow(parent),
  5. ui(new Ui::MainWindow)
  6. {
  7. ui->setupUi(this);
  8. this->setWindowTitle("QQ ");
  9. this->setWindowIcon(QIcon(":/images/po.jpg"));
  10. this->setWindowFlags(Qt::FramelessWindowHint);//去掉标题栏
  11. this->setGeometry(QRect(950, 55, 350, 250));//可设置窗口显示的方位与大小
  12. //this->setWindowOpacity(0.7);//设置透明1-全体透明
  13. this->setAttribute(Qt::WA_TranslucentBackground, true);//设置透明2-窗体标题栏不透明,背景透明
  14. this->resize(300,300);//显示大小
  15. }
  16. MainWindow::~MainWindow()
  17. {
  18. delete ui;
  19. }
  20. </span>

main.cpp文件


  1. <span style="font-size:14px;">#include <QtGui/QApplication>
  2. #include <QTextCodec>
  3. #include "mainwindow.h"
  4. int main(int argc, char *argv[])
  5. {
  6. QApplication a(argc, argv);
  7. QTextCodec::setCodecForCStrings(QTextCodec::codecForName("GB2312"));
  8. QTextCodec::setCodecForLocale(QTextCodec::codecForName("GB2312"));
  9. QTextCodec::setCodecForTr(QTextCodec::codecForName("GB2312"));
  10. MainWindow w;
  11. w.show();
  12. return a.exec();
  13. }
  14. </span>

本例中用到的透明是 : 窗体标题栏不透明,背景透明。

这里介绍几种设置透明效果的用法:
1.this->setWindowOpacity(0.7);//全体透明(指的是窗体,标题栏以及上面所有的控件都透明)里面的参数可以控制透明度。

2.窗口整体透明,但是窗体上的控件不透明。 通过设置窗体的背景色来实现,将背景色设置为全透:

代码如下:

  1. <span style="font-size:14px;"> pal = palette();
  2. pal.setColor(QPalette::background, QColor(0x00,0xff,0x00,0x00));
  3. setPalette(pal);</span>

3.窗体标题栏不透明,背景透明。(本例中用到的)
this->setAttribute(Qt::WA_TranslucentBackground,true);

4.窗口整体不透明,局部透明:在Paint事件中使用Clear模式绘图。

  1. <span style="font-size:14px;">void mainwindow::paintEvent( QPaintEvent* )
  2. { QPainter p(this);
  3. p.setCompositionMode( QPainter::CompositionMode_Clear );
  4. p.fillRect( 30, 30, 300, 300, Qt::SolidPattern );
  5. }
  6. </span>

绘制区域全透明,如果绘制区域有控件不会影响控件的透明。

5.这里说一下本程序中怎样去掉标题栏

this->setWindowFlags(Qt::FramelessWindowHint);//去掉标题栏

转载注明:http://blog.csdn.net/liuyang1990i/article/details/8227342

就写到这里了,亲,有收获吗?