主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Aleksey Pivovarov
活动总数
801
最后的活动
2024年09月23日 14:52
成员加入日期
2013年08月06日 15:41
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
444
活动概览
文章(0)
帖子(0)
评论(357)
按最近的活动排序
最近的活动
投票数
创建于
2019年05月01日 20:02
Sorry for the late reply,Mentioned repository is not available.Was the issue resolved?
社区
IntelliJ IDEA Open API and Plugin Development
How to refresh Tool Window
0 票
创建于
2019年04月29日 13:16
Please, share complete code of toolwindow initialisation.
社区
IntelliJ IDEA Open API and Plugin Development
How to refresh Tool Window
0 票
创建于
2019年04月29日 10:24
Yes, existing layout from UI Designer cannot be updated after panel creation.You can replace `JPanel panel` with `com.intellij.ui.components.panels.Wrapper` and use `Wrapper.setContent(JComponent)`...
社区
IntelliJ IDEA Open API and Plugin Development
How to refresh Tool Window
0 票
创建于
2019年04月01日 10:23
You can't do it using UI Designer only.But you can enable "Custom Create" property on a component and create panel with gradient manually in `createUIComponents()` method.Ex: by overriding `protect...
社区
IntelliJ IDEA Open API and Plugin Development
How To GUI Form Gradient Background
0 票
创建于
2019年03月27日 23:50
VCS log is using `git4idea.repo.GitRepository#GIT_REPO_CHANGE` indeed.But it doesn't need such hacks, as the event of the commit is not interesting. Only the final state matters, which is a simple ...
社区
IntelliJ IDEA Open API and Plugin Development
Handle Git commit made not from IntelliJ UI
0 票
已编辑于
2019年02月10日 17:49
In IDE log file (Help | Show Log in <system file manager>) or in "Console"/"idea.log" tabs in Run/Debug toolwindow.
社区
IntelliJ IDEA Open API and Plugin Development
PersistentStateComponent saves state only in session
0 票
已编辑于
2019年02月10日 17:36
Please, check errors output.It should have smth like "Caused by: com.intellij.configurationStore.UnknownMacroException: Unknown macro: $WORKSPACE_FILE$ in storage file spec: $WORKSPACE_FILE$" in it...
社区
IntelliJ IDEA Open API and Plugin Development
PersistentStateComponent saves state only in session
0 票
已编辑于
2019年02月10日 14:01
Usually, it is possible to use Map/List/etc for serialisation. This requires some fragile runtime magic, though.See https://github.com/JetBrains/intellij-community/blob/master/platform/dvcs-impl/sr...
社区
IntelliJ IDEA Open API and Plugin Development
PersistentStateComponent saves state only in session
0 票
已编辑于
2019年02月10日 09:57
Also, you can omit explicit `<interface-class ... />` if it duplicates implementation class.Implementing `ApplicationComponent` interface is also not necessary (and it is deprecated).
社区
IntelliJ IDEA Open API and Plugin Development
PersistentStateComponent saves state only in session
0 票
创建于
2019年02月10日 09:52
Probably, caused by using same class both as service and component.You might want to remove "<applicationService ... />" registration from plugin.xml and use `ApplicationManager.getApplication().ge...
社区
IntelliJ IDEA Open API and Plugin Development
PersistentStateComponent saves state only in session
0 票
«
第一页
‹
上一页
下一页
›
最后
»