Collection of tools useful for audio production
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.

52 lines
1.4KB

  1. /*
  2. * Carla Bridge Toolkit
  3. * Copyright (C) 2011-2012 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * 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 COPYING file
  16. */
  17. #include "carla_bridge_toolkit.hpp"
  18. #include "carla_utils.hpp"
  19. #include <cstdlib>
  20. #include <cstring>
  21. CARLA_BRIDGE_START_NAMESPACE
  22. CarlaBridgeToolkit::CarlaBridgeToolkit(CarlaBridgeClient* const client_, const char* const newTitle)
  23. : client(client_)
  24. {
  25. qDebug("CarlaBridgeToolkit::CarlaBridgeToolkit(%p, \"%s\")", client, newTitle);
  26. CARLA_ASSERT(client);
  27. CARLA_ASSERT(newTitle);
  28. uiTitle = strdup(newTitle ? newTitle : "(null)");
  29. }
  30. CarlaBridgeToolkit::~CarlaBridgeToolkit()
  31. {
  32. qDebug("CarlaBridgeToolkit::~CarlaBridgeToolkit()");
  33. free(uiTitle);
  34. }
  35. #if BUILD_BRIDGE_UI
  36. void* CarlaBridgeToolkit::getContainerId()
  37. {
  38. qDebug("CarlaBridgeToolkit::getContainerId()");
  39. return nullptr;
  40. }
  41. #endif
  42. CARLA_BRIDGE_END_NAMESPACE