Page 63 of 299 FirstFirst ... 1353616263646573113163 ... LastLast
Results 621 to 630 of 2990

Thread: Mac-style Menu Bar for GTK and Java/Swing applications!

  1. #621
    Join Date
    Aug 2005
    Beans
    18

    Re: Mac-style Menu Bar for GTK and Java/Swing applications!

    Hi all,

    this looks really nice! But I have one question:

    Of course it is the idea of MacOSX, but why not enhance it? The idea behind it is to have only one menubar, because we only can work with one window in parallel.

    What about doing the same with toolbars? I am not sure how it could be made looking good. But maybe this is similar intuitive. Maybe a good designer could make a mockup showing one central toolbar on top of the desktop with the menubar.

    The problem is, that the toolbars have different sizes in applications. The menubar always has the same size. But maybe anybody has a good idea how to make it functional.

    Just an idea.

    Greetings

    Mike

  2. #622
    Join Date
    Aug 2006
    Location
    Germany, Bonn
    Beans
    59
    Distro
    Xubuntu 7.04 Feisty Fawn

    Re: Mac-style Menu Bar for GTK and Java/Swing applications!

    While I like the central menubar I don't see how a central toolbar would work. For one, a window can have multiple toolbars. Further more, toolbars are often user editable. How would you handle this?

    Still waiting for a freedesktop standard for a central menubar,
    Still waiting for official gtk integration.
    Still waiting for support of non-gtk programs.

  3. #623
    Join Date
    Apr 2007
    Beans
    891
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Mac-style Menu Bar for GTK and Java/Swing applications!

    Hi
    Thank you for reading my post
    should i read all 6x pages in order to be able to change my desktop to Max-OSx like desktop?

    Is there any step by step tutorial that give me details about what to download and what to change to have such an interesting desktop?

    Thanks

  4. #624
    Join Date
    Jan 2007
    Beans
    10

    Re: Mac-style Menu Bar for GTK and Java/Swing applications!

    You can read this one : http://www.taimila.com/osx-guide-2.php

  5. #625
    Join Date
    Oct 2006
    Location
    Argentina
    Beans
    584
    Distro
    Ubuntu

    Re: Mac-style Menu Bar for GTK and Java/Swing applications!

    Quote Originally Posted by DerangedDingo View Post
    1) The 'Title' isn't aligned... I assume this is an easy config file text fix, but, here's a picture



    2) How, by editing a theme's gtkrc file, can I allow/change a panel background?
    1- I think thats a font problem, try with another font.
    2- You have to add something like this:
    Code:
    style "menubar"		
    {
    xthickness			= 0
    ythickness			= 0
    	engine "pixmap"
    	{
    		image
    		{
    			function	= BOX
    			state = NORMAL
    			file		= "panel-bg.png"
    			border	= { 0, 0, 0, 0 }
    			stretch	= FALSE
        		}
     	}
    }
    
    
    class "GtkMenuBar*" 		     style "menubar"
    widget "*PanelWidget*" 		style "menubar"
    widget "*PanelApplet*" 		style "menubar"
    class "*Panel*"		 style "menubar"
    Replace panel-bg.png by the image you want.

    The same here for the panels:
    Code:
    style "panelbg"
    {
      xthickness            			= 0
      ythickness            			= 0
      bg_pixmap[NORMAL]				= "panel-bg.png"
    
    }
    class "*Panel*" style "panelbg"
    class "*notif*" style "panelbg"
    class "*Notif*" style "panelbg"
    class "*Tray*" style "panelbg"
    class "*tray*" style "panelbg"
    You have to check that this options doesn't already exist in the theme. Just in case add the options to the end of the gtkrc file.
    Also check at the beginning for the "include" option. They have priority.

  6. #626
    Join Date
    Apr 2007
    Beans
    Hidden!

    Re: Mac-style Menu Bar for GTK and Java/Swing applications!

    Excuse me, I have installed the debs for Feisty but I want to uninstall this bar.. What can I do?

  7. #627
    Join Date
    Jun 2006
    Location
    Millau, France
    Beans
    1,492
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Mac-style Menu Bar for GTK and Java/Swing applications!

    Quote Originally Posted by Rospo Zoppo View Post
    Excuse me, I have installed the debs for Feisty but I want to uninstall this bar.. What can I do?
    Code:
    sudo apt-get install libgtk2.0-0 --reinstall
    Last edited by ayoli; May 27th, 2007 at 09:09 PM. Reason: forgot a "-"

  8. #628
    Join Date
    Apr 2007
    Beans
    Hidden!

    Re: Mac-style Menu Bar for GTK and Java/Swing applications!

    Quote Originally Posted by ayoli View Post
    Code:
    sudo apt-get install libgtk2.0-0 -reinstall
    It told me that reinstall is not a valid option..

  9. #629
    Join Date
    Mar 2005
    Location
    Portland, Oregon
    Beans
    433
    Distro
    Ubuntu 7.04 Feisty Fawn

    Re: Mac-style Menu Bar for GTK and Java/Swing applications!

    Quote Originally Posted by miketech View Post
    Hi all,

    this looks really nice! But I have one question:

    Of course it is the idea of MacOSX, but why not enhance it? The idea behind it is to have only one menubar, because we only can work with one window in parallel.

    What about doing the same with toolbars? I am not sure how it could be made looking good. But maybe this is similar intuitive. Maybe a good designer could make a mockup showing one central toolbar on top of the desktop with the menubar.

    The problem is, that the toolbars have different sizes in applications. The menubar always has the same size. But maybe anybody has a good idea how to make it functional.

    Just an idea.

    Greetings

    Mike
    Macs actually kind of have this (sometimes). If you fire up MS Word on a mac, the toolbar is detached and by default aligned with the menubar. When you switch applications (if I remember correctly), the toolbar disappears. I would imagine something like this wouldn't be too difficult, so long as the software you're using used the gtk.Toolbar (or whatever) class, which I'm sure not all software does.

  10. #630
    Join Date
    Apr 2007
    Beans
    Hidden!

    Re: Mac-style Menu Bar for GTK and Java/Swing applications!

    Ok, I fixed, thanks anyway

Page 63 of 299 FirstFirst ... 1353616263646573113163 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

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