0
votes
2answers
276 views
How do I reserve caret position in CEdit control?
I'm programming an application in MFC (don't ask) and I have a CEdit box that holds a number. When that number is edited, I would like to act on the change, and then replace the caret where it was …
1
vote
testing classes
It sounds like you don't want Unit testing, which is correctly the verification that the interface of a class works. You shouldn't have to change your class at all in order to do unit testing. If …
1
vote
How do I create const arrays and calculated const values in C++ class?
Static members of C++ objects need to be defined outside of the declaration. This is because the compiler doesn't know which translation unit (.o file) to put the members in.
Usually I wil …
2
votes
Combing an External Event Loop with Qt’s
I would probably code the event loops to be separate threads. You can handle the events from the library in a class, and have it generate signals which will then be handled by the main Qt eventloop …
4
votes
QT: why is foreach iterating with a const reference ?
As explained on the Qt Generic Containers Documentation:
Qt automatically takes …
1
vote
Reading an std::ifstream to a vector of lines
std::getline(stream, var) reads into a std::string for var. I suggest using the stream operators to read into the int instead, and check for errors if needed:
vector& …
4
votes
How to programatically disable the auto-focus of a webcam.
The Hercules cameras are UVC compliant, so they should work with the DirectShow Interface IAMCameraControl …
