I'm trying to set up Visual Studio to develop a Qt application. I'm used to Qt Creator's autocomplete behavior. When the user types SIGNAL(
, the signals list pops up. Now I'm using VS 2012 with Qt Add-in 1.2.2 for Qt5. And this behavior is missing. Is this expected or can I somehow enable this behavior?
I know about the new connect syntax in Qt5 that allows to pass C++ method reference instead of using Qt macros. But this is not good enough also because the IntelliSense is not smart enough to show only signals and slots while I'm typing connect statement. It shows all class members. So this is also not convenient.