source-label.hpp 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. #include <QLabel>
  15. #include <obs.hpp>
  16. class OBSSourceLabel : public QLabel {
  17. Q_OBJECT;
  18. public:
  19. OBSSignal renamedSignal;
  20. OBSSignal removedSignal;
  21. OBSSignal destroyedSignal;
  22. OBSSourceLabel(const obs_source_t *source, QWidget *parent=nullptr,
  23. Qt::WindowFlags f=0)
  24. : QLabel(obs_source_get_name(source), parent, f),
  25. renamedSignal(obs_source_get_signal_handler(source), "rename",
  26. &OBSSourceLabel::SourceRenamed, this),
  27. removedSignal(obs_source_get_signal_handler(source), "remove",
  28. &OBSSourceLabel::SourceRemoved, this),
  29. destroyedSignal(obs_source_get_signal_handler(source),
  30. "destroy", &OBSSourceLabel::SourceDestroyed,
  31. this)
  32. {}
  33. protected:
  34. static void SourceRenamed(void *data, calldata_t *params);
  35. static void SourceRemoved(void *data, calldata_t *params);
  36. static void SourceDestroyed(void *data, calldata_t *params);
  37. signals:
  38. void Renamed(const char *name);
  39. void Removed();
  40. void Destroyed();
  41. };