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. Resizing MDI subwindow?
Forum Updated to NodeBB v4.3 + New Features

Resizing MDI subwindow?

Scheduled Pinned Locked Moved General and Desktop
2 Posts 2 Posters 3.6k 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.
  • W Offline
    W Offline
    wecing
    wrote on last edited by
    #1

    Hi guys.

    Here is my code:
    @gameWindow = new GameWindow();
    mainWindow->mdiArea->addSubWindow(gameWindow);
    gameWindow->show();
    gameWindow->openVideoFile(projectPath->absoluteFilePath(map->videoName);.toUtf8().data());
    gameWindow->resize(gameWindow->videoWidth, gameWindow->videoHeight);@

    It worked, but size of the subwindow is incorrect. It's very small. But I can resize it manually.

    UPDATE: For my problem, this works well, but I don't know why:
    @gameWindow->parentWidget()->resize(gameWindow->videoWidth, gameWindow->videoHeight);@

    1 Reply Last reply
    0
    • G Offline
      G Offline
      goetz
      wrote on last edited by
      #2

      mdiArea->addSubWindow returns a QMdiSubwindow instance, so that's why you need to call resize on the parent (which is the sub window itself). You can keep the returned pointer and call resize on it directly.

      http://www.catb.org/~esr/faqs/smart-questions.html

      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