LImageViewer::Create

#include "ltwrappr.h"

L_INT LImageViewer::Create (hWndParent, lpRect, uFlags);

HWND hWndParent;

/* handle to the parent window */

RECT L_FAR * lpRect;

/* pointer to a structure */

L_UINT uFlags;

/* reserved for future use */

Creates a container, which is a window that contains a number of child windows (cells). Each cell can hold a single image or a list of images. This function is available only in the Medical Imaging Suite toolkits.

Parameter

Description

hWndParent

Handle to the parent or owner window of the container window being created.

lpRect

Pointer to a RECT structure that contains the initial bounds of the container window. The values in this structure are specified in pixels and are relative to the parent window.

uFlags

Reserved for future use. Must be zero.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

This function will create a window that will hold the container. This container window serves as the "image viewer".

Each container has numerous characteristics, such as the number of rows, the number of columns, border colors, background colors, cursors, etc. that can be set programmatically using LImageViewer::SetProperties. To get the current characteristics of a specific container, call LImageViewer::GetProperties.

A container can also have certain actions, either standard or user-defined, associated with it. These actions are applied either through the mouse or through keystroke combinations. For more information, refer to Applying Actions.

When a container window is viewed in an application, 3-dimensional thick dark lines called splitters are visible to the right of the container window and at the bottom of the container window. In an application, these allow the user to dynamically change the number of rows and columns used to display the images, by dragging an extra splitter into position. The size of the cells can also be modified by moving existing splitters.

While the user drags the splitter using the left mouse button, an inverted line appears showing the new position. If the user clicks the right mouse button while dragging the splitter, this will cancel the dragging.

The maximum number of rows allowed is 4. The maximum number of columns is 8. If the image viewer contains the maximum number of rows, the extra splitter at the bottom of the image viewer will disappear. Likewise, if the image viewer contains the maximum number of columns, the extra splitter to the right of the image viewer will disappear.

When the container created by this function is no longer needed, free the container and any associated memory by calling LImageViewer::Destroy. For every call to LImageViewer::Create there must be a call to LImageViewer::Destroy.

Required DLLs and Libraries

LTIVW

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

See Also

Functions:

LImageViewer::GetWindowHandle, LImageViewer::Destroy, LImageViewer::SetProperties, LImageViewer::GetProperties, Class Members

Topics:

Using the Image Viewer

 

Window Control/Image Viewer Functions: Using the Image Viewer

Example

#define RECT_HEIGHT(lpRect)      ((lpRect)->bottom - (lpRect)->top)
#define SELECT_FONT(hDC, hFont)  ((HFONT) SelectObject((hDC), (HGDIOBJ)(HFONT)(hFont))) 
class LImageViewerChild :public LImageViewer
{
   L_INT ActionCallBack(HBITMAPLIST L_FAR * phBitmapList, 
                                 L_UINT uCount, 
                                 L_INT nAction, 
                                 L_UINT uMessage, 
                                 WPARAM wParam, 
                                 POINT L_FAR * ptMousePos); 

   virtual L_INT TagCallBack(L_INT nCellIndex, 
                              HDC hDC, 
                              RECT L_FAR * lpRect); 
} ; 
L_INT LImageViewerChild::TagCallBack(L_INT nCellIndex, HDC hDC, RECT L_FAR * lpRect) 
{
   if (nCellIndex == 0) 
   {
      // draw an overlay with italic font
      static LOGFONT lf; 
      HFONT hFont, hOldFont; 
      lf.lfHeight = RECT_HEIGHT(lpRect); 
      lf.lfItalic = TRUE; 
      wsprintf(lf.lfFaceName, TEXT("Times new Roman\0"));
      SetTextAlign(hDC, TA_BOTTOM | TA_RIGHT); 
      SetTextColor(hDC, RGB(255, 255, 255)); 
      hFont = CreateFontIndirect(&lf); 
      hOldFont = SELECT_FONT(hDC, hFont); 
      TextOut(hDC, lpRect->right, lpRect->bottom, TEXT("Owner Text"), 10); 
   }
   return TRUE; 
}

