Definition at line 662 of file Window.h. References mAllowChildScaling, mAllowReposition, mAllowScaling, mDisableGlobalKeyListener, mDisableOGLViewKeys, mDisableOGLViewMouse, mDoStateFeedback, mExternWindowReference, mForeGroundColor, mIs2d, mListenerData, mMapKeysTarget, OglGui::OglWindow::mOglWnd, mOldBorderBackground, OglGui::OglWindow::mRunTimeType, mState, mStateFeedbackColor, and mWindowListener. 00663 { 00664 //GuiGeneralName("Window"); 00665 mWindowListener = 0; 00666 mListenerData = 0; 00667 00668 mDisableGlobalKeyListener = false; 00669 mMapKeysTarget = 0; 00670 00671 oglSys.SetAllowDeleteView(mOglWnd, FALSE); 00672 oglSys.SetAllowCameraMove(mOglWnd, FALSE); 00673 oglSys.SetAllowPick(mOglWnd, FALSE); 00674 oglSys.SetAllowRubber(mOglWnd, FALSE); 00675 00676 // RvB: Maybe next 2 even standard true, and those needing them 00677 // have to set to false 00678 mDisableOGLViewKeys = false; 00679 mDisableOGLViewMouse = false; 00680 00681 mRunTimeType |= 2; 00682 mExternWindowReference = 0; // Reference to some external wnd 00683 mState = 1; // 0: disabled, 1:normal, 2:mouse in wnd (highlight) 00684 mDoStateFeedback = false; 00685 mStateFeedbackColor = 0x80e08080; 00686 mForeGroundColor = 0xff000000; 00687 mOldBorderBackground = 0x0; 00688 mAllowReposition = true; 00689 mAllowScaling = true; 00690 mAllowChildScaling = true; 00691 mIs2d = is2d; 00692 }
|