Package com.l2fprod.gui.plaf.skin.impl.gtk

Examples of com.l2fprod.gui.plaf.skin.impl.gtk.GtkSkin


   *
   * @exception GtkSkinNotFoundException  Description of Exception
   * @exception Exception                 Description of Exception
   */
  public LinuxLookAndFeel() throws GtkSkinNotFoundException, Exception {
    setSkin(new GtkSkin(GtkSkin.getDefaultSkinLocation()));
  }
View Full Code Here


   */
  public static Skin loadSkin(java.net.URL url) throws Exception {
    String filename = url.getFile();

    if (filename.endsWith("gtkrc")) {
      return new GtkSkin(url, getInputStream(url));
    } else if (filename.endsWith(".themerc")) {
      return new KdeSkin(url, getInputStream(url));
    } else {
      throw new Exception(
        "Unable to load this skin "
View Full Code Here

TOP

Related Classes of com.l2fprod.gui.plaf.skin.impl.gtk.GtkSkin

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.