What syntax is this?

Hey everyone,

I want to alter a program. Yes I know this is probably above my level but I still want to try. What I want to do is "simply" add to the menu bar, in a certain program, an option to change hotkeys. I found the file that came with the program to change the hotkeys. I am able to set my own hotkeys by changing this file. I want to make this possible inside the program. Something tells me this might be along the lines of GUI.

The following is a bit of the "syntax" used in the files. I was wondering if anyone can reconize the language being used in them. If I know which one it is then that will give me a starting point.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
File=(
	Open=MenuItem(
		Label="&Open"
		//Action="::LoadFile"
		Action="WizardManager::BeginWizard Name='RHWizFileLoader'"
	)
	Close=MenuItem(
		Label="&Close"
		Action="::CloseCurrentView"
	)

	Break0=MenuItemBreak ( ) 

	Save=MenuItem(
		Label="&Save"
		Action="CurrentView::Save"
		//Action="CurrentDocument::BeginWizard Name='RHWizFileSaver' Mode='SaveAs'"		
		//Action="WizardManager::BeginWizard Name='RHWizFileSaver' Mode='SaveAs'"		
	)
	SaveAs=MenuItem(
		Label="Save &As"
		Action="CurrentView::SaveAs"
		//Action="CurrentDocument::SaveAs" 


I'm gonna feel like an idiot if this is actually c++. I am just a beginner. I self taught myself up to "classes(2) in two weeks from this website.

Thanks everyone.
no need to cross post.

This was already asked and answered here:

http://www.cplusplus.com/forum/beginner/18178/

(not actually answered, but yeah)
Last edited on
Topic archived. No new replies allowed.