blob: aa84b245e24d19485b616e301b5b79eb87ee4559 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
/**
* @file llpanellandmedia.h
* @author Callum Prentice, Sam Kolb, James Cook
* @brief Allows configuration of "media" for a land parcel,
* for example movies, web pages, and audio.
*
* Copyright (c) 2007-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LLPANELLANDMEDIA_H
#define LLPANELLANDMEDIA_H
#include "lllineeditor.h"
#include "llmemory.h" // LLHandle<>
#include "llpanel.h"
#include "llparcelselection.h"
#include "lluifwd.h" // widget pointer types
class LLPanelLandMedia
: public LLPanel
{
public:
LLPanelLandMedia(LLHandle<LLParcelSelection>& parcelp);
/*virtual*/ ~LLPanelLandMedia();
/*virtual*/ BOOL postBuild();
void refresh();
void setMediaType(const LLString& media_type);
void setMediaURL(const LLString& media_type);
const LLString& getMediaURL() { return mMediaURLEdit->getText(); }
private:
void populateMIMECombo();
static void onCommitAny(LLUICtrl* ctrl, void *userdata);
static void onCommitType(LLUICtrl* ctrl, void *userdata);
static void onSetBtn(void* userdata);
private:
LLCheckBoxCtrl* mCheckSoundLocal;
LLRadioGroup* mRadioVoiceChat;
LLLineEditor* mMusicURLEdit;
LLLineEditor* mMediaURLEdit;
LLLineEditor* mMediaDescEdit;
LLComboBox* mMediaTypeCombo;
LLButton* mSetURLButton;
LLSpinCtrl* mMediaHeightCtrl;
LLSpinCtrl* mMediaWidthCtrl;
LLTextBox* mMediaSizeCtrlLabel;
LLTextureCtrl* mMediaTextureCtrl;
LLCheckBoxCtrl* mMediaAutoScaleCheck;
LLCheckBoxCtrl* mMediaLoopCheck;
LLCheckBoxCtrl* mMediaUrlCheck;
LLCheckBoxCtrl* mMusicUrlCheck;
LLViewHandle mURLEntryFloater;
LLHandle<LLParcelSelection>& mParcel;
};
#endif
|