Use the previous naming to keep source compatibility

This commit is contained in:
Artur Wojcik
2022-11-16 14:41:54 +01:00
committed by Baldur Karlsson
parent e630515813
commit 789a2a131c
4 changed files with 16 additions and 16 deletions
+4 -4
View File
@@ -891,7 +891,7 @@ happen.
DOCUMENT(R"(Create a drop-down combo box widget.
When created there are no pre-defined entries in the drop-down section. This can be changed with
:meth:`SetComboBoxOptions`.
:meth:`SetComboOptions`.
:param bool editable: ``True`` if the widget should allow the user to enter any text they wish as
well as being able to select a pre-defined entry.
@@ -908,7 +908,7 @@ passed nothing will happen.
:param QWidget combo: The combo box.
:param List[str] options: The new options for the combo box.
)");
virtual void SetComboBoxOptions(QWidget *combo, const rdcarray<rdcstr> &options) = 0;
virtual void SetComboOptions(QWidget *combo, const rdcarray<rdcstr> &options) = 0;
DOCUMENT(R"(Get the number of options in a drop-down combo box. If another type of widget is
passed ``0`` will be returned.
@@ -917,7 +917,7 @@ passed ``0`` will be returned.
:return: The current number of options.
:rtype: int
)")
virtual size_t GetComboBoxCount(QWidget *combo) = 0;
virtual size_t GetComboCount(QWidget *combo) = 0;
DOCUMENT(R"(Select the current option in a drop-down combo box. If another type of widget or
an unknown option is passed, nothing will happen.
@@ -925,7 +925,7 @@ an unknown option is passed, nothing will happen.
:param QWidget combo: The combo box.
:param str option: The option to select.
)")
virtual void SelectComboBoxOption(QWidget *combo, const rdcstr &option) = 0;
virtual void SelectComboOption(QWidget *combo, const rdcstr &option) = 0;
protected:
DOCUMENT("");
+3 -3
View File
@@ -686,7 +686,7 @@ QWidget *MiniQtHelper::CreateComboBox(bool editable, WidgetCallback changed)
return w;
}
void MiniQtHelper::SetComboBoxOptions(QWidget *combo, const rdcarray<rdcstr> &options)
void MiniQtHelper::SetComboOptions(QWidget *combo, const rdcarray<rdcstr> &options)
{
if(!combo)
return;
@@ -701,7 +701,7 @@ void MiniQtHelper::SetComboBoxOptions(QWidget *combo, const rdcarray<rdcstr> &op
comb->addItems(texts);
}
size_t MiniQtHelper::GetComboBoxCount(QWidget *combo)
size_t MiniQtHelper::GetComboCount(QWidget *combo)
{
if(!combo)
return 0;
@@ -710,7 +710,7 @@ size_t MiniQtHelper::GetComboBoxCount(QWidget *combo)
return comb->count();
}
void MiniQtHelper::SelectComboBoxOption(QWidget *combo, const rdcstr &option)
void MiniQtHelper::SelectComboOption(QWidget *combo, const rdcstr &option)
{
if(!combo)
return;
+3 -3
View File
@@ -115,9 +115,9 @@ public:
QWidget *CreateComboBox(bool editable, WidgetCallback changed) override;
void SetComboBoxOptions(QWidget *combo, const rdcarray<rdcstr> &options) override;
size_t GetComboBoxCount(QWidget *combo) override;
void SelectComboBoxOption(QWidget *combo, const rdcstr &option) override;
void SetComboOptions(QWidget *combo, const rdcarray<rdcstr> &options) override;
size_t GetComboCount(QWidget *combo) override;
void SelectComboOption(QWidget *combo, const rdcstr &option) override;
private:
ICaptureContext &m_Ctx;
+6 -6
View File
@@ -298,19 +298,19 @@ struct MiniQtInvoker : ObjectForwarder<IMiniQtHelper>
return InvokeRetFunction<QWidget *>(&IMiniQtHelper::CreateComboBox, editable, changed);
}
void SetComboBoxOptions(QWidget *combo, const rdcarray<rdcstr> &options)
void SetComboOptions(QWidget *combo, const rdcarray<rdcstr> &options)
{
InvokeVoidFunction(&IMiniQtHelper::SetComboBoxOptions, combo, options);
InvokeVoidFunction(&IMiniQtHelper::SetComboOptions, combo, options);
}
size_t GetComboBoxCount(QWidget *combo)
size_t GetComboCount(QWidget *combo)
{
return InvokeRetFunction<size_t>(&IMiniQtHelper::GetComboBoxCount, combo);
return InvokeRetFunction<size_t>(&IMiniQtHelper::GetComboCount, combo);
}
void SelectComboBoxOption(QWidget *combo, const rdcstr &option)
void SelectComboOption(QWidget *combo, const rdcstr &option)
{
InvokeVoidFunction(&IMiniQtHelper::SelectComboBoxOption, combo, option);
InvokeVoidFunction(&IMiniQtHelper::SelectComboOption, combo, option);
}
};