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. Layout issues
Forum Updated to NodeBB v4.3 + New Features

Layout issues

Scheduled Pinned Locked Moved Solved General and Desktop
46 Posts 6 Posters 18.5k 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.
  • J.HilkJ J.Hilk

    @Cobra91151
    jep @ambershark is right,
    a QGridLayout where your buttons are imbedded should solve all the layout issues you have with them.

    QGridLayouts allow Layoutitems to span more than 1 row or column, therefore it's the best option here, as long as you want those 2 special buttons that are twice as wide as the others.

    At the moment you order them in 4 different QVBoxLayouts and 1 QHBoxLayout that combination that does not really support the multi column span mechanic you want.

    to add a widget to a QGridlayout you can do the following:

    QGridLayout* gLay = new QGridlayout();
    //add widget the default way at cell (0,0):
    gLay->addWidget(myWidget, 0,0);
    
    //add widget that spans 2 columns at (origin) cell (0,1):
    gLay->addWidget(myWidget,0,1,1,2)
    
    Cobra91151C Offline
    Cobra91151C Offline
    Cobra91151
    wrote on last edited by Cobra91151
    #28

    @J.Hilk

    I will try QGridLayout and reply.

    Update:
    I have set QGridLayout on buttons but it looks like this - Mega. Can someone write an example how to properly style widgets in Qt by code. Thanks in advance.

    A 1 Reply Last reply
    0
    • Cobra91151C Cobra91151

      @J.Hilk

      I will try QGridLayout and reply.

      Update:
      I have set QGridLayout on buttons but it looks like this - Mega. Can someone write an example how to properly style widgets in Qt by code. Thanks in advance.

      A Offline
      A Offline
      ambershark
      wrote on last edited by SGaist
      #29

      @Cobra91151 Here ya go.. This does the buttons with a grid exactly as you want them.. Scales up and down to a minimum just below 800. You could get them smaller if you wanted by changing font and reducing wording on your buttons.

      #include <QApplication>
      #include <QWidget>
      #include <QGridLayout>
      #include <QPushButton>
      
      int main(int ac, char **av)
      {
      	QApplication app(ac, av);
      
      	// create a main window
      	QWidget mw;
      	mw.resize(800, 600);
      	mw.show();
      
      	// create a layout with our buttons
      	auto grid = new QGridLayout;
      
      	grid->addWidget(new QPushButton("Registry"), 0, 0);
      	grid->addWidget(new QPushButton("File Explorer"), 0, 1);
      	grid->addWidget(new QPushButton("System Information"), 0, 2);
      	grid->addWidget(new QPushButton("DX Diagnostic Tool"), 0, 3);
      	grid->addWidget(new QPushButton("Windows Defender"), 0, 4);
      
      	grid->addWidget(new QPushButton("Recycle Bin"), 1, 0);
      	grid->addWidget(new QPushButton("Task Manager"), 1, 1);
      	grid->addWidget(new QPushButton("Computer Management"), 1, 2);
      	grid->addWidget(new QPushButton("Windows Firewall"), 1, 3);
      	grid->addWidget(new QPushButton("Command Prompt"), 1, 4);
      
      	grid->addWidget(new QPushButton("Device Manager"), 2, 0);
      	grid->addWidget(new QPushButton("Programs and Features"), 2, 1, 1, 2);
      	grid->addWidget(new QPushButton("Control Panel"), 2, 3);
      	grid->addWidget(new QPushButton("Devices and Printers"), 2, 4);
      
      	grid->addWidget(new QPushButton("Windows Update"), 3, 0);
      	grid->addWidget(new QPushButton("About Windows"), 3, 1);
      	grid->addWidget(new QPushButton("Date and Time"), 3, 2);
      	grid->addWidget(new QPushButton("Network and Sharing Center"), 3, 3, 1, 2);
      
      	grid->addWidget(new QPushButton("System Configuration"), 4, 0);
      	grid->addWidget(new QPushButton("Power Options"), 4, 1);
      
      	// create a vbox to hold our grid so we can add stretches to squish it to look proper
      	auto layout = new QVBoxLayout;
      	layout->addStretch(1);
      	layout->addLayout(grid);
      	layout->addStretch(1);
      
      	// set layout on our widget
      	mw.setLayout(layout);
      
      	return app.exec();
      }
      

      [edit: fixed small typo SGaist]

      My L-GPL'd C++ Logger github.com/ambershark-mike/sharklog

      Cobra91151C 1 Reply Last reply
      3
      • A ambershark

        @Cobra91151 Here ya go.. This does the buttons with a grid exactly as you want them.. Scales up and down to a minimum just below 800. You could get them smaller if you wanted by changing font and reducing wording on your buttons.

        #include <QApplication>
        #include <QWidget>
        #include <QGridLayout>
        #include <QPushButton>
        
        int main(int ac, char **av)
        {
        	QApplication app(ac, av);
        
        	// create a main window
        	QWidget mw;
        	mw.resize(800, 600);
        	mw.show();
        
        	// create a layout with our buttons
        	auto grid = new QGridLayout;
        
        	grid->addWidget(new QPushButton("Registry"), 0, 0);
        	grid->addWidget(new QPushButton("File Explorer"), 0, 1);
        	grid->addWidget(new QPushButton("System Information"), 0, 2);
        	grid->addWidget(new QPushButton("DX Diagnostic Tool"), 0, 3);
        	grid->addWidget(new QPushButton("Windows Defender"), 0, 4);
        
        	grid->addWidget(new QPushButton("Recycle Bin"), 1, 0);
        	grid->addWidget(new QPushButton("Task Manager"), 1, 1);
        	grid->addWidget(new QPushButton("Computer Management"), 1, 2);
        	grid->addWidget(new QPushButton("Windows Firewall"), 1, 3);
        	grid->addWidget(new QPushButton("Command Prompt"), 1, 4);
        
        	grid->addWidget(new QPushButton("Device Manager"), 2, 0);
        	grid->addWidget(new QPushButton("Programs and Features"), 2, 1, 1, 2);
        	grid->addWidget(new QPushButton("Control Panel"), 2, 3);
        	grid->addWidget(new QPushButton("Devices and Printers"), 2, 4);
        
        	grid->addWidget(new QPushButton("Windows Update"), 3, 0);
        	grid->addWidget(new QPushButton("About Windows"), 3, 1);
        	grid->addWidget(new QPushButton("Date and Time"), 3, 2);
        	grid->addWidget(new QPushButton("Network and Sharing Center"), 3, 3, 1, 2);
        
        	grid->addWidget(new QPushButton("System Configuration"), 4, 0);
        	grid->addWidget(new QPushButton("Power Options"), 4, 1);
        
        	// create a vbox to hold our grid so we can add stretches to squish it to look proper
        	auto layout = new QVBoxLayout;
        	layout->addStretch(1);
        	layout->addLayout(grid);
        	layout->addStretch(1);
        
        	// set layout on our widget
        	mw.setLayout(layout);
        
        	return app.exec();
        }
        

        [edit: fixed small typo SGaist]

        Cobra91151C Offline
        Cobra91151C Offline
        Cobra91151
        wrote on last edited by
        #30

        @ambershark

        Thanks for the example code. I have fixed buttons layout issue adding QSizePolicy testSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);. But the problem with adding layouts to different widgets still present and QGridLayout is not working well with it. For example:

        alt text

        I need to add some layout to display widgets like in the image above. What layout should I use?

        A 1 Reply Last reply
        0
        • Cobra91151C Cobra91151

          @ambershark

          Thanks for the example code. I have fixed buttons layout issue adding QSizePolicy testSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);. But the problem with adding layouts to different widgets still present and QGridLayout is not working well with it. For example:

          alt text

          I need to add some layout to display widgets like in the image above. What layout should I use?

          A Offline
          A Offline
          ambershark
          wrote on last edited by ambershark
          #31

          @Cobra91151 For that I would use 3 QVBoxLayouts with a QHBoxLayout container.

          It would go something like this:

          auto vb1 = new QVBoxLayout();
          vb1->addWidget(new QLabel("Change Language"));
          // ... add other widets
          vb1->addWidget(new QPushButton("Log"));
          vb1->addStretch(1);
          
          auto vb2 = new QVBoxLayout();
          vb2->addWidget(new QLabel("Application Configuration"));
          // .. add other widgets
          vb2->addWidget(new QCheckBox("Reset to default settings"));
          vb2->addStretch(1);
          
          auto vb3 = new QVBoxLayout();
          vb3->addWidget(new QLabel("System Tray"));
          // .. add other widgets
          vb3->addWidget(new QCheckBox("Show application window"));
          vb3->addStretch(1);
          
          auto layout = new QHBoxLayout();
          layout->addLayout(vb1);
          layout->addLayout(vb2);
          layout->addLayout(vb3);
          layout->addStretch(1);
          
          yourWidget->setLayout(layout);
          

          That was untested code I just typed for this post, so typos may be there, but you should get the idea. ;)

          My L-GPL'd C++ Logger github.com/ambershark-mike/sharklog

          Cobra91151C 1 Reply Last reply
          0
          • A ambershark

            @Cobra91151 For that I would use 3 QVBoxLayouts with a QHBoxLayout container.

            It would go something like this:

            auto vb1 = new QVBoxLayout();
            vb1->addWidget(new QLabel("Change Language"));
            // ... add other widets
            vb1->addWidget(new QPushButton("Log"));
            vb1->addStretch(1);
            
            auto vb2 = new QVBoxLayout();
            vb2->addWidget(new QLabel("Application Configuration"));
            // .. add other widgets
            vb2->addWidget(new QCheckBox("Reset to default settings"));
            vb2->addStretch(1);
            
            auto vb3 = new QVBoxLayout();
            vb3->addWidget(new QLabel("System Tray"));
            // .. add other widgets
            vb3->addWidget(new QCheckBox("Show application window"));
            vb3->addStretch(1);
            
            auto layout = new QHBoxLayout();
            layout->addLayout(vb1);
            layout->addLayout(vb2);
            layout->addLayout(vb3);
            layout->addStretch(1);
            
            yourWidget->setLayout(layout);
            

            That was untested code I just typed for this post, so typos may be there, but you should get the idea. ;)

            Cobra91151C Offline
            Cobra91151C Offline
            Cobra91151
            wrote on last edited by Cobra91151
            #32

            @ambershark

            Thanks for the code. I have some small issues:

            alt text

            Code:

             QVBoxLayout *vBoxLayout1 = new QVBoxLayout();
             vBoxLayout1->addWidget(changeLanguageLabel);
             vBoxLayout1->addWidget(changeLanguageComboBox);
             vBoxLayout1->addWidget(changeThemeLabel);
             vBoxLayout1->addWidget(changeThemeComboBox);
             vBoxLayout1->addWidget(networkConnectionLabel);
             vBoxLayout1->addWidget(networkStatusTitleLabel);
             vBoxLayout1->addWidget(networkStatusLabel, 1, Qt::AlignRight);
             vBoxLayout1->addWidget(networkIPTitleLabel);
             vBoxLayout1->addWidget(networkIPLabel, 1, Qt::AlignRight);
             vBoxLayout1->addWidget(checkConnectionButton);
             vBoxLayout1->addWidget(appLogLabel);
             vBoxLayout1->addWidget(applicationLogButton);
             vBoxLayout1->addStretch(1);
            
             QVBoxLayout *vBoxLayout2 = new QVBoxLayout();
             vBoxLayout2->addWidget(appConfigLabel);
             vBoxLayout2->addWidget(showOurSplashCheckBox);
             vBoxLayout2->addWidget(shareHardwareInfoCheckBox);
             vBoxLayout2->addWidget(runWhenWindowsStartsCheckBox);
             vBoxLayout2->addWidget(showAllwaysOnTopCheckBox);
             vBoxLayout2->addWidget(showAppFullInfoCheckBox);
             vBoxLayout2->addWidget(resetToDefaultsCheckBox);
             vBoxLayout2->addStretch(1);
            
             QVBoxLayout *vBoxLayout3 = new QVBoxLayout();
             vBoxLayout3->addWidget(appSystemTrayLabel);
             vBoxLayout3->addWidget(addToTrayCheckBox);
             vBoxLayout3->addWidget(closeToTrayCheckBox);
             vBoxLayout3->addWidget(minimizeToTrayCheckBox);
             vBoxLayout3->addWidget(notifyWhenInTrayCheckBox);
             vBoxLayout3->addWidget(showAppWindowWhenInTrayCheckBox);
             vBoxLayout3->addStretch(1);
            
             QHBoxLayout *appSettingsButtonLayout = new QHBoxLayout();
             appSettingsButtonLayout->setAlignment(Qt::AlignBottom | Qt::AlignRight);
             appSettingsButtonLayout->addStretch(1);
             appSettingsButtonLayout->addWidget(appSettingsApplyButton);
             appSettingsButtonLayout->addWidget(appSettingsExitButton);
            
             QHBoxLayout *appSettingsLayout = new QHBoxLayout();
             appSettingsLayout->addLayout(vBoxLayout1);
             appSettingsLayout->addLayout(vBoxLayout2);
             appSettingsLayout->addLayout(vBoxLayout3);
             appSettingsLayout->addStretch(0);
             appSettingsLayout->addLayout(appSettingsButtonLayout);
             appSettingsTab->setLayout(appSettingsLayout);
            

            Issues:

            • "Unknown" labels should be on the same line as "Status" and "Your IP" with some space
            • "Apply" and "Exit" buttons layout consume to much space on the right and make all layout aligned to the left

            What is your suggestions? Thanks in advance.

            jsulmJ A 2 Replies Last reply
            0
            • Cobra91151C Cobra91151

              @ambershark

              Thanks for the code. I have some small issues:

              alt text

              Code:

               QVBoxLayout *vBoxLayout1 = new QVBoxLayout();
               vBoxLayout1->addWidget(changeLanguageLabel);
               vBoxLayout1->addWidget(changeLanguageComboBox);
               vBoxLayout1->addWidget(changeThemeLabel);
               vBoxLayout1->addWidget(changeThemeComboBox);
               vBoxLayout1->addWidget(networkConnectionLabel);
               vBoxLayout1->addWidget(networkStatusTitleLabel);
               vBoxLayout1->addWidget(networkStatusLabel, 1, Qt::AlignRight);
               vBoxLayout1->addWidget(networkIPTitleLabel);
               vBoxLayout1->addWidget(networkIPLabel, 1, Qt::AlignRight);
               vBoxLayout1->addWidget(checkConnectionButton);
               vBoxLayout1->addWidget(appLogLabel);
               vBoxLayout1->addWidget(applicationLogButton);
               vBoxLayout1->addStretch(1);
              
               QVBoxLayout *vBoxLayout2 = new QVBoxLayout();
               vBoxLayout2->addWidget(appConfigLabel);
               vBoxLayout2->addWidget(showOurSplashCheckBox);
               vBoxLayout2->addWidget(shareHardwareInfoCheckBox);
               vBoxLayout2->addWidget(runWhenWindowsStartsCheckBox);
               vBoxLayout2->addWidget(showAllwaysOnTopCheckBox);
               vBoxLayout2->addWidget(showAppFullInfoCheckBox);
               vBoxLayout2->addWidget(resetToDefaultsCheckBox);
               vBoxLayout2->addStretch(1);
              
               QVBoxLayout *vBoxLayout3 = new QVBoxLayout();
               vBoxLayout3->addWidget(appSystemTrayLabel);
               vBoxLayout3->addWidget(addToTrayCheckBox);
               vBoxLayout3->addWidget(closeToTrayCheckBox);
               vBoxLayout3->addWidget(minimizeToTrayCheckBox);
               vBoxLayout3->addWidget(notifyWhenInTrayCheckBox);
               vBoxLayout3->addWidget(showAppWindowWhenInTrayCheckBox);
               vBoxLayout3->addStretch(1);
              
               QHBoxLayout *appSettingsButtonLayout = new QHBoxLayout();
               appSettingsButtonLayout->setAlignment(Qt::AlignBottom | Qt::AlignRight);
               appSettingsButtonLayout->addStretch(1);
               appSettingsButtonLayout->addWidget(appSettingsApplyButton);
               appSettingsButtonLayout->addWidget(appSettingsExitButton);
              
               QHBoxLayout *appSettingsLayout = new QHBoxLayout();
               appSettingsLayout->addLayout(vBoxLayout1);
               appSettingsLayout->addLayout(vBoxLayout2);
               appSettingsLayout->addLayout(vBoxLayout3);
               appSettingsLayout->addStretch(0);
               appSettingsLayout->addLayout(appSettingsButtonLayout);
               appSettingsTab->setLayout(appSettingsLayout);
              

              Issues:

              • "Unknown" labels should be on the same line as "Status" and "Your IP" with some space
              • "Apply" and "Exit" buttons layout consume to much space on the right and make all layout aligned to the left

              What is your suggestions? Thanks in advance.

              jsulmJ Offline
              jsulmJ Offline
              jsulm
              Lifetime Qt Champion
              wrote on last edited by
              #33

              @Cobra91151 Don't put the Apply and Exit buttons in the same layout. Instead put them into a HBoxLayout and put this HBoxLayout in a VBoxLayout together with appSettingsLayout.

              Put status and its label in their own HBoxLayout, same for IP and its label.

              https://forum.qt.io/topic/113070/qt-code-of-conduct

              1 Reply Last reply
              1
              • Cobra91151C Cobra91151

                @ambershark

                Thanks for the code. I have some small issues:

                alt text

                Code:

                 QVBoxLayout *vBoxLayout1 = new QVBoxLayout();
                 vBoxLayout1->addWidget(changeLanguageLabel);
                 vBoxLayout1->addWidget(changeLanguageComboBox);
                 vBoxLayout1->addWidget(changeThemeLabel);
                 vBoxLayout1->addWidget(changeThemeComboBox);
                 vBoxLayout1->addWidget(networkConnectionLabel);
                 vBoxLayout1->addWidget(networkStatusTitleLabel);
                 vBoxLayout1->addWidget(networkStatusLabel, 1, Qt::AlignRight);
                 vBoxLayout1->addWidget(networkIPTitleLabel);
                 vBoxLayout1->addWidget(networkIPLabel, 1, Qt::AlignRight);
                 vBoxLayout1->addWidget(checkConnectionButton);
                 vBoxLayout1->addWidget(appLogLabel);
                 vBoxLayout1->addWidget(applicationLogButton);
                 vBoxLayout1->addStretch(1);
                
                 QVBoxLayout *vBoxLayout2 = new QVBoxLayout();
                 vBoxLayout2->addWidget(appConfigLabel);
                 vBoxLayout2->addWidget(showOurSplashCheckBox);
                 vBoxLayout2->addWidget(shareHardwareInfoCheckBox);
                 vBoxLayout2->addWidget(runWhenWindowsStartsCheckBox);
                 vBoxLayout2->addWidget(showAllwaysOnTopCheckBox);
                 vBoxLayout2->addWidget(showAppFullInfoCheckBox);
                 vBoxLayout2->addWidget(resetToDefaultsCheckBox);
                 vBoxLayout2->addStretch(1);
                
                 QVBoxLayout *vBoxLayout3 = new QVBoxLayout();
                 vBoxLayout3->addWidget(appSystemTrayLabel);
                 vBoxLayout3->addWidget(addToTrayCheckBox);
                 vBoxLayout3->addWidget(closeToTrayCheckBox);
                 vBoxLayout3->addWidget(minimizeToTrayCheckBox);
                 vBoxLayout3->addWidget(notifyWhenInTrayCheckBox);
                 vBoxLayout3->addWidget(showAppWindowWhenInTrayCheckBox);
                 vBoxLayout3->addStretch(1);
                
                 QHBoxLayout *appSettingsButtonLayout = new QHBoxLayout();
                 appSettingsButtonLayout->setAlignment(Qt::AlignBottom | Qt::AlignRight);
                 appSettingsButtonLayout->addStretch(1);
                 appSettingsButtonLayout->addWidget(appSettingsApplyButton);
                 appSettingsButtonLayout->addWidget(appSettingsExitButton);
                
                 QHBoxLayout *appSettingsLayout = new QHBoxLayout();
                 appSettingsLayout->addLayout(vBoxLayout1);
                 appSettingsLayout->addLayout(vBoxLayout2);
                 appSettingsLayout->addLayout(vBoxLayout3);
                 appSettingsLayout->addStretch(0);
                 appSettingsLayout->addLayout(appSettingsButtonLayout);
                 appSettingsTab->setLayout(appSettingsLayout);
                

                Issues:

                • "Unknown" labels should be on the same line as "Status" and "Your IP" with some space
                • "Apply" and "Exit" buttons layout consume to much space on the right and make all layout aligned to the left

                What is your suggestions? Thanks in advance.

                A Offline
                A Offline
                ambershark
                wrote on last edited by ambershark
                #34

                @Cobra91151 @jsulm said exactly what I would have. A bit more of my thoughts on the labels though.. you can approach this in 2 ways. The HBoxLayout way that @jsulm mentioned, or you can use a single QLabel and set it with myLabel->setText(QString("Your IP: %1").arg(ip)));. Either way works fine, up to you on preferred style there.

                If you don't like the extra space on the right, I added that on purpose by adding the stretch to the end of the hboxlayout. You can remove that stretch and your controls will fill the entire window. I find it looks better with the stretch usually, but it's easy to test and see which you like more. Just comment out the layout->addStretch(1); line and see what you like more.

                Edit: nevermind I see you added your buttons to the rest of the layout. That is what jsulm meant with take them out of the "same layout".. Definitely do that and don't mess with the stretch. I didn't realize those were in there. Let me know if you need some help with the code for this and I'll show what jsulm means.

                My L-GPL'd C++ Logger github.com/ambershark-mike/sharklog

                Cobra91151C 1 Reply Last reply
                0
                • A ambershark

                  @Cobra91151 @jsulm said exactly what I would have. A bit more of my thoughts on the labels though.. you can approach this in 2 ways. The HBoxLayout way that @jsulm mentioned, or you can use a single QLabel and set it with myLabel->setText(QString("Your IP: %1").arg(ip)));. Either way works fine, up to you on preferred style there.

                  If you don't like the extra space on the right, I added that on purpose by adding the stretch to the end of the hboxlayout. You can remove that stretch and your controls will fill the entire window. I find it looks better with the stretch usually, but it's easy to test and see which you like more. Just comment out the layout->addStretch(1); line and see what you like more.

                  Edit: nevermind I see you added your buttons to the rest of the layout. That is what jsulm meant with take them out of the "same layout".. Definitely do that and don't mess with the stretch. I didn't realize those were in there. Let me know if you need some help with the code for this and I'll show what jsulm means.

                  Cobra91151C Offline
                  Cobra91151C Offline
                  Cobra91151
                  wrote on last edited by Cobra91151
                  #35

                  @ambershark

                  Code:

                  QVBoxLayout *vBoxLayout1 = new QVBoxLayout();
                   vBoxLayout1->setAlignment(Qt::AlignTop | Qt::AlignLeft);
                   vBoxLayout1->addWidget(changeLanguageLabel);
                   vBoxLayout1->addWidget(changeLanguageComboBox);
                   vBoxLayout1->addWidget(changeThemeLabel);
                   vBoxLayout1->addWidget(changeThemeComboBox);
                   vBoxLayout1->addWidget(networkConnectionLabel);
                   vBoxLayout1->addLayout(netStatusConnectionLayout);
                   vBoxLayout1->addLayout(netIPConnectionLayout);
                   vBoxLayout1->addWidget(checkConnectionButton);
                   vBoxLayout1->addWidget(appLogLabel);
                   vBoxLayout1->addWidget(applicationLogButton);
                  
                   QVBoxLayout *vBoxLayout2 = new QVBoxLayout();
                   vBoxLayout2->setAlignment(Qt::AlignTop | Qt::AlignCenter);
                   vBoxLayout2->addWidget(appConfigLabel);
                   vBoxLayout2->addWidget(showOurSplashCheckBox);
                   vBoxLayout2->addWidget(shareHardwareInfoCheckBox);
                   vBoxLayout2->addWidget(runWhenWindowsStartsCheckBox);
                   vBoxLayout2->addWidget(showAllwaysOnTopCheckBox);
                   vBoxLayout2->addWidget(showAppFullInfoCheckBox);
                   vBoxLayout2->addWidget(resetToDefaultsCheckBox);
                  
                   QVBoxLayout *vBoxLayout3 = new QVBoxLayout();
                   vBoxLayout3->setAlignment(Qt::AlignTop | Qt::AlignRight);
                   vBoxLayout3->addWidget(appSystemTrayLabel);
                   vBoxLayout3->addWidget(addToTrayCheckBox);
                   vBoxLayout3->addWidget(closeToTrayCheckBox);
                   vBoxLayout3->addWidget(minimizeToTrayCheckBox);
                   vBoxLayout3->addWidget(notifyWhenInTrayCheckBox);
                   vBoxLayout3->addWidget(showAppWindowWhenInTrayCheckBox);
                  
                   QHBoxLayout *appSettingsButtonLayout = new QHBoxLayout();
                   appSettingsButtonLayout->setAlignment(Qt::AlignBottom | Qt::AlignRight);
                   appSettingsButtonLayout->addStretch(1);
                   appSettingsButtonLayout->addWidget(appSettingsApplyButton);
                   appSettingsButtonLayout->addWidget(appSettingsExitButton);
                  
                   QHBoxLayout *appSettingsLayout = new QHBoxLayout();
                   appSettingsLayout->addLayout(vBoxLayout1);
                   appSettingsLayout->addStretch(5);
                   appSettingsLayout->addLayout(vBoxLayout2);
                   appSettingsLayout->addStretch(5);
                   appSettingsLayout->addLayout(vBoxLayout3);
                   appSettingsLayout->addLayout(appSettingsButtonLayout);
                   appSettingsTab->setLayout(appSettingsLayout);
                  

                  Now it looks:

                  I have set setAligment functions and expand setMinimumSize(1350, 670); minimum size of the main window and now it looks normal on Window 10 (1920x1080).

                  The problem is that the space on the right cut some QCheckBox text on small screen resolutions.

                  Win XP (1024x768):

                  alt text

                  Also the space still exists even I have deleted all stretch functions from QVBoxLayout layouts. I add addStretch(5); to add more space between columns in QHBoxLayout *appSettingsLayout. I think the right space is because of QHBoxLayout in which I placed my two buttons ("Apply" and "Exit") - appSettingsButtonLayout. How to change this layout size?

                  J.HilkJ 1 Reply Last reply
                  0
                  • Cobra91151C Cobra91151

                    @ambershark

                    Code:

                    QVBoxLayout *vBoxLayout1 = new QVBoxLayout();
                     vBoxLayout1->setAlignment(Qt::AlignTop | Qt::AlignLeft);
                     vBoxLayout1->addWidget(changeLanguageLabel);
                     vBoxLayout1->addWidget(changeLanguageComboBox);
                     vBoxLayout1->addWidget(changeThemeLabel);
                     vBoxLayout1->addWidget(changeThemeComboBox);
                     vBoxLayout1->addWidget(networkConnectionLabel);
                     vBoxLayout1->addLayout(netStatusConnectionLayout);
                     vBoxLayout1->addLayout(netIPConnectionLayout);
                     vBoxLayout1->addWidget(checkConnectionButton);
                     vBoxLayout1->addWidget(appLogLabel);
                     vBoxLayout1->addWidget(applicationLogButton);
                    
                     QVBoxLayout *vBoxLayout2 = new QVBoxLayout();
                     vBoxLayout2->setAlignment(Qt::AlignTop | Qt::AlignCenter);
                     vBoxLayout2->addWidget(appConfigLabel);
                     vBoxLayout2->addWidget(showOurSplashCheckBox);
                     vBoxLayout2->addWidget(shareHardwareInfoCheckBox);
                     vBoxLayout2->addWidget(runWhenWindowsStartsCheckBox);
                     vBoxLayout2->addWidget(showAllwaysOnTopCheckBox);
                     vBoxLayout2->addWidget(showAppFullInfoCheckBox);
                     vBoxLayout2->addWidget(resetToDefaultsCheckBox);
                    
                     QVBoxLayout *vBoxLayout3 = new QVBoxLayout();
                     vBoxLayout3->setAlignment(Qt::AlignTop | Qt::AlignRight);
                     vBoxLayout3->addWidget(appSystemTrayLabel);
                     vBoxLayout3->addWidget(addToTrayCheckBox);
                     vBoxLayout3->addWidget(closeToTrayCheckBox);
                     vBoxLayout3->addWidget(minimizeToTrayCheckBox);
                     vBoxLayout3->addWidget(notifyWhenInTrayCheckBox);
                     vBoxLayout3->addWidget(showAppWindowWhenInTrayCheckBox);
                    
                     QHBoxLayout *appSettingsButtonLayout = new QHBoxLayout();
                     appSettingsButtonLayout->setAlignment(Qt::AlignBottom | Qt::AlignRight);
                     appSettingsButtonLayout->addStretch(1);
                     appSettingsButtonLayout->addWidget(appSettingsApplyButton);
                     appSettingsButtonLayout->addWidget(appSettingsExitButton);
                    
                     QHBoxLayout *appSettingsLayout = new QHBoxLayout();
                     appSettingsLayout->addLayout(vBoxLayout1);
                     appSettingsLayout->addStretch(5);
                     appSettingsLayout->addLayout(vBoxLayout2);
                     appSettingsLayout->addStretch(5);
                     appSettingsLayout->addLayout(vBoxLayout3);
                     appSettingsLayout->addLayout(appSettingsButtonLayout);
                     appSettingsTab->setLayout(appSettingsLayout);
                    

                    Now it looks:

                    I have set setAligment functions and expand setMinimumSize(1350, 670); minimum size of the main window and now it looks normal on Window 10 (1920x1080).

                    The problem is that the space on the right cut some QCheckBox text on small screen resolutions.

                    Win XP (1024x768):

                    alt text

                    Also the space still exists even I have deleted all stretch functions from QVBoxLayout layouts. I add addStretch(5); to add more space between columns in QHBoxLayout *appSettingsLayout. I think the right space is because of QHBoxLayout in which I placed my two buttons ("Apply" and "Exit") - appSettingsButtonLayout. How to change this layout size?

                    J.HilkJ Offline
                    J.HilkJ Offline
                    J.Hilk
                    Moderators
                    wrote on last edited by
                    #36

                    @Cobra91151 you're right, its becaus eof the buttons

                    To continue with your current solution:

                    Pack all "Top VBoxLayouts" into a HBoxlayout and add that layout with the appSettingsButtonLayout to a VBoxLayout.


                    Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


                    Q: What's that?
                    A: It's blue light.
                    Q: What does it do?
                    A: It turns blue.

                    Cobra91151C 1 Reply Last reply
                    1
                    • J.HilkJ J.Hilk

                      @Cobra91151 you're right, its becaus eof the buttons

                      To continue with your current solution:

                      Pack all "Top VBoxLayouts" into a HBoxlayout and add that layout with the appSettingsButtonLayout to a VBoxLayout.

                      Cobra91151C Offline
                      Cobra91151C Offline
                      Cobra91151
                      wrote on last edited by Cobra91151
                      #37

                      @J.Hilk

                      Thank you very much. One more bug:

                      alt text

                      These issues is also when changing languages.

                      Current font:
                      I use default font - MS Shell Dlg 2 with setPixelSize(15);

                      Maybe I need to set another font? What font is suitable for windows app development?

                      jsulmJ 1 Reply Last reply
                      0
                      • Cobra91151C Cobra91151

                        @J.Hilk

                        Thank you very much. One more bug:

                        alt text

                        These issues is also when changing languages.

                        Current font:
                        I use default font - MS Shell Dlg 2 with setPixelSize(15);

                        Maybe I need to set another font? What font is suitable for windows app development?

                        jsulmJ Offline
                        jsulmJ Offline
                        jsulm
                        Lifetime Qt Champion
                        wrote on last edited by
                        #38

                        @Cobra91151 I would say this isn't a bug - there is just not enough space for this long check box text. You should use two columns instead of three.

                        https://forum.qt.io/topic/113070/qt-code-of-conduct

                        Cobra91151C 1 Reply Last reply
                        0
                        • jsulmJ jsulm

                          @Cobra91151 I would say this isn't a bug - there is just not enough space for this long check box text. You should use two columns instead of three.

                          Cobra91151C Offline
                          Cobra91151C Offline
                          Cobra91151
                          wrote on last edited by Cobra91151
                          #39

                          @jsulm

                          This is not an option. I need three columns.

                          jsulmJ J.HilkJ 2 Replies Last reply
                          0
                          • Cobra91151C Cobra91151

                            @jsulm

                            This is not an option. I need three columns.

                            jsulmJ Offline
                            jsulmJ Offline
                            jsulm
                            Lifetime Qt Champion
                            wrote on last edited by
                            #40

                            @Cobra91151 Then you need more space, or smaller font, or shorter text...

                            https://forum.qt.io/topic/113070/qt-code-of-conduct

                            Cobra91151C 1 Reply Last reply
                            0
                            • jsulmJ jsulm

                              @Cobra91151 Then you need more space, or smaller font, or shorter text...

                              Cobra91151C Offline
                              Cobra91151C Offline
                              Cobra91151
                              wrote on last edited by
                              #41

                              @jsulm

                              Ok. So what font family do you suggest to be suitable for windows app development?

                              A jsulmJ 2 Replies Last reply
                              0
                              • Cobra91151C Cobra91151

                                @jsulm

                                Ok. So what font family do you suggest to be suitable for windows app development?

                                A Offline
                                A Offline
                                ambershark
                                wrote on last edited by ambershark
                                #42

                                @Cobra91151 Instead of lowering your font, why don't use just use your space better?

                                You can use 1 column for instance with separators or group boxes to denote different sections. You could use 2 columns.

                                One of the easiest changes that would solve your problems is getting rid of the listbox on the left and making those tabs on the top. Same effect, literally saves 25% of your horizontal space.

                                Also I noticed you are using addStretch now in places where I think you meant to use addSpacing. Stretch are growable blocks with a minimum size of the number you pass in. So 1 is usually plenty for a stretch, even 0 is fine (the default). If you want controllable spacing you want to use addSpacing().

                                My L-GPL'd C++ Logger github.com/ambershark-mike/sharklog

                                1 Reply Last reply
                                1
                                • Cobra91151C Cobra91151

                                  @jsulm

                                  Ok. So what font family do you suggest to be suitable for windows app development?

                                  jsulmJ Offline
                                  jsulmJ Offline
                                  jsulm
                                  Lifetime Qt Champion
                                  wrote on last edited by
                                  #43

                                  @Cobra91151 I will not suggest any fonts. You should use the default. You should really consider to change your layout instead of hacking around with fonts until it somehow fits.

                                  https://forum.qt.io/topic/113070/qt-code-of-conduct

                                  1 Reply Last reply
                                  1
                                  • Cobra91151C Cobra91151

                                    @jsulm

                                    This is not an option. I need three columns.

                                    J.HilkJ Offline
                                    J.HilkJ Offline
                                    J.Hilk
                                    Moderators
                                    wrote on last edited by
                                    #44

                                    @Cobra91151

                                    Personally, when I'm in a situation like you are, I go with a clipped Text and an info tooltip.

                                    Here an example for a QLabel:

                                    void setTextToLabel(QLabel *label, const QString text)
                                        {
                                            QFontMetrics metrix(label->font());
                                            int width = label->width() - 2;
                                            QString clippedText = metrix.elidedText(text, Qt::ElideRight, width);
                                            label->setText(clippedText);
                                    
                                           if(text == clippedText)
                                              label->setToolTip("");
                                           else
                                              label->setToolTip(text);
                                        }
                                    

                                    Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


                                    Q: What's that?
                                    A: It's blue light.
                                    Q: What does it do?
                                    A: It turns blue.

                                    Cobra91151C 2 Replies Last reply
                                    0
                                    • J.HilkJ J.Hilk

                                      @Cobra91151

                                      Personally, when I'm in a situation like you are, I go with a clipped Text and an info tooltip.

                                      Here an example for a QLabel:

                                      void setTextToLabel(QLabel *label, const QString text)
                                          {
                                              QFontMetrics metrix(label->font());
                                              int width = label->width() - 2;
                                              QString clippedText = metrix.elidedText(text, Qt::ElideRight, width);
                                              label->setText(clippedText);
                                      
                                             if(text == clippedText)
                                                label->setToolTip("");
                                             else
                                                label->setToolTip(text);
                                          }
                                      
                                      Cobra91151C Offline
                                      Cobra91151C Offline
                                      Cobra91151
                                      wrote on last edited by
                                      #45

                                      @J.Hilk

                                      Thanks for the suggestion. I will try it and reply.

                                      1 Reply Last reply
                                      0
                                      • J.HilkJ J.Hilk

                                        @Cobra91151

                                        Personally, when I'm in a situation like you are, I go with a clipped Text and an info tooltip.

                                        Here an example for a QLabel:

                                        void setTextToLabel(QLabel *label, const QString text)
                                            {
                                                QFontMetrics metrix(label->font());
                                                int width = label->width() - 2;
                                                QString clippedText = metrix.elidedText(text, Qt::ElideRight, width);
                                                label->setText(clippedText);
                                        
                                               if(text == clippedText)
                                                  label->setToolTip("");
                                               else
                                                  label->setToolTip(text);
                                            }
                                        
                                        Cobra91151C Offline
                                        Cobra91151C Offline
                                        Cobra91151
                                        wrote on last edited by
                                        #46

                                        @J.Hilk

                                        Thanks. I have modified your function to get not only QLabel but all QWidgets . I post it here so others can find a solution.

                                        Code:

                                        QString clipWidgetText(QWidget *widget, const QString widgetText, int subtractPixelSize)
                                        {
                                            QFontMetrics fontMetrics(widget->font());
                                            int widgetWidth = widget->width() - subtractPixelSize;
                                            QString clippedText = fontMetrics.elidedText(widgetText, Qt::ElideRight, widgetWidth);
                                            return clippedText;
                                        }
                                        

                                        Usage:

                                        QCheckBox *checkBox1 = new QCheckBox("Some long text", this)
                                        checkBox1->setText(clipWidgetText(checkBox1, checkBox1->text(), 5);
                                        

                                        Thanks to all. I have fixed all layout issues.

                                        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