Definition at line 29 of file IxsDocumentGuiMain.h. References IM_BOOKMARKED, IM_CURRENT, IM_SET, mBookmarkedStrip, mCurImWnd, mImageSet, mIxsDoc, mViewScale, Impala::Visualization::ImagesWindow::SetImagesListener(), and Impala::Visualization::ImagesWindow::SetViewListener(). 00032 : 00033 DataDocumentGui<IxsDocument>(parent, wndWidth, wndHeight, ixsDoc, 00034 controlId, true, true, false, 3, 6, 00035 showAnno, true) 00036 { 00037 mIxsDoc = ixsDoc; 00038 mViewScale = viewScale; 00039 00040 mBookmarkedStrip = 0; 00041 if (nrImOnRow > 0) 00042 { 00043 mBookmarkedStrip = new ImageStrip(this, thumbWidth, thumbHeight, 00044 viewScale, nrImOnRow); 00045 mBookmarkedStrip->SetImagesListener(this, IM_BOOKMARKED); 00046 mBookmarkedStrip->ActivateInfoBox(false); 00047 } 00048 00049 new OglGui::Strut(this, 4000, 1); 00050 00051 mImageSet = 0; 00052 if (nrImOnRow > 0) 00053 { 00054 mImageSet = new ImageSet(this, thumbWidth, thumbHeight, viewScale, 00055 nrImOnRow*3/4, 4); 00056 mImageSet->SetImagesListener(this, IM_SET); 00057 mImageSet->ActivateInfoBox(false); 00058 } 00059 00060 mCurImWnd = new ImagesWindow(this, wndWidth/4, wndHeight); 00061 mCurImWnd->SetImagesListener(this, IM_CURRENT); 00062 mCurImWnd->SetMakeViewWithRect(true); 00063 mCurImWnd->SetViewListener(this); 00064 mCurImWnd->ActivateInfoBox(false); 00065 00066 }
Here is the call graph for this function:
|