Settings File

The BcdaMenu GUI is configured by the content provided in a settings file which name is specified on the command line when starting the program. For example, this Linux command:

bcdamenu path/to/menus_settings.ini &

Version “2017.3.0” format of the Settings file

The settings file version 2017.3.0 uses the .ini format, a structure similar to what you would find in Microsoft Windows INI files. This format was chosen for its minimal approach to language markup. The examples provided should guide you to the syntax. For more details, see the documentation for the Python ConfigParser. The web has many explanations of this informal format.

Settings file elements

The settings file consists of sections which are lines starting with “[” and ending with “]”, such as [section_name]. In BcdaMenu, these sections are single words with no embedded white space.

Within a section, one or more lines are given with the syntax of key = value (or key: value). It is expected by the .ini format that any key is unique within its section. In BcdaMenu, the key has two parts. First an integer is given that is used to sort the menu’s items in order`. The integer is not required to be strictly increasing from 1. Gaps and negative numbers are also allowed. Keep the integers between -9999 .. 9999 to avoid any potential misunderstandings. You will not have that many menu items.

Refer to the Example settings file section for an example settings file. As the examples show, both key and value are quite flexible strings. A key should not contain either the “:” or “=” separator characters. The comment characters allowed by the .ini format should also be avoided within either key or value content.

{BcdaMenu] section:
 

This section expects the following keys and values. Other keys and values will be ignored.

title:The window title (default: BCDA Menu)
version:The version of the settings file format. Presently, the only allowed value is 2017.3.0, the settings format of the initial release. If this format ever changes, this key will be used to identify how to handle the different syntax of the settings file of the new version.
menus:Names of the sections below with menu specifications. Its value may have more than one menu name, separated by white space.
menu sections:

As referenced by menus or submenu keys. Each menu section must have a one-word name with no internal white space (to simplify the parsing of names in the [BcdaMenu] section. All menu (and submenu) sections must be unique with the settings file. If the same name is used in more than one section, a configparser.DuplicateSectionError exception will be raised.

other sections:

will be ignored

Shortcut keys

Shortcut keys are not supported for any menu items.

Example Settings File

The settings file in the source code distribution (download, also shown below) is an example demonstrating the various features used by BcdaMenu.

file

The example settings file (highlighted lines show the sections, lines 1, 6, & 19 and the specification of the popup menus, line 4) is shown next.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[BcdaMenu]
title = BcdaMenu: 9-ID-C USAXS
version = 2017.3.0
menus = USAXS linux

[USAXS]
title = 9-ID-C USAXS
1 SAXS Imaging tool = /APSshare/epd/rh6-x86/bin/python /home/beams/USAXS/Apps/USAXS_dataworker/Main.py
2 sample and detector XY position tool = wxmtxy.csh
3 separator =
4 USAXS Q calculator = qToolUsaxs.csh
5 9-ID-C USAXS controls (MEDM) = start_epics
6 Save Instr. status to Elog = saveToElog.csh
7 PyMca = /APSshare/bin/pymca
8 USAXS sample stage tool = /home/beams/USAXS/Apps/wxmtusaxs/wxmtusaxs
9 separator =
10 submenu = example_submenu

[linux]
1 Xload = xload
2 FireFox = firefox

[example_submenu]
title = this is an example of a submenu
1 comment = echo "this is not a comment"
# this is a comment

screens

This settings file produces a GUI titled 9-ID-C USAXS menu with two user menus: USAXS and linux. The following screen views are from Linux.

_images/gui.png

GUI using example settings file.

This is the USAXS menu:

_images/usaxs-menu-dropped.png

GUI using example settings file, showing the USAXS menu.

This is the linux menu:

_images/linux-menu-dropped.png

GUI using example settings file, showing the linux menu.

The “Help” popup menu button

The Help popup menu button is controlled by the program and is not configurable by the user through the settings file.

This is the Help menu:

_images/help-menu-dropped.png

GUI showing the Help menu.

These items are available in the Help popup menu:

  • About … : prints to the console basic information about this program
  • Reload User Menus : reloads the settings file (use this when editing/revising that file)
  • (Un)hide history panel : if checked, show a history panel with command output
  • scroll to new output : if checked, always scroll when new output is received
  • command echo : if checked, show command in history when executed
  • toggle Debug flag : if checked, turns on diagnostic output