Java:剧院座位表

发布于 2024-12-17 09:53:16 字数 112 浏览 0 评论 0原文

我正在寻找一个解决方案(库)来使用 Java(和 Swing/JFace)生成和/或显示动态座位表。

应该可以为单个座位添加颜色并定义活动。 有没有现成的库或标准程序?

提前致谢

I'm looking for a solution (library) to generate and/or display a dynamic seating chart using Java (and Swing/JFace).

There should be possibilities to add color to single seats and for defining events.
Is there any ready to use library or standard-procedure?

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寄与心 2024-12-24 09:53:16

不需要寻找一些解决方案或库(当然谷歌可以返回它),但可以通过实现 JToggleButton & 轻松完成。图标(或颜色),非常简单的示例

在此处输入图像描述

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class TheaterJToggle {

    private int rows = 6;
    private int columns = 8;
    private Icon res = (UIManager.getIcon("OptionPane.errorIcon"));

    public TheaterJToggle() {
        JPanel panel = new JPanel(new GridLayout(columns, rows));
        for (int row = 0; row < rows; row++) {
            for (int column = 0; column < columns; column++) {
                final JToggleButton button = new JToggleButton("Row " + row + " seat " + column);
                button.addActionListener(new ActionListener() {

                    @Override
                    public void actionPerformed(ActionEvent actionEvent) {
                        AbstractButton abstractButton = (AbstractButton) actionEvent.getSource();
                        boolean selected = abstractButton.getModel().isSelected();
                        if (selected) {
                            button.setIcon(res);
                        } else {
                            button.setIcon(null);
                        }
                    }
                });
                panel.add(button);
            }
        }
        final JFrame frame = new JFrame("JToggleButton Test");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.add(panel);
        frame.pack();
        frame.setLocation(150, 150);
        frame.setVisible(true);
    }

    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {

            @Override
            public void run() {
                TheaterJToggle theaterJToggle = new TheaterJToggle();
            }
        });
    }
}

there no required looking for some solution or library (sure google can returns that), but could be so easilly done by implements JToggleButton & Icon (or Color), very siple example

enter image description here

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class TheaterJToggle {

    private int rows = 6;
    private int columns = 8;
    private Icon res = (UIManager.getIcon("OptionPane.errorIcon"));

    public TheaterJToggle() {
        JPanel panel = new JPanel(new GridLayout(columns, rows));
        for (int row = 0; row < rows; row++) {
            for (int column = 0; column < columns; column++) {
                final JToggleButton button = new JToggleButton("Row " + row + " seat " + column);
                button.addActionListener(new ActionListener() {

                    @Override
                    public void actionPerformed(ActionEvent actionEvent) {
                        AbstractButton abstractButton = (AbstractButton) actionEvent.getSource();
                        boolean selected = abstractButton.getModel().isSelected();
                        if (selected) {
                            button.setIcon(res);
                        } else {
                            button.setIcon(null);
                        }
                    }
                });
                panel.add(button);
            }
        }
        final JFrame frame = new JFrame("JToggleButton Test");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.add(panel);
        frame.pack();
        frame.setLocation(150, 150);
        frame.setVisible(true);
    }

    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {

            @Override
            public void run() {
                TheaterJToggle theaterJToggle = new TheaterJToggle();
            }
        });
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文