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.

pluginlistdialog.hpp 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*
  2. * Carla plugin host
  3. * Copyright (C) 2011-2022 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * For a full copy of the GNU General Public License see the doc/GPL.txt file.
  16. */
  17. #pragma once
  18. #ifdef __clang__
  19. # pragma clang diagnostic push
  20. # pragma clang diagnostic ignored "-Wdeprecated-copy-with-user-provided-copy"
  21. # pragma clang diagnostic ignored "-Wdeprecated-register"
  22. #elif defined(__GNUC__) && __GNUC__ >= 8
  23. # pragma GCC diagnostic push
  24. # pragma GCC diagnostic ignored "-Wclass-memaccess"
  25. # pragma GCC diagnostic ignored "-Wdeprecated-copy"
  26. #endif
  27. #include <QtWidgets/QDialog>
  28. #ifdef __clang__
  29. # pragma clang diagnostic pop
  30. #elif defined(__GNUC__) && __GNUC__ >= 8
  31. # pragma GCC diagnostic pop
  32. #endif
  33. #include "CarlaDefines.h"
  34. struct HostSettings {
  35. bool showPluginBridges;
  36. bool showWineBridges;
  37. bool useSystemIcons;
  38. };
  39. // --------------------------------------------------------------------------------------------------------------------
  40. // Jack Application Dialog
  41. class PluginListDialog : public QDialog
  42. {
  43. struct Self;
  44. Self& self;
  45. // ----------------------------------------------------------------------------------------------------------------
  46. public:
  47. explicit PluginListDialog(QWidget* parent, const HostSettings& hostSettings);
  48. ~PluginListDialog() override;
  49. // ----------------------------------------------------------------------------------------------------------------
  50. // public methods
  51. // ----------------------------------------------------------------------------------------------------------------
  52. // private methods
  53. void loadSettings();
  54. void reAddPlugins();
  55. // ----------------------------------------------------------------------------------------------------------------
  56. // private slots
  57. private slots:
  58. void slot_cellClicked(int row, int column);
  59. void slot_cellDoubleClicked(int row, int column);
  60. void slot_focusSearchFieldAndSelectAll();
  61. void slot_addPlugin();
  62. void slot_checkPlugin(int row);
  63. void slot_checkFilters();
  64. void slot_checkFiltersCategoryAll(bool clicked);
  65. void slot_checkFiltersCategorySpecific(bool clicked);
  66. void slot_refreshPlugins();
  67. void slot_clearFilters();
  68. void slot_saveSettings();
  69. };
  70. // --------------------------------------------------------------------------------------------------------------------
  71. extern "C" {
  72. struct PluginListDialogResults {
  73. int btype;
  74. int ptype;
  75. const char* binary;
  76. const char* label;
  77. // TODO
  78. };
  79. CARLA_API
  80. PluginListDialogResults* carla_frontend_createAndExecPluginListDialog(void* parent/*, const HostSettings& hostSettings*/);
  81. }
  82. // --------------------------------------------------------------------------------------------------------------------