source-label.hpp 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 = Qt::WindowFlags())
  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. }
  35. protected:
  36. static void SourceRenamed(void *data, calldata_t *params);
  37. static void SourceRemoved(void *data, calldata_t *params);
  38. static void SourceDestroyed(void *data, calldata_t *params);
  39. signals:
  40. void Renamed(const char *name);
  41. void Removed();
  42. void Destroyed();
  43. };