[quote author="Marcus Frenkel" date="1328951033"]
What's the use of QStandardItem::setDropEnabled then? When this is set to false the item still accepts drops.[/quote]
Sorry, I don't know that. We never used the standard item models in our projects together with DnD.
welcome to devnet
Is the slot shrink() activated by the singleShot?
Since there might be timing issue, you might want to give a bit more time before firing the shot.
After monitoring http request with the help off google chrome I see that a http post request is made by a script.I see that it’s initiator is game.js:17 (a javascript).Can I make a http request to that script or how can I do it?Is it necessary to use XMLHttpRequest?The scripts takes a user and a password and returns a form and there is some information in that form that I need to login.
Thank you for you answer.
So, as I understood, I'd better re-implement the widget and put in all properties, what I want, than I'd promote it. Am I right?
@
bool isNumeric = false;
foreach(const QString &string, str)
{
string.toDouble(&isNumeric); // if you need support for the thousands
// group seperator use QLocale::toDouble()
if(isNumeric == true)
{
...
}
}
@
Brain to terminal. Not tested.
I'll just try to make it clear, i need to play protected audio files, Microsoft's DRM and apple's DRM and a specific DRM which i'll define.
In this case is phonon suitable for me ?
Any link about this topic, any advice, any idea are welcome.
Hello,
How do you realod image? If you just set source property to the same value. It won't work.
Read "this thread":http://developer.qt.nokia.com/forums/viewthread/7093/ for some ideas how to solve your problem.
miroslav is right, but I guess the more correct answer is: it depends on what connection flag you used when you connected the signal and the slot. The default flag will result in different behaviour in threaded and non-threaded cases.
for exit() i mean the stdlib function.
[quote author="Lukas Geyer" date="1328868453"][quote author="stuk" date="1328868151"]compare the output with "Text to Exit" and call exit() ?[/quote]
QApplication::quit() and QApplication:exit() does nothing if there is no event loop running (ie. before QApplication::exec() is called).[/quote]