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

dorkbox.systemTray.nativeUI.AwtMenuItemStatus Maven / Gradle / Ivy

Go to download

Cross-platform SystemTray support for Swing/AWT, GtkStatusIcon, and AppIndicator on Java 8+

There is a newer version: 4.4
Show newest version
/*
 * Copyright 2014 dorkbox, llc
 *
 * 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 dorkbox.systemTray.nativeUI;

import static java.awt.Font.DIALOG;

import java.awt.Font;
import java.awt.MenuItem;

import dorkbox.systemTray.Status;
import dorkbox.systemTray.peer.StatusPeer;
import dorkbox.util.SwingUtil;

class AwtMenuItemStatus implements StatusPeer {

    private final AwtMenu parent;
    private final MenuItem _native = new MenuItem();

    AwtMenuItemStatus(final AwtMenu parent) {
        this.parent = parent;

        // status is ALWAYS at 0 index...
        parent._native.insert(_native, 0);
    }

    @Override
    public
    void setText(final Status menuItem) {
        SwingUtil.invokeLater(new Runnable() {
            @Override
            public
            void run() {
                Font font = _native.getFont();
                if (font == null) {
                    font = new Font(DIALOG, Font.BOLD, 12); // the default font used for dialogs.
                }
                else {
                    font = font.deriveFont(Font.BOLD);
                }

                _native.setFont(font);
                _native.setLabel(menuItem.getText());

                // this makes sure it can't be selected
                _native.setEnabled(false);
            }
        });
    }

    @Override
    public
    void remove() {
        SwingUtil.invokeLater(new Runnable() {
            @Override
            public
            void run() {
                parent._native.remove(_native);
            }
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy