New View in Project Tool Window
Hello,
I'm begin in IntelliJ Platform.
I want to develop an IntelliJ Plugin for PhpStorm for Symfony. I want to generate a custom tree structure view in Project Tool Window like Android Studio.
In IntelliJ IDEA, on the Project Tool Window, there are some different views : Project, Packages, Project Files, Problems, Production, Tests and Scratches. In Android Studio or in IntelliJ IDEA with Android plugins, there are 3 additional views : Android Project, Tests and Android Instrumentation Tests.
I want to do like Android Studio : add a new view : Symfony Project, for customize tree structure files.For customize tree structure files, I have find this official sample but it customize tree structure files in "Project" View of Project Tool Window and I want to do this in a new new view.
I have search everywhere how to do this and source code of Android Studio Plugins but I have not found anything.
Something can help me please ?
Please sign in to leave a comment.
Actually, there are 4 different view: Project, Packages, Scopes and Scratches. Project Files, Problems and so on are different Scopes. You can create a custom scope in the Setting dialog ising patterns: Appearance & Behavior / Scopes. Or VCS can create a scope from your changelist. To create a custom view you also may implement AbstractProjectViewPane and register it in plugin.xml
Thank you, it's exactly what I want to do.
I will try this. Now I need just know how to register it in plugin.xml, probably a projectViewPane tag or something like this.
Something like this: