Hello;

I'm building a plugin for Qt Quick Designer.

I was able to successfully create the basic Qt Creator plugin (http://doc.qt.digia.com/qtcreator-ex...st-plugin.html). Now I want to access the QtQuick Designer classes exposed by the PlugIn Manager. I need to access the following QCreator and QtQuick designer objects from my code:

- Object1: The vertical tab bar of QtCreator. This is the tab bar is already containing “Welcome”, “Design”, “Debug”, “Projects”, “Analyze”, “Help”.
- Object2: “Library” dropdown list in Qt Quick Designer.
- Object3: “main.qml” dropdown list Qt Quick Designer.
- Object4: “Open Documents” dropdown list Qt Quick Designer.

I'm not sure how to do that?

Thank you for your help.

Mut