diff options
author | Jacek Antonelli | 2008-08-15 23:45:34 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:34 -0500 |
commit | cd17687f01420952712a500107e0f93e7ab8d5f8 (patch) | |
tree | ce48c2b706f2c1176290e39fb555fbdf6648ce01 /linden/indra/newview/llfloatersaveavatar.h | |
parent | Second Life viewer sources 1.19.0.5 (diff) | |
download | meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.zip meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.gz meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.bz2 meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.xz |
Second Life viewer sources 1.19.1.0
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llui/lluifwd.h (renamed from linden/indra/newview/llfloatersaveavatar.h) | 63 |
1 files changed, 34 insertions, 29 deletions
diff --git a/linden/indra/newview/llfloatersaveavatar.h b/linden/indra/llui/lluifwd.h index 5a02fe4..758a0e4 100644 --- a/linden/indra/newview/llfloatersaveavatar.h +++ b/linden/indra/llui/lluifwd.h | |||
@@ -1,10 +1,10 @@ | |||
1 | /** | 1 | /** |
2 | * @file llfloatersaveavatar.h | 2 | * @file lluifwd.h |
3 | * @brief write out avatar as CAL3D file | 3 | * @brief Forward declarations of common LLUI widget types. |
4 | * | 4 | * |
5 | * $LicenseInfo:firstyear=2005&license=viewergpl$ | 5 | * $LicenseInfo:firstyear=2007&license=viewergpl$ |
6 | * | 6 | * |
7 | * Copyright (c) 2005-2008, Linden Research, Inc. | 7 | * Copyright (c) 2007-2008, Linden Research, Inc. |
8 | * | 8 | * |
9 | * Second Life Viewer Source Code | 9 | * Second Life Viewer Source Code |
10 | * The source code in this file ("Source Code") is provided by Linden Lab | 10 | * The source code in this file ("Source Code") is provided by Linden Lab |
@@ -29,30 +29,35 @@ | |||
29 | * $/LicenseInfo$ | 29 | * $/LicenseInfo$ |
30 | */ | 30 | */ |
31 | 31 | ||
32 | #ifndef LL_LLFLOATERSAVEAVATAR_H | 32 | #ifndef LLUIFWD_H |
33 | #define LL_LLFLOATERSAVEAVATAR_H | 33 | #define LLUIFWD_H |
34 | |||
35 | #include "llfloater.h" | ||
36 | 34 | ||
37 | class LLButton; | 35 | class LLButton; |
36 | class LLCheckBoxCtrl; | ||
37 | class LLComboBox; | ||
38 | class LLDragHandle; | ||
39 | class LLFloater; | ||
40 | class LLIconCtrl; | ||
38 | class LLLineEditor; | 41 | class LLLineEditor; |
39 | 42 | class LLMenuGL; | |
40 | class LLFloaterSaveAvatar : public LLFloater | 43 | class LLPanel; |
41 | { | 44 | class LLRadioGroup; |
42 | public: | 45 | class LLResizeBar; |
43 | static void show( void ); // Creates singleton or (if it already exists) brings it to the front | 46 | class LLResizeHandle; |
44 | static void onSave( void* user_data ); | 47 | class LLScrollbar; |
45 | 48 | class LLScrollContainer; | |
46 | virtual ~LLFloaterSaveAvatar(); | 49 | class LLScrollingPanelList; |
47 | /*virtual*/ BOOL postBuild(); | 50 | class LLScrollListCtrl; |
48 | 51 | class LLSlider; | |
49 | protected: | 52 | class LLSliderCtrl; |
50 | LLFloaterSaveAvatar(); | 53 | class LLSpinCtrl; |
51 | 54 | class LLTabContainer; | |
52 | public: | 55 | class LLTabContainerVertical; |
53 | LLLineEditor* mBaseNameEdit; | 56 | class LLTextBox; |
54 | LLLineEditor* mPathEdit; | 57 | class LLTextEditor; |
55 | LLButton* mSaveBtn; | 58 | class LLTextureCtrl; |
56 | }; | 59 | class LLUICtrl; |
57 | 60 | class LLView; | |
58 | #endif // LL_LLFLOATERSAVEAVATAR_H | 61 | class LLViewBorder; |
62 | |||
63 | #endif | ||