Java с matisse в netbeans - не может реализовать WindowListener
UPD: решено!
Добрый день!
Я начал разрабатывать приложения JAVA GUI для NetBeans 6.9.1 (я использую Matisse). Поэтому я решил реализовать windowListener в моей программе, но я столкнулся с проблемой. Я не могу получить доступ к основному кадру!
Кто-нибудь знает, как бороться с этой проблемой?
UPD: я не получаю никаких исключений и т. Д. Я не могу добавить слушателя для основного кадра, потому что я не знаю, чтобы получить доступ!
Вот пример сгенерированного кода:
public class INotePadView extends FrameView
{
public INotePadView(SingleFrameApplication app)
{
super(app);
initComponents(); //autogenerated method, nothing interesting.
// status bar initialization - message timeout, idle icon and busy animation, etc
ResourceMap resourceMap = getResourceMap();
int messageTimeout = resourceMap.getInteger("StatusBar.messageTimeout");
messageTimer = new Timer(messageTimeout, new ActionListener() {
public void actionPerformed(ActionEvent e) {
statusMessageLabel.setText("");
}
});
messageTimer.setRepeats(false);
int busyAnimationRate = resourceMap.getInteger("StatusBar.busyAnimationRate");
for (int i = 0; i < busyIcons.length; i++) {
busyIcons[i] = resourceMap.getIcon("StatusBar.busyIcons[" + i + "]");
}
busyIconTimer = new Timer(busyAnimationRate, new ActionListener() {
public void actionPerformed(ActionEvent e) {
busyIconIndex = (busyIconIndex + 1) % busyIcons.length;
statusAnimationLabel.setIcon(busyIcons[busyIconIndex]);
}
});
idleIcon = resourceMap.getIcon("StatusBar.idleIcon");
statusAnimationLabel.setIcon(idleIcon);
progressBar.setVisible(false);
// connecting action tasks to status bar via TaskMonitor
TaskMonitor taskMonitor = new TaskMonitor(getApplication().getContext());
taskMonitor.addPropertyChangeListener(new java.beans.PropertyChangeListener() {
public void propertyChange(java.beans.PropertyChangeEvent evt) {
String propertyName = evt.getPropertyName();
if ("started".equals(propertyName)) {
if (!busyIconTimer.isRunning()) {
statusAnimationLabel.setIcon(busyIcons[0]);
busyIconIndex = 0;
busyIconTimer.start();
}
progressBar.setVisible(true);
progressBar.setIndeterminate(true);
} else if ("done".equals(propertyName)) {
busyIconTimer.stop();
statusAnimationLabel.setIcon(idleIcon);
progressBar.setVisible(false);
progressBar.setValue(0);
} else if ("message".equals(propertyName)) {
String text = (String)(evt.getNewValue());
statusMessageLabel.setText((text == null) ? "" : text);
messageTimer.restart();
} else if ("progress".equals(propertyName)) {
int value = (Integer)(evt.getNewValue());
progressBar.setVisible(true);
progressBar.setIndeterminate(false);
progressBar.setValue(value);
}
}
});
}
@Action
public void showAboutBox() {
if (aboutBox == null) {
JFrame mainFrame = INotePadApp.getApplication().getMainFrame();
aboutBox = new INotePadAboutBox(mainFrame);
aboutBox.setLocationRelativeTo(mainFrame);
}
INotePadApp.getApplication().show(aboutBox);
}
//Other generated code
ОТВЕТ: Я нашел способ, как решить эту проблему.
WindowListener winListener = new TestWindowListener();
JFrame mainFrame = super.getFrame();
mainFrame.addWindowListener(winListener);
Я думаю, что это может быть полезно для кого-то.
1 ответ
Решение
Посмотрите на Javadoc для каркаса приложения (трудно найти, но он здесь):
WindowListener winListener = new TestWindowListener();
JFrame mainFrame = app.getMainFrame();
mainFrame.addWindowListener(winListener);