WarnerJan Veldhuis
- Total activity 100
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 35
-
Created UI updates
What is the best mechanism to signal the UI that a model has changed or vice versa? For example, if I select an item in a tree, and a button has to change from disabled to enabled, what events do I... -
Created Bad font in plugin sandbox
I can't figure out why my plugin sandbox shows a different font than my day-to-day IntelliJ. When I run my plugin, it opens up IntelliJ IDEA, but with weird fonts. The only difference in configurat... -
Created ColoredListCellRenderer
In my plugin I have a ColoredListCellrenderer. To set the text, I use the method append(String). The plugin compiles and works on IDEA 12.1.6. However, it compiles on IDEA 13.0.1 (even with the IDE... -
Created How do SettingsEditor, Configurable and a settings class connect?
Hi,Could someone please explain how SettingsEditor, Configurable and a plugins settings class are supposed to connect together? In my plugin.xml I have my settings class which is an applicationServ... -
Created DialogWrapper validation
I think I have done all the right things, and my class extending DialogWrapper is working for the most part, execpt for the validation part. I override doValidate() which returns ValidationInfo whe... -
Created Checkbox menu item for action
Hello all,Does IDEA provide a mechanism for AnAction defined in plugin.xml to be displayed as a JCheckBoxMenuItem?See the example below from the View menu: -
Created Code completion strange behaviour (part deux)
Here's another question about the logic behind IDEA's code suggestions (Using IDEA 12.1). Consider this screenshot:Why does IDEA not select setText(String text) for the JLabel? I have to either use... -
Created About ColumnInfo
I am working with tables, specifically TableView, ListTableModel and ColumnInfo. I love the way these things work together.Assume I have an Issue class with some String properties and a Date proper... -
Created How to complete insertion of PsiElements?
I created two intentions that allow you to hit alt-enter inside an "if", and let you add an "else if" block and an "else" block. I got it working for 99%.The last hurdle is some weird phenomenon wh... -
Created Moving the caret after replacing a PsiElement
To start getting my head around plugins, I created an intention that fires when pressing alt-enter on an if or a right curly brace that belongs to an if. It will suggest adding an else to this if. ...