diff options
author | Jacek Antonelli | 2008-08-15 23:44:50 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:50 -0500 |
commit | 89fe5dab825a62a0e3fd8d248cbc91c65eb2a426 (patch) | |
tree | bcff14b7888d04a2fec799c59369f6095224bd08 /linden/indra/newview/llviewermenu.h | |
parent | Second Life viewer sources 1.13.3.2 (diff) | |
download | meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.zip meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.gz meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.bz2 meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.xz |
Second Life viewer sources 1.14.0.0
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llviewermenu.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/linden/indra/newview/llviewermenu.h b/linden/indra/newview/llviewermenu.h index 9847e41..0c42426 100644 --- a/linden/indra/newview/llviewermenu.h +++ b/linden/indra/newview/llviewermenu.h | |||
@@ -37,6 +37,8 @@ | |||
37 | 37 | ||
38 | class LLUICtrl; | 38 | class LLUICtrl; |
39 | class LLView; | 39 | class LLView; |
40 | class LLParcelSelection; | ||
41 | class LLObjectSelection; | ||
40 | 42 | ||
41 | struct LLResourceData | 43 | struct LLResourceData |
42 | { | 44 | { |
@@ -85,7 +87,6 @@ BOOL is_agent_mappable(const LLUUID& agent_id); | |||
85 | 87 | ||
86 | void menu_toggle_control( void* user_data ); | 88 | void menu_toggle_control( void* user_data ); |
87 | void check_toggle_control( LLUICtrl *, void* user_data ); | 89 | void check_toggle_control( LLUICtrl *, void* user_data ); |
88 | void handle_attach_to_avatar(void* user_data); | ||
89 | void confirm_replace_attachment(S32 option, void* user_data); | 90 | void confirm_replace_attachment(S32 option, void* user_data); |
90 | void handle_detach_from_avatar(void* user_data); | 91 | void handle_detach_from_avatar(void* user_data); |
91 | void attach_label(LLString& label, void* user_data); | 92 | void attach_label(LLString& label, void* user_data); |
@@ -145,10 +146,18 @@ class LLPermissions; | |||
145 | class LLViewerMenuHolderGL : public LLMenuHolderGL | 146 | class LLViewerMenuHolderGL : public LLMenuHolderGL |
146 | { | 147 | { |
147 | public: | 148 | public: |
148 | LLViewerMenuHolderGL() : LLMenuHolderGL() {}; | 149 | LLViewerMenuHolderGL(); |
149 | 150 | ||
150 | virtual BOOL hideMenus(); | 151 | virtual BOOL hideMenus(); |
151 | //virtual BOOL handleKey(KEY key, MASK mask, BOOL called_from_parent); | 152 | |
153 | void setParcelSelection(LLHandle<LLParcelSelection> selection); | ||
154 | void setObjectSelection(LLHandle<LLObjectSelection> selection); | ||
155 | |||
156 | virtual const LLRect getMenuRect() const; | ||
157 | |||
158 | protected: | ||
159 | LLHandle<LLParcelSelection> mParcelSelection; | ||
160 | LLHandle<LLObjectSelection> mObjectSelection; | ||
152 | }; | 161 | }; |
153 | 162 | ||
154 | extern const LLString SAVE_INTO_INVENTORY; | 163 | extern const LLString SAVE_INTO_INVENTORY; |