1 import javax.swing.*; 2 import java.awt.*; 3 import java.io.*; 4 import java.util.*; 5 import org.jivesoftware.smack.*; 6 import javax.swing.plaf.*; 7 import javax.swing.plaf.metal.MetalLookAndFeel ; 8 import org.jivesoftware.smack.packet.Packet; 9 import java.util.Date ; 10 import java.util.Calendar ; 11 import java.text.DateFormat ; 12 import java.text.SimpleDateFormat ; 13 import whisper.Message; 14 15 16 public final class GUI{ 17 18 19 public static final Cursor WAIT=Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR); 20 21 public static final Cursor NORMAL=Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR); 22 23 private static final DateFormat LOCAL_FORMAT=DateFormat.getDateTimeInstance(DateFormat.SHORT,DateFormat.SHORT); 24 private static final DateFormat LOCAL_TIME_FORMAT=DateFormat.getTimeInstance(DateFormat.SHORT); 25 private static final SimpleDateFormat WHISPER_FORMAT=new SimpleDateFormat ("yyyy-MM-dd hh:mm:ss"); 26 27 private GUI(){ 28 } 30 31 32 public static String getDate(){ 33 return LOCAL_FORMAT.format(new Date ()); 34 } 35 36 37 public static String getTime(){ 38 return LOCAL_TIME_FORMAT.format(new Date ()); 39 } 40 41 42 public static String getDate(whisper.Message m){ 43 Calendar cal = Calendar.getInstance(); 44 try{ 46 cal.setTime(new Date (WHISPER_FORMAT.parse(m.getTime()).getTime()+cal.getTimeZone().getOffset(cal.getTimeInMillis()))); 47 return LOCAL_FORMAT.format(cal.getTime()); 48 } 49 catch(Exception e){ 50 return "UTC:"+m.getTime(); 51 } 52 } 53 54 55 public static String getTime(whisper.Message m){ 56 Calendar cal = Calendar.getInstance(); 57 try{ 59 cal.setTime(new Date (WHISPER_FORMAT.parse(m.getTime()).getTime()+cal.getTimeZone().getOffset(cal.getTimeInMillis()))); 60 return LOCAL_TIME_FORMAT.format(cal.getTime()); 61 } 62 catch(Exception e){ 63 return "UTC:"+m.getTime(); 64 } 65 } 66 67 71 public static String getDate(Packet p){ 72 if(p==null){ 73 return getDate(); 74 } 75 DelayExtension de=(DelayExtension)p.getExtension("x","jabber:x:delay"); 76 if(de==null){ 77 return getDate(); 78 } 79 else{ 80 return de.getLocalStamp(); 81 } 82 } 83 84 88 public static String getTime(Packet p){ 89 if(p==null){ 90 return getTime(); 91 } 92 DelayExtension de=(DelayExtension)p.getExtension("x","jabber:x:delay"); 93 if(de==null){ 94 return getTime(); 95 } 96 else{ 97 return de.getLocalTime(); 98 } 99 } 100 101 104 public static final void connect(JLabel label, JComponent component,String mnemonic, String tooltip){ 105 label.setLabelFor(component); 106 if(mnemonic!=null){ 107 label.setDisplayedMnemonic(Lang.s2k(mnemonic)); 108 } 109 if(tooltip!=null){ 110 component.setToolTipText(Lang.gs(tooltip)); 111 } 112 } 113 114 public static final Box box(JLabel l,JComponent c){ 115 final Box r=Box.createHorizontalBox(); 116 r.add(l); 117 r.add(r.createGlue()); 118 r.add(c); 119 r.add(r.createGlue()); 120 return r; 121 } 122 123 124 public static final JPanel panel(JComponent first,JComponent second, int gap){ 125 JPanel panel=new JPanel(new FlowLayout(FlowLayout.LEFT,gap,gap)); 126 panel.add(first); 127 panel.add(second); 128 return panel; 129 } 130 131 135 public static void showError(Component frame,String title, String msg){ 136 if(title==null){ 137 JOptionPane.showMessageDialog(frame,Lang.gs(msg),Lang.gs("error"), JOptionPane.ERROR_MESSAGE); 138 } 139 else{ 140 JOptionPane.showMessageDialog(frame,Lang.gs(msg),Lang.gs(title), JOptionPane.ERROR_MESSAGE); 141 } 142 } 143 144 148 public static void showWarning(Component frame,String title, String msg){ 149 if(title==null){ 150 JOptionPane.showMessageDialog(frame,Lang.gs(msg),Lang.gs("error"), JOptionPane.WARNING_MESSAGE); 151 } 152 else{ 153 JOptionPane.showMessageDialog(frame,Lang.gs(msg),Lang.gs(title), JOptionPane.WARNING_MESSAGE); 154 } 155 } 156 157 161 public static void showWarning(Component frame,String title, String msg, String additional){ 162 if(title==null){ 163 JOptionPane.showMessageDialog(frame,Lang.gs(msg)+"\r\n"+additional,Lang.gs("error"), JOptionPane.WARNING_MESSAGE); 164 } 165 else{ 166 JOptionPane.showMessageDialog(frame,Lang.gs(msg)+"\r\n"+additional,Lang.gs(title), JOptionPane.WARNING_MESSAGE); 167 } 168 } 169 170 175 public static void showError(Component frame,String title, String msg, String additional){ 176 if(msg==null){msg="error";} 177 if(additional==null){additional="";} 178 if(title==null){ 179 JOptionPane.showMessageDialog(frame,Lang.gs(msg)+"\r\n"+additional,Lang.gs("error"), JOptionPane.ERROR_MESSAGE); 180 } 181 else{ 182 JOptionPane.showMessageDialog(frame,Lang.gs(msg)+"\r\n"+additional,Lang.gs(title), JOptionPane.ERROR_MESSAGE); 183 } 184 } 185 186 191 public static void showError(Component frame,String title, String msg,String additional, XMPPException xe){ 192 String detail=xe.getMessage(); 193 if(additional==null){additional="";} 194 if(xe.getXMPPError()!=null){ 195 if(xe.getXMPPError().getMessage()!=null){ 196 detail=xe.getXMPPError().getMessage(); 197 } 198 } 199 showError(frame,title,msg,additional+"\r\n"+detail); 200 } 201 202 204 public static void showInfo(Component frame,String title, String msg){ 205 JOptionPane.showMessageDialog(frame,Lang.gs(msg),Lang.gs(title), JOptionPane.INFORMATION_MESSAGE); 206 } 207 208 public static void showInfo(Component frame,String title, String msg, String additional){ 209 JOptionPane.showMessageDialog(frame,Lang.gs(msg)+"\r\n"+additional,Lang.gs(title), JOptionPane.INFORMATION_MESSAGE); 210 } 211 212 213 public static void showAbout(Component parent){ 214 WhisperIM.About.show(parent); 215 } 216 217 221 public static void errorStop(String msg, Throwable t){ 222 if(msg==null){ 223 msg=new String ("Critical Error"); 224 } 225 if(t!=null){ 226 msg=msg+"\r\n"+t.toString(); 227 } 228 try{ System.err.println(new java.util.Date ().toString()); System.err.println(msg); if(t!=null){ 232 t.printStackTrace(System.err); } 234 System.err.println(); System.err.close(); } 237 catch (Exception e){ 238 } 240 JOptionPane.showMessageDialog(null,msg,Lang.gs("error"), JOptionPane.ERROR_MESSAGE); System.exit(-1); 242 } 243 244 246 public static void loadPrefs(){ 247 try{ 248 WhisperIM.UserPref.load(new FileInputStream(new File(WhisperIM.userDir,WhisperIM.USER_PREF_FILE_NAME))); } 250 catch(Exception e){ 251 WhisperIM.UserPref=new DefaultUserPref(); 252 JOptionPane.showMessageDialog(WhisperIM.Login_Window.getFrame(),Lang.gs("cnlup")+e.toString()+")",Lang.gs("error"), 253 JOptionPane.ERROR_MESSAGE); 254 } 255 if(!WhisperIM.UserPref.getProperty("lang").equals("auto")){ loadLang(); 258 } 259 WhisperIM.userPrefLoaded=true; 260 } 261 262 263 public static void loadLang(){ 264 String parts[]=WhisperIM.UserPref.getProperty("lang").split("_"); 265 if(parts.length==0 || parts.length>3){ 266 System.err.println("Bad language preference:"+WhisperIM.UserPref.getProperty("lang")); 268 WhisperIM.lang=ListResourceBundle.getBundle("Lang"); return; 270 } 271 Locale l=null; 272 if(parts.length==1){ 273 l=new Locale(parts[0]); 274 } 275 if(parts.length==2){ 276 l=new Locale(parts[0],parts[1]); 277 } 278 if(parts.length==3){ 279 l=new Locale(parts[0],parts[1],parts[2]); 280 } 281 WhisperIM.lang=ListResourceBundle.getBundle("Lang",l); 282 } 283 284 285 public static void setScrollBars(JScrollPane sp){ 286 sp.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER); 287 if(WhisperIM.isMac){ 288 sp.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS); 289 } 290 else{ 291 sp.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED); 292 } 293 } 294 295 public static String [] translate(String [] a){ 296 String result[]=new String [a.length]; 297 String txt; 298 for(int i=0;i<a.length;i++){ 299 try{ 300 txt=(Lang.gs("form_"+a[i].trim().toLowerCase())); 301 } 302 catch(MissingResourceException e){ 303 txt=a[i]; 304 } 305 result[i]=txt; 306 } 307 return result; 308 } 309 310 public static String getHeader(){ 311 return "<html><body bgcolor=\""+WhisperIM.UserPref.getProperty("background_colour")+"\"><font face=\""+WhisperIM.UserPref.getProperty("text_font")+"\" color=\""+WhisperIM.UserPref.getProperty("text_colour")+"\" size=\""+WhisperIM.UserPref.getProperty("text_size")+"\">"; 312 } 313 314 public static final String FOOTER="</font></body></html>"; 315 }
| Popular Tags
|