Results 1 to 3 of 3
  1. #1
    RichersooN is offline Senior Member
    Join Date
    Jan 2011
    Location
    Rizal Province, Philippiines
    Posts
    167
    Rep Power
    0

    Default quaqua look and feel - TITLEBAR

    Hi,

    Please help me how can the minimize/maximize/close button should be on the left side like below using quaqua look and feel:

    quaqua look and feel - TITLEBAR-1-23-2013-7-37-00-pm.png

    In the actual run they are on the right side:

    quaqua look and feel - TITLEBAR-1-23-2013-7-39-02-pm.png

    Java Code:
      public JButtonDemo() {
    	// explicitly set the design to jaguar
          System.setProperty(
             "Quaqua.design","jaguar"
    
          );
    
    
          // set the Quaqua Look and Feel in the UIManager
          try { 
               UIManager.setLookAndFeel(
                   "ch.randelshofer.quaqua.QuaquaLookAndFeel"
               );
          // set UI manager properties here that affect Quaqua
          
          } catch (Exception e) {
              // take an appropriate action here
            
          }

  2. #2
    DarrylBurke's Avatar
    DarrylBurke is offline Moderator
    Join Date
    Sep 2008
    Location
    Madgaon, Goa, India
    Posts
    9,936
    Rep Power
    16

    Default Re: quaqua look and feel - TITLEBAR

    You could try setting the JFrame's ComponentOrientation to RIGHT_TO_LEFT (after which you may need to set its contentPane's ComponentOrientation to LEFT_TO_RIGHT).

    It does depend on whether the developers of that third party LaF decided to support RTL layouts, of course.

    db
    Why do they call it rush hour when nothing moves? - Robin Williams

  3. #3
    RichersooN is offline Senior Member
    Join Date
    Jan 2011
    Location
    Rizal Province, Philippiines
    Posts
    167
    Rep Power
    0

    Default Re: quaqua look and feel - TITLEBAR

    solved. thank you very much

Similar Threads

  1. How to use sheets of quaqua LookAndFeel
    By arshadalisoomro in forum AWT / Swing
    Replies: 0
    Last Post: 04-19-2011, 03:02 PM
  2. Look And Feel
    By nonabhai in forum AWT / Swing
    Replies: 0
    Last Post: 09-24-2010, 08:23 PM
  3. Replies: 1
    Last Post: 08-18-2010, 07:20 AM
  4. Look and Feel of GUI
    By titir in forum AWT / Swing
    Replies: 9
    Last Post: 04-21-2010, 01:34 PM
  5. [SOLVED] Hide the titlebar of a JEditorPane
    By Eranga in forum AWT / Swing
    Replies: 1
    Last Post: 03-28-2008, 10:28 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •