File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed
kotlin/irony/pycharm/qsseditor Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 1+ package irony.pycharm.qsseditor
2+
3+ import com.intellij.openapi.options.BoundSearchableConfigurable
4+ import com.intellij.openapi.options.Configurable.NoScroll
5+ import com.intellij.ui.dsl.builder.panel
6+
7+ class QSSConfigurable : BoundSearchableConfigurable (
8+ " QSS" ,
9+ " QSS Editor Configurable"
10+ ), NoScroll {
11+ override fun createPanel () = panel {
12+ row {
13+ }
14+ }
15+ }
Original file line number Diff line number Diff line change 2525 <!-- Extension points defined by the plugin.
2626 Read more: https://plugins.jetbrains.com/docs/intellij/plugin-extension-points.html -->
2727 <extensions defaultExtensionNs =" com.intellij" >
28+ <applicationConfigurable
29+ parentId =" language"
30+ groupWeight =" -500"
31+ instance =" irony.pycharm.qsseditor.QSSConfigurable"
32+ id =" irony.pycharm.qsseditor.QSSConfigurable"
33+ displayName =" QSS" />
2834 </extensions >
2935 <actions >
3036 <action id =" ApplyAction" class =" irony.pycharm.qsseditor.ApplyAction" text =" Apply Style" description =" Apply Style" >
You can’t perform that action at this time.
0 commit comments