Menu customization
It is possible to modify the content of Sygic menu - remove icons, or add custom modules. This can be done by editing menu.ini file stored in the same folder as Drive.exe
Disabling existing buttons
By default, all the available buttons are displayed. To hide some buttons, edit the menu.ini file, and set the value of button to 0. For example, if you want to hide the button Navigate to... -> Home, set the value of menu.navigateTo.home equal to 0:
[menu.navigateTo]
menu.navigateTo.address=1
menu.navigateTo.favorite=1
menu.navigateTo.history=1
menu.navigateTo.poi=1
menu.navigateTo.zipCode=1
menu.navigateTo.home=0
menu.navigateTo.pointOnMap=1
menu.navigateTo.enterPosition=1
menu.navigateTo.cityCentre=1
menu.navigateTo.cityPOI=1
;group menu.navigateTo.currentPosition=1 menu.navigateTo.lastValidPosition=1
Creating custom buttons
Custom menu is defined in menu.ini after default menu.
To add new button into menu dialog create new section and write list of buttons you want to add below.
For example:
[menu.main]
button1=1
button2=1
This code adds two buttons (button1 and button2) to main menu. It is necessary to define both buttons (see below).
Defining buttons properties
[button1]
bitmap=_b.fromFavorites.bmp
action=default_command
command=hide_application
text=Sygic to background
Parameters
- bitmap
name of picture which will be shown on button. The picture must be stored in Icons folder in 32-bit bmp format. See more info about image formats.
- action
action attribute must be set to default_command. Sygic then performs action defined in command attribute.
- command
command attribute defines action to perform. Possible values are:
- hide_application hides Sygic to background
- route_cancel cancels route and stops navigation
- exit_application ends Sygic
- show_route shows computed route on browse map
- route_summary shows computed route summary
- browse_map shows browse map
- load_map shows dialog enabling user to load map
- volume_settings shows dialog enablig user to set volume
- gps_hardware show dialog enabling user to set GPS settings
- text
Text shown as button description in the software.
Download menu.ini
|