Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 lines
3.4KB

  1. /********************************************************************************
  2. ** Form generated from reading UI file 'carla_parameter.ui'
  3. **
  4. ** Created by: Qt User Interface Compiler version 5.13.2
  5. **
  6. ** WARNING! All changes made in this file will be lost when recompiling UI file!
  7. ********************************************************************************/
  8. #ifndef UI_CARLA_PARAMETER_H
  9. #define UI_CARLA_PARAMETER_H
  10. #include <QtCore/QVariant>
  11. #include <QtWidgets/QApplication>
  12. #include <QtWidgets/QHBoxLayout>
  13. #include <QtWidgets/QLabel>
  14. #include <QtWidgets/QSpinBox>
  15. #include <QtWidgets/QWidget>
  16. #include "widgets/paramspinbox.h"
  17. QT_BEGIN_NAMESPACE
  18. class Ui_PluginParameter
  19. {
  20. public:
  21. QHBoxLayout *horizontalLayout;
  22. QLabel *label;
  23. ParamSpinBox *widget;
  24. QSpinBox *sb_control;
  25. QSpinBox *sb_channel;
  26. void setupUi(QWidget *PluginParameter)
  27. {
  28. if (PluginParameter->objectName().isEmpty())
  29. PluginParameter->setObjectName(QString::fromUtf8("PluginParameter"));
  30. PluginParameter->resize(369, 22);
  31. horizontalLayout = new QHBoxLayout(PluginParameter);
  32. horizontalLayout->setContentsMargins(0, 0, 0, 0);
  33. horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
  34. label = new QLabel(PluginParameter);
  35. label->setObjectName(QString::fromUtf8("label"));
  36. label->setAlignment(Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter);
  37. horizontalLayout->addWidget(label);
  38. widget = new ParamSpinBox(PluginParameter);
  39. widget->setObjectName(QString::fromUtf8("widget"));
  40. QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred);
  41. sizePolicy.setHorizontalStretch(0);
  42. sizePolicy.setVerticalStretch(0);
  43. sizePolicy.setHeightForWidth(widget->sizePolicy().hasHeightForWidth());
  44. widget->setSizePolicy(sizePolicy);
  45. widget->setContextMenuPolicy(Qt::CustomContextMenu);
  46. horizontalLayout->addWidget(widget);
  47. sb_control = new QSpinBox(PluginParameter);
  48. sb_control->setObjectName(QString::fromUtf8("sb_control"));
  49. sb_control->setContextMenuPolicy(Qt::CustomContextMenu);
  50. sb_control->setMinimum(-1);
  51. sb_control->setMaximum(119);
  52. sb_control->setValue(-1);
  53. horizontalLayout->addWidget(sb_control);
  54. sb_channel = new QSpinBox(PluginParameter);
  55. sb_channel->setObjectName(QString::fromUtf8("sb_channel"));
  56. sb_channel->setContextMenuPolicy(Qt::CustomContextMenu);
  57. sb_channel->setMinimum(1);
  58. sb_channel->setMaximum(16);
  59. sb_channel->setValue(1);
  60. horizontalLayout->addWidget(sb_channel);
  61. retranslateUi(PluginParameter);
  62. QMetaObject::connectSlotsByName(PluginParameter);
  63. } // setupUi
  64. void retranslateUi(QWidget *PluginParameter)
  65. {
  66. PluginParameter->setWindowTitle(QCoreApplication::translate("PluginParameter", "Form", nullptr));
  67. label->setText(QCoreApplication::translate("PluginParameter", "Parameter Name", nullptr));
  68. sb_control->setSpecialValueText(QCoreApplication::translate("PluginParameter", "(none)", nullptr));
  69. sb_control->setPrefix(QCoreApplication::translate("PluginParameter", "cc #", nullptr));
  70. sb_channel->setPrefix(QCoreApplication::translate("PluginParameter", "ch ", nullptr));
  71. } // retranslateUi
  72. };
  73. namespace Ui {
  74. class PluginParameter: public Ui_PluginParameter {};
  75. } // namespace Ui
  76. QT_END_NAMESPACE
  77. #endif // UI_CARLA_PARAMETER_H