aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/libraries/include/llmozlib2.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:42 -0500
committerJacek Antonelli2008-08-15 23:45:42 -0500
commitce28e056c20bf2723f565bbf464b87781ec248a2 (patch)
treeef7b0501c4de4b631a916305cbc2a5fdc125e52d /linden/libraries/include/llmozlib2.h
parentSecond Life viewer sources 1.19.1.4b (diff)
downloadmeta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.zip
meta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.tar.gz
meta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.tar.bz2
meta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.tar.xz
Second Life viewer sources 1.20.2
Diffstat (limited to 'linden/libraries/include/llmozlib2.h')
-rw-r--r--linden/libraries/include/llmozlib2.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/linden/libraries/include/llmozlib2.h b/linden/libraries/include/llmozlib2.h
index 1dd71dc..d85caf9 100644
--- a/linden/libraries/include/llmozlib2.h
+++ b/linden/libraries/include/llmozlib2.h
@@ -72,6 +72,15 @@ class LLEmbeddedBrowserWindowEvent
72 { 72 {
73 }; 73 };
74 74
75 // 2 strings passed with the event
76 LLEmbeddedBrowserWindowEvent( int eventWindowIdIn, std::string uriIn, std::string stringValIn, std::string stringVal2In ) :
77 mEventWindowId( eventWindowIdIn ),
78 mEventUri( uriIn ),
79 mStringVal( stringValIn ),
80 mStringVal2( stringVal2In )
81 {
82 };
83
75 // string and an int passed with the event 84 // string and an int passed with the event
76 LLEmbeddedBrowserWindowEvent( int eventWindowIdIn, std::string uriIn, std::string stringValIn, int intValIn ) : 85 LLEmbeddedBrowserWindowEvent( int eventWindowIdIn, std::string uriIn, std::string stringValIn, int intValIn ) :
77 mEventWindowId( eventWindowIdIn ), 86 mEventWindowId( eventWindowIdIn ),
@@ -116,6 +125,11 @@ class LLEmbeddedBrowserWindowEvent
116 return mStringVal; 125 return mStringVal;
117 }; 126 };
118 127
128 std::string getStringValue2() const
129 {
130 return mStringVal2;
131 };
132
119 void getRectValue( int& xOut, int& yOut, int& widthOut, int& heightOut ) const 133 void getRectValue( int& xOut, int& yOut, int& widthOut, int& heightOut ) const
120 { 134 {
121 xOut = mXVal; 135 xOut = mXVal;
@@ -129,6 +143,7 @@ class LLEmbeddedBrowserWindowEvent
129 std::string mEventUri; 143 std::string mEventUri;
130 int mIntVal; 144 int mIntVal;
131 std::string mStringVal; 145 std::string mStringVal;
146 std::string mStringVal2;
132 int mXVal; 147 int mXVal;
133 int mYVal; 148 int mYVal;
134 int mWidthVal; 149 int mWidthVal;