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.

40 lines
1.2KB

  1. // SPDX-FileCopyrightText: 2011-2025 Filipe Coelho <falktx@falktx.com>
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #include "carla_frontend.h"
  5. #ifdef __clang__
  6. # pragma clang diagnostic push
  7. # pragma clang diagnostic ignored "-Wdeprecated-copy-with-user-provided-copy"
  8. # pragma clang diagnostic ignored "-Wdeprecated-register"
  9. #elif defined(__GNUC__) && __GNUC__ >= 8
  10. # pragma GCC diagnostic push
  11. # pragma GCC diagnostic ignored "-Wclass-memaccess"
  12. # pragma GCC diagnostic ignored "-Wdeprecated-copy"
  13. #endif
  14. #include "ui_aboutdialog.h"
  15. #ifdef __clang__
  16. # pragma clang diagnostic pop
  17. #elif defined(__GNUC__) && __GNUC__ >= 8
  18. # pragma GCC diagnostic pop
  19. #endif
  20. // --------------------------------------------------------------------------------------------------------------------
  21. // About Dialog
  22. class AboutDialog : public QDialog
  23. {
  24. Ui_AboutDialog ui;
  25. // ----------------------------------------------------------------------------------------------------------------
  26. public:
  27. explicit AboutDialog(QWidget* parent, CarlaHostHandle hostHandle, bool isControl, bool isPlugin);
  28. };
  29. // --------------------------------------------------------------------------------------------------------------------