• Views
  • Iteration Report
  • My Iteration Report
  •  
OMERO.server
  • Login
  • Help/Guide
  • About Trac
  • Preferences
  • Wiki
  • Timeline
  • Roadmap
  • Browse Source
  • View Tickets
  • Search

Context Navigation

  • ← Previous Change
  • Next Change →

Changeset 1021 for branches/bioformats-omero

Show
Ignore:
Timestamp:
10/09/06 14:20:33 (2 years ago)
Author:
TheBrain
Message:

Updating revision number for build information, also adding new icons for status display and +/- buttons

Location:
branches/bioformats-omero/src/ome/formats/importer
Files:
3 modified

  • FileQueueHandler.java (modified) (1 diff)
  • FileQueueTable.java (modified) (1 diff)
  • Main.java (modified) (1 diff)

Legend:

Unmodified
Added
Removed
  • branches/bioformats-omero/src/ome/formats/importer/FileQueueHandler.java

    r1020 r1021  
    243243    { 
    244244        String laf = UIManager.getSystemLookAndFeelClassName() ; 
    245         //laf = "com.sun.java.swing.plaf.windows.WindowsLookAndFeel"; 
    246245        //laf = "com.sun.java.swing.plaf.gtk.GTKLookAndFeel"; 
    247246        //laf = "com.sun.java.swing.plaf.motif.MotifLookAndFeel"; 
    248247        //laf = "javax.swing.plaf.metal.MetalLookAndFeel"; 
    249          
    250         try { 
    251             UIManager.setLookAndFeel(laf); 
    252         } catch (Exception e)  
    253         { System.err.println(laf + " not supported."); } 
     248        //laf = "com.sun.java.swing.plaf.windows.WindowsLookAndFeel"; 
     249         
     250        if (laf.equals("apple.laf.AquaLookAndFeel")) 
     251        { 
     252            System.setProperty("Quaqua.design", "panther"); 
     253             
     254            try { 
     255                UIManager.setLookAndFeel( 
     256                    "ch.randelshofer.quaqua.QuaquaLookAndFeel" 
     257                ); 
     258           } catch (Exception e) { System.err.println(laf + " not supported.");} 
     259        } else { 
     260            try { 
     261                UIManager.setLookAndFeel(laf); 
     262            } catch (Exception e)  
     263            { System.err.println(laf + " not supported."); } 
     264        } 
    254265         
    255266        FileQueueHandler fqh = new FileQueueHandler(null);  
  • branches/bioformats-omero/src/ome/formats/importer/FileQueueTable.java

    r1020 r1021  
    6464         
    6565        // Size of the add/remove buttons (which are square). 
    66         int buttonSize = 36; 
     66        int buttonSize = 40; 
    6767        // Add graphic for add button 
    6868        String addIcon = "gfx/add.png"; 
  • branches/bioformats-omero/src/ome/formats/importer/Main.java

    r1020 r1021  
    6767{ 
    6868 
     69     
    6970    private static final long   serialVersionUID = 1228000122345370913L; 
    7071 

Download in other formats:

  • Unified Diff
  • Zip Archive

Trac Powered

Powered by Trac 0.11
By Edgewall Software.

Visit the Trac open source project at
http://trac.edgewall.org/