Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

Eraserhead

macrumors G4
Nov 3, 2005
10,434
12,250
UK
like sheets? Or just like windows pop up windows? And what software are you using to make the GUI? Swing? Ant?

I don't know the answer to this question, just the answers should help others who know about Java GUI's to help you.
 

toddburch

macrumors 6502a
Dec 4, 2006
748
0
Katy, Texas
Here's a splash screen. Displays for about 5 seconds and goes away.

Code:
// Java Application sample to display a splash screen.

public class JavaPopup extends javax.swing.JWindow {

	private int duration ; 
	
	public JavaPopup(int d) { 
		duration = d ; 
	} 
	
	void ShowSplash(String text) { 
		
		javax.swing.JPanel content = (javax.swing.JPanel)getContentPane() ; 	
		content.setBackground(java.awt.Color.blue) ; 
		
		// Set the window's bounds & center the window 
		int width = 700 ; 
		int height = 200 ; 
		java.awt.Dimension screen = java.awt.Toolkit.getDefaultToolkit().getScreenSize() ; 
		int x = (screen.width-width) / 2 ; 
		int y = (screen.height - height) / 2 ; 
		setBounds(x,y,width,height) ; 
		
		javax.swing.JLabel myLabel   = new javax.swing.JLabel(text, javax.swing.JLabel.CENTER) ; 
		myLabel.setFont(new java.awt.Font("Courier" , java.awt.Font.BOLD,60)) ; 
		
		content.add(myLabel, java.awt.BorderLayout.CENTER ) ; 
		content.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(3,30,105,64),5) ); 
	
		setVisible(true) ;    // Display it 
		
		try { 
			Thread.sleep(duration) ;    // Wait a little while 
		}
		catch (Exception e) {}         // ignore any errors 
	} 
	
	void showSplashAndExit() { 
		ShowSplash("JAVA POPUP SCREEN") ; 
		System.exit(0) ; 
	} 
	
	public static void main(String[] args) { 
		JavaPopup splash = new JavaPopup(5000) ;  // 1000 = 1 second 
		splash.showSplashAndExit() ; 
	}
}
 

Attachments

  • Picture 2.png
    Picture 2.png
    6.9 KB · Views: 436

ashokformac

macrumors member
Original poster
Mar 26, 2007
34
0
submenu in java Jpopup menu

Thank you fro your responses.

Actually i want to open a sub menu in Jpopup menu.
when i tried this , sub menu is not coming in my popup menu.

I am using netbeans and mac os...

i am using JDIC tray icon to show the Jpopup menu...

thanks in advance..
 

ashokformac

macrumors member
Original poster
Mar 26, 2007
34
0
submenu in Jpopup

This is my code



/*
* Tray.java
*
* Created on April 9, 2007, 2:11 PM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/

package javaapplication2;

/*
* Copyright (C) 2004 Sun Microsystems, Inc. All rights reserved. Use is
* subject to license terms.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the Lesser GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA.
*/

import org.jdesktop.jdic.tray.*;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;


public class Tray implements ActionListener, ItemListener {
public JPopupMenu menu;
org.jdesktop.jdic.tray.SystemTray tray = org.jdesktop.jdic.tray.SystemTray.getDefaultSystemTray();
org.jdesktop.jdic.tray.TrayIcon ti;
JFrame frame;
public Tray() {


JMenu submenu;
JMenuItem menuItem;
JRadioButtonMenuItem rbMenuItem;
JCheckBoxMenuItem cbMenuItem;

try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) {
e.printStackTrace();
}
if( Integer.parseInt(System.getProperty("java.version").substring(2,3)) >=5 )
System.setProperty("javax.swing.adjustPopupLocationToFit", "false");
menu = new JPopupMenu("A Menu");

// a group of JMenuItems
menuItem = new JMenuItem("A text-only menu item", KeyEvent.VK_T);
// menuItem.setMnemonic(KeyEvent.VK_T); //used constructor instead
menuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_1,
ActionEvent.CTRL_MASK));
menuItem.getAccessibleContext().setAccessibleDescription("This doesn't really do anything");
menuItem.addActionListener(this);
menu.add(menuItem);

// ImageIcon icon = new ImageIcon("middle.gif");
ImageIcon icon = new ImageIcon(Tray.class.getResource("images/middle.gif"));

menuItem = new JMenuItem("Both text and icon", icon);
menuItem.setMnemonic(KeyEvent.VK_B);
menuItem.addActionListener(this);
menu.add(menuItem);

menuItem = new JMenuItem(icon);
menuItem.setMnemonic(KeyEvent.VK_D);
menuItem.addActionListener(this);
menu.add(menuItem);

// a group of radio button menu items
menu.addSeparator();
ButtonGroup group = new ButtonGroup();

rbMenuItem = new JRadioButtonMenuItem("A radio button menu item");
rbMenuItem.setSelected(true);
rbMenuItem.setMnemonic(KeyEvent.VK_R);
group.add(rbMenuItem);
rbMenuItem.addActionListener(this);
menu.add(rbMenuItem);

rbMenuItem = new JRadioButtonMenuItem("Another one");
rbMenuItem.setMnemonic(KeyEvent.VK_O);
group.add(rbMenuItem);
rbMenuItem.addActionListener(this);
menu.add(rbMenuItem);

