From a02b68acf93638a3e9963f08325fe4c787a0a904 Mon Sep 17 00:00:00 2001 From: Krad Date: Tue, 7 Dec 2021 14:11:27 +0800 Subject: [PATCH] Translate about resource --- src/languageswitcher.cpp | 35 + src/languageswitcher.h | 25 + src/res.qrc | 2 + src/translations/en_US.qm | Bin 0 -> 23 bytes src/translations/en_US.ts | 2291 +++++++++++++++++++++++++++++++++++++ src/translations/zh_CN.qm | Bin 0 -> 1412 bytes src/translations/zh_CN.ts | 2291 +++++++++++++++++++++++++++++++++++++ 7 files changed, 4644 insertions(+) create mode 100644 src/languageswitcher.cpp create mode 100644 src/languageswitcher.h create mode 100644 src/translations/en_US.qm create mode 100644 src/translations/en_US.ts create mode 100644 src/translations/zh_CN.qm create mode 100644 src/translations/zh_CN.ts diff --git a/src/languageswitcher.cpp b/src/languageswitcher.cpp new file mode 100644 index 0000000..505fe45 --- /dev/null +++ b/src/languageswitcher.cpp @@ -0,0 +1,35 @@ +#include "languageswitcher.h" +#include + +LanguageSwitcher* LanguageSwitcher::lsw = Q_NULLPTR; + +LanguageSwitcher* LanguageSwitcher::Instance() +{ + if (lsw == Q_NULLPTR) + { + lsw = new LanguageSwitcher(); + + } + return lsw; +} +LanguageSwitcher::LanguageSwitcher() +{} + +LanguageSwitcher::~LanguageSwitcher() +{} + +void LanguageSwitcher::setTranslator(QTranslator* tra) +{ + this->translator = tra; +} + +void LanguageSwitcher::setDefaultLanguage(QString str) +{ + QString lan = QString(":/translations/" + str + ".qm"); + if (translator->load(lan)) + { + //qDebug() << "installTranslator"; + //QApplication::installTranslator(translator); + } +} + diff --git a/src/languageswitcher.h b/src/languageswitcher.h new file mode 100644 index 0000000..d119fc6 --- /dev/null +++ b/src/languageswitcher.h @@ -0,0 +1,25 @@ +#ifndef LANGUAGESWITCHER_H +#define LANGUAGESWITCHER_H + +#include + +class QTranslator; +class LanguageSwitcher : public QObject +{ + Q_OBJECT +public: + static LanguageSwitcher* Instance(); + void setDefaultLanguage(QString str); + void setTranslator(QTranslator* tra); +signals: + +public slots: + +private: + explicit LanguageSwitcher(); + ~LanguageSwitcher(); + static LanguageSwitcher* lsw; + QTranslator* translator = nullptr; +}; + +#endif // LANGUAGESWITCHER_H \ No newline at end of file diff --git a/src/res.qrc b/src/res.qrc index c1e1cc4..b7d926a 100644 --- a/src/res.qrc +++ b/src/res.qrc @@ -28,5 +28,7 @@ icons/male_d.png icons/login.png fonts/DroidSansFallback.ttf + translations/en_US.qm + translations/zh_CN.qm diff --git a/src/translations/en_US.qm b/src/translations/en_US.qm new file mode 100644 index 0000000000000000000000000000000000000000..9dad8dffceb9623e88f8b96d9cd0caf25574c6fa GIT binary patch literal 23 fcmcE7ks@*G{hX<16=n7(EZlpygMop8iIEWihQJ9+ literal 0 HcmV?d00001 diff --git a/src/translations/en_US.ts b/src/translations/en_US.ts new file mode 100644 index 0000000..0fc4d95 --- /dev/null +++ b/src/translations/en_US.ts @@ -0,0 +1,2291 @@ + + + + + AbstractButtonSection + + + + AbstractButton + + + + + + Text + + + + + + The text displayed on the button. + + + + + + Display + + + + + + Determines how the icon and text are displayed within the button. + + + + + + Checkable + + + + + + Whether the button is checkable. + + + + + + Checked + + + + + + Whether the button is checked. + + + + + + Exclusive + + + + + + Whether the button is exclusive. + + + + + + Repeat + + + + + + Whether the button repeats while pressed and held down. + + + + + AccountFormDialog + + + Account + + + + + User ID + + + + + Name + + + + + Password + + + + + Change Password + + + + + + Logout + + + + + AdminSettingForm + + + General + + + + + Account Manage + + + + + System Setting + + + + + System Information + + + + + Operation Log + + + + + About + + + + + BusyIndicatorSpecifics + + + + BusyIndicator + + + + + + Running + + + + + + Whether the busy indicator is currently indicating activity. + + + + + ButtonSection + + + + Button + + + + + + AutoRepeat + + + + + + Whether the button repeats pressed(), released() and clicked() signals while the button is pressed and held down. + + + + + + Flat + + + + + + Whether the button is flat. + + + + + + Highlighted + + + + + + Whether the button is highlighted. + + + + + ChangePasswordFormDialog + + + Change Password + + + + + Current Password + + + + + New Password + + + + + Confirm Password + + + + + Please enter your old password! + + + + + New password should at least 6 characters! + + + + + Wrong password! + + + + + Your new password does not match! + + + + + Database update error! + + + + + CheckBoxSpecifics + + + + CheckBox + + + + + CheckDelegateSpecifics + + + + CheckDelegate + + + + + CheckSection + + + + Check State + + + + + + The current check state. + + + + + + Tri-state + + + + + + Whether the checkbox has three states. + + + + + CircularGaugeSpecifics + + + + CircularGauge + + + + + + + + Value + + + + + + + + Minimum Value + + + + + + + + Maximum Value + + + + + + + + Step Size + + + + + ComboBoxSpecifics + + + + ComboBox + + + + + + Text Role + + + + + + The model role used for displaying text. + + + + + + Current + + + + + + The index of the current item. + + + + + + Editable + + + + + + Whether the combo box is editable. + + + + + + Flat + + + + + + Whether the combo box button is flat. + + + + + + DisplayText + + + + + + Holds the text that is displayed on the combo box button. + + + + + ContainerSection + + + + Container + + + + + + Current + + + + + + The index of the current item. + + + + + ControlSection + + + + Control + + + + + + Enabled + + + + + + Whether the control is enabled. + + + + + + Focus Policy + + + + + + Focus policy of the control. + + + + + + Hover + + + + + + Whether control accepts hover evets. + + + + + + Spacing + + + + + + Spacing between internal elements of the control. + + + + + + Wheel + + + + + + Whether control accepts wheel evets. + + + + + DefaultColorDialog + + + + Hue + + + + + + Saturation + + + + + + Luminosity + + + + + + Alpha + + + + + + Cancel + + + + + + OK + + + + + DefaultDialogWrapper + + + + Show Details... + + + + + DefaultFileDialog + + + + Go up to the folder containing this one + + + + + + Remove favorite + + + + + + Add the current directory as a favorite + + + + + + Filename + + + + + + Type + file type (extension) + + + + + + Size + file size + + + + + + Modified + last-modified time + + + + + + Accessed + last-accessed time + + + + + + Cancel + + + + + + Choose + + + + + + Open + + + + + + Save + + + + + DefaultFontDialog + + + + Font + + + + + + + + Weight + + + + + + + + Size + + + + + + Font Family + + + + + + Thin + + + + + + ExtraLight + + + + + + Light + + + + + + Normal + + + + + + Medium + + + + + + DemiBold + + + + + + Bold + + + + + + ExtraBold + + + + + + Black + + + + + + Style + + + + + + Italic + + + + + + Underline + + + + + + Overline + + + + + + Strikeout + + + + + + Writing System + + + + + + Sample + + + + + + Cancel + + + + + + OK + + + + + DefaultMessageDialog + + + + OK + + + + + + Open + + + + + + Save + + + + + + Save All + + + + + + Retry + + + + + + Ignore + + + + + + Apply + + + + + + Yes + + + + + + Yes to All + + + + + + No + + + + + + No to All + + + + + + Discard + + + + + + Reset + + + + + + Restore Defaults + + + + + + Cancel + + + + + + Abort + + + + + + Close + + + + + + Show Details... + + + + + + Help + + + + + + Hide Details + + + + + DelayButtonSpecifics + + + + + + DelayButton + + + + + + + + + + Delay + + + + + + The delay in milliseconds. + + + + + + + + Text + + + + + DialSpecifics + + + + + + Dial + + + + + + + + + + Value + + + + + + The current value of the dial. + + + + + + From + + + + + + The starting value of the dial range. + + + + + + To + + + + + + The ending value of the dial range. + + + + + + + + + + Step Size + + + + + + The step size of the dial. + + + + + + Snap Mode + + + + + + The snap mode of the dial. + + + + + + Live + + + + + + Whether the dial provides live value updates. + + + + + + + + Minimum Value + + + + + + + + Maximum Value + + + + + + + + Tickmarks Visible + + + + + EditMenu_base + + + + &Undo + + + + + + &Redo + + + + + + Cu&t + + + + + + &Copy + + + + + + &Paste + + + + + + Delete + + + + + + Clear + + + + + + Select All + + + + + EditPatientForm + + + + + Form + + + + + + + ID + + + + + + + Name + + + + + + + Sex + + + + + + + Date Of Birth + + + + + + + Comment + + + + + GUIMessageDialog + + + + + Dialog + + + + + + + ... + + + + + GaugeSpecifics + + + + Gauge + + + + + + + + Value + + + + + + + + Minimum Value + + + + + + + + Maximum Value + + + + + GeneralForm + + + Language + + + + + Institution Name + + + + + Institution Addr + + + + + Lock Screen Timeout + + + + + GroupBoxSpecifics + + + + GroupBox + + + + + + Title + + + + + + The title of the group box. + + + + + InputObject + + + + + Form + + + + + ItemDelegateSection + + + + ItemDelegate + + + + + + Highlighted + + + + + + Whether the delegate is highlighted. + + + + + LabelSpecifics + + + + + + Text Color + + + + + + + + Style Color + + + + + LoginWindow + + + Username + + + + + Password + + + + + MainWindow + + + + + MainWindow + + + + + PaddingSection + + + + Padding + + + + + + Top + + + + + + Padding between the content and the top edge of the control. + + + + + + Left + + + + + + Padding between the content and the left edge of the control. + + + + + + Right + + + + + + Padding between the content and the right edge of the control. + + + + + + Bottom + + + + + + Padding between the content and the bottom edge of the control. + + + + + PageIndicatorSpecifics + + + + PageIndicator + + + + + + Count + + + + + + The number of pages. + + + + + + Current + + + + + + The index of the current page. + + + + + PageSpecifics + + + + Page + + + + + + Title + + + + + + Title of the page. + + + + + + Content Width + + + + + + Content height used for calculating the total implicit width. + + + + + + Content Height + + + + + + Content height used for calculating the total implicit height. + + + + + PaneSection + + + + Pane + + + + + + Content Width + + + + + + Content height used for calculating the total implicit width. + + + + + + Content Height + + + + + + Content height used for calculating the total implicit height. + + + + + PatientInformationForm + + + + + Form + + + + + + + Patient Information + + + + + + + <html><head/><body><p>PatientID:</p></body></html> + + + + + + + Someone Somebody + + + + + + + 2021/11/11 + + + + + + + Female + + + + + + + Acc# 27812398 + + + + + + + Current Protocol + + + + + + + LEFT ONLY + + + + + PictureSpecifics + + + + Picture + + + + + + + + Source + + + + + + + + Color + + + + + PieMenuSpecifics + + + + PieMenu + + + + + + + + Trigger Mode + + + + + ProgressBarSpecifics + + + + ProgressBar + + + + + + Indeterminate + + + + + + Whether the progress is indeterminate. + + + + + + Value + + + + + + The current value of the progress. + + + + + + From + + + + + + The starting value for the progress. + + + + + + To + + + + + + The ending value for the progress. + + + + + RangeSliderSpecifics + + + + RangeSlider + + + + + + First Value + + + + + + The value of the first range slider handle. + + + + + + Second Value + + + + + + The value of the second range slider handle. + + + + + + From + + + + + + The starting value of the range slider range. + + + + + + To + + + + + + The ending value of the range slider range. + + + + + + Step Size + + + + + + The step size of the range slider. + + + + + + Snap Mode + + + + + + The snap mode of the range slider. + + + + + + Orientation + + + + + + The orientation of the range slider. + + + + + + Live + + + + + + Whether the range slider provides live value updates. + + + + + RoundButtonSpecifics + + + + RoundButton + + + + + + Radius + + + + + + Radius of the button. + + + + + ScrollViewSpecifics + + + + ScrollView + + + + + + Content Width + + + + + + Content height used for calculating the total implicit width. + + + + + + Content Height + + + + + + Content height used for calculating the total implicit height. + + + + + SliderSpecifics + + + + Slider + + + + + + Value + + + + + + The current value of the slider. + + + + + + From + + + + + + The starting value of the slider range. + + + + + + To + + + + + + The ending value of the slider range. + + + + + + Step Size + + + + + + The step size of the slider. + + + + + + Snap Mode + + + + + + The snap mode of the slider. + + + + + + Orientation + + + + + + The orientation of the slider. + + + + + + Live + + + + + + Whether the slider provides live value updates. + + + + + SpinBoxSpecifics + + + + SpinBox + + + + + + Value + + + + + + The current value of the spinbox. + + + + + + From + + + + + + The starting value of the spinbox range. + + + + + + To + + + + + + The ending value of the spinbox range. + + + + + + Step Size + + + + + + The step size of the spinbox. + + + + + + Editable + + + + + + Whether the spinbox is editable. + + + + + StatusIndicatorSpecifics + + + + StatusIndicator + + + + + + + + Active + + + + + + + + Color + + + + + SwipeViewSpecifics + + + + SwipeView + + + + + + Interactive + + + + + + Whether the view is interactive. + + + + + + Orientation + + + + + + Orientation of the view. + + + + + TabBarSpecifics + + + + TabBar + + + + + + Position + + + + + + Position of the tabbar. + + + + + + Content Width + + + + + + Content height used for calculating the total implicit width. + + + + + + Content Height + + + + + + Content height used for calculating the total implicit height. + + + + + TabFormWidget + + + + + Form + + + + + + + LOGO + + + + + + + TextLabel + + + + + + + <html><head/><body><p>Message from DAQ and device.</p></body></html> + + + + + 浙江衡玖医疗科技 + + + + + 浙江大学医学院附属第二医院 + + + + + °C + + + + + TextAreaSpecifics + + + + TextArea + + + + + + Placeholder + + + + + + Placeholder text displayed when the editor is empty. + + + + + TextFieldSpecifics + + + + TextField + + + + + + Placeholder + + + + + + Placeholder text displayed when the editor is empty. + + + + + ToggleButtonSpecifics + + + + ToggleButton + + + + + + + + Text + + + + + + + + Checked + + + + + ToolBarSpecifics + + + + ToolBar + + + + + + Position + + + + + + Position of the toolbar. + + + + + ToolSeparatorSpecifics + + + + ToolSeparator + + + + + + Orientation + + + + + + The orientation of the separator. + + + + + TumblerSpecifics + + + + Tumbler + + + + + + Visible Count + + + + + + The count of visible items. + + + + + + Current + + + + + + The index of the current item. + + + + + + Wrap + + + + + + Whether the tumbler wrap. + + + + + UserOperationLogForm + + + Log Date: + + + + + systemSettingForm + + + Default Protocal + + + + + Default Worklist Filter + + + + diff --git a/src/translations/zh_CN.qm b/src/translations/zh_CN.qm new file mode 100644 index 0000000000000000000000000000000000000000..7632b6a8dc4288abd80ad4f4c7458812e27004ca GIT binary patch literal 1412 zcmcE7ks@*G{hX<16=n7(EZlq7iGhJ(2LnUo2?hq{Fa}l+Qy_lJ^ z?njPQkDma!=O8po1ZSeya-e#5&XdkSd6pI~pW8q_<2kMr8=yX>V?1+QT7Y~8-XkY$ zfb=}RNo_}gbTU8J)=NP18u__9LxJ?pOrYjX%s`XbN;Q(qLwGqrma+jcyJK>4era9_ zJCH31WxM4U<+@}h=H#a{g0yh>ze}}@K32g9*TnCfk(igBst}M^TwI=Cl!8YyOIdZ` zFStfFpZxUvQhb)NL|#U69gAOLZYn<0QJlp=gnKwZ{%7!HaDlstJ+wHrNWs$upEZHS zetmEatd2=gKL|Lc#cc>N22T1qnW^Avz#jYntA@4EZ`4-@j? zI)#EOi%U{-6+H9OfIa~mK|p)=zWO}4c0Qp-^fFv%x+IpQD)^@BmV20<@_I6yft51P|aR09C{=v*fN literal 0 HcmV?d00001 diff --git a/src/translations/zh_CN.ts b/src/translations/zh_CN.ts new file mode 100644 index 0000000..c137298 --- /dev/null +++ b/src/translations/zh_CN.ts @@ -0,0 +1,2291 @@ + + + + + AbstractButtonSection + + + + AbstractButton + + + + + + Text + + + + + + The text displayed on the button. + + + + + + Display + + + + + + Determines how the icon and text are displayed within the button. + + + + + + Checkable + + + + + + Whether the button is checkable. + + + + + + Checked + + + + + + Whether the button is checked. + + + + + + Exclusive + + + + + + Whether the button is exclusive. + + + + + + Repeat + + + + + + Whether the button repeats while pressed and held down. + + + + + AccountFormDialog + + + Account + 用户名 + + + + User ID + 用户ID + + + + Name + 姓名 + + + + Password + 密码 + + + + Change Password + 修改密码 + + + + + Logout + 登出 + + + + AdminSettingForm + + + General + 通用 + + + + Account Manage + 用户管理 + + + + System Setting + 系统设置 + + + + System Information + 系统信息 + + + + Operation Log + 操作日志 + + + + About + 关于 + + + + BusyIndicatorSpecifics + + + + BusyIndicator + + + + + + Running + + + + + + Whether the busy indicator is currently indicating activity. + + + + + ButtonSection + + + + Button + + + + + + AutoRepeat + + + + + + Whether the button repeats pressed(), released() and clicked() signals while the button is pressed and held down. + + + + + + Flat + + + + + + Whether the button is flat. + + + + + + Highlighted + + + + + + Whether the button is highlighted. + + + + + ChangePasswordFormDialog + + + Change Password + 修改密码 + + + + Current Password + + + + + New Password + + + + + Confirm Password + + + + + Please enter your old password! + + + + + New password should at least 6 characters! + + + + + Wrong password! + + + + + Your new password does not match! + + + + + Database update error! + + + + + CheckBoxSpecifics + + + + CheckBox + + + + + CheckDelegateSpecifics + + + + CheckDelegate + + + + + CheckSection + + + + Check State + + + + + + The current check state. + + + + + + Tri-state + + + + + + Whether the checkbox has three states. + + + + + CircularGaugeSpecifics + + + + CircularGauge + + + + + + + + Value + + + + + + + + Minimum Value + + + + + + + + Maximum Value + + + + + + + + Step Size + + + + + ComboBoxSpecifics + + + + ComboBox + + + + + + Text Role + + + + + + The model role used for displaying text. + + + + + + Current + + + + + + The index of the current item. + + + + + + Editable + + + + + + Whether the combo box is editable. + + + + + + Flat + + + + + + Whether the combo box button is flat. + + + + + + DisplayText + + + + + + Holds the text that is displayed on the combo box button. + + + + + ContainerSection + + + + Container + + + + + + Current + + + + + + The index of the current item. + + + + + ControlSection + + + + Control + + + + + + Enabled + + + + + + Whether the control is enabled. + + + + + + Focus Policy + + + + + + Focus policy of the control. + + + + + + Hover + + + + + + Whether control accepts hover evets. + + + + + + Spacing + + + + + + Spacing between internal elements of the control. + + + + + + Wheel + + + + + + Whether control accepts wheel evets. + + + + + DefaultColorDialog + + + + Hue + + + + + + Saturation + + + + + + Luminosity + + + + + + Alpha + + + + + + Cancel + + + + + + OK + + + + + DefaultDialogWrapper + + + + Show Details... + + + + + DefaultFileDialog + + + + Go up to the folder containing this one + + + + + + Remove favorite + + + + + + Add the current directory as a favorite + + + + + + Filename + + + + + + Type + file type (extension) + + + + + + Size + file size + + + + + + Modified + last-modified time + + + + + + Accessed + last-accessed time + + + + + + Cancel + + + + + + Choose + + + + + + Open + + + + + + Save + + + + + DefaultFontDialog + + + + Font + + + + + + + + Weight + + + + + + + + Size + + + + + + Font Family + + + + + + Thin + + + + + + ExtraLight + + + + + + Light + + + + + + Normal + + + + + + Medium + + + + + + DemiBold + + + + + + Bold + + + + + + ExtraBold + + + + + + Black + + + + + + Style + + + + + + Italic + + + + + + Underline + + + + + + Overline + + + + + + Strikeout + + + + + + Writing System + + + + + + Sample + + + + + + Cancel + + + + + + OK + + + + + DefaultMessageDialog + + + + OK + + + + + + Open + + + + + + Save + + + + + + Save All + + + + + + Retry + + + + + + Ignore + + + + + + Apply + + + + + + Yes + + + + + + Yes to All + + + + + + No + + + + + + No to All + + + + + + Discard + + + + + + Reset + + + + + + Restore Defaults + + + + + + Cancel + + + + + + Abort + + + + + + Close + + + + + + Show Details... + + + + + + Help + + + + + + Hide Details + + + + + DelayButtonSpecifics + + + + + + DelayButton + + + + + + + + + + Delay + + + + + + The delay in milliseconds. + + + + + + + + Text + + + + + DialSpecifics + + + + + + Dial + + + + + + + + + + Value + + + + + + The current value of the dial. + + + + + + From + + + + + + The starting value of the dial range. + + + + + + To + + + + + + The ending value of the dial range. + + + + + + + + + + Step Size + + + + + + The step size of the dial. + + + + + + Snap Mode + + + + + + The snap mode of the dial. + + + + + + Live + + + + + + Whether the dial provides live value updates. + + + + + + + + Minimum Value + + + + + + + + Maximum Value + + + + + + + + Tickmarks Visible + + + + + EditMenu_base + + + + &Undo + + + + + + &Redo + + + + + + Cu&t + + + + + + &Copy + + + + + + &Paste + + + + + + Delete + + + + + + Clear + + + + + + Select All + + + + + EditPatientForm + + + + + Form + + + + + + + ID + + + + + + + Name + 姓名 + + + + + + Sex + + + + + + + Date Of Birth + + + + + + + Comment + + + + + GUIMessageDialog + + + + + Dialog + + + + + + + ... + + + + + GaugeSpecifics + + + + Gauge + + + + + + + + Value + + + + + + + + Minimum Value + + + + + + + + Maximum Value + + + + + GeneralForm + + + Language + 语言 + + + + Institution Name + 机构名称 + + + + Institution Addr + 机构地址 + + + + Lock Screen Timeout + 锁屏时间 + + + + GroupBoxSpecifics + + + + GroupBox + + + + + + Title + + + + + + The title of the group box. + + + + + InputObject + + + + + Form + + + + + ItemDelegateSection + + + + ItemDelegate + + + + + + Highlighted + + + + + + Whether the delegate is highlighted. + + + + + LabelSpecifics + + + + + + Text Color + + + + + + + + Style Color + + + + + LoginWindow + + + Username + 用户名 + + + + Password + 密码 + + + + MainWindow + + + + + MainWindow + + + + + PaddingSection + + + + Padding + + + + + + Top + + + + + + Padding between the content and the top edge of the control. + + + + + + Left + + + + + + Padding between the content and the left edge of the control. + + + + + + Right + + + + + + Padding between the content and the right edge of the control. + + + + + + Bottom + + + + + + Padding between the content and the bottom edge of the control. + + + + + PageIndicatorSpecifics + + + + PageIndicator + + + + + + Count + + + + + + The number of pages. + + + + + + Current + + + + + + The index of the current page. + + + + + PageSpecifics + + + + Page + + + + + + Title + + + + + + Title of the page. + + + + + + Content Width + + + + + + Content height used for calculating the total implicit width. + + + + + + Content Height + + + + + + Content height used for calculating the total implicit height. + + + + + PaneSection + + + + Pane + + + + + + Content Width + + + + + + Content height used for calculating the total implicit width. + + + + + + Content Height + + + + + + Content height used for calculating the total implicit height. + + + + + PatientInformationForm + + + + + Form + + + + + + + Patient Information + + + + + + + <html><head/><body><p>PatientID:</p></body></html> + + + + + + + Someone Somebody + + + + + + + 2021/11/11 + + + + + + + Female + + + + + + + Acc# 27812398 + + + + + + + Current Protocol + + + + + + + LEFT ONLY + + + + + PictureSpecifics + + + + Picture + + + + + + + + Source + + + + + + + + Color + + + + + PieMenuSpecifics + + + + PieMenu + + + + + + + + Trigger Mode + + + + + ProgressBarSpecifics + + + + ProgressBar + + + + + + Indeterminate + + + + + + Whether the progress is indeterminate. + + + + + + Value + + + + + + The current value of the progress. + + + + + + From + + + + + + The starting value for the progress. + + + + + + To + + + + + + The ending value for the progress. + + + + + RangeSliderSpecifics + + + + RangeSlider + + + + + + First Value + + + + + + The value of the first range slider handle. + + + + + + Second Value + + + + + + The value of the second range slider handle. + + + + + + From + + + + + + The starting value of the range slider range. + + + + + + To + + + + + + The ending value of the range slider range. + + + + + + Step Size + + + + + + The step size of the range slider. + + + + + + Snap Mode + + + + + + The snap mode of the range slider. + + + + + + Orientation + + + + + + The orientation of the range slider. + + + + + + Live + + + + + + Whether the range slider provides live value updates. + + + + + RoundButtonSpecifics + + + + RoundButton + + + + + + Radius + + + + + + Radius of the button. + + + + + ScrollViewSpecifics + + + + ScrollView + + + + + + Content Width + + + + + + Content height used for calculating the total implicit width. + + + + + + Content Height + + + + + + Content height used for calculating the total implicit height. + + + + + SliderSpecifics + + + + Slider + + + + + + Value + + + + + + The current value of the slider. + + + + + + From + + + + + + The starting value of the slider range. + + + + + + To + + + + + + The ending value of the slider range. + + + + + + Step Size + + + + + + The step size of the slider. + + + + + + Snap Mode + + + + + + The snap mode of the slider. + + + + + + Orientation + + + + + + The orientation of the slider. + + + + + + Live + + + + + + Whether the slider provides live value updates. + + + + + SpinBoxSpecifics + + + + SpinBox + + + + + + Value + + + + + + The current value of the spinbox. + + + + + + From + + + + + + The starting value of the spinbox range. + + + + + + To + + + + + + The ending value of the spinbox range. + + + + + + Step Size + + + + + + The step size of the spinbox. + + + + + + Editable + + + + + + Whether the spinbox is editable. + + + + + StatusIndicatorSpecifics + + + + StatusIndicator + + + + + + + + Active + + + + + + + + Color + + + + + SwipeViewSpecifics + + + + SwipeView + + + + + + Interactive + + + + + + Whether the view is interactive. + + + + + + Orientation + + + + + + Orientation of the view. + + + + + TabBarSpecifics + + + + TabBar + + + + + + Position + + + + + + Position of the tabbar. + + + + + + Content Width + + + + + + Content height used for calculating the total implicit width. + + + + + + Content Height + + + + + + Content height used for calculating the total implicit height. + + + + + TabFormWidget + + + + + Form + + + + + + + LOGO + + + + + + + TextLabel + + + + + + + <html><head/><body><p>Message from DAQ and device.</p></body></html> + + + + + 浙江衡玖医疗科技 + + + + + 浙江大学医学院附属第二医院 + + + + + °C + + + + + TextAreaSpecifics + + + + TextArea + + + + + + Placeholder + + + + + + Placeholder text displayed when the editor is empty. + + + + + TextFieldSpecifics + + + + TextField + + + + + + Placeholder + + + + + + Placeholder text displayed when the editor is empty. + + + + + ToggleButtonSpecifics + + + + ToggleButton + + + + + + + + Text + + + + + + + + Checked + + + + + ToolBarSpecifics + + + + ToolBar + + + + + + Position + + + + + + Position of the toolbar. + + + + + ToolSeparatorSpecifics + + + + ToolSeparator + + + + + + Orientation + + + + + + The orientation of the separator. + + + + + TumblerSpecifics + + + + Tumbler + + + + + + Visible Count + + + + + + The count of visible items. + + + + + + Current + + + + + + The index of the current item. + + + + + + Wrap + + + + + + Whether the tumbler wrap. + + + + + UserOperationLogForm + + + Log Date: + + + + + systemSettingForm + + + Default Protocal + + + + + Default Worklist Filter + + + +