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


1.2
date	2009.12.14.07.11.41;	author root;	state Exp;
branches;
next	1.1;

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


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


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

 * Tab 을 표시해주는 Control 이다. 
 * 현재 winbinder에서 사용하는 TabControl은 제한사항이 몇가지 있다. (아래는 winbinder menual에서 인용) 
 * The maximum number of tabs in a tab control is 16. 
  최대 가질 수 있는 Tab 의 수 16개 
 * The maximum number of controls in a tab control is 512. 
  하나의 Tab에 들어갈 수 있는 Control의 수 512 
 * It is possible to include a tab control inside a tab control (nesting). If tab controls are inserted beyond one level of nesting, their respective controls will not generate any events. 
  Tab 안에 TabControl을 넣을 수 있는 것은 가능하다. 다만 그 안에 들어가는 각각의 control 들의 이벤트들은 제어하지는 않을 것이다. 
  TabControl 도 하나의 Window 개념이라서 그 안에 들어가는 Control은 모두 TabControl에서 이벤트를 실행하게끔 handler를 지정해줘야 한다.

= Problem = 
 * 최초 설정한 크기를 제외하고 실제로 컨트롤을 표시하는 영역(work area)을 늘릴 수가 없다. 
  기본 크기가 width:200, height:200 인 TabControl을 wb_set_size() 를 이용해서 크기를 늘리면 화면상의 Tab Page 크기는 늘어나지만  
 그 안에 표시되는 컨트롤들은 200, 200 안에 갇혀 있고 늘어난 영역에서 표시가 되지 않는다. 
  이것은 TabControl이 Window 의 한 종류이기 때문에 ResizableWindow 와 같이 work area 를 표시를 제대로 해주지 못하는 문제가 있는 것 같다. 이를 어찌 극복해야하는가?
@


1.1
log
@118.219.84.10;;cyberuls easylogic ;;
@
text
@d3 2
a4 3
 Tab 을 표시해주는 Control 이다. 
 현재 winbinder에서 사용하는 TabControl은 제한사항이 몇가지 있다. (아래는 winbinder menual에서 인용) 
 
@
