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.
 
 

17 lines
316 B

#ifndef SCREEN_RECORDER_PREVIEW_WINDOW_HPP
#define SCREEN_RECORDER_PREVIEW_WINDOW_HPP
#include <gtkmm.h>
#include "obs-manager.hpp"
class PreviewWindow : public Gtk::Window
{
public:
PreviewWindow(OBSManager *obs);
virtual ~PreviewWindow();
private:
void on_realize();
OBSManager *mOBS;
};
#endif