2
votes
Problems with home-brew web crawler
You might want to look into libcurl which should allow you to pull content using a variety of protocols. This should also support proxies etc which might be what is giving you problems with specifi …
0
votes
C++ Copy Constructors
Well actually, the first one will do an intermediate copy with operator=, while the second one will do a direct copy construct.
…
0
votes
Using Win32 API in Qt OSE project
You could use win32 scopes in your .pro file;
win32:HEADERS+=mywinheader.h
or with .pri (pro include) files to compartmentalize it even more;
win32 …
0
votes
How to set an initial size of a QScrollArea?
Is the scroll area the top level widget? If so, simply call
area->resize(300,300);
If it's inside a hierarchy you need to resize the toplevel appropriately (co …
7
votes
C++ IDE for Linux?
At least for Qt specific projects, the Qt Creator (from Nokia/Trolltech) shows great promise.
…
3
votes
How to get the version info of a dll in C++
Looks like you need to access the VS_VERSION_INFO resource; http://www.microsoft.com/msj/0498/c0498.aspx
…
-1
votes
virtual inheritance
Isn't it as simple as "virtualness is inherited"? I.e., if you inherit a class with a virtual function - the function will still be virtual in it's subclass irrespective of the subclass definition? …
1
vote
Porting Windows library using Qt to MacOSX, event loops
This should happen automatically with Qt Mac 4.5 (both Carbon and Cocoa ports) - since Qt's registered as a CFRunLoopSource in CFRunLoop and the callback will invoke sendPostedEvents. See also qeve …
-6
votes
Browser agnostic C++ DOM interface
Any reason why it has to be C++? Can't you use jQuery? Or something like http://webkit.org/blog/156/querysele …
0
votes
How do I create a custom slot in qt4 designer?
you can use the magic slot format of
void on_objectName_signal() {
// slot code here, where objectname is the Qt Designer object name
// and the signal is the emission
}
…
13
votes
Qt goes LGPL! On Windows, is it good enough to use instead of MFC?
Google Earth is written in Qt, and KDE, Adobe Album, Skype on Linux, the Roku Netflix player, Opera and a number of other commercial uses. The German Air Traffic Control (DFS) has a Qt-based system …
1
vote
Minimal Qt executable-size
This depends largely on your configuration and deployment method. You can of course compile as static which will exclude code which isn't used. You can also strip out things like exceptions and STL …
10
votes
How modern is C++ language used in Qt?
Qt uses modern variants of the C++ language - currently C++98, and yes Templates are also used where it's appropritate. Qt has some support for STL. See e.g. …
4
votes
Decrease Qt GUI application size
The best way is to manually configure the Qt library with configure. By issuing
configure --help
you'll see a number of options that might help reduce both disk an …
2
votes
Possible: Program executing Qt3 and Qt4 code?
This might be possible by namespacing Qt. From configure --help;
-qtnamespace <name> Wraps all Qt library code in 'namespace <name> {...}'.
…
