Help for developing a new widget
Unsolved
General and Desktop
-
Hi, I wanted to develop a note taking app similar to one note, where there is a infinite page and we can store text and multimedia in there, but I wanted to implement it qt can you please point me towards the right direction, because I am failing to develop the proper widget, thanks in advance
-
Hi and welcome to devnet,
QAbstractScrollArea might be a starting point if you want to go from scratch.
QTextEdit could also be an inspiration.
Take into account that "infinite" means also extensive use of memory so you should have something that unloads useless stuff when not shown as otherwise it's going to eat your system's resources.