use of com.intellij.openapi.options.newEditor.SettingsDialog in project intellij-community by JetBrains.
the class PluginHeaderPanel method createUIComponents.
private void createUIComponents() {
myInstallButton = new JButton() {
private final int TOP_BOTTOM_BORDER = JBUI.scale(2);
private final int LEFT_RIGHT_BORDER = JBUI.scale(8);
private final int H_GAP = JBUI.scale(4);
private final int ICON_SIZE = getIcon().getIconWidth();
{
setOpaque(false);
setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
}
@Override
public Dimension getPreferredSize() {
final FontMetrics metrics = getFontMetrics(getFont());
final int textWidth = metrics.stringWidth(getText());
final int width = LEFT_RIGHT_BORDER + ICON_SIZE + H_GAP + textWidth + LEFT_RIGHT_BORDER;
final int height = TOP_BOTTOM_BORDER + Math.max(ICON_SIZE, metrics.getHeight()) + TOP_BOTTOM_BORDER;
return new Dimension(width, height);
}
@Override
public void paint(Graphics g2) {
final Graphics2D g = (Graphics2D) g2;
final GraphicsConfig config = GraphicsUtil.setupAAPainting(g);
final int w = g.getClipBounds().width;
final int h = g.getClipBounds().height;
int borderArc = JBUI.scale(7);
int border = JBUI.scale(1);
int buttonArc = borderArc - border;
g.setPaint(getBackgroundBorderPaint());
g.fillRoundRect(0, 0, w, h, borderArc, borderArc);
g.setPaint(getBackgroundPaint());
g.fillRoundRect(border, border, w - 2 * border, h - 2 * border, buttonArc, buttonArc);
g.setColor(getButtonForeground());
g.drawString(getText(), LEFT_RIGHT_BORDER + ICON_SIZE + H_GAP, getBaseline(w, h));
getIcon().paintIcon(this, g, LEFT_RIGHT_BORDER, (getHeight() - getIcon().getIconHeight()) / 2);
config.restore();
}
private Color getButtonForeground() {
switch(myActionId) {
case UPDATE:
return new JBColor(Gray._240, Gray._210);
case INSTALL:
return new JBColor(Gray._240, Gray._210);
case RESTART:
case UNINSTALL:
return new JBColor(Gray._0, Gray._210);
}
return new JBColor(Gray._80, Gray._60);
}
private Paint getBackgroundPaint() {
switch(myActionId) {
case UPDATE:
return new JBGradientPaint(this, new JBColor(0x629ee1, 0x629ee1), new JBColor(0x3a5bb5, 0x3a5bb5));
case INSTALL:
return new JBGradientPaint(this, new JBColor(0x60cc69, 0x519557), new JBColor(0x326529, 0x28462f));
case RESTART:
case UNINSTALL:
return UIUtil.isUnderDarcula() ? new JBGradientPaint(this, UIManager.getColor("Button.darcula.color1"), UIManager.getColor("Button.darcula.color2")) : Gray._240;
}
return Gray._238;
}
private Paint getBackgroundBorderPaint() {
switch(myActionId) {
case UPDATE:
return new JBColor(new Color(0xa6b4cd), Gray._85);
case INSTALL:
return new JBColor(new Color(201, 223, 201), Gray._70);
case RESTART:
case UNINSTALL:
return new JBColor(Gray._220, Gray._100.withAlpha(180));
}
return Gray._208;
}
@Override
public String getText() {
switch(myActionId) {
case UPDATE:
return "Update";
case INSTALL:
return "Install";
case UNINSTALL:
return "Uninstall";
case RESTART:
return "Restart " + ApplicationNamesInfo.getInstance().getFullProductName();
}
return super.getText();
}
@Override
public Icon getIcon() {
switch(myActionId) {
case UPDATE:
return AllIcons.General.DownloadPlugin;
case INSTALL:
return AllIcons.General.DownloadPlugin;
case UNINSTALL:
return AllIcons.Actions.Delete;
case RESTART:
return AllIcons.Actions.Restart;
}
return super.getIcon();
}
};
myInstallButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
switch(myActionId) {
case UPDATE:
case INSTALL:
Runnable setPlugin = () -> setPlugin(myPlugin);
new InstallPluginAction(myManager.getAvailable(), myManager.getInstalled()).install(setPlugin, setPlugin, true);
break;
case UNINSTALL:
UninstallPluginAction.uninstall(myManager.getInstalled(), true, myPlugin);
break;
case RESTART:
if (myManager != null) {
myManager.apply();
}
final DialogWrapper dialog = DialogWrapper.findInstance(KeyboardFocusManager.getCurrentKeyboardFocusManager().getFocusOwner());
if (dialog != null && dialog.isModal()) {
dialog.close(DialogWrapper.OK_EXIT_CODE);
}
TransactionGuard.getInstance().submitTransactionLater(ApplicationManager.getApplication(), () -> {
DialogWrapper settings = DialogWrapper.findInstance(IdeFocusManager.findInstance().getFocusOwner());
if (settings instanceof SettingsDialog) {
((SettingsDialog) settings).doOKAction();
}
ApplicationManager.getApplication().restart();
});
break;
}
setPlugin(myPlugin);
}
});
}
use of com.intellij.openapi.options.newEditor.SettingsDialog in project intellij-community by JetBrains.
the class JumpToColorsAndFontsAction method openSettingsAndSelectKey.
private static boolean openSettingsAndSelectKey(@NotNull Project project, @NotNull ColorSettingsPage page, @NotNull AttributesDescriptor descriptor) {
SettingsDialog dialog = (SettingsDialog) ShowSettingsUtilImpl.getDialog(project, ShowSettingsUtilImpl.getConfigurableGroups(project, true), null);
Settings settings = Settings.KEY.getData(dialog);
ColorAndFontOptions configurable0 = settings == null ? null : settings.find(ColorAndFontOptions.class);
SearchableConfigurable configurable = configurable0 == null ? null : configurable0.findSubConfigurable(page.getDisplayName());
if (configurable == null)
return false;
Runnable runnable = configurable.enableSearch(descriptor.getDisplayName());
ActionCallback callback = settings.select(configurable);
if (runnable != null)
callback.doWhenDone(runnable);
dialog.show();
return true;
}
Aggregations