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. How to resize frameless QWidget?

How to resize frameless QWidget?

Scheduled Pinned Locked Moved Unsolved General and Desktop
2 Posts 2 Posters 777 Views 1 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.
  • sonichyS Offline
    sonichyS Offline
    sonichy
    wrote on last edited by sonichy
    #1

    Only a QLabel in a frameless QWidget.
    When font turns from small into big, the widget can expand without resize.
    When font turns from big into small, the widget can not shrink with resize!

    widget->setWindowFlags(Qt::FramelessWindowHint);
    widget->ui->label->setFont(font);
    widget->ui->label->adjustSize();
    widget->resize(widget->ui->label->size());

    https://github.com/sonichy

    raven-worxR 1 Reply Last reply
    0
    • sonichyS sonichy

      Only a QLabel in a frameless QWidget.
      When font turns from small into big, the widget can expand without resize.
      When font turns from big into small, the widget can not shrink with resize!

      widget->setWindowFlags(Qt::FramelessWindowHint);
      widget->ui->label->setFont(font);
      widget->ui->label->adjustSize();
      widget->resize(widget->ui->label->size());
      raven-worxR Offline
      raven-worxR Offline
      raven-worx
      Moderators
      wrote on last edited by raven-worx
      #2

      @sonichy said in How to resize QWidget to fit QLabel?:

      widget->resize(widget->ui->label->size());

      i guess should be

      widget->resize(widget->ui->label->sizeHint());
      

      --- SUPPORT REQUESTS VIA CHAT WILL BE IGNORED ---
      If you have a question please use the forum so others can benefit from the solution in the future

      1 Reply Last reply
      0

      • Login

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