55 lines
993 B
XML
55 lines
993 B
XML
/* EHELLO.RSS */
|
|
|
|
#include <hwim.rh>
|
|
#include <hwim.rg>
|
|
#include <ehello.rg>
|
|
|
|
RESOURCE WSERV_INFO ehello_accs
|
|
{
|
|
menbar_id=ehello_mbar;
|
|
first_com=O_COM_EXIT;
|
|
accel={'x'};
|
|
}
|
|
|
|
RESOURCE MENU_BAR ehello_mbar
|
|
{
|
|
items =
|
|
{
|
|
MENU_BAR_ITEM
|
|
{
|
|
menu_id=special_menu;
|
|
mb_item="Special";
|
|
}
|
|
};
|
|
}
|
|
|
|
RESOURCE MENU special_menu
|
|
{
|
|
items =
|
|
{
|
|
MENU_ITEM
|
|
{
|
|
com_id=O_COM_EXIT;
|
|
mn_item="Exit";
|
|
}
|
|
};
|
|
}
|
|
|
|
RESOURCE DIALOG ehdlg
|
|
{
|
|
title="Edit window";
|
|
flags=DLGBOX_RBUF_FILLED;
|
|
controls=
|
|
{
|
|
CONTROL
|
|
{
|
|
class=C_TEXTWIN;
|
|
flags=DLGBOX_ITEM_DEAD;
|
|
prompt="Current text";
|
|
info=TXTMESS { str="*";}; /* placeholder */
|
|
}
|
|
};
|
|
}
|
|
|
|
RESOURCE STRING ehstr_init { str="Hello world"; }
|