home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 October
/
PCWorld_1998-10_cd.bin
/
software
/
prehled
/
komix
/
DATA.Z
/
w_genapp_about.srw
< prev
next >
Wrap
Text File
|
1997-09-30
|
2KB
|
94 lines
$PBExportHeader$w_genapp_about.srw
$PBExportComments$Generated about window
forward
global type w_genapp_about from window
end type
type st_1 from statictext within w_genapp_about
end type
type cb_ok from commandbutton within w_genapp_about
end type
end forward
shared variables
// User defined attributes
// Non modeled user defined attributes
end variables
global type w_genapp_about from window
WindowType WindowType = response!
int X = 874
int Y = 429
int Width = 1166
int Height = 569
boolean TitleBar = true
string Title = "About"
boolean ControlMenu = true
st_1 st_1
cb_ok cb_ok
end type
global w_genapp_about w_genapp_about
type variables
// User defined attributes
// Association attributes
// Non modeled user defined attributes
// Control to class mappings
// w_genapp_about --> w_genapp_about
// st_1 --> statictext
// cb_ok --> cb_item
end variables
on w_genapp_about.create
this.st_1=create st_1
this.cb_ok=create cb_ok
this.Control[]={ this.st_1,&
this.cb_ok}
end on
on w_genapp_about.destroy
destroy(this.st_1)
destroy(this.cb_ok)
end on
type st_1 from statictext within w_genapp_about
int X = 183
int Y = 105
int Width = 787
int Height = 97
boolean Enabled = false
string Text = "<Your text here>"
Alignment Alignment = Center!
boolean FocusRectangle = false
long TextColor = 16711680
int TextSize = -10
int Weight = 700
string FaceName = "Arial"
FontFamily FontFamily = Swiss!
FontPitch FontPitch = Variable!
end type
type cb_ok from commandbutton within w_genapp_about
int X = 430
int Y = 277
int Width = 279
int Height = 109
int TabOrder = 1
string Text = "OK"
boolean Default = true
int TextSize = -10
int Weight = 700
string FaceName = "MS Sans Serif"
FontFamily FontFamily = Swiss!
FontPitch FontPitch = Variable!
end type
event clicked;/* Close "About" window */
Close (Parent)
end event