blob: 5ca8a1fb008198849439ea6bc3bfda5a3c13daaf (
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
65
66
67
68
69
70
71
72
73
|
/**
* @file llfloaterbuildoptions.cpp
* @brief LLFloaterBuildOptions class implementation
*
* Copyright (c) 2002-$CurrentYear$, Linden Research, Inc.
* $License$
*/
/**
* Panel for setting global object-editing options, specifically
* grid size and spacing.
*/
#include "llviewerprecompiledheaders.h"
#include "llfloaterbuildoptions.h"
#include "llvieweruictrlfactory.h"
// library includes
#include "llfontgl.h"
#include "llcheckboxctrl.h"
#include "llspinctrl.h"
#include "llsliderctrl.h"
// newview includes
#include "llresmgr.h"
#include "llviewercontrol.h"
//
// Globals
//
LLFloaterBuildOptions *LLFloaterBuildOptions::sInstance = NULL;
//
// Methods
//
LLFloaterBuildOptions::LLFloaterBuildOptions( )
: LLFloater("build options floater")
{
sInstance = this;
}
LLFloaterBuildOptions::~LLFloaterBuildOptions()
{
sInstance = NULL;
}
// static
void LLFloaterBuildOptions::show(void*)
{
if (sInstance)
{
sInstance->open(); /*Flawfinder: ignore*/
}
else
{
LLFloaterBuildOptions* floater = new LLFloaterBuildOptions();
gUICtrlFactory->buildFloater(floater, "floater_build_options.xml");
floater->open(); /*Flawfinder: ignore*/
}
}
LLFloaterBuildOptions* LLFloaterBuildOptions::getInstance()
{
return sInstance;
}
// static
BOOL LLFloaterBuildOptions::visible(void*)
{
return (sInstance != NULL);
}
|