L_INT LImageViewerChild::ActionCallBack(HBITMAPLIST L_FAR * phBitmapList, L_UINT uCount, 
                                      L_INT nAction, L_UINT uMessage, WPARAM wParam, 
                                      POINT L_FAR * ptMousePos) 
{
   L_INT nRet = 0 ; 
   L_UINT uRow = 0 ; 
   switch(uMessage) 
   {
   case WM_LBUTTONDOWN: 
      {
         // The user clicks the left button so the container scroll bar will scroll one step down
         nRet = GetFirstVisibleRow(&uRow, 0); 
         nRet = SetFirstVisibleRow(uRow + 1, 0); 
      }
      break; 

   case WM_RBUTTONDOWN: 
      {
         // The user clicks the right button so the container scroll bar will scroll one step up. 
         nRet = GetFirstVisibleRow(&uRow, 0); 
         nRet = SetFirstVisibleRow(uRow - 1, 0); 
      }
      break; 
   }
   return TRUE; 
}
// This function will create a container, add cells with image lists, and add some tags. 
// Then the function will add some actions to the container. 
void CreateContainerExample(CWnd* pwndParent, LImageViewerChild& ImageViewer) 
{
   DISPCONTAINERPROPERTIES DispContainerProp; 
   DISPCELLPROPERTIES      DispCellProp; 
   RECT                    rcRect; 
   L_INT                   nRet; 
   L_INT                   nCellIndex; 

   // Create a container equal in size to its parent window. 
   pwndParent->GetClientRect(&rcRect); 
   
   ImageViewer.Create(pwndParent->GetSafeHwnd(), &rcRect, 0); 
   
   ImageViewer.EnableActionCallBack(TRUE) ; 
   ImageViewer.EnableTagCallBack(TRUE) ; 
   
   // load a bitmap list. 
   nRet = BitmapList.Load(TEXT("Image1.dic"), 0, ORDER_BGRORGRAY); 
   
   // if the image is corrupted or not found the program will destroy the container and terminate
   if (nRet != SUCCESS) 
   {
      ImageViewer.Destroy(FALSE, 0); 
      return; 
   }
   
   // Insert a new cell at the end of the container cell queue. 
   nCellIndex = ImageViewer.InsertCell(-1, 0); 
   
   // Attach the loaded bitmaplist to the newly inserted cell. 
   nRet = ImageViewer.SetCellBitmapList(nCellIndex, BitmapList.GetHandle(),TRUE,0); 
   
   // Add some tags to the cell
   ImageViewer.SetCellTag(nCellIndex, 0, DISPWIN_ALIGN_TOPLEFT     , 0, ("Image1 Text 1"), 0); 
   ImageViewer.SetCellTag(nCellIndex, 1, DISPWIN_ALIGN_TOPLEFT     , 0, ("Image1 Text 2"), 0); 
   ImageViewer.SetCellTag(nCellIndex, 2, DISPWIN_ALIGN_TOPLEFT     , 0, ("Image1 Text 3"), 0); 
   ImageViewer.SetCellTag(nCellIndex, 3, DISPWIN_ALIGN_TOPLEFT     , 0, ("Image1 Text 4"), 0); 
   ImageViewer.SetCellTag(nCellIndex, 1, DISPWIN_ALIGN_LEFTCENTER  , 0, ("L"), 0); 
   ImageViewer.SetCellTag(nCellIndex, 0, DISPWIN_ALIGN_BOTTOMLEFT  , 0, ("Image1 Text 5"), 0); 
   ImageViewer.SetCellTag(nCellIndex, 0, DISPWIN_ALIGN_TOPCENTER   , 0, ("Top"), 0); 
   ImageViewer.SetCellTag(nCellIndex, 0, DISPWIN_ALIGN_BOTTOMCENTER, 0, ("Bottom"), 0); 
   ImageViewer.SetCellTag(nCellIndex, 0, DISPWIN_ALIGN_TOPRIGHT    , 0, ("Image1 Text 6"), 0); 
   ImageViewer.SetCellTag(nCellIndex, 0, DISPWIN_ALIGN_RIGHTCENTER , 0, ("R"), 0); 
   ImageViewer.SetCellTag(nCellIndex, 8, DISPWIN_ALIGN_TOPLEFT     , DISPWIN_TYPE_FRAME, NULL, 0); 
   ImageViewer.SetCellTag(nCellIndex, 0, DISPWIN_ALIGN_BOTTOMRIGHT , DISPWIN_TYPE_OWNERDRAW, NULL, 0); 
   
   BitmapList.SetHandle(NULL,NULL,FALSE); 
   
   // load another bitmap list
   nRet = BitmapList.Load(TEXT("Image2.dic"), 0, ORDER_BGRORGRAY); 
   
   // insert a new cell at the end of the container queue. 
   nCellIndex = ImageViewer.InsertCell(-1, 0); 
   
   // Attach the loaded bitmap list to the newly inserted cell. 
   nRet = ImageViewer.SetCellBitmapList(nCellIndex, BitmapList.GetHandle(),TRUE,0); 
   
   // Add some tags to the cell
   ImageViewer.SetCellTag(nCellIndex, 0, DISPWIN_ALIGN_TOPLEFT     , 0, ("Image3 Text 1"), 0); 
   ImageViewer.SetCellTag(nCellIndex, 2, DISPWIN_ALIGN_TOPLEFT     , 0, ("Image3 Text 2"), 0); 
   ImageViewer.SetCellTag(nCellIndex, 4, DISPWIN_ALIGN_TOPLEFT     , 0, ("Image3 Text 3"), 0); 
   ImageViewer.SetCellTag(nCellIndex, 6, DISPWIN_ALIGN_TOPLEFT     , 0, ("Image3 Text 4"), 0); 
   ImageViewer.SetCellTag(nCellIndex, 1, DISPWIN_ALIGN_LEFTCENTER  , 0, ("Image3 Text 5"), 0); 
   ImageViewer.SetCellTag(nCellIndex, 0, DISPWIN_ALIGN_BOTTOMLEFT  , 0, ("Image3 Text 6"), 0); 
   ImageViewer.SetCellTag(nCellIndex, 0, DISPWIN_ALIGN_TOPCENTER   , 0, ("Image3 Text 7"), 0); 
   ImageViewer.SetCellTag(nCellIndex, 0, DISPWIN_ALIGN_BOTTOMCENTER, 0, ("Image3 Text 8"), 0); 
   ImageViewer.SetCellTag(nCellIndex, 0, DISPWIN_ALIGN_TOPRIGHT    , 0, ("Image3 Text 9"), 0); 
   ImageViewer.SetCellTag(nCellIndex, 0, DISPWIN_ALIGN_RIGHTCENTER , 0, ("R"), 0); 
   ImageViewer.SetCellTag(nCellIndex, 7, DISPWIN_ALIGN_TOPLEFT     , DISPWIN_TYPE_SCALE, NULL, 0); 
   ImageViewer.SetCellTag(nCellIndex, 0, DISPWIN_ALIGN_BOTTOMRIGHT, DISPWIN_TYPE_OWNERDRAW, NULL, 0); 
   
   // Change the number of rows and columns to show all the inserted cells. 
   DispContainerProp.uStructSize = sizeof(DISPCONTAINERPROPERTIES); 
   DispContainerProp.uNumCols = 2; 
   DispContainerProp.uNumRows = 1; 
   DispContainerProp.uMask = DCPF_NUMROWS | DCPF_NUMCOLS; 
   ImageViewer.SetProperties(&DispContainerProp, 0); 
   
   // Change the number of sub-rows and sub-columns. 
   DispCellProp.uStructSize = sizeof(DISPCELLPROPERTIES); 
   DispCellProp.uNumCols = 3; 
   DispCellProp.uNumRows = 3; 
   ImageViewer.SetCellProperties(0, &DispCellProp, 0); 
   
   BitmapList.SetHandle(NULL,NULL,FALSE);   
   
   // Add some actions to the container. 
   ImageViewer.AddAction(110, 0); 
   ImageViewer.SetAction(110, CONTAINER_MOUSE_BUTTON_LEFT,  DCACTION_ACTIVEONLY); 
   ImageViewer.SetAction(110, CONTAINER_MOUSE_BUTTON_RIGHT, DCACTION_ACTIVEONLY); 
}