Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

void OglGui::Camera3DControlEx::Init ( int  w,
int  h,
Window target 
) [inline, private]

Definition at line 80 of file Camera3DControlEx.h.

References mCamXYZ, mCamZ, MinMaxX(), MinMaxY(), MinMaxZ(), mTarget, PreferredSize(), OglGui::Window::ScaleChildren(), OglGui::Window::SetAllowChildScaling(), OglGui::OglWindow::SetBorderFillShaded(), OglGui::OglWindow::SetBorderType(), OglGui::OglWindow::SetDimensions(), and OglGui::OglWindow::SetRoundness().

00081     {
00082         int prefW, prefH;
00083 
00084         PreferredSize(prefW, prefH);
00085         SetDimensions(prefW, prefH);
00086         mTarget = target;
00087         SetBorderType(BEV_ETCHED);
00088         mCamXYZ = new Camera3DXYZ(this, 4, 4, prefH-8, prefH-8, target);
00089         mCamZ  = new Camera3DMoveZ(this, prefH, 4, 20, prefH-8, target);
00090         new Camera3DAnchorControl(this, prefH+24, 4, prefW-prefH-28, prefH-8, target);
00091 
00092         mCamXYZ->SetRoundness(6, 6, 6, 6);
00093         mCamXYZ->SetBorderFillShaded();
00094 
00095         mCamZ->SetRoundness(6, 6, 6, 6);
00096         mCamZ->SetBorderFillShaded();
00097         MinMaxX(-10000,10000);
00098         MinMaxY(-10000,10000);
00099         MinMaxZ(-10000,10000);
00100         ScaleChildren(0,1);
00101         SetAllowChildScaling(false);
00102         SetDimensions(w, h);
00103     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:58:11 2010 for ImpalaSrc by  doxygen 1.5.1