Commit d6f97fd2 authored by claes's avatar claes

Menu item 'Help/about proview' added

parent d92972cb
......@@ -63,6 +63,7 @@ procedure
wtt_activate_scriptbase(integer);
wtt_activate_help(integer);
wtt_activate_help_project(integer);
wtt_activate_help_proview(integer);
wtt_create_menubutton(integer);
wtt_create_msg_label(integer);
wtt_create_cmd_prompt(integer);
......@@ -1078,6 +1079,18 @@ object help_entry : XmCascadeButton
XmNactivateCallback = procedure wtt_activate_help_project(wtt_ctx);
};
};
XmPushButton
{
arguments
{
XmNlabelString = compound_string("About Proview");
XmNfontList = menu_font;
};
callbacks
{
XmNactivateCallback = procedure wtt_activate_help_proview(wtt_ctx);
};
};
};
};
};
......
......@@ -33,6 +33,7 @@ c_Zoom_reset : compound_string("Zoom reset");
c_Help : compound_string("Help");
c_Overview : compound_string("Overview");
c_Project : compound_string("Project");
c_About_Proview : compound_string("About Proview");
! module xtt_op.uil
......
......@@ -37,6 +37,7 @@ procedure
xtt_activate_zoom_reset(integer);
xtt_activate_help(integer);
xtt_activate_help_project(integer);
xtt_activate_help_proview(integer);
xtt_create_msg_label(integer);
xtt_create_cmd_prompt(integer);
xtt_create_cmd_input(integer);
......@@ -491,6 +492,18 @@ object help_entry : XmCascadeButton
XmNactivateCallback = procedure xtt_activate_help_project(xtt_ctx);
};
};
XmPushButton
{
arguments
{
XmNlabelString = c_About_Proview;
XmNfontList = menu_font;
};
callbacks
{
XmNactivateCallback = procedure xtt_activate_help_proview(xtt_ctx);
};
};
};
};
};
......
......@@ -33,6 +33,7 @@ c_Zoom_reset : compound_string("
c_Help : compound_string("Hjlp");
c_Overview : compound_string("versikt");
c_Project : compound_string("Projekt");
c_About_Proview : compound_string("Om Proview");
! module xtt_op.uil
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment