Skip to content
  • 144k Topics
    722k Posts
    D
    Hey I've had a bit of time to start digging in to it a bit more. My slowdowns seems to come from here : inline void registerImage(const keyType&key, const QImage&img) { mImageCache[key] = img; }; inline void registerPixmap(const keyType&key, const keyType&imagePath) { mPixmapCache[key] = QPixmap(imagePath); }; inline void registerPixmap(const keyType&key, const QPixmap&img) { mPixmapCache[key] = img; }; inline void registerIcon(const keyType&key, const keyType&imagePath) { mIconCache[key] = QIcon(imagePath); }; inline void registerIcon(const keyType&key, const QIcon&img) { mIconCache[key] = img; }; /*! * Register input as all types of images & convert for each. * @param key * @param data */ inline void registerAll(const keyType&key, const keyType&data) { registerImage(key, data); registerPixmap(key, data); registerIcon(key, data); mRegisteredPaths[key] = data; } keyType = QString/char*/etc the path I'm providing here is from QRC compiled svg icons. I remember reading that qt was getting new SVG engine, and this is VERY slow now, my app startup went from instant to 20-30 seconds. I'm still drilling down what is exactly causing it, but do we have any reports of svg/pixmap/qimage issues? Appear to be this: https://qt-project.atlassian.net/browse/QTBUG-139060 seems like 6.10.1 does not have any fix yet... :-(
  • Jobs, project showcases, announcements - anything that isn't directly development
    4k 23k
    4k Topics
    23k Posts
    K
    @JKSH Thanks! So Canvas2D it might be then 🙂
  • Everything related to designing and design tools

    130 397
    130 Topics
    397 Posts
    I
    In QDS, SVGs usually look blurry when the path is being scaled instead of rendered at its native size. Make sure the SvgPathItem matches the original SVG viewBox and avoid scaling it down inside the component. If possible, import the SVG as a file and use an SVG Image element rather than pasted path data, and keep width/height proportional to the source. This prevents QDS from rasterizing it at a low resolution.
  • Everything related to the QA Tools

    93 251
    93 Topics
    251 Posts
    K
    Resolved, just had to start a test and using the menu toolbar open application objects view before running the test
  • Everything related to learning Qt.

    393 2k
    393 Topics
    2k Posts
    e-KHOOLE
    Hi everyone, We work on developing enterprise learning and training platforms, and recently we’ve been exploring Qt for building desktop or device-based applications that support safety training use cases. In industries like oil & gas—especially in regions such as the UAE—safety training systems often need to support offline access, structured learning modules, controlled user roles, and reliable performance across different environments. We’re interested in understanding from the community: Has anyone used Qt for building training, compliance, or safety-related applications? How well does Qt scale for enterprise-focused learning or content-driven platforms? Any best practices or architectural considerations when using Qt for regulated industry use cases? This is mainly an experience-sharing and learning discussion. Looking forward to hearing your insights. Thanks!
  • 2k Topics
    13k Posts
    Chris KawaC
    Sometimes, like when you are marooned on a desert island [in an announcer voice] Coming soon, to a desert island near you... :) Yeah, I guess cases where all you have is text search on a big code base are not that uncommon, like when browsing github repo or something like that, but specifically overrides... I don't think I ever had to look for overrides this way. Oh well, different people different use cases.
  • 4k Topics
    18k Posts
    B
    با توجه به اینکه بسیاری از سایت ها روی ایرانی ها بسته است آماده کردن محیط کیوتی برای برنامه نویسی آندروید اغلب نیمه کاره می ماند. من دستورالعملی لازم دارم که با استفاده از سایت های ایرانی بتوان اندروید را کیوتی نصب و کار را تکمیل نمود
  • This is where all the posts related to the Qt web services go. Including severe sillyness.
    1k 10k
    1k Topics
    10k Posts
    SGaistS
    Hi, This is a user forum. You should open a feature request on the bug report system.