Tagged Questions
The kdelibs tag has no wiki summary.
2
votes
5answers
3k views
How to remove QWidgets from QSplitter
In my app have a window splitted by a QSplitter, and I need to remove an widget.
How can I do that? I can't find useful methods
1
vote
2answers
1k views
QVariant and qRegisterMetaType question
I have a class Pkg and I need to use it under form of QVariant.
At the end of my Pkg.h I have:
Q_DECLARE_METATYPE(Pkg)
and this does not give compile errors, but in my main.cpp I have to do:
...
0
votes
2answers
65 views
khtml library tutorials/guides?
I'm trying to use the khtml library, basically just the DOM html implementation from there, but I even failed to create a basic HTMLDocument from a file using load(), and when I tried to create a ...
0
votes
2answers
513 views
How to load default settings with KConfig on kdelib?
I've a question about KConfig usage. I'm able to write and read settings in my .kde4/share/config/_appname_rc configuration file like that
KConfig basicconf;
KConfigGroup conf = ...
0
votes
2answers
48 views
scrolling KTextEdit to start
I have a KTextEdit, filled with some text.
When I put lots of text, the KTextEdit will be scrolled automatically to the end (obviously).
My question is: how can I scroll to the start (viz to the ...