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
19 lines
356 B
#ifndef SCREEN_RECORDER_PREVIEW_WINDOW_HPP
|
|
#define SCREEN_RECORDER_PREVIEW_WINDOW_HPP
|
|
|
|
#include "obs-manager.hpp"
|
|
#include <gtkmm.h>
|
|
|
|
class PreviewWindow : public Gtk::Window
|
|
{
|
|
public:
|
|
PreviewWindow(OBSManager *obs);
|
|
virtual ~PreviewWindow();
|
|
private:
|
|
void on_realize();
|
|
void on_show();
|
|
void on_hide();
|
|
OBSManager *mOBS;
|
|
};
|
|
|
|
#endif
|