QtitanDataGridModel-view DataGrid component with rich functionality for Qt.C++ and PySideQtitanRibbonReplicates Microsoft RibbonUI interface for Qt.C++ and PySideQtitanNavigationDesignUIReplicates Microsoft Navigation Design interface for Qt.C++ and PySideQtitanChartCharts and Diagrams component for Qt.C++ and PySideQtitanDockingDockable Panels and Tool Bars for Qt.C++ and PySideQtitanFastInfosetXML Compressed format FastInfoset implementation for Qt.C++ and PySideRoadmap Development 2023
FireDataGridPowerful, modern, fast, DB-Aware Grid for Delphi-FiremonkeyFireDockingDelphi IDE/Visual Studio implementation of dock panels for Delphi-Firemonkey
I have tested the popupwindows today and some question appeared..
1.) is it possible to disable the autoclose? or set displaytime to infinte?
2.) every popup appears above the other... if I have to much popups it isn't shown anymore (see attached screen)
3.) if I have many popups one above the other the first popup will disappear first.. but the others will stay on their location... it would be nice if the popupwindows slide downwards --> so that the popup window is always on the lower right corner
one more problem.. I can't click on the close button
code to reproduce:
OfficePopupWindow* aPopup = new OfficePopupWindow(this);//this - ptr to main wnd
aPopup->setBodyText( "Ooops! Surprise! Try to <b>close me via close button</b>..." );
aPopup->setDisplayTime(2000000);
aPopup->setDragDropEnabled(true);
aPopup->setTitleCloseButtonVisible(true);
aPopup->setAnimation(Qtitan::PopupAnimationFade);
aPopup->setAnimationSpeed(250);
aPopup->setTransparency(1.0);
aPopup->setAttribute(Qt::WA_DeleteOnClose);
aPopup->showPopup();
attached a screenshot which shows how the popup should look
1) We have added the ability to specify an unlimited time for display. To do this you have to pass -1 parameter to setDisplayTime().
2) Currently this is planned behavior. We will think about how to improve.
3) Your suggestion has registered and will be considered.
4) About close button. This is bug in component. It will be fixed in the next update.