Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. paintEvent removes QFrame border

paintEvent removes QFrame border

Scheduled Pinned Locked Moved Solved General and Desktop
2 Posts 2 Posters 716 Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • U Offline
    U Offline
    user4592357
    wrote on last edited by
    #1

    the title says it all. when i remove the paint event override, the frame box is displayed. please help understand

    here's the code:

    class Frame : public QFrame
    {
    	Q_OBJECT
    public:
    	Frame(QWidget *parent = nullptr);
    protected:
    	void paintEvent(QPaintEvent *event) override;
    	void mousePressEvent(QMouseEvent *event) override;
    };
    
    Frame::Frame(QWidget *parent /* = nullptr */)
    	: QFrame(parent)
    {
    	auto pTitleLabel = new QLabel("Frame", this);
    
            setFrameStyle(QFrame::StyledPanel);
    	setFixedSize(400, 600);
    }
    
    void Frame::paintEvent(QPaintEvent *event)
    {
    	QWidget::paintEvent(event);
    }
    
    void Frame::mousePressEvent(QMouseEvent *event)
    {
    	QWidget::mousePressEvent(event);
    }
    
    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #2

      Hi,

      Because you are calling QWidget's paint function rather than QFrame's paint function which is the base class of your widget.

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      2

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved