Update of /cvsroot/magicmap/magicmapclient/src/net/sf/magicmap/client/gui
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26785/src/net/sf/magicmap/client/gui
Modified Files:
MainGUI.java
Log Message:
+ show version information
Index: MainGUI.java
===================================================================
RCS file: /cvsroot/magicmap/magicmapclient/src/net/sf/magicmap/client/gui/MainGUI.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** MainGUI.java 15 Feb 2005 15:06:38 -0000 1.3
--- MainGUI.java 16 Feb 2005 09:02:02 -0000 1.4
***************
*** 112,116 ****
// Hauptfenstereigenschaften setzen
this.setSize(new Dimension(1024, 768));
! this.setTitle("MagicMap - Version " + Version.VERSION);
this.setIconImage(new ImageIcon(this.getClass().getClassLoader().getResource("MagicMapLogo.gif")).getImage());
// Menu erstellen
--- 112,116 ----
// Hauptfenstereigenschaften setzen
this.setSize(new Dimension(1024, 768));
! this.setTitle("MagicMap - Version " + Version.getVersion());
this.setIconImage(new ImageIcon(this.getClass().getClassLoader().getResource("MagicMapLogo.gif")).getImage());
// Menu erstellen
***************
*** 210,214 ****
aboutAction = new MagicAction("about") {
public void actionPerformed(ActionEvent e){
! JOptionPane.showMessageDialog(MainGUI.this, "MagicMap - Version " + Version.VERSION +"\n\nHumboldt-Universität zu Berlin\nInstitut für Informatik, Peter Ibach, Tobias Hübner, Martin Schweigert",GUIUtils.i18n("about",false),JOptionPane.PLAIN_MESSAGE);
}};
--- 210,214 ----
aboutAction = new MagicAction("about") {
public void actionPerformed(ActionEvent e){
! JOptionPane.showMessageDialog(MainGUI.this, "MagicMap - Version " + Version.getVersion() +"\n\nHumboldt-Universität zu Berlin\nInstitut für Informatik, Peter Ibach, Tobias Hübner, Martin Schweigert",GUIUtils.i18n("about",false),JOptionPane.PLAIN_MESSAGE);
}};
|