Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. mdiarea
    Log in to post
    • All categories
    • Y

      Unsolved Issue with setHorizontalScrollBarPolicy in MDI area.
      General and Desktop • mdiarea qt5.6 c++ qt scrollarea scrollbar • • Yash001

      13
      0
      Votes
      13
      Posts
      3256
      Views

      Y

      @mrjj Thakn you.

    • N

      Unsolved Window scroll issue for continuous data
      General and Desktop • qt 5.4.1 mdiarea scroll bar • • Narthan

      5
      0
      Votes
      5
      Posts
      1587
      Views

      N

      @Chris-Kawa Hi..
      Ok, we have one model , we are continuously appending data, on that time scroll will be always at bottom, even if we scroll to top , it will come back to bottom, until wee stop appending.
      void CustomeTableView::createTabel(QString thText)
      {
      if(modelList.count()<=25000)
      {

      modelList.append(thText); numRows = modelList.count(); for (int row = 0; row < numRows; row++) { for (int column = 0; column < numColumns; column++) { QStandardItem *item = new QStandardItem(modelList[row]); fsModel->setItem(row, column, item); } } }

      }

    • hzdev

      Unsolved Widgets /WidgetBar above of MenuBar
      General and Desktop • qmainwindow menubar mdiarea indicator • • hzdev

      5
      0
      Votes
      5
      Posts
      2212
      Views

      SGaist

      That's not how it works and not something I would expect either.

      The mdi sub-windows will only extend in the mdi area, nothing more.

      The behavior you are looking for, you'll have to implement yourself.

    • F

      Unsolved resize mdiArea with Mainwindow
      General and Desktop • resize mdiarea main window widget • • freevrs

      24
      0
      Votes
      24
      Posts
      9314
      Views

      SGaist

      MainWindow can be a QMainWindow or a QWidget depending on what parameter you choose