org.netbeans.lib.profiler.ui.ResultsPanel Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.netbeans.lib.profiler.ui;
import java.awt.*;
import java.awt.event.InputEvent;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.text.NumberFormat;
import java.util.ResourceBundle;
import javax.swing.*;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import org.netbeans.modules.profiler.api.icons.GeneralIcons;
import org.netbeans.modules.profiler.api.icons.Icons;
/**
* The very base functionality common for various types of results displays.
*
* @author Ian Formanek
* @author Misha Dmitriev
* @author Jiri Sedlacek
*/
public abstract class ResultsPanel extends JPanel {
//~ Static fields/initializers -----------------------------------------------------------------------------------------------
// -----
// I18N String constants
private static final ResourceBundle messages = ResourceBundle.getBundle("org.netbeans.lib.profiler.ui.Bundle"); // NOI18N
private static final String CORNER_BUTTON_TOOLTIP = messages.getString("ResultsPanel_CornerButtonToolTip"); // NOI18N
// -----
//~ Instance fields ----------------------------------------------------------------------------------------------------------
protected NumberFormat intFormat;
protected NumberFormat percentFormat;
private boolean internalCornerButtonClick = false; // flag for closing columns popup by pressing cornerButton
//~ Constructors -------------------------------------------------------------------------------------------------------------
public ResultsPanel() {
setLayout(new BorderLayout());
intFormat = NumberFormat.getIntegerInstance();
intFormat.setGroupingUsed(true);
percentFormat = NumberFormat.getPercentInstance();
percentFormat.setMaximumFractionDigits(1);
percentFormat.setMinimumFractionDigits(0);
}
//~ Methods ------------------------------------------------------------------------------------------------------------------
/** Generate the data that can then be presented in this panel */
public abstract void prepareResults();
protected JButton createHeaderPopupCornerButton(final JPopupMenu headerPopup) {
final JButton cornerButton = new JButton(Icons.getIcon(GeneralIcons.HIDE_COLUMN));
cornerButton.setToolTipText(CORNER_BUTTON_TOOLTIP);
cornerButton.setDefaultCapable(false);
if (UIUtils.isWindowsClassicLookAndFeel()) {
cornerButton.setMargin(new Insets(0, 0, 2, 2));
} else if (UIUtils.isWindowsXPLookAndFeel()) {
cornerButton.setMargin(new Insets(0, 0, 0, 1));
} else if (UIUtils.isMetalLookAndFeel()) {
cornerButton.setMargin(new Insets(0, 0, 2, 1));
}
cornerButton.addKeyListener(new KeyAdapter() {
public void keyPressed(final KeyEvent evt) {
if (evt.getKeyCode() == KeyEvent.VK_SPACE) {
showColumnSelectionPopup(headerPopup, cornerButton);
}
}
});
cornerButton.addMouseListener(new MouseAdapter() {
public void mousePressed(MouseEvent mouseEvent) {
if (headerPopup.isVisible()) {
internalCornerButtonClick = true;
cornerButton.getModel().setArmed(false);
} else {
internalCornerButtonClick = false;
if (mouseEvent.getModifiers() == InputEvent.BUTTON3_MASK) {
showColumnSelectionPopup(headerPopup, cornerButton);
}
}
}
public void mouseClicked(MouseEvent mouseEvent) {
if ((mouseEvent.getModifiers() == InputEvent.BUTTON1_MASK) && (!internalCornerButtonClick)) {
showColumnSelectionPopup(headerPopup, cornerButton);
}
}
});
return cornerButton;
}
/**
* Creates instance of JScrollPane and adds it to the BorderLayout.CENTER of the ResultsPanel.
*/
protected JScrollPane createScrollPane() {
JScrollPane jScrollPane = new JScrollPane();
add(jScrollPane, BorderLayout.CENTER);
return jScrollPane;
}
/**
* Creates instance of JScrollPane and adds it to the BorderLayout.CENTER of the ResultsPanel.
* Sets ScrollBar policies JScrollPane.VERTICAL_SCROLLBAR_ALWAYS and JScrollPane.HORIZONTAL_SCROLLBAR_NEVER
* and enables vertical ScrollBar only if needed.
*/
protected JScrollPane createScrollPaneVerticalScrollBarAlways() {
final JScrollPane jScrollPane = createScrollPane();
jScrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
jScrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
// Enable vertical scrollbar only if needed
final JScrollBar vScrollbar = jScrollPane.getVerticalScrollBar();
vScrollbar.getModel().addChangeListener(new ChangeListener() {
public void stateChanged(ChangeEvent e) {
vScrollbar.setEnabled(ResultsPanel.this.isEnabled() &&
vScrollbar.getVisibleAmount() < vScrollbar.getMaximum());
}
});
return jScrollPane;
}
protected abstract void initColumnSelectorItems();
private void showColumnSelectionPopup(final JPopupMenu headerPopup, final JButton cornerButton) {
initColumnSelectorItems();
headerPopup.show(cornerButton, cornerButton.getWidth() - headerPopup.getPreferredSize().width, cornerButton.getHeight());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy