温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

使用idea插件怎么制作一个弹出框

发布时间:2020-12-16 14:11:40 来源:亿速云 阅读:1300 作者:Leah 栏目:开发技术

本篇文章给大家分享的是有关使用idea插件怎么制作一个弹出框,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。

一、JBPopupFactory

JBPopupFactory 是idea 提供给用户自定义窗口的接口,比较常见的方法如下

  • createComponentPopupBuilder() 允许您在弹出窗口中显示任何Swing组件。

  • createPopupChooserBuilder() 创建一个多选/单选框

  • createConfirmation() 创建一个确认框

  • createActionGroupPopup() 创建一个显示方法组的窗口,选中会执行方法。

创建弹出窗口后,需要通过调用show() 方法之一来显示它。您可以通过调用showInBestPositionFor() 让IntelliJ平台根据上下文自动选择位置,或者通过showUnderneathOf() 和ShowInCenter() 等方法显式指定位置。

show() 方法立即返回,不等待弹出窗口关闭。

如果需要在弹出窗口关闭时执行某些操作,可以使用addListener() 方法将侦听器附加到它,然后重写弹出试的方法,例如onChosen(),或在弹出窗口中将事件处理程序附加到您自己的组件。

二、demo

 1.showInBestPositionFor

Shows the popup in the position most appropriate for the specified data context.
在最适合指定数据上下文的位置显示弹出窗口。

acaction 定义按钮功能

public class TextBoxes extends AnAction {  public TextBoxes() {   super("MYSQL_COLUMN_ADD_PRO");  }  @Override  public void actionPerformed(@NotNull AnActionEvent event) {    // 获取 JBPopupFactory   JBPopupFactory instance = JBPopupFactory.getInstance();      // 创建需要执行的任务   Runnable runnable = new Runnable() {    @Override    public void run() {     Messages.showMessageDialog("aaa", "hello", Messages.getInformationIcon());    }   };   ListPopup popup = instance.createConfirmation("hello", runnable, 1);   popup.showInBestPositionFor(event.getDataContext());  } }

plugins.xml

<idea-plugin>  <id>org.example.myPlugins</id>  <name>MyPlugin</name>  <vendor email="1585946147@qq.com" url="http://www.baidu.com">lieying</vendor>  <description>first test plugin</description>  <extensions defaultExtensionNs="com.intellij">   <!-- Add your extensions here -->  </extensions>  <actions>   <!-- Add your actions here -->   <group id="MyPlugin.SampleMenu" text="_Sample Menu" description="Sample menu">    <add-to-group group-id="MainMenu" anchor="last" />    <action id="Myplugin.Textboxes" class="com.hunt.plugin.TextBoxes" text="Text _Boxes" description="A test menu item">     <keyboard-shortcut keymap="$default" first-keystroke="ctrl alt Z" />    </action>   </group>  </actions> </idea-plugin>

实际效果

使用idea插件怎么制作一个弹出框

2.show()

Shows the popup at the specified point.
显示指定点的弹出窗口。

@Override  public void actionPerformed(@NotNull AnActionEvent event) {   // 获取 JBPopupFactory   JBPopupFactory instance = JBPopupFactory.getInstance();   // 创建需要执行的任务   Runnable runnable = new Runnable() {    @Override    public void run() {     Messages.showMessageDialog("aaa", "hello", Messages.getInformationIcon());    }   };   ListPopup popup = instance.createConfirmation("hello", runnable, 1);   // 固定指定一个点显示   Point point = new Point(200,300);   RelativePoint relativePoint = new RelativePoint(point);   popup.show(relativePoint);  }

效果如下

使用idea插件怎么制作一个弹出框

3.showUnderneathOf()

Shows the popup at the bottom left corner of the specified component.
显示指定组件左下角的弹出窗口。

@Override  public void actionPerformed(@NotNull AnActionEvent event) {   // 获取 JBPopupFactory   JBPopupFactory instance = JBPopupFactory.getInstance();   // 创建需要执行的任务   Runnable runnable = new Runnable() {    @Override    public void run() {     Messages.showMessageDialog("aaa", "hello", Messages.getInformationIcon());    }   };   ListPopup popup = instance.createConfirmation("hello", runnable, 1);   // 获取焦点的组件   Component component = event.getDataContext().getData(PlatformDataKeys.CONTEXT_COMPONENT);   // 组件下方显示 popup   popup.showUnderneathOf(component);   }

event.getDataContext().getData(PlatformDataKeys.CONTEXT_COMPONENT); 会返回获取焦点的组件
比如

使用idea插件怎么制作一个弹出框

4.showInFocusCenter

Shows the popups in the center of currently focused component
在获取焦点组件的中间弹出popup

@Override  public void actionPerformed(@NotNull AnActionEvent event) {   // 获取 JBPopupFactory   JBPopupFactory instance = JBPopupFactory.getInstance();   // 创建需要执行的任务   Runnable runnable = new Runnable() {    @Override    public void run() {     Messages.showMessageDialog("aaa", "hello", Messages.getInformationIcon());    }   };   ListPopup popup = instance.createConfirmation("hello", runnable, 1);   popup.showInFocusCenter();  }

以上就是使用idea插件怎么制作一个弹出框,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注亿速云行业资讯频道。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI