... | ... | @@ -12,13 +12,26 @@ Tree, Auto report View는 Iris에 정의되어 있고, Topology, Shelf View는 |
|
|
|
|
|
### 나) IrisFrameWnd
|
|
|
* IrisFrameWnd class
|
|
|
<br><br>
|
|
|
<br>
|
|
|
<img src="http://intra.novonetworks.com:8073/ellie/Study-IRIS/uploads/37d5a21c47801d8be7d06be5eb7b93b7/IrisFrameWndclass.png" width="500">
|
|
|
|
|
|
* IrisFrameWnd OnCreate function
|
|
|
<br><br>
|
|
|
<br>
|
|
|
<img src="http://intra.novonetworks.com:8073/ellie/Study-IRIS/uploads/539fb2fe3d58c71cf2169d3887a531e3/IrisFrameWndOnCreate.png" width="500">
|
|
|
|
|
|
* IrisFrameWnd InitFrame
|
|
|
<br><br>
|
|
|
<img src="http://intra.novonetworks.com:8073/ellie/Study-IRIS/uploads/02d0160b95f54af6fa1257cbe4cceece/IrisFrameWndInitFrame.png" width="500"> |
|
|
\ No newline at end of file |
|
|
<br>
|
|
|
<img src="http://intra.novonetworks.com:8073/ellie/Study-IRIS/uploads/02d0160b95f54af6fa1257cbe4cceece/IrisFrameWndInitFrame.png" width="500">
|
|
|
|
|
|
### 다) Tool bar View
|
|
|
* Tool bar Load
|
|
|
<br>
|
|
|
Z:\ATOM\branches\ellie\MainFrm.cpp 의 int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct) 함수에서 Tool bar가 Load 된다.
|
|
|
1. Iris3ab_SetToolbarEmptyBack(iris3AppPath+"images\\toolbar_back.bmp") : Tool bar의 배경이미지 지정
|
|
|
2. Iris3ab_SetToolbarMarkWidth(480) : 툴바 이미지의 너비 지정
|
|
|
3. Iris3ab_SetButtonSize(42, 60) : 툴바의 모든 버튼의 크기 지정
|
|
|
4. Iris3ab_SetButtonGap(2) : 버튼과 버튼사이의 기본 간격 지정
|
|
|
5. Iris3ab_AddDefaultToolbarBack(iris3AppPath+"images\\toolbar_logo.bmp") : 툴바의 기본 이미지 지정
|
|
|
6. Iris3ab_AddToolbarBack(IRIS3_NODETYPEID_ATOM_COT, iris3AppPath+"images\\toolbar_logo.bmp") : 툴바의 노드 타입별 이미지 지정
|
|
|
7. Iris3ab_AddToolbarButton(IDM_AUTO_DISC_ALL, iris3AppPath+"images\\toolbar_button_autonet.bmp") : 툴바 버튼 추가
|
|
|
8. Iris3ab_AddToolbarSeparator(5) : 버튼 separator 추가 |