blob: b87ab3cad766ba5b64fa65c8542c328c5c52290e (
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
59
60
61
62
63
64
|
/**
* @file llfloatertos.h
* @brief Terms of Service Agreement dialog
*
* Copyright (c) 2003-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LL_LLFLOATERTOS_H
#define LL_LLFLOATERTOS_H
#include "llmodaldialog.h"
#include "llassetstorage.h"
#include "llwebbrowserctrl.h"
class LLButton;
class LLRadioGroup;
class LLVFS;
class LLTextEditor;
class LLUUID;
class LLFloaterTOS :
public LLModalDialog,
public LLWebBrowserCtrlObserver
{
public:
virtual ~LLFloaterTOS();
// Types of dialog.
enum ETOSType
{
TOS_TOS = 0,
TOS_CRITICAL_MESSAGE = 1
};
// Asset_id is overwritten with LLUUID::null when agree is clicked.
static LLFloaterTOS* show(ETOSType type, const std::string & message);
BOOL postBuild();
virtual void draw();
static void updateAgree( LLUICtrl *, void* userdata );
static void onContinue( void* userdata );
static void onCancel( void* userdata );
void setSiteIsAlive( bool alive );
virtual void onNavigateComplete( const EventType& eventIn );
private:
// Asset_id is overwritten with LLUUID::null when agree is clicked.
LLFloaterTOS(ETOSType type, const std::string & message);
private:
ETOSType mType;
LLString mMessage;
int mWebBrowserWindowId;
int mLoadCompleteCount;
static LLFloaterTOS* sInstance;
};
#endif // LL_LLFLOATERTOS_H
|