Tagged Questions
The moc tag has no wiki summary.
9
votes
3answers
1k views
Use Boost.Signal instead of Qt's signals? Do without moc?
I know they can be used together, but I'm wondering whether it's possible to replace Qt's signals and slots mechanism with Boost.Signal in the Qt parts of the program (widgets and such).
Anyone ever ...
3
votes
3answers
409 views
Qt moc with implementations inside of header files?
Is it possible to tell the Qt MOC that I would like to declare the class and implement it in a single file rather than splitting them up into an .h and .cpp file?
2
votes
2answers
115 views
How to add specific flags to moc in a qmake project?
I compile a Qt executable using qmake && make on the following project.pro file:
INCLUDEPATH *= ../../dependencies/boost
QT *= opengl xml
CONFIG *= qt opengl static
TARGET = myexe
HEADERS = ...
2
votes
1answer
262 views
CMake + Qt : define the moc/ui output directory
I'm currently transferring a project built with qmake to CMake.
In the version with qmake, in the .pri file, there was
MOC_DIR = .moc/$${PLATFORM_NAME}
that permitted to produce the MOC temporary ...
2
votes
2answers
285 views
What's causing this QT 4.7.3 error?
I have a program which compiles just fine in OpenSuse 11.2 with QT version 4.5. However, when I compiled the same program using OpenSuse 11.4 with QT 4.7.3, I'm getting this error message:
"This ...
2
votes
1answer
106 views
What are the sections in Qt's MOC generated .cpp file?
Can someone please explain the sections in the file and their significance? How are signals and slots made available for calling?
2
votes
1answer
705 views
Help understanding QTest tutorials
In the tutorials for QTestLib, there are references to the files "testgui.moc" and "testqstring.moc" (one example can be found here: ...
2
votes
2answers
502 views
how to automate Qt moc
i have to run the following commands from Qt command prompt: 'qmake -project' then 'make' and this gives me the debug folder with the Moc file. this is strangely the only way my PC will generate the ...
2
votes
2answers
619 views
Single file Qt4 demo
Sometimes you need to create a very simple single file application in Qt4. However it's problematic since you are always doing the CPP/H separation, and then the main() is in another file...
Any ...
1
vote
1answer
15 views
Multiple definitions error: one in my file and one in the moc file.
I have a class called FindAndReplaceBar, whose implementation is this:
#include "FindAndReplaceBar.h"
#include <QLabel>
#include <QPushButton>
#include <QGridLayout>
#include ...
1
vote
2answers
112 views
Why does this Simple Qt Application not link
I tried to write a simple Qt application like this:
main.cpp:
#include <QApplication>
class MyApp : public QApplication {
Q_OBJECT
public:
MyApp(int argc, char* argv[]);
};
...
1
vote
1answer
147 views
Why are there two nested curly braces without any statement in-between?
The code given below is the code generated by MOC in Qt.
const QMetaObject
MainWindow::staticMetaObject = {
{ &QMainWindow::staticMetaObject, qt_meta_stringdata_MainWindow,
...
1
vote
2answers
956 views
How do I display an MOC user's online status on a web page *without* Active-X?
Is it possible to display a user's online status without Active-X? In my googling I've found a number of articles about displaying MOC online status on Sharepoint using the IMNRC() function in the ...
1
vote
1answer
300 views
Problem with signals and slots
Using Qt Creator, I am creating a class with custom slots in Qt:
class CustomEdit : public QTextEdit
{
Q_OBJECT
public:
CustomEdit(QWidget* parent);
public slots:
void onTextChanged ...
0
votes
1answer
49 views
Qt moc_file issues
I'm a student programmer and I am using Qt to build some GUI applications for work and I have been running into moc issues over and over again. I was hoping for a solution to the current problem that ...
0
votes
1answer
51 views
Qt moc not working when run from some locations
I have a Qt project that I'm trying to compile with jom on Windows 7. I can compile it fine from the command line when the source is in one location. However, when I pull the source from git in ...
0
votes
1answer
94 views
Why does Qt Creator run MOC on all my files?
I have a Qt project with precompiled headers enabled. Compilation was working fine until recently. But since a dew days I've noticed that Qt Creator is always running MOC on all my Q_OBJECT files, ...
0
votes
1answer
93 views
QObject creates moc file, but still getting vtable errors
I can't seem to shake this error after making PrimitivePartsWrapper a subclass of QObject (including the Q_OBJECT macro).
undefined reference to `vtable for PrimitivePartsWrapper` (in register.o)
...
0
votes
1answer
129 views
Generatin finger print template
I need to generate finger print template on Windows CE 5.0 device.
It has izzix finger print reader.
I have to MOC (Match on card). My smart card has template derived from my finger print.
I can read ...
0
votes
1answer
794 views
cmake doesn't generate Qt moc files using QT4_automoc
I'm trying to compile a little test application basic layout example in Qt using the Visual Studio 2010 compiler on Windows 7.
I'm using cmake (2.8.4) and nmake to build the example, but it fails to ...
0
votes
1answer
146 views
How can I use cascaded namespaces in moc files?
I'm currently writing a small application with Qt (4.7). And I use nested namespaces like
namespace app {
namespace core {
class CoreClass {...}
}
}
Because I'm a litte bit lazy, I ...
0
votes
0answers
410 views
Qt Interface: undefined interface error
I'm trying to write a plugin for KDevelop and I'm having an interface problem. Whenever I include QInterfaces(KDevelop::"Interface" I get an undefined interface error when doing the MOC step. Any ...
0
votes
1answer
252 views
Macro expansion in moc
I'd like to store some class info using Q_CLASSINFO macro. However I would like to wrap it in my own macro, for example:
#define DB_TABLE( TABLE ) \
Q_CLASSINFO( "db_table", #TABLE )
#define ...
0
votes
1answer
282 views
MOC adding namespace to class names
I have this very strange problem while compiling the project.
MOC seems to be adding a namespace to the class name being moc'ed, although it's not mentioned anywhere in the file/class.
The ...
0
votes
2answers
2k views
moc in QT wont compile my c++ header file. says its too different
ok wtf this is what moc tells me when i try to moc one of my header files. im doing this through Qt 4.5.3 command prompt and it says this:
C:\Documents and Settings\The Fuzz\Desktop\GUI2>moc ...
-2
votes
1answer
194 views
Why does this Qt header file fail to get parsed by moc?
I created a new 'C++ library' project in Qt, which has the following header file:
#include "Test_global.h"
#include <QString>
#include <QTcpServer>
class TESTSHARED_EXPORT Test : ...