David Godzsak
- 活动总数 11
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 1
- 订阅数 5
-
David Godzsak 创建了一个帖子, Saving sensitive data with PersistentStateComponent
I am writing a plugin which uses AWS Credentials data to get info from AWS. I let the users set up their ACCESS_KEY and SECRET_KEY in the Setings panel per project, and I store the values with a Pe... -
David Godzsak 创建了一个帖子, Reloading plugins in IntelliJ after changing settings
I am writing a plugin which has settings in the Other Settings menu (it impllements searchable configurable, and is represented in the plugin.xml as a <projectConfigurable ... />). What I want to a... -
David Godzsak 创建了一个帖子, Create a Run like UI with background task
I'm working on a plugin which outputs logs. I want these logs to be accessible from a text field something like Run/Debug has in the ToolWindow. Is there a way I can reuse that text field? So which... -
David Godzsak 创建了一个帖子, Create closeable ToolWindow Tab
I am creating a plugin which is a toolwindow extension. I want to have it closeable tabs like in Version Control. I created a class which implements ToolWindowFactory override fun createToolWindowC... -
David Godzsak 创建了一个帖子, Create modeless dialog in Intellij IDEA plugin
I want my plugin to keep running in the background when a dialog is shown, so I created a Modeless dialog: public LogsDialog(@Nullable Project project) { super(project, true, IdeModalityType.MO...