All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.micromata.mgc.javafx.launcher.gui.lf5.MgcLogBrokerMonitor Maven / Gradle / Ivy

There is a newer version: 3.1.3
Show newest version
//
// Copyright (C) 2010-2016 Micromata GmbH
//
// 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 de.micromata.mgc.javafx.launcher.gui.lf5;

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.List;

import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.KeyStroke;

import org.apache.log4j.lf5.viewer.LogBrokerMonitor;

import de.micromata.mgc.javafx.ControllerService;
import javafx.embed.swing.SwingNode;

public class MgcLogBrokerMonitor extends LogBrokerMonitor
{
  SwingNode swingNode;

  public MgcLogBrokerMonitor(SwingNode swingNode, List logLevels)
  {
    super(logLevels);
    this.swingNode = swingNode;
  }

  @Override
  public void setFrameSize(int width, int height)
  {
    System.out.println("MgcLogBrokerMonitor.setFrameSize called");
  }

  @Override
  protected JMenuBar createMenuBar()
  {
    JMenuBar menuBar = new JMenuBar();
    menuBar.add(createFileMenu());
    menuBar.add(createEditMenu());
    menuBar.add(createLogLevelMenu());
    menuBar.add(createViewMenu());
    menuBar.add(createConfigureMenu());
    //    menuBar.add(createHelpMenu());

    return (menuBar);
  }

  @Override
  protected JMenu createFileMenu()
  {
    JMenu fileMenu = new JMenu("File");
    fileMenu.setMnemonic('f');

    fileMenu.add(createCloseMI());
    return fileMenu;
  }

  @Override
  protected JMenuItem createCloseMI()
  {
    JMenuItem result = new JMenuItem("Close");
    result.setMnemonic('c');
    result.setAccelerator(KeyStroke.getKeyStroke("control Q"));
    result.addActionListener(new ActionListener()
    {
      @Override
      public void actionPerformed(ActionEvent e)
      {
        ControllerService.get().runInToolkitThread(() -> {
          Lf5MainWindowController ctl = Lf5MainWindowController.getController();
          if (ctl != null) {
            ctl.hide();
          }
        });
      }
    });
    return result;
  }

  public JFrame getMainFrame()
  {
    return _logMonitorFrame;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy