diff options
author | Aki <please@ignore.pl> | 2022-02-06 19:14:54 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2022-02-06 19:16:34 +0100 |
commit | d289918bfdf7635ec3bb2c94d8255da2b2572aea (patch) | |
tree | 6e9143cbfd63fd0e6a674d37a51a58ea85882929 /data/shatter/Screens/MsgDlg.frm | |
parent | ba64478a1aa1740da47ff0016dff6cc633900b73 (diff) | |
download | starshatter-d289918bfdf7635ec3bb2c94d8255da2b2572aea.zip starshatter-d289918bfdf7635ec3bb2c94d8255da2b2572aea.tar.gz starshatter-d289918bfdf7635ec3bb2c94d8255da2b2572aea.tar.bz2 |
Added datafiles to the repository
This includes only text files from the most common distribution of content.dat
and shatter.dat.
Diffstat (limited to 'data/shatter/Screens/MsgDlg.frm')
-rw-r--r-- | data/shatter/Screens/MsgDlg.frm | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/data/shatter/Screens/MsgDlg.frm b/data/shatter/Screens/MsgDlg.frm new file mode 100644 index 0000000..4742ab9 --- /dev/null +++ b/data/shatter/Screens/MsgDlg.frm @@ -0,0 +1,120 @@ +FORM + +// +--------------------------------------------------------------------+ +// Project: STARS +// File: MessageDlg.frm +// +// John DiCamillo Software Consulting +// Copyright © 1997-2003. All Rights Reserved. +// +--------------------------------------------------------------------+ + +form: { + rect: (145, 115, 350, 250), + screen_width: 640, + screen_height: 480, + + base_color: ( 92, 92, 92), + back_color: ( 92, 92, 92), + fore_color: (255, 255, 255), + font: "GUI", + + texture: "message.pcx", + + defctrl: { + base_color: ( 92, 92, 92), + back_color: ( 92, 92, 92), + fore_color: (255, 255, 255), + font: GUI, + bevel_width: 4, + bevel_depth: 128, + border: true, + border_color: (0,0,0) + }, + + ctrl: { + id: 100, + type: label, + rect: (160, 140, 320, 20), + text: "Message Title", + transparent: true, + align: center + }, + + + ctrl: { + id: 101, + type: label, + rect: (180, 170, 280, 120), + text: "Message Text", + font: Verdana, + transparent: true + }, + + ctrl: { + id: 1, + type: button, + rect: (325, 310, 100, 25), + back_color: ( 62, 106, 151), + text: "Close" + } +} + + +// +--------------------------------------------------------------------+ +// +--------------------------------------------------------------------+ +// +--------------------------------------------------------------------+ + +form: { + rect: (225, 175, 350, 250), + screen_width: 800, + screen_height: 600, + + base_color: ( 92, 92, 92), + back_color: ( 92, 92, 92), + fore_color: (255, 255, 255), + font: "GUI", + + texture: "message.pcx", + + defctrl: { + base_color: ( 92, 92, 92), + back_color: ( 92, 92, 92), + fore_color: (255, 255, 255), + font: GUI, + bevel_width: 0, + transparent: true, + align: center + }, + + ctrl: { + id: 100, + type: label, + rect: (240, 230, 320, 20), + text: "Message Title", + }, + + ctrl: { + id: 101, + type: label, + rect: (260, 280, 280, 120), + text: "Message Text", + font: Verdana, + }, + + defctrl: { + transparent: false, + font: Terminal, + fore_color: (5,5,5), + align: left, + }, + + ctrl: { + id: 1, + type: button, + rect: (405, 380, 130, 17), + text: Close, + standard_image: grn_130x17_0, + activated_image: grn_130x17_1, + transition_image: grn_130x17_2, + }, +} |