(I'm using Qt 5, QtQuick 2, with Controls.)
I'm writing my first QML application and would like to maintain modularity and relatively small file lengths.
There are certain things that come in big batches that I would like to tuck away into helper files, but I'm not sure of the right way to do this.
The two examples I've run into so far have been FontLoader and Action.
In my particular situation, I'll be using 6 fonts in my whole application, so I would like to load them all early on, and not have to worry about it again. My question is, where should I put the FontLoaders?
One option is to just put them in main.qml somewhere, but that feels a bit cluttered to me. What I've done is created a file FontLoaders.qml, which contains:
Item {
width: 0; height: 0
FontLoader {
name: "myFont1"
source: "/fonts/myFont1.ttf"
}
FontLoader {
name: "myFont2"
source: "/fonts/myFont2.ttf"
}
// ...
}
Then, in main.qml somewhere, I just have a FontLoaders {}.
The other example I have is Action. I have a big batch of Actions that I'd like to be visible more-or-less application-wide. I have a AppMenuBar component, and this seems like a natural place to put the Actions, but that basically doubles the size of the QML file defining the menu bar, and logically speaking the two could be split out. (Many of the actions are accessible both through the menu bar and through other buttons in the application.)
The "solutions" I have basically work, but they feel sloppy to me (especially FontLoaders), and I'm wondering if there is some cleaner way to do this that I haven't figured out yet.