summaryrefslogtreecommitdiff
path: root/indra/llui/llcheckboxctrl.h
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2024-05-01 08:16:58 +0300
committerAndrey Lihatskiy <alihatskiy@productengine.com>2024-05-01 08:16:58 +0300
commit38c2a5bde985a6a8a96d912d432f8bdf7e5b60be (patch)
treeb3469444ea8dabe4e76a8a265ac086a9db78891c /indra/llui/llcheckboxctrl.h
parent9bf2dfbb39032d7407295089cf181de0987083e5 (diff)
parente7eced3c87310b15ac20cc3cd470d67686104a14 (diff)
Merge branch 'marchcat/w-whitespace' into marchcat/x-ws-merge
Diffstat (limited to 'indra/llui/llcheckboxctrl.h')
-rw-r--r--indra/llui/llcheckboxctrl.h126
1 files changed, 63 insertions, 63 deletions
diff --git a/indra/llui/llcheckboxctrl.h b/indra/llui/llcheckboxctrl.h
index ba3c723fcb..f2b61db308 100644
--- a/indra/llui/llcheckboxctrl.h
+++ b/indra/llui/llcheckboxctrl.h
@@ -1,25 +1,25 @@
-/**
+/**
* @file llcheckboxctrl.h
* @brief LLCheckBoxCtrl base class
*
* $LicenseInfo:firstyear=2001&license=viewerlgpl$
* Second Life Viewer Source Code
* Copyright (C) 2010, Linden Research, Inc.
- *
+ *
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation;
* version 2.1 of the License only.
- *
+ *
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
- *
+ *
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
+ *
* Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
* $/LicenseInfo$
*/
@@ -36,8 +36,8 @@
// Constants
//
-const BOOL RADIO_STYLE = TRUE;
-const BOOL CHECK_STYLE = FALSE;
+const BOOL RADIO_STYLE = TRUE;
+const BOOL CHECK_STYLE = FALSE;
//
// Classes
@@ -63,95 +63,95 @@ public:
static void declareValues();
};
- struct Params
- : public LLInitParam::Block<Params, LLUICtrl::Params>
- {
- Optional<bool> initial_value; // override LLUICtrl initial_value
+ struct Params
+ : public LLInitParam::Block<Params, LLUICtrl::Params>
+ {
+ Optional<bool> initial_value; // override LLUICtrl initial_value
- Optional<LLTextBox::Params> label_text;
- Optional<LLButton::Params> check_button;
+ Optional<LLTextBox::Params> label_text;
+ Optional<LLButton::Params> check_button;
- Optional<EWordWrap, WordWrap> word_wrap;
+ Optional<EWordWrap, WordWrap> word_wrap;
- Ignored radio_style;
+ Ignored radio_style;
- Params();
- };
+ Params();
+ };
- virtual ~LLCheckBoxCtrl();
+ virtual ~LLCheckBoxCtrl();
protected:
- LLCheckBoxCtrl(const Params&);
- friend class LLUICtrlFactory;
+ LLCheckBoxCtrl(const Params&);
+ friend class LLUICtrlFactory;
public:
- // LLView interface
+ // LLView interface
+
+ virtual void setEnabled( BOOL b );
- virtual void setEnabled( BOOL b );
+ virtual void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE);
- virtual void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE);
+ // LLUICtrl interface
+ virtual void setValue(const LLSD& value );
+ virtual LLSD getValue() const;
+ BOOL get() { return (BOOL)getValue().asBoolean(); }
+ void set(BOOL value) { setValue(value); }
- // LLUICtrl interface
- virtual void setValue(const LLSD& value );
- virtual LLSD getValue() const;
- BOOL get() { return (BOOL)getValue().asBoolean(); }
- void set(BOOL value) { setValue(value); }
+ virtual void setTentative(BOOL b);
+ virtual BOOL getTentative() const;
- virtual void setTentative(BOOL b);
- virtual BOOL getTentative() const;
+ virtual BOOL setLabelArg( const std::string& key, const LLStringExplicit& text );
- virtual BOOL setLabelArg( const std::string& key, const LLStringExplicit& text );
+ virtual void clear();
+ virtual void onCommit();
- virtual void clear();
- virtual void onCommit();
+ // LLCheckBoxCtrl interface
+ virtual BOOL toggle() { return mButton->toggleState(); } // returns new state
- // LLCheckBoxCtrl interface
- virtual BOOL toggle() { return mButton->toggleState(); } // returns new state
+ void setBtnFocus() { mButton->setFocus(TRUE); }
- void setBtnFocus() { mButton->setFocus(TRUE); }
+ void setEnabledColor( const LLColor4 &color ) { mTextEnabledColor = color; }
+ void setDisabledColor( const LLColor4 &color ) { mTextDisabledColor = color; }
- void setEnabledColor( const LLColor4 &color ) { mTextEnabledColor = color; }
- void setDisabledColor( const LLColor4 &color ) { mTextDisabledColor = color; }
+ void setLabel( const LLStringExplicit& label );
+ std::string getLabel() const;
- void setLabel( const LLStringExplicit& label );
- std::string getLabel() const;
+ void setFont( const LLFontGL* font ) { mFont = font; }
+ const LLFontGL* getFont() const { return mFont; }
- void setFont( const LLFontGL* font ) { mFont = font; }
- const LLFontGL* getFont() const { return mFont; }
-
- virtual void setControlName(const std::string& control_name, LLView* context);
+ virtual void setControlName(const std::string& control_name, LLView* context);
- virtual BOOL isDirty() const; // Returns TRUE if the user has modified this control.
- virtual void resetDirty(); // Clear dirty state
+ virtual BOOL isDirty() const; // Returns TRUE if the user has modified this control.
+ virtual void resetDirty(); // Clear dirty state
protected:
- virtual std::string _getSearchText() const
- {
- return getLabel() + getToolTip();
- }
+ virtual std::string _getSearchText() const
+ {
+ return getLabel() + getToolTip();
+ }
- virtual void onSetHighlight() const // When highlight, really do highlight the label
- {
- if( mLabel )
- mLabel->ll::ui::SearchableControl::setHighlighted( ll::ui::SearchableControl::getHighlighted() );
- }
+ virtual void onSetHighlight() const // When highlight, really do highlight the label
+ {
+ if( mLabel )
+ mLabel->ll::ui::SearchableControl::setHighlighted( ll::ui::SearchableControl::getHighlighted() );
+ }
protected:
- // note: value is stored in toggle state of button
- LLButton* mButton;
- LLTextBox* mLabel;
- const LLFontGL* mFont;
+ // note: value is stored in toggle state of button
+ LLButton* mButton;
+ LLTextBox* mLabel;
+ const LLFontGL* mFont;
- LLUIColor mTextEnabledColor;
- LLUIColor mTextDisabledColor;
+ LLUIColor mTextEnabledColor;
+ LLUIColor mTextDisabledColor;
- EWordWrap mWordWrap; // off, shifts text up, shifts text down
+ EWordWrap mWordWrap; // off, shifts text up, shifts text down
};
// Build time optimization, generate once in .cpp file
#ifndef LLCHECKBOXCTRL_CPP
extern template class LLCheckBoxCtrl* LLView::getChild<class LLCheckBoxCtrl>(
- const std::string& name, BOOL recurse) const;
+ const std::string& name, BOOL recurse) const;
#endif
#endif // LL_LLCHECKBOXCTRL_H