head	1.1;
access;
symbols;
locks
	root:1.1; strict;
comment	@# @;


1.1
date	2009.12.07.04.22.07;	author root;	state Exp;
branches;
next	;


desc
@/opt/nforge/var/wiki/easylogiclib/data/text/WBAppWindow
@


1.1
log
@118.219.84.10;;cyberuls easylogic ;;
@
text
@= Description = 

* 고정크기의 기본 윈도우입니다. 
* 크기를 변경 할 수가 없지만, 다른 창에 가려졌다 활성화가 되면 redraw, resize 두 개의 이벤트가 발행합니다. 

= Sample = 
{{{#!vim php 
<?php 
include_once "../uselib/import.php";

import("php.ui.winbinder.WBAppWindow");
import("php.ui.winbinder.WBPushButton");

$window = new WBAppWindow(array(
	'title' => '여기는 윈도우',
	'xpos' => WBC_CENTER,
	'ypos' => WBC_CENTER,
	'width' => 500,
	'height' => 500,
));

$window->setVisible(true);

WBApplication::start();
?>
}}}
@
