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


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


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


1.1
log
@118.219.84.10;;cyberuls easylogic ;;
@
text
@= Description = 
 * 툴바

= Sample = 
{{{#!vim php 
<?php

$window = new WBAppWindow(array(
	'title' => 'AppWindow - 300 * 300 고정크기 Window',
	'width' => 300,
	'height' => 300
));


$window->createToolBar(array(
	'items' => array(
		null,
		array('tooltip' => 'close', 'image' => 3, 'callback' => 'test'),
	), 
	'image' => "D:\\Project\\easylogic\\wb\\phpcode\\resources\\toolbar.bmp"
));

$window->setVisible(true);

WBApplication::start();

function test($eo) { 
	echo "bbb", PHP_EOL;
}

?>
}}}
@
