source-label.hpp 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /******************************************************************************
  2. Copyright (C) 2015 by Ruwen Hahn <[email protected]>
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. ******************************************************************************/
  14. #pragma once
  15. #include <QLabel>
  16. #include <obs.hpp>
  17. class OBSSourceLabel : public QLabel {
  18. Q_OBJECT;
  19. public:
  20. OBSSignal renamedSignal;
  21. OBSSignal removedSignal;
  22. OBSSignal destroyedSignal;
  23. OBSSourceLabel(const obs_source_t *source, QWidget *parent=nullptr,
  24. Qt::WindowFlags f=0)
  25. : QLabel(obs_source_get_name(source), parent, f),
  26. renamedSignal(obs_source_get_signal_handler(source), "rename",
  27. &OBSSourceLabel::SourceRenamed, this),
  28. removedSignal(obs_source_get_signal_handler(source), "remove",
  29. &OBSSourceLabel::SourceRemoved, this),
  30. destroyedSignal(obs_source_get_signal_handler(source),
  31. "destroy", &OBSSourceLabel::SourceDestroyed,
  32. this)
  33. {}
  34. protected:
  35. static void SourceRenamed(void *data, calldata_t *params);
  36. static void SourceRemoved(void *data, calldata_t *params);
  37. static void SourceDestroyed(void *data, calldata_t *params);
  38. signals:
  39. void Renamed(const char *name);
  40. void Removed();
  41. void Destroyed();
  42. };