Results 1 to 10 of 10

Thread: Resize application for different resolutions

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,368
    Thanks
    3
    Thanked 5,017 Times in 4,793 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: Resize application for different resolutions

    In that case attach the code you use to create the user interface.

  2. #2
    Join Date
    Feb 2007
    Posts
    39
    Thanks
    13
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: Resize application for different resolutions

    Here's how i initialize my application

    Qt Code:
    1. Mainwindow = new QWidget;
    2. setCentralWidget( Mainwindow );
    3. Mainwindow->showMaximized();
    4.  
    5. Top_GroupBox = new QGroupBox( tr( "Group 1" ) );
    6. QGridLayout *MyLayout1 = new QGridLayout;
    7.  
    8. .......
    9. MyLayout1->addWidget( Label1, 1, 0, Qt::AlignRight );
    10. MyLayout1->addWidget( LineEdit1, 1, 1, Qt::AlignLeft );
    11. .......
    12. Top_GroupBox->setLayout( MyLayout1 );
    13.  
    14. // create 2 more Qgridlayouts here
    15. .....
    16. // add all 3 Qgridlayouts to the mainwindow
    17. .....
    To copy to clipboard, switch view to plain text mode 

  3. #3
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,368
    Thanks
    3
    Thanked 5,017 Times in 4,793 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: Resize application for different resolutions

    It'd be nice if you also provided the contents of the layouts and the call to setLayout on Mainwindow.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.