143 lines
4.4 KiB
C++
143 lines
4.4 KiB
C++
/**
|
|
* @file llfloatercustomize.h
|
|
* @brief The customize avatar floater, triggered by "Appearance..."
|
|
*
|
|
* $LicenseInfo:firstyear=2002&license=viewergpl$
|
|
*
|
|
* Copyright (c) 2002-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_LLFLOATERCUSTOMIZE_H
|
|
#define LL_LLFLOATERCUSTOMIZE_H
|
|
|
|
#include <map>
|
|
|
|
#include "llfloater.h"
|
|
#include "llstring.h"
|
|
#include "v3dmath.h"
|
|
#include "lltimer.h"
|
|
#include "llundo.h"
|
|
#include "llviewermenu.h"
|
|
#include "llwearable.h"
|
|
#include "lliconctrl.h"
|
|
|
|
class LLButton;
|
|
class LLIconCtrl;
|
|
class LLColorSwatchCtrl;
|
|
class LLGenePool;
|
|
class LLInventoryObserver;
|
|
class LLJoint;
|
|
class LLLineEditor;
|
|
class LLMakeOutfitDialog;
|
|
class LLRadioGroup;
|
|
class LLScrollableContainerView;
|
|
class LLScrollingPanelList;
|
|
class LLTabContainer;
|
|
class LLTextBox;
|
|
class LLTextureCtrl;
|
|
class LLViewerJointMesh;
|
|
class LLViewerVisualParam;
|
|
class LLVisualParam;
|
|
class LLVisualParamReset;
|
|
class LLWearableSaveAsDialog;
|
|
class LLPanelEditWearable;
|
|
class AIFilePicker;
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
// LLFloaterCustomize
|
|
|
|
class LLFloaterCustomize : public LLFloater
|
|
{
|
|
public:
|
|
LLFloaterCustomize();
|
|
virtual ~LLFloaterCustomize();
|
|
virtual BOOL postBuild();
|
|
|
|
// Inherted methods from LLFloater (and above)
|
|
virtual void onClose(bool app_quitting);
|
|
virtual void draw();
|
|
/*virtual*/ void open();
|
|
|
|
|
|
// New methods
|
|
|
|
void wearablesChanged(LLWearableType::EType type);
|
|
void updateScrollingPanelList();
|
|
LLPanelEditWearable* getCurrentWearablePanel() { return mWearablePanelList[ sCurrentWearableType ]; }
|
|
|
|
virtual BOOL isDirty() const;
|
|
|
|
void askToSaveIfDirty( boost::function<void (BOOL)> cb );
|
|
|
|
void switchToDefaultSubpart();
|
|
|
|
static void setCurrentWearableType( LLWearableType::EType type );
|
|
static LLWearableType::EType getCurrentWearableType() { return sCurrentWearableType; }
|
|
|
|
// Callbacks
|
|
static void onBtnOk( void* userdata );
|
|
static void onBtnMakeOutfit( void* userdata );
|
|
static void onMakeOutfitCommit( LLMakeOutfitDialog* dialog, void* userdata );
|
|
static void onBtnImport( void* userdata );
|
|
static void onBtnImport_continued(AIFilePicker* filepicker);
|
|
static void onBtnExport( void* userdata );
|
|
static void onBtnExport_continued(AIFilePicker* filepicker);
|
|
|
|
static void onTabChanged( const LLSD& param );
|
|
bool onTabPrecommit( LLUICtrl* ctrl, const LLSD& param );
|
|
bool onSaveDialog(const LLSD& notification, const LLSD& response);
|
|
static void onCommitChangeTab(BOOL proceed, LLTabContainer* ctrl, std::string panel_name, LLWearableType::EType type);
|
|
|
|
void fetchInventory();
|
|
void updateInventoryUI();
|
|
|
|
LLScrollingPanelList* getScrollingPanelList() const { return mScrollingPanelList; }
|
|
protected:
|
|
LLPanelEditWearable* mWearablePanelList[ LLWearableType::WT_COUNT ];
|
|
|
|
static LLWearableType::EType sCurrentWearableType;
|
|
|
|
LLScrollingPanelList* mScrollingPanelList;
|
|
LLScrollableContainerView* mScrollContainer;
|
|
LLPointer<LLVisualParamReset> mResetParams;
|
|
|
|
LLInventoryObserver* mInventoryObserver;
|
|
|
|
boost::signals2::signal<void (bool proceed)> mNextStepAfterSaveCallback;
|
|
|
|
protected:
|
|
|
|
static void* createWearablePanel(void* userdata);
|
|
|
|
void initWearablePanels();
|
|
void initScrollingPanelList();
|
|
};
|
|
|
|
extern LLFloaterCustomize* gFloaterCustomize;
|
|
|
|
|
|
#endif // LL_LLFLOATERCUSTOMIZE_H
|