/* * Copyright 2000-2017 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jetbrains.idea.svn.integrate; import com.intellij.openapi.actionSystem.AnAction; import com.intellij.openapi.actionSystem.AnActionEvent; import com.intellij.openapi.actionSystem.Presentation; import com.intellij.openapi.actionSystem.ex.CustomComponentAction; import com.intellij.util.ui.JBUI; import com.intellij.util.ui.UIUtil; import javax.swing.*; /** * @author irengrig */ public abstract class MoreAction extends AnAction implements CustomComponentAction { public static final String LOAD_MORE = "Load more"; protected final JLabel myLabel; private final JPanel myPanel; private boolean myEnabled; private boolean myVisible; private JButton myLoadMoreBtn; protected MoreAction() { this(LOAD_MORE); } protected MoreAction(final String name) { myPanel = new JPanel(); final BoxLayout layout = new BoxLayout(myPanel, BoxLayout.X_AXIS); myPanel.setLayout(layout); myLoadMoreBtn = new JButton(name); myLoadMoreBtn.setMargin(JBUI.insets(2)); myLoadMoreBtn.addActionListener(e -> this.actionPerformed(null)); myPanel.add(myLoadMoreBtn); myLabel = new JLabel("Loading..."); myLabel.setForeground(UIUtil.getInactiveTextColor()); myLabel.setBorder(JBUI.Borders.empty(1, 3, 1, 1)); myPanel.add(myLabel); } @Override public JComponent createCustomComponent(Presentation presentation) { return myPanel; } public void setEnabled(boolean enabled) { myEnabled = enabled; myLoadMoreBtn.setVisible(myEnabled); myLabel.setVisible(! myEnabled); } @Override public void update(AnActionEvent e) { e.getPresentation().setEnabled(myEnabled); e.getPresentation().setVisible(myVisible); } public void setVisible(boolean b) { myVisible = b; } }