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.

19 lines
356 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. #ifndef SCREEN_RECORDER_PREVIEW_WINDOW_HPP
  2. #define SCREEN_RECORDER_PREVIEW_WINDOW_HPP
  3. #include "obs-manager.hpp"
  4. #include <gtkmm.h>
  5. class PreviewWindow : public Gtk::Window
  6. {
  7. public:
  8. PreviewWindow(OBSManager *obs);
  9. virtual ~PreviewWindow();
  10. private:
  11. void on_realize();
  12. void on_show();
  13. void on_hide();
  14. OBSManager *mOBS;
  15. };
  16. #endif