summaryrefslogtreecommitdiff
path: root/indra/llui/lltimectrl.h
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2024-05-13 17:06:17 +0300
committerGitHub <noreply@github.com>2024-05-13 17:06:17 +0300
commit9013267da2269a9bd9683862b7449db1b1093afc (patch)
tree336172dfd6468e8bafa1d9c4a229624e85ffecfb /indra/llui/lltimectrl.h
parent0cb2c511bc2a0f54eb7b3a4c2988d7ebec96e3be (diff)
parent38c2a5bde985a6a8a96d912d432f8bdf7e5b60be (diff)
Merge pull request #1373 from secondlife/marchcat/x-ws-merge
Diffstat (limited to 'indra/llui/lltimectrl.h')
-rw-r--r--indra/llui/lltimectrl.h122
1 files changed, 61 insertions, 61 deletions
diff --git a/indra/llui/lltimectrl.h b/indra/llui/lltimectrl.h
index 1c8ac78289..a2c016ab6f 100644
--- a/indra/llui/lltimectrl.h
+++ b/indra/llui/lltimectrl.h
@@ -37,93 +37,93 @@ class LLLineEditor;
class LLTimeCtrl
: public LLUICtrl
{
- LOG_CLASS(LLTimeCtrl);
+ LOG_CLASS(LLTimeCtrl);
public:
- struct Params : public LLInitParam::Block<Params, LLUICtrl::Params>
- {
- Optional<S32> label_width;
- Optional<S32> snap_to;
- Optional<bool> allow_text_entry;
+ struct Params : public LLInitParam::Block<Params, LLUICtrl::Params>
+ {
+ Optional<S32> label_width;
+ Optional<S32> snap_to;
+ Optional<bool> allow_text_entry;
- Optional<LLUIColor> text_enabled_color;
- Optional<LLUIColor> text_disabled_color;
+ Optional<LLUIColor> text_enabled_color;
+ Optional<LLUIColor> text_disabled_color;
- Optional<LLButton::Params> up_button;
- Optional<LLButton::Params> down_button;
+ Optional<LLButton::Params> up_button;
+ Optional<LLButton::Params> down_button;
- Params();
- };
+ Params();
+ };
- F32 getTime24() const; // 0.0 - 24.0
- U32 getHours24() const; // 0 - 23
- U32 getMinutes() const; // 0 - 59
+ F32 getTime24() const; // 0.0 - 24.0
+ U32 getHours24() const; // 0 - 23
+ U32 getMinutes() const; // 0 - 59
- void setTime24(F32 time); // 0.0 - 23.98(3)
+ void setTime24(F32 time); // 0.0 - 23.98(3)
- static std::string getHoursString(const std::string& str);
- static std::string getMinutesString(const std::string& str);
- static std::string getAMPMString(const std::string& str);
+ static std::string getHoursString(const std::string& str);
+ static std::string getMinutesString(const std::string& str);
+ static std::string getAMPMString(const std::string& str);
- static bool isHoursStringValid(const std::string& str);
- static bool isMinutesStringValid(const std::string& str);
- static bool isPMAMStringValid(const std::string& str);
+ static bool isHoursStringValid(const std::string& str);
+ static bool isMinutesStringValid(const std::string& str);
+ static bool isPMAMStringValid(const std::string& str);
- static U32 parseHours(const std::string& str);
- static U32 parseMinutes(const std::string& str);
- static bool parseAMPM(const std::string& str);
+ static U32 parseHours(const std::string& str);
+ static U32 parseMinutes(const std::string& str);
+ static bool parseAMPM(const std::string& str);
protected:
- LLTimeCtrl(const Params&);
- friend class LLUICtrlFactory;
+ LLTimeCtrl(const Params&);
+ friend class LLUICtrlFactory;
private:
- enum EDayPeriod
- {
- AM,
- PM
- };
+ enum EDayPeriod
+ {
+ AM,
+ PM
+ };
- enum EEditingPart
- {
- HOURS,
- MINUTES,
- DAYPART,
- NONE
- };
+ enum EEditingPart
+ {
+ HOURS,
+ MINUTES,
+ DAYPART,
+ NONE
+ };
- virtual void onFocusLost();
- virtual BOOL handleKeyHere(KEY key, MASK mask);
+ virtual void onFocusLost();
+ virtual BOOL handleKeyHere(KEY key, MASK mask);
- void onUpBtn();
- void onDownBtn();
- void onTextEntry(LLLineEditor* line_editor);
+ void onUpBtn();
+ void onDownBtn();
+ void onTextEntry(LLLineEditor* line_editor);
- void increaseMinutes();
- void increaseHours();
+ void increaseMinutes();
+ void increaseHours();
- void decreaseMinutes();
- void decreaseHours();
+ void decreaseMinutes();
+ void decreaseHours();
- bool isPM() const;
- void switchDayPeriod();
+ bool isPM() const;
+ void switchDayPeriod();
- void updateText();
+ void updateText();
- EEditingPart getEditingPart();
+ EEditingPart getEditingPart();
- class LLTextBox* mLabelBox;
+ class LLTextBox* mLabelBox;
- class LLLineEditor* mEditor;
- LLUIColor mTextEnabledColor;
- LLUIColor mTextDisabledColor;
+ class LLLineEditor* mEditor;
+ LLUIColor mTextEnabledColor;
+ LLUIColor mTextDisabledColor;
- class LLButton* mUpBtn;
- class LLButton* mDownBtn;
+ class LLButton* mUpBtn;
+ class LLButton* mDownBtn;
- U32 mTime; // minutes since midnight: 0 - 1439
- U32 mSnapToMin; // interval in minutes to snap to
+ U32 mTime; // minutes since midnight: 0 - 1439
+ U32 mSnapToMin; // interval in minutes to snap to
- BOOL mAllowEdit;
+ BOOL mAllowEdit;
};
#endif /* LLTIMECTRL_H_ */