David Godzsak

- Total activity 11
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 5
-
David Godzsak created a post, 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 created a post, 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 created a post, 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 created a post, 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 created a post, 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...