diff options
author | Jacek Antonelli | 2008-08-15 23:45:37 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:37 -0500 |
commit | 31ba05810c641f14e8ab5da8ad2aaf527779f6c1 (patch) | |
tree | c4b8d635dfb657fa4cfee7c285f8cadbf24afa90 /linden/indra/llui/llfloater.h | |
parent | Second Life viewer sources 1.19.1.1 (diff) | |
download | meta-impy-31ba05810c641f14e8ab5da8ad2aaf527779f6c1.zip meta-impy-31ba05810c641f14e8ab5da8ad2aaf527779f6c1.tar.gz meta-impy-31ba05810c641f14e8ab5da8ad2aaf527779f6c1.tar.bz2 meta-impy-31ba05810c641f14e8ab5da8ad2aaf527779f6c1.tar.xz |
Second Life viewer sources 1.19.1.2
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llui/llfloater.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/linden/indra/llui/llfloater.h b/linden/indra/llui/llfloater.h index 534af16..f0bbcaf 100644 --- a/linden/indra/llui/llfloater.h +++ b/linden/indra/llui/llfloater.h | |||
@@ -119,7 +119,7 @@ public: | |||
119 | 119 | ||
120 | // Can be called multiple times to reset floater parameters. | 120 | // Can be called multiple times to reset floater parameters. |
121 | // Deletes all children of the floater. | 121 | // Deletes all children of the floater. |
122 | virtual void init(const LLString& title, BOOL resizable, | 122 | virtual void initFloater(const LLString& title, BOOL resizable, |
123 | S32 min_width, S32 min_height, BOOL drag_on_left, | 123 | S32 min_width, S32 min_height, BOOL drag_on_left, |
124 | BOOL minimizable, BOOL close_btn); | 124 | BOOL minimizable, BOOL close_btn); |
125 | virtual EWidgetType getWidgetType() const { return WIDGET_TYPE_FLOATER; } | 125 | virtual EWidgetType getWidgetType() const { return WIDGET_TYPE_FLOATER; } |
@@ -130,6 +130,8 @@ public: | |||
130 | // If allowed, close the floater cleanly, releasing focus. | 130 | // If allowed, close the floater cleanly, releasing focus. |
131 | // app_quitting is passed to onClose() below. | 131 | // app_quitting is passed to onClose() below. |
132 | virtual void close(bool app_quitting = false); | 132 | virtual void close(bool app_quitting = false); |
133 | |||
134 | /*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE); | ||
133 | 135 | ||
134 | // Release keyboard and mouse focus | 136 | // Release keyboard and mouse focus |
135 | void releaseFocus(); | 137 | void releaseFocus(); |
@@ -303,8 +305,8 @@ public: | |||
303 | virtual EWidgetType getWidgetType() const { return WIDGET_TYPE_FLOATER_VIEW; } | 305 | virtual EWidgetType getWidgetType() const { return WIDGET_TYPE_FLOATER_VIEW; } |
304 | virtual LLString getWidgetTag() const { return LL_FLOATER_VIEW_TAG; } | 306 | virtual LLString getWidgetTag() const { return LL_FLOATER_VIEW_TAG; } |
305 | 307 | ||
306 | /*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent); | 308 | /*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE); |
307 | void reshape(S32 width, S32 height, BOOL called_from_parent, BOOL adjust_vertical); | 309 | void reshapeFloater(S32 width, S32 height, BOOL called_from_parent, BOOL adjust_vertical); |
308 | 310 | ||
309 | /*virtual*/ void draw(); | 311 | /*virtual*/ void draw(); |
310 | /*virtual*/ LLRect getSnapRect() const; | 312 | /*virtual*/ LLRect getSnapRect() const; |