Menubar: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 23: Line 23:


[[Category:Menubar]]
[[Category:Menubar]]
[[Category:FlightGear feature]]

Revision as of 21:27, 1 November 2008

The in-game menubar of FlightGear is located at the top of the screen.

Styles

The menubar is available in various styles. Currently there are two styles (both are shown below) packaged with FlightGear. The blue/black one is standard, but most developers use the grey/white one. You could switch between styles by pressing Shift + F10.

Menubar1.jpg Menubar2.jpg

Creating your own

It's very easy to make your own designs. Just copy one of the files that you find in data/gui/styles and change it to your needs. Then, edit the follwing code in the data/preferences.xml file to fit your style. You could simply add a line like <style n="0" include="gui/styles/anthrax.xml"/>. The current-style tag specifies the style that should be used when FlightGear loads.

 <gui>
  <current-style type="int" userarchive="y">1</current-style>
  <style n="1" include="gui/styles/classic.xml"/>
  <style n="0" include="gui/styles/anthrax.xml"/>
  <devel-widgets type="bool" userarchive="y">false</devel-widgets>
 </gui>

Related content