Files
SingularityViewer/indra/newview/llpaneldisplay.h
Inusaito Sayori 6e8cd5a4cc Bug fixy ~ Reset Ambient Occlusion setting on cancel
Thanks to Cale Flanagan for finding this one.
2014-12-27 13:11:11 -05:00

186 lines
4.5 KiB
C++

/**
* @file llpaneldisplay.h
* @brief Display preferences for the preferences floater
*
* $LicenseInfo:firstyear=2001&license=viewergpl$
*
* Copyright (c) 2001-2009, Linden Research, Inc.
*
* Second Life Viewer Source Code
* The source code in this file ("Source Code") is provided by Linden Lab
* to you under the terms of the GNU General Public License, version 2.0
* ("GPL"), unless you have obtained a separate licensing agreement
* ("Other License"), formally executed by you and Linden Lab. Terms of
* the GPL can be found in doc/GPL-license.txt in this distribution, or
* online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
*
* There are special exceptions to the terms and conditions of the GPL as
* it is applied to this Source Code. View the full text of the exception
* in the file doc/FLOSS-exception.txt in this software distribution, or
* online at
* http://secondlifegrid.net/programs/open_source/licensing/flossexception
*
* By copying, modifying or distributing this software, you acknowledge
* that you have read and understood your obligations described above,
* and agree to abide by those obligations.
*
* ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
* WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
* COMPLETENESS OR PERFORMANCE.
* $/LicenseInfo$
*/
#ifndef LL_LLPANELDISPLAY_H
#define LL_LLPANELDISPLAY_H
#include "llpanel.h"
#include "llwindow.h"
#include "llcontrol.h"
class LLSlider;
class LLSpinCtrl;
class LLCheckBoxCtrl;
class LLRadioGroup;
class LLComboBox;
class LLLineEditor;
class LLSliderCtrl;
class LLTextBox;
class LLTextEditor;
typedef enum
{
GS_LOW_GRAPHICS,
GS_MID_GRAPHICS,
GS_HIGH_GRAPHICS,
GS_ULTRA_GRAPHICS
} EGraphicsSettings;
class LLPanelDisplay
: public LLPanel
{
friend class LLPreferenceCore;
public:
LLPanelDisplay();
virtual ~LLPanelDisplay();
virtual BOOL postBuild();
void refresh(); // Refresh enable/disable
void refreshEnabledState();
void disableUnavailableSettings();
void apply(); // Apply the changed values.
void applyResolution();
void applyWindowSize();
void cancel();
protected:
void initWindowSizeControls();
bool extractWindowSizeFromString(const std::string& instr, U32 &width, U32 &height);
// aspect ratio sliders and boxes
LLComboBox *mCtrlFullScreen; // Fullscreen resolution
LLCheckBoxCtrl *mCtrlAutoDetectAspect; // automatically detect aspect ratio
LLComboBox *mCtrlAspectRatio; // user provided aspect ratio
LLCheckBoxCtrl *mCtrlWindowed; // windowed mode
LLComboBox *mCtrlWindowSize; // window size for windowed mode
/// performance radio group
LLSliderCtrl *mCtrlSliderQuality;
LLCheckBoxCtrl *mCtrlCustomSettings;
LLCheckBoxCtrl *mCtrlBumpShiny;
LLCheckBoxCtrl *mCtrlWindLight;
LLCheckBoxCtrl *mCtrlAvatarVP;
LLCheckBoxCtrl *mCtrlShaderEnable;
LLCheckBoxCtrl *mCtrlDeferred;
LLCheckBoxCtrl *mCtrlDeferredDoF;
LLComboBox *mCtrlReflectionDetail;
LLComboBox *mCtrlShadowDetail;
LLComboBox *mCtrlTerrainScale;
LLCheckBoxCtrl *mCtrlAvatarImpostors;
LLCheckBoxCtrl *mCtrlAvatarCloth;
LLCheckBoxCtrl *mCtrlAmbientOcc;
LLRadioGroup *mRadioTerrainDetail;
LLTextBox *mAspectRatioLabel1;
LLTextBox *mDisplayResLabel;
LLTextBox *mWindowSizeLabel;
LLCheckBoxCtrl *mVBO;
BOOL mFSAutoDetectAspect;
F32 mAspectRatio;
// performance value holders for cancel
S32 mQualityPerformance;
BOOL mCustomSettings;
BOOL mTransparentWater;
BOOL mBumpShiny;
BOOL mShaderEnable;
BOOL mWindLight;
BOOL mDeferred;
BOOL mDeferredDoF;
bool mDeferredSSAO;
BOOL mAvatarVP;
S32 mReflectionDetail;
S32 mShadowDetail;
F32 mTerrainScale;
BOOL mAvatarImpostors;
S32 mNonImpostors;
BOOL mAvatarCloth;
S32 mAvatarMode;
BOOL mLocalLights;
S32 mTerrainDetail;
F32 mRenderFarClip;
F32 mPrimLOD;
F32 mFlexLOD;
F32 mTreeLOD;
F32 mAvatarLOD;
F32 mTerrainLOD;
S32 mSkyLOD;
S32 mParticleCount;
S32 mPostProcess;
// Hardware tab
BOOL mUseVBO;
BOOL mUseFBO;
BOOL mUseAniso;
U32 mFSAASamples;
F32 mGamma;
S32 mVideoCardMem;
F32 mFogRatio;
S32 mVsyncMode;
// Depth of Field tab
F32 mFNumber;
F32 mFocalLength;
F32 mMaxCoF;
F32 mFocusTrans;
F32 mDoFRes;
// if the quality radio buttons are changed
void onChangeQuality(LLUICtrl* caller);
void onCommitAutoDetectAspect(const LLSD& value);
void onCommitWindowedMode();
void updateMeterText();
/// callback for defaults
void setHardwareDefaults();
// helper function
static void fractionFromDecimal(F32 decimal_val, S32& numerator, S32& denominator);
};
const S32 LL_MAX_VRAM_INDEX = 6;
#endif