Definition at line 239 of file SimilarityTimeLineVideo.h.
References OglGui::OglWindow::ConnectTo(), OglGui::TitledWindow::ContentPane(), OglGui::OglWindow::GetBackground(), OglGui::OglWindow::GetBorderBackground(), OglGui::OglWindow::GetBorderFillShaded(), OglGui::OglWindow::GetBorderType(), OglGui::ZoomShiftRuler::GetNeedleColor(), OglGui::OglWindow::H(), HandleFrameSettings(), mExtraTimeLines, mSimSet, mSimTimeLine, mVideoPlayer, OglGui::OglWindow::SetBackground(), OglGui::OglWindow::SetBorderBackground(), OglGui::OglWindow::SetBorderFillShaded(), OglGui::OglWindow::SetBorderType(), OglGui::TitledWindow::SetCloseWindowListener(), OglGui::WindowDocScroller::SetDocWindow(), Impala::Visualization::SimilarityTimeLine::SetListener(), OglGui::ZoomShiftRuler::SetNeedleColor(), SetSimilarityTableSet(), Impala::Visualization::TimeLineViewStrip::ViewStripShow(), and OglGui::OglWindow::W().
Referenced by Impala::Visualization::AllFramesTLineVideo::ButtonSelectionEvent(), and Impala::Visualization::AllFramesTLineVideo::HandleExtraTimeLines().
00240 {
00241 TitledWindow* TWnd = new TitledWindow(parent, x, y, w, h, str,1);
00242 Window* pane = TWnd->ContentPane();
00243
00244 WindowDocScroller* docScroller =
00245 new WindowDocScroller(pane,0,0,pane->W(),pane->H(),1);
00246 docScroller->ConnectTo(pane);
00247 SimilarityTimeLine* simTL =
00248 new SimilarityTimeLine(docScroller,0,16,pane->W(),pane->H()-16,0);
00249 docScroller->SetDocWindow(simTL,simTL,true);
00250 simTL->SetListener(this, (void *) mVideoPlayer);
00251 simTL->ViewStripShow(false);
00252 simTL->SetBackground(mSimTimeLine->GetBackground());
00253 simTL->SetBorderType(mSimTimeLine->GetBorderType());
00254 simTL->SetBorderBackground(mSimTimeLine->GetBorderBackground());
00255 simTL->SetBorderFillShaded(mSimTimeLine->GetBorderFillShaded());
00256 simTL->SetNeedleColor(mSimTimeLine->GetNeedleColor());
00257 mExtraTimeLines.push_back(simTL);
00258 SetSimilarityTableSet(mSimSet);
00259 HandleFrameSettings();
00260 TWnd->SetCloseWindowListener(this,(void*)simTL);
00261 return TWnd;
00262 }
Here is the call graph for this function: