blob: 022c1eddd703456850f66d0b1524854a532a59c7 (
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
|
/**
* @file llfloaternamedesc.h
* @brief LLFloaterNameDesc class definition
*
* Copyright (c) 2002-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LL_LLFLOATERURLENTRY_H
#define LL_LLFLOATERURLENTRY_H
#include "llfloater.h"
class LLLineEditor;
class LLFloaterURLEntry : public LLFloater
{
public:
// Can only be shown by LLPanelLandMedia, and pushes data back into
// that panel via the handle.
static LLViewHandle show(LLViewHandle panel_land_media_handle);
void updateFromLandMediaPanel();
void headerFetchComplete(U32 status, const std::string& mime_type);
bool addURLToCombobox(const std::string& media_url);
private:
LLFloaterURLEntry(LLViewHandle parent);
/*virtual*/ ~LLFloaterURLEntry();
void buildURLHistory();
private:
LLComboBox* mMediaURLEdit;
LLViewHandle mPanelLandMediaHandle;
static void onBtnOK(void*);
static void onBtnCancel(void*);
static void onBtnClear(void*);
static void callback_clear_url_list(S32 option, void* userdata);
};
#endif // LL_LLFLOATERURLENTRY_H
|