Qt: QT rounded corner window with anti-aliasing: irregular window

Source: Internet
Author: User

@ Import URL (http://www.cppblog.com/CuteSoft_Client/CuteEditor/Load.ashx? Type‑style&file=syntaxhighlighter.css); @ import URL (/CSS/cuteeditor.css );

It is not difficult to implement this function in QT: 1. Using Photoshop to make irregular window effects, or using the anti-sawtooth function to draw the background on the widget is a normal drawing. 2. Create a widget in the main window and set its

window->setWindowFlags(Qt::FramelessWindowHint);
Window-> setattribute (QT: wa_translucentbackground );
// ***** This is very important. *** 3. Move the mouse over the widget to move the window or change the size of the widget. cpp.

#include<QtGui/QPainter>

Widget::Widget(QWidget*parent): QWidget(parent), ui(newUi::Widget){
     ui->setupUi(this);
     pixmap.load("bg.png");
}
voidWidget::paintEvent(QPaintEvent*){
     QPainterpainter(this);
Painter. drawpixmap (, pixmap. Scaled (this-> size (), QT: ignoreaspectratio, QT: smoothtransformation); // draw an irregular background
}
Main. cpp implementation

intmain(intargc,char*argv[]){

     QApplicationa(argc,argv);

     QWidget*window=newQWidget();

     QGridLayout*layout=newQGridLayout();

     Widget*w=newWidget();
     layout->addWidget(w);
     window->setLayout(layout);
     window->setWindowFlags(Qt::FramelessWindowHint);
     window->setAttribute(Qt::WA_TranslucentBackground);
     window->show();
     returna.exec();
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.