// a group of check box menu items
menu.addSeparator();
cbMenuItem = new JCheckBoxMenuItem("A check box menu item");
cbMenuItem.setMnemonic(KeyEvent.VK_C);
cbMenuItem.addItemListener(this);
menu.add(cbMenuItem);

cbMenuItem = new JCheckBoxMenuItem("Another one");
cbMenuItem.setMnemonic(KeyEvent.VK_H);
cbMenuItem.addItemListener(this);
menu.add(cbMenuItem);

// a submenu
menu.addSeparator();
submenu = new JMenu("A submenu");
submenu.setMnemonic(KeyEvent.VK_S);

menuItem = new JMenuItem("An item in the submenu");
menuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_2,
ActionEvent.CTRL_MASK));
menuItem.addActionListener(this);
submenu.add(menuItem);

menuItem = new JMenuItem("Another item");
menuItem.addActionListener(this);
submenu.add(menuItem);
menu.add(submenu);

// "Quit" menu item
menu.addSeparator();
menuItem = new JMenuItem("Quit");
menuItem.addActionListener(this);
menu.add(menuItem);

// ImageIcon i = new ImageIcon("duke.gif");
ImageIcon i = new ImageIcon(Tray.class.getResource("images/duke.gif"));

ti = new org.jdesktop.jdic.tray.TrayIcon(i, "JDIC Tray Icon API Demo - TrayIcon", menu);

ti.setIconAutoSize(true);
ti.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
System.out.println("Ti : "+e.getSource());
menu.setLocation(900,10);

int x = ti.getLocationOnScreen().x;
int y = ti.getLocationOnScreen().y;

menu.setLocation(x+10,y-840);

System.out.println("Ti Loc : "+ti.getLocationOnScreen());

// menu.setLocation(ti.getLocationOnScreen
menu.setVisible(true);
//frame.setVisible(!frame.isVisible());
}
});
ti.addBalloonActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
JOptionPane.showMessageDialog(null,
"Balloon Message been clicked - TrayIcon", "Message",
JOptionPane.INFORMATION_MESSAGE);
}
});

tray.addTrayIcon(ti);

// Construct the GUI for balloon message.
frame = new JFrame("Show Balloon Message");
frame.getContentPane().setLayout(new BorderLayout());
frame.setDefaultCloseOperation(JDialog.HIDE_ON_CLOSE);

JPanel topPanel = new JPanel();
topPanel.setBorder(BorderFactory.createEtchedBorder());
topPanel.setLayout(new BorderLayout());
topPanel.add(new JLabel("Caption: "), BorderLayout.WEST);
final JTextField captionField = new JTextField("JDIC TrayIcon");
topPanel.add(captionField, BorderLayout.CENTER);
JPanel typePanel = new JPanel();
final JComboBox typeBox = new JComboBox(new String[]{"INFO", "ERROR", "WARNING", "NONE" });
typePanel.add(new JLabel(" Type:"), BorderLayout.WEST);
typePanel.add(typeBox, BorderLayout.EAST);
topPanel.add(typePanel, BorderLayout.EAST);
frame.getContentPane().add(topPanel, BorderLayout.NORTH);

JPanel messagePanel = new JPanel();
messagePanel.setLayout(new BorderLayout());
messagePanel.add(new JLabel("Message:"), BorderLayout.NORTH);
final JTextArea messageArea = new JTextArea(5, 20);
messageArea.setText("This is a balloon message.\nYou can set the caption, message, \nand message type");
messageArea.setBorder(BorderFactory.createEtchedBorder());
messagePanel.add(messageArea);
frame.getContentPane().add(messagePanel, BorderLayout.CENTER);

JPanel buttonPanel = new JPanel();
final JButton okButton = new JButton("OK");
final JButton cancelButton = new JButton("Cancel");
ActionListener al = new ActionListener(){
public void actionPerformed(ActionEvent e) {
if(e.getSource() == cancelButton)
frame.setVisible(false);
else if(e.getSource() == okButton){
ti.displayMessage(captionField.getText(), messageArea.getText(), typeBox.getSelectedIndex());
}
}
};
okButton.addActionListener(al);
cancelButton.addActionListener(al);
buttonPanel.add(okButton);
buttonPanel.add(cancelButton);
frame.getContentPane().add(buttonPanel, BorderLayout.SOUTH);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}

// Returns just the class name -- no package info.
protected String getClassName(Object o) {
String classString = o.getClass().getName();
int dotIndex = classString.lastIndexOf(".");

return classString.substring(dotIndex + 1);
}

public void actionPerformed(ActionEvent e) {
JMenuItem source = (JMenuItem) (e.getSource());
String s = source.getText();
if (s.equalsIgnoreCase("Quit")) {
System.out.println("Quit menu item selected!");
System.exit(0);
} else {
s = "Action event detected." + "\n" + " Event source: "
+ source + " (an instance of " + getClassName(source) + ")";

System.out.println(s);
}
}

public void itemStateChanged(ItemEvent e) {
JMenuItem source = (JMenuItem) (e.getSource());
String s = "Item event detected." + "\n" + " Event source: "
+ source.getText() + " (an instance of " + getClassName(source)
+ ")" + "\n" + " New state: "
+ ((e.getStateChange() == ItemEvent.SELECTED)
? "selected"
: "unselected");

System.out.println(s);
}

public static void main(String[] args) {
new javaapplication2.Tray();
}

}
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.