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. [SOLVED] How to shrink QMainWindow with a QLabel including an image?
QtWS25 Last Chance

[SOLVED] How to shrink QMainWindow with a QLabel including an image?

Scheduled Pinned Locked Moved General and Desktop
3 Posts 2 Posters 2.5k Views
  • 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.
  • R Offline
    R Offline
    RolBri
    wrote on last edited by RolBri
    #1

    Hi,
    I am using several QLabels for displaying videos in my MainWindow.
    Now I have a problem with re-sizing the window.
    I can easily use my mouse to make the MainWindow bigger while the program executes.
    All the videos are automatically resized using the code below.
    But if I try to make the window smaller it is not working.
    It looks like the QLabels cannot be resized to a smaller size.

    What can I do that the user is able to make the MainWindow bigger and also smaller?

    Thank you very much :-)

    void MainWindow::updateGuiVid1(QImage img)
    {
        if (!img.isNull())
        {
            ui->video1_lbl->setAlignment(Qt::AlignCenter);
            ui->video1_lbl->setPixmap(QPixmap::fromImage(img).scaled(ui->video1_lbl->size(),Qt::KeepAspectRatio,Qt::FastTransformation));
        }
    }
    
    1 Reply Last reply
    1
    • mrjjM Offline
      mrjjM Offline
      mrjj
      Lifetime Qt Champion
      wrote on last edited by
      #2

      hi
      have you tried with
      label->setMinimumSize(1, 1)

      1 Reply Last reply
      1
      • R Offline
        R Offline
        RolBri
        wrote on last edited by
        #3

        Sorry for the late reply, I was away for a while.

        Actually your suggestion works perfect :-)

        Thank you very much!

        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