Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-10067

Q3DockWindow flickers when resizing on Windows [REG]

    XMLWordPrintable

Details

    • Bug
    • Resolution: Out of scope
    • P3: Somewhat important
    • None
    • 4.5.3, 4.6.2
    • None

    Description

      Q3DockWindow flickers when resizing on Windows. Qt 4.4.3 works, but both Qt 4.5 and 4.6 flickers.

      #include <QtGui>
      #include <Qt3Support>
      
      int main(int argc, char **argv)
      {
      	QApplication app(argc, argv);
      
      	Q3MainWindow main;
      	Q3DockWindow *m_simulationPanelDockWindow = new Q3DockWindow( Q3DockWindow::InDock, &main);	// create dock window 
      	QTextEdit *m_simulationPanel = new QTextEdit	(m_simulationPanelDockWindow);	// create sim panel, parent = doc window 
      	m_simulationPanelDockWindow->setWidget(m_simulationPanel); 
      	//m_simulationPanelDockWindow->setCaption("yadiyadi"); 
      	//m_simulationPanelDockWindow->setCloseMode(Q3DockWindow::Always); 
      	m_simulationPanelDockWindow->setResizeEnabled(true); 
      
      	main.addDockWindow(m_simulationPanelDockWindow, "Simulation Panel", Qt::DockRight); 
      	//main.moveDockWindow(m_simulationPanelDockWindow, Qt::DockRight); 
      
      	main.show();
      	return app.exec();
      
      

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            Unassigned Unassigned
            sanonymous Nokia Qt Support (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes