Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Aleksey Pivovarov
Total activity
801
Last activity
September 23, 2024 14:52
Member since
August 06, 2013 15:41
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
444
Activity overview
Articles (0)
Posts (0)
Comments (357)
Sort by recent activity
Recent activity
Votes
Created
September 12, 2020 13:01
>Is there a way to disable this behaviour?I'm not sure I understand the problem.If you're having problems with layout generated by UI Designer from .form file, it can be replaced with plain Swing i...
Community
IntelliJ IDEA Open API and Plugin Development
How to access the components of a custom Tool Window post-creation
0 votes
Edited
September 04, 2020 16:54
This depends on "GetSourceCode" implementation (what it does with AnActionEvent). You can use "ActionUtil#invokeAction" using "CheckinProjectPanel" as target component and ActionPlaces#UNKNOWN, but...
Community
IntelliJ IDEA Open API and Plugin Development
Adding actions to before commit toolbar/window
0 votes
Created
September 04, 2020 14:50
The code above declares new AnAction, but never calls it.Why do you need AnAction there? Is it possible to extract "GetSourceCode" logic into a static utility method or method in some Service?
Community
IntelliJ IDEA Open API and Plugin Development
Adding actions to before commit toolbar/window
0 votes
Edited
August 31, 2020 10:24
You can use "com.intellij.openapi.vcs.checkin.CheckinHandlerFactory". <extensions defaultExtensionNs="com.intellij"> <checkinHandlerFactory implementation="com.MyPluginCheckinHandlerFactory"/></ex...
Community
IntelliJ IDEA Open API and Plugin Development
Adding actions to before commit toolbar/window
0 votes
Edited
August 24, 2020 11:32
Do you specify 'depends' in your custom updatePlugins.xml? Smth like `<plugin id="" > <depends>...</depends> </plugin>`?Note that it might not work with 'simple' format of this file: https://intell...
Community
IntelliJ IDEA Open API and Plugin Development
How to control one plugin not show on different IDE Plugin Marketplace?
0 votes
Created
August 24, 2020 10:42
Because this plugin depends on PHP language from platform. IDEs that do not provide it hide plugin from marketplace as incompatible.https://github.com/Haehnchen/idea-php-laravel-plugin/blob/master/...
Community
IntelliJ IDEA Open API and Plugin Development
How to control one plugin not show on different IDE Plugin Marketplace?
0 votes
Created
August 19, 2020 13:41
>Editor.logicalPositionToXY/offsetToXYThese are absolute numbers. So you might need to adjust for scrollbar position by substracting Editor.getScrollingModel.getVerticalScrollOffset()/getHorizontal...
Community
IntelliJ IDEA Open API and Plugin Development
Display popup over RangeHighlighter on mouseover
0 votes
Edited
August 19, 2020 13:35
Note that "showInBestPositionFor" is likely to show popup near caret, rather than at current mouse position.You can use "showInScreenCoordinates" or "show(RelativePoint)" and "new RelativePoint(edi...
Community
IntelliJ IDEA Open API and Plugin Development
Display popup over RangeHighlighter on mouseover
0 votes
Edited
August 19, 2020 13:30
createComponentPopupBuilder(e.getEditor().getComponent(),e.getEditor().getComponent()) This line takes Editor component and tries to show in in a popup. Swing does not allow to show same component ...
Community
IntelliJ IDEA Open API and Plugin Development
Display popup over RangeHighlighter on mouseover
0 votes
Created
August 19, 2020 11:31
RangeHighlighter start/end offsets are "number of symbols since the start of file".You can convert LogicalPosition to offset using Editor.logicalPositionToOffset. See also https://jetbrains.org/int...
Community
IntelliJ IDEA Open API and Plugin Development
Display popup over RangeHighlighter on mouseover
0 votes
«
First
‹
Previous
Next
›
Last
»