| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154 | 
							- #include <QAction>
 
- #include <QGuiApplication>
 
- #include <QMouseEvent>
 
- #include <QMenu>
 
- #include <QScreen>
 
- #include "obs-app.hpp"
 
- #include "window-basic-main.hpp"
 
- #include "display-helpers.hpp"
 
- #include "qt-wrappers.hpp"
 
- #include "platform.hpp"
 
- static QList<OBSProjector *> multiviewProjectors;
 
- static QList<OBSProjector *> allProjectors;
 
- static bool updatingMultiview = false, drawLabel, drawSafeArea, mouseSwitching,
 
- 	    transitionOnDoubleClick;
 
- static MultiviewLayout multiviewLayout;
 
- static size_t maxSrcs, numSrcs;
 
- OBSProjector::OBSProjector(QWidget *widget, obs_source_t *source_, int monitor,
 
- 			   ProjectorType type_)
 
- 	: OBSQTDisplay(widget, Qt::Window),
 
- 	  source(source_),
 
- 	  removedSignal(obs_source_get_signal_handler(source), "remove",
 
- 			OBSSourceRemoved, this)
 
- {
 
- 	isAlwaysOnTop = config_get_bool(GetGlobalConfig(), "BasicWindow",
 
- 					"ProjectorAlwaysOnTop");
 
- 	if (isAlwaysOnTop)
 
- 		setWindowFlags(Qt::WindowStaysOnTopHint);
 
- 	type = type_;
 
- #ifdef __APPLE__
 
- 	setWindowIcon(
 
- 		QIcon::fromTheme("obs", QIcon(":/res/images/obs_256x256.png")));
 
- #else
 
- 	setWindowIcon(QIcon::fromTheme("obs", QIcon(":/res/images/obs.png")));
 
- #endif
 
- 	if (monitor == -1)
 
- 		resize(480, 270);
 
- 	else
 
- 		SetMonitor(monitor);
 
- 	UpdateProjectorTitle(QT_UTF8(obs_source_get_name(source)));
 
- 	QAction *action = new QAction(this);
 
- 	action->setShortcut(Qt::Key_Escape);
 
- 	addAction(action);
 
- 	connect(action, SIGNAL(triggered()), this, SLOT(EscapeTriggered()));
 
- 	setAttribute(Qt::WA_DeleteOnClose, true);
 
- 	//disable application quit when last window closed
 
- 	setAttribute(Qt::WA_QuitOnClose, false);
 
- 	installEventFilter(CreateShortcutFilter());
 
- 	auto addDrawCallback = [this]() {
 
- 		bool isMultiview = type == ProjectorType::Multiview;
 
- 		obs_display_add_draw_callback(
 
- 			GetDisplay(),
 
- 			isMultiview ? OBSRenderMultiview : OBSRender, this);
 
- 		obs_display_set_background_color(GetDisplay(), 0x000000);
 
- 	};
 
- 	connect(this, &OBSQTDisplay::DisplayCreated, addDrawCallback);
 
- 	connect(App(), &QGuiApplication::screenRemoved, this,
 
- 		&OBSProjector::ScreenRemoved);
 
- 	if (type == ProjectorType::Multiview) {
 
- 		obs_enter_graphics();
 
- 		// All essential action should be placed inside this area
 
- 		gs_render_start(true);
 
- 		gs_vertex2f(actionSafePercentage, actionSafePercentage);
 
- 		gs_vertex2f(actionSafePercentage, 1 - actionSafePercentage);
 
- 		gs_vertex2f(1 - actionSafePercentage, 1 - actionSafePercentage);
 
- 		gs_vertex2f(1 - actionSafePercentage, actionSafePercentage);
 
- 		gs_vertex2f(actionSafePercentage, actionSafePercentage);
 
- 		actionSafeMargin = gs_render_save();
 
- 		// All graphics should be placed inside this area
 
- 		gs_render_start(true);
 
- 		gs_vertex2f(graphicsSafePercentage, graphicsSafePercentage);
 
- 		gs_vertex2f(graphicsSafePercentage, 1 - graphicsSafePercentage);
 
- 		gs_vertex2f(1 - graphicsSafePercentage,
 
- 			    1 - graphicsSafePercentage);
 
- 		gs_vertex2f(1 - graphicsSafePercentage, graphicsSafePercentage);
 
- 		gs_vertex2f(graphicsSafePercentage, graphicsSafePercentage);
 
- 		graphicsSafeMargin = gs_render_save();
 
- 		// 4:3 safe area for widescreen
 
- 		gs_render_start(true);
 
- 		gs_vertex2f(fourByThreeSafePercentage, graphicsSafePercentage);
 
- 		gs_vertex2f(1 - fourByThreeSafePercentage,
 
- 			    graphicsSafePercentage);
 
- 		gs_vertex2f(1 - fourByThreeSafePercentage,
 
- 			    1 - graphicsSafePercentage);
 
- 		gs_vertex2f(fourByThreeSafePercentage,
 
- 			    1 - graphicsSafePercentage);
 
- 		gs_vertex2f(fourByThreeSafePercentage, graphicsSafePercentage);
 
- 		fourByThreeSafeMargin = gs_render_save();
 
- 		gs_render_start(true);
 
- 		gs_vertex2f(0.0f, 0.5f);
 
- 		gs_vertex2f(lineLength, 0.5f);
 
- 		leftLine = gs_render_save();
 
- 		gs_render_start(true);
 
- 		gs_vertex2f(0.5f, 0.0f);
 
- 		gs_vertex2f(0.5f, lineLength);
 
- 		topLine = gs_render_save();
 
- 		gs_render_start(true);
 
- 		gs_vertex2f(1.0f, 0.5f);
 
- 		gs_vertex2f(1 - lineLength, 0.5f);
 
- 		rightLine = gs_render_save();
 
- 		obs_leave_graphics();
 
- 		solid = obs_get_base_effect(OBS_EFFECT_SOLID);
 
- 		color = gs_effect_get_param_by_name(solid, "color");
 
- 		UpdateMultiview();
 
- 		multiviewProjectors.push_back(this);
 
- 	}
 
- 	App()->IncrementSleepInhibition();
 
- 	if (source)
 
- 		obs_source_inc_showing(source);
 
- 	allProjectors.push_back(this);
 
- 	ready = true;
 
- 	show();
 
- 	// We need it here to allow keyboard input in X11 to listen to Escape
 
- 	activateWindow();
 
- }
 
- OBSProjector::~OBSProjector()
 
- {
 
- 	bool isMultiview = type == ProjectorType::Multiview;
 
- 	obs_display_remove_draw_callback(
 
- 		GetDisplay(), isMultiview ? OBSRenderMultiview : OBSRender,
 
- 		this);
 
- 	if (source)
 
- 		obs_source_dec_showing(source);
 
- 	if (isMultiview) {
 
- 		for (OBSWeakSource &weakSrc : multiviewScenes) {
 
- 			OBSSource src = OBSGetStrongRef(weakSrc);
 
- 			if (src)
 
- 				obs_source_dec_showing(src);
 
- 		}
 
- 		obs_enter_graphics();
 
- 		gs_vertexbuffer_destroy(actionSafeMargin);
 
- 		gs_vertexbuffer_destroy(graphicsSafeMargin);
 
- 		gs_vertexbuffer_destroy(fourByThreeSafeMargin);
 
- 		gs_vertexbuffer_destroy(leftLine);
 
- 		gs_vertexbuffer_destroy(topLine);
 
- 		gs_vertexbuffer_destroy(rightLine);
 
- 		obs_leave_graphics();
 
- 	}
 
- 	if (type == ProjectorType::Multiview)
 
- 		multiviewProjectors.removeAll(this);
 
- 	App()->DecrementSleepInhibition();
 
- 	screen = nullptr;
 
- }
 
- void OBSProjector::SetMonitor(int monitor)
 
- {
 
- 	savedMonitor = monitor;
 
- 	screen = QGuiApplication::screens()[monitor];
 
- 	setGeometry(screen->geometry());
 
- 	showFullScreen();
 
- 	SetHideCursor();
 
- }
 
- void OBSProjector::SetHideCursor()
 
- {
 
- 	if (savedMonitor == -1)
 
- 		return;
 
- 	bool hideCursor = config_get_bool(GetGlobalConfig(), "BasicWindow",
 
- 					  "HideProjectorCursor");
 
- 	if (hideCursor && type != ProjectorType::Multiview)
 
- 		setCursor(Qt::BlankCursor);
 
- 	else
 
- 		setCursor(Qt::ArrowCursor);
 
- }
 
- static OBSSource CreateLabel(const char *name, size_t h)
 
- {
 
- 	obs_data_t *settings = obs_data_create();
 
- 	obs_data_t *font = obs_data_create();
 
- 	std::string text;
 
- 	text += " ";
 
- 	text += name;
 
- 	text += " ";
 
- #if defined(_WIN32)
 
- 	obs_data_set_string(font, "face", "Arial");
 
- #elif defined(__APPLE__)
 
- 	obs_data_set_string(font, "face", "Helvetica");
 
- #else
 
- 	obs_data_set_string(font, "face", "Monospace");
 
- #endif
 
- 	obs_data_set_int(font, "flags", 1); // Bold text
 
- 	obs_data_set_int(font, "size", int(h / 9.81));
 
- 	obs_data_set_obj(settings, "font", font);
 
- 	obs_data_set_string(settings, "text", text.c_str());
 
- 	obs_data_set_bool(settings, "outline", false);
 
- #ifdef _WIN32
 
- 	const char *text_source_id = "text_gdiplus";
 
- #else
 
- 	const char *text_source_id = "text_ft2_source";
 
- #endif
 
- 	OBSSource txtSource =
 
- 		obs_source_create_private(text_source_id, name, settings);
 
- 	obs_source_release(txtSource);
 
- 	obs_data_release(font);
 
- 	obs_data_release(settings);
 
- 	return txtSource;
 
- }
 
- static inline uint32_t labelOffset(obs_source_t *label, uint32_t cx)
 
- {
 
- 	uint32_t w = obs_source_get_width(label);
 
- 	int n; // Number of scenes per row
 
- 	switch (multiviewLayout) {
 
- 	case MultiviewLayout::HORIZONTAL_TOP_24_SCENES:
 
- 		n = 6;
 
- 		break;
 
- 	default:
 
- 		n = 4;
 
- 		break;
 
- 	}
 
- 	w = uint32_t(w * ((1.0f) / n));
 
- 	return (cx / 2) - w;
 
- }
 
- static inline void startRegion(int vX, int vY, int vCX, int vCY, float oL,
 
- 			       float oR, float oT, float oB)
 
- {
 
- 	gs_projection_push();
 
- 	gs_viewport_push();
 
- 	gs_set_viewport(vX, vY, vCX, vCY);
 
- 	gs_ortho(oL, oR, oT, oB, -100.0f, 100.0f);
 
- }
 
- static inline void endRegion()
 
- {
 
- 	gs_viewport_pop();
 
- 	gs_projection_pop();
 
- }
 
- void OBSProjector::OBSRenderMultiview(void *data, uint32_t cx, uint32_t cy)
 
- {
 
- 	OBSProjector *window = (OBSProjector *)data;
 
- 	if (updatingMultiview || !window->ready)
 
- 		return;
 
- 	OBSBasic *main = (OBSBasic *)obs_frontend_get_main_window();
 
- 	uint32_t targetCX, targetCY;
 
- 	int x, y;
 
- 	float scale;
 
- 	targetCX = (uint32_t)window->fw;
 
- 	targetCY = (uint32_t)window->fh;
 
- 	GetScaleAndCenterPos(targetCX, targetCY, cx, cy, x, y, scale);
 
- 	OBSSource previewSrc = main->GetCurrentSceneSource();
 
- 	OBSSource programSrc = main->GetProgramSource();
 
- 	bool studioMode = main->IsPreviewProgramMode();
 
- 	auto renderVB = [&](gs_vertbuffer_t *vb, int cx, int cy,
 
- 			    uint32_t colorVal) {
 
- 		if (!vb)
 
- 			return;
 
- 		matrix4 transform;
 
- 		matrix4_identity(&transform);
 
- 		transform.x.x = cx;
 
- 		transform.y.y = cy;
 
- 		gs_load_vertexbuffer(vb);
 
- 		gs_matrix_push();
 
- 		gs_matrix_mul(&transform);
 
- 		gs_effect_set_color(window->color, colorVal);
 
- 		while (gs_effect_loop(window->solid, "Solid"))
 
- 			gs_draw(GS_LINESTRIP, 0, 0);
 
- 		gs_matrix_pop();
 
- 	};
 
- 	auto drawBox = [&](float cx, float cy, uint32_t colorVal) {
 
- 		gs_effect_set_color(window->color, colorVal);
 
- 		while (gs_effect_loop(window->solid, "Solid"))
 
- 			gs_draw_sprite(nullptr, 0, (uint32_t)cx, (uint32_t)cy);
 
- 	};
 
- 	auto setRegion = [&](float bx, float by, float cx, float cy) {
 
- 		float vX = int(x + bx * scale);
 
- 		float vY = int(y + by * scale);
 
- 		float vCX = int(cx * scale);
 
- 		float vCY = int(cy * scale);
 
- 		float oL = bx;
 
- 		float oT = by;
 
- 		float oR = (bx + cx);
 
- 		float oB = (by + cy);
 
- 		startRegion(vX, vY, vCX, vCY, oL, oR, oT, oB);
 
- 	};
 
- 	auto calcBaseSource = [&](size_t i) {
 
- 		switch (multiviewLayout) {
 
- 		case MultiviewLayout::HORIZONTAL_TOP_24_SCENES:
 
- 			window->sourceX = (i % 6) * window->scenesCX;
 
- 			window->sourceY =
 
- 				window->pvwprgCY + (i / 6) * window->scenesCY;
 
- 			break;
 
- 		case MultiviewLayout::VERTICAL_LEFT_8_SCENES:
 
- 			window->sourceX = window->pvwprgCX;
 
- 			window->sourceY = (i / 2) * window->scenesCY;
 
- 			if (i % 2 != 0)
 
- 				window->sourceX += window->scenesCX;
 
- 			break;
 
- 		case MultiviewLayout::VERTICAL_RIGHT_8_SCENES:
 
- 			window->sourceX = 0;
 
- 			window->sourceY = (i / 2) * window->scenesCY;
 
- 			if (i % 2 != 0)
 
- 				window->sourceX = window->scenesCX;
 
- 			break;
 
- 		case MultiviewLayout::HORIZONTAL_BOTTOM_8_SCENES:
 
- 			if (i < 4) {
 
- 				window->sourceX = (float(i) * window->scenesCX);
 
- 				window->sourceY = 0;
 
- 			} else {
 
- 				window->sourceX =
 
- 					(float(i - 4) * window->scenesCX);
 
- 				window->sourceY = window->scenesCY;
 
- 			}
 
- 			break;
 
- 		default: // MultiviewLayout::HORIZONTAL_TOP_8_SCENES:
 
- 			if (i < 4) {
 
- 				window->sourceX = (float(i) * window->scenesCX);
 
- 				window->sourceY = window->pvwprgCY;
 
- 			} else {
 
- 				window->sourceX =
 
- 					(float(i - 4) * window->scenesCX);
 
- 				window->sourceY =
 
- 					window->pvwprgCY + window->scenesCY;
 
- 			}
 
- 		}
 
- 		window->siX = window->sourceX + window->thickness;
 
- 		window->siY = window->sourceY + window->thickness;
 
- 	};
 
- 	auto calcPreviewProgram = [&](bool program) {
 
- 		switch (multiviewLayout) {
 
- 		case MultiviewLayout::HORIZONTAL_TOP_24_SCENES:
 
- 			window->sourceX =
 
- 				window->thickness + window->pvwprgCX / 2;
 
- 			window->sourceY = window->thickness;
 
- 			window->labelX = window->offset + window->pvwprgCX / 2;
 
- 			window->labelY = window->pvwprgCY * 0.85f;
 
- 			if (program) {
 
- 				window->sourceX += window->pvwprgCX;
 
- 				window->labelX += window->pvwprgCX;
 
- 			}
 
- 			break;
 
- 		case MultiviewLayout::VERTICAL_LEFT_8_SCENES:
 
- 			window->sourceX = window->thickness;
 
- 			window->sourceY = window->pvwprgCY + window->thickness;
 
- 			window->labelX = window->offset;
 
- 			window->labelY = window->pvwprgCY * 1.85f;
 
- 			if (program) {
 
- 				window->sourceY = window->thickness;
 
- 				window->labelY = window->pvwprgCY * 0.85f;
 
- 			}
 
- 			break;
 
- 		case MultiviewLayout::VERTICAL_RIGHT_8_SCENES:
 
- 			window->sourceX = window->pvwprgCX + window->thickness;
 
- 			window->sourceY = window->pvwprgCY + window->thickness;
 
- 			window->labelX = window->pvwprgCX + window->offset;
 
- 			window->labelY = window->pvwprgCY * 1.85f;
 
- 			if (program) {
 
- 				window->sourceY = window->thickness;
 
- 				window->labelY = window->pvwprgCY * 0.85f;
 
- 			}
 
- 			break;
 
- 		case MultiviewLayout::HORIZONTAL_BOTTOM_8_SCENES:
 
- 			window->sourceX = window->thickness;
 
- 			window->sourceY = window->pvwprgCY + window->thickness;
 
- 			window->labelX = window->offset;
 
- 			window->labelY = window->pvwprgCY * 1.85f;
 
- 			if (program) {
 
- 				window->sourceX += window->pvwprgCX;
 
- 				window->labelX += window->pvwprgCX;
 
- 			}
 
- 			break;
 
- 		default: // MultiviewLayout::HORIZONTAL_TOP_8_SCENES:
 
- 			window->sourceX = window->thickness;
 
- 			window->sourceY = window->thickness;
 
- 			window->labelX = window->offset;
 
- 			window->labelY = window->pvwprgCY * 0.85f;
 
- 			if (program) {
 
- 				window->sourceX += window->pvwprgCX;
 
- 				window->labelX += window->pvwprgCX;
 
- 			}
 
- 		}
 
- 	};
 
- 	auto paintAreaWithColor = [&](float tx, float ty, float cx, float cy,
 
- 				      uint32_t color) {
 
- 		gs_matrix_push();
 
- 		gs_matrix_translate3f(tx, ty, 0.0f);
 
- 		drawBox(cx, cy, color);
 
- 		gs_matrix_pop();
 
- 	};
 
- 	// Define the whole usable region for the multiview
 
- 	startRegion(x, y, targetCX * scale, targetCY * scale, 0.0f, window->fw,
 
- 		    0.0f, window->fh);
 
- 	// Change the background color to highlight all sources
 
- 	drawBox(window->fw, window->fh, outerColor);
 
- 	/* ----------------------------- */
 
- 	/* draw sources                  */
 
- 	for (size_t i = 0; i < maxSrcs; i++) {
 
- 		// Handle all the offsets
 
- 		calcBaseSource(i);
 
- 		if (i >= numSrcs) {
 
- 			// Just paint the background and continue
 
- 			paintAreaWithColor(window->sourceX, window->sourceY,
 
- 					   window->scenesCX, window->scenesCY,
 
- 					   outerColor);
 
- 			paintAreaWithColor(window->siX, window->siY,
 
- 					   window->siCX, window->siCY,
 
- 					   backgroundColor);
 
- 			continue;
 
- 		}
 
- 		OBSSource src = OBSGetStrongRef(window->multiviewScenes[i]);
 
- 		// We have a source. Now chose the proper highlight color
 
- 		uint32_t colorVal = outerColor;
 
- 		if (src == programSrc)
 
- 			colorVal = programColor;
 
- 		else if (src == previewSrc)
 
- 			colorVal = studioMode ? previewColor : programColor;
 
- 		// Paint the background
 
- 		paintAreaWithColor(window->sourceX, window->sourceY,
 
- 				   window->scenesCX, window->scenesCY,
 
- 				   colorVal);
 
- 		paintAreaWithColor(window->siX, window->siY, window->siCX,
 
- 				   window->siCY, backgroundColor);
 
- 		/* ----------- */
 
- 		// Render the source
 
- 		gs_matrix_push();
 
- 		gs_matrix_translate3f(window->siX, window->siY, 0.0f);
 
- 		gs_matrix_scale3f(window->siScaleX, window->siScaleY, 1.0f);
 
- 		setRegion(window->siX, window->siY, window->siCX, window->siCY);
 
- 		obs_source_video_render(src);
 
- 		endRegion();
 
- 		gs_matrix_pop();
 
- 		/* ----------- */
 
- 		// Render the label
 
- 		if (!drawLabel)
 
- 			continue;
 
- 		obs_source *label = window->multiviewLabels[i + 2];
 
- 		if (!label)
 
- 			continue;
 
- 		window->offset = labelOffset(label, window->scenesCX);
 
- 		gs_matrix_push();
 
- 		gs_matrix_translate3f(
 
- 			window->sourceX + window->offset,
 
- 			(window->scenesCY * 0.85f) + window->sourceY, 0.0f);
 
- 		gs_matrix_scale3f(window->ppiScaleX, window->ppiScaleY, 1.0f);
 
- 		drawBox(obs_source_get_width(label),
 
- 			obs_source_get_height(label) +
 
- 				int(window->sourceY * 0.015f),
 
- 			labelColor);
 
- 		obs_source_video_render(label);
 
- 		gs_matrix_pop();
 
- 	}
 
- 	/* ----------------------------- */
 
- 	/* draw preview                  */
 
- 	obs_source_t *previewLabel = window->multiviewLabels[0];
 
- 	window->offset = labelOffset(previewLabel, window->pvwprgCX);
 
- 	calcPreviewProgram(false);
 
- 	// Paint the background
 
- 	paintAreaWithColor(window->sourceX, window->sourceY, window->ppiCX,
 
- 			   window->ppiCY, backgroundColor);
 
- 	// Scale and Draw the preview
 
- 	gs_matrix_push();
 
- 	gs_matrix_translate3f(window->sourceX, window->sourceY, 0.0f);
 
- 	gs_matrix_scale3f(window->ppiScaleX, window->ppiScaleY, 1.0f);
 
- 	setRegion(window->sourceX, window->sourceY, window->ppiCX,
 
- 		  window->ppiCY);
 
- 	if (studioMode)
 
- 		obs_source_video_render(previewSrc);
 
- 	else
 
- 		obs_render_main_texture();
 
- 	if (drawSafeArea) {
 
- 		renderVB(window->actionSafeMargin, targetCX, targetCY,
 
- 			 outerColor);
 
- 		renderVB(window->graphicsSafeMargin, targetCX, targetCY,
 
- 			 outerColor);
 
- 		renderVB(window->fourByThreeSafeMargin, targetCX, targetCY,
 
- 			 outerColor);
 
- 		renderVB(window->leftLine, targetCX, targetCY, outerColor);
 
- 		renderVB(window->topLine, targetCX, targetCY, outerColor);
 
- 		renderVB(window->rightLine, targetCX, targetCY, outerColor);
 
- 	}
 
- 	endRegion();
 
- 	gs_matrix_pop();
 
- 	/* ----------- */
 
- 	// Draw the Label
 
- 	if (drawLabel) {
 
- 		gs_matrix_push();
 
- 		gs_matrix_translate3f(window->labelX, window->labelY, 0.0f);
 
- 		gs_matrix_scale3f(window->ppiScaleX, window->ppiScaleY, 1.0f);
 
- 		drawBox(obs_source_get_width(previewLabel),
 
- 			obs_source_get_height(previewLabel) +
 
- 				int(window->pvwprgCX * 0.015f),
 
- 			labelColor);
 
- 		obs_source_video_render(previewLabel);
 
- 		gs_matrix_pop();
 
- 	}
 
- 	/* ----------------------------- */
 
- 	/* draw program                  */
 
- 	obs_source_t *programLabel = window->multiviewLabels[1];
 
- 	window->offset = labelOffset(programLabel, window->pvwprgCX);
 
- 	calcPreviewProgram(true);
 
- 	paintAreaWithColor(window->sourceX, window->sourceY, window->ppiCX,
 
- 			   window->ppiCY, backgroundColor);
 
- 	// Scale and Draw the program
 
- 	gs_matrix_push();
 
- 	gs_matrix_translate3f(window->sourceX, window->sourceY, 0.0f);
 
- 	gs_matrix_scale3f(window->ppiScaleX, window->ppiScaleY, 1.0f);
 
- 	setRegion(window->sourceX, window->sourceY, window->ppiCX,
 
- 		  window->ppiCY);
 
- 	obs_render_main_texture();
 
- 	endRegion();
 
- 	gs_matrix_pop();
 
- 	/* ----------- */
 
- 	// Draw the Label
 
- 	if (drawLabel) {
 
- 		gs_matrix_push();
 
- 		gs_matrix_translate3f(window->labelX, window->labelY, 0.0f);
 
- 		gs_matrix_scale3f(window->ppiScaleX, window->ppiScaleY, 1.0f);
 
- 		drawBox(obs_source_get_width(programLabel),
 
- 			obs_source_get_height(programLabel) +
 
- 				int(window->pvwprgCX * 0.015f),
 
- 			labelColor);
 
- 		obs_source_video_render(programLabel);
 
- 		gs_matrix_pop();
 
- 	}
 
- 	// Region for future usage with additional info.
 
- 	if (multiviewLayout == MultiviewLayout::HORIZONTAL_TOP_24_SCENES) {
 
- 		// Just paint the background for now
 
- 		paintAreaWithColor(window->thickness, window->thickness,
 
- 				   window->siCX,
 
- 				   window->siCY * 2 + window->thicknessx2,
 
- 				   backgroundColor);
 
- 		paintAreaWithColor(
 
- 			window->thickness +
 
- 				2.5 * (window->thicknessx2 + window->ppiCX),
 
- 			window->thickness, window->siCX,
 
- 			window->siCY * 2 + window->thicknessx2,
 
- 			backgroundColor);
 
- 	}
 
- 	endRegion();
 
- }
 
- void OBSProjector::OBSRender(void *data, uint32_t cx, uint32_t cy)
 
- {
 
- 	OBSProjector *window = reinterpret_cast<OBSProjector *>(data);
 
- 	if (!window->ready)
 
- 		return;
 
- 	OBSBasic *main = reinterpret_cast<OBSBasic *>(App()->GetMainWindow());
 
- 	OBSSource source = window->source;
 
- 	uint32_t targetCX;
 
- 	uint32_t targetCY;
 
- 	int x, y;
 
- 	int newCX, newCY;
 
- 	float scale;
 
- 	if (source) {
 
- 		targetCX = std::max(obs_source_get_width(source), 1u);
 
- 		targetCY = std::max(obs_source_get_height(source), 1u);
 
- 	} else {
 
- 		struct obs_video_info ovi;
 
- 		obs_get_video_info(&ovi);
 
- 		targetCX = ovi.base_width;
 
- 		targetCY = ovi.base_height;
 
- 	}
 
- 	GetScaleAndCenterPos(targetCX, targetCY, cx, cy, x, y, scale);
 
- 	newCX = int(scale * float(targetCX));
 
- 	newCY = int(scale * float(targetCY));
 
- 	startRegion(x, y, newCX, newCY, 0.0f, float(targetCX), 0.0f,
 
- 		    float(targetCY));
 
- 	if (window->type == ProjectorType::Preview &&
 
- 	    main->IsPreviewProgramMode()) {
 
- 		OBSSource curSource = main->GetCurrentSceneSource();
 
- 		if (source != curSource) {
 
- 			obs_source_dec_showing(source);
 
- 			obs_source_inc_showing(curSource);
 
- 			source = curSource;
 
- 			window->source = source;
 
- 		}
 
- 	} else if (window->type == ProjectorType::Preview &&
 
- 		   !main->IsPreviewProgramMode()) {
 
- 		window->source = nullptr;
 
- 	}
 
- 	if (source)
 
- 		obs_source_video_render(source);
 
- 	else
 
- 		obs_render_main_texture();
 
- 	endRegion();
 
- }
 
- void OBSProjector::OBSSourceRemoved(void *data, calldata_t *params)
 
- {
 
- 	OBSProjector *window = reinterpret_cast<OBSProjector *>(data);
 
- 	window->deleteLater();
 
- 	UNUSED_PARAMETER(params);
 
- }
 
- static int getSourceByPosition(int x, int y, float ratio)
 
- {
 
- 	int pos = -1;
 
- 	QWidget *rec = QApplication::activeWindow();
 
- 	if (!rec)
 
- 		return pos;
 
- 	int cx = rec->width();
 
- 	int cy = rec->height();
 
- 	int minX = 0;
 
- 	int minY = 0;
 
- 	int maxX = cx;
 
- 	int maxY = cy;
 
- 	switch (multiviewLayout) {
 
- 	case MultiviewLayout::HORIZONTAL_TOP_24_SCENES:
 
- 		if (float(cx) / float(cy) > ratio) {
 
- 			int validX = cy * ratio;
 
- 			minX = (cx / 2) - (validX / 2);
 
- 			maxX = (cx / 2) + (validX / 2);
 
- 			minY = cy / 3;
 
- 		} else {
 
- 			int validY = cx / ratio;
 
- 			maxY = (cy / 2) + (validY / 2);
 
- 			minY = (cy / 2) - (validY / 6);
 
- 		}
 
- 		if (x < minX || x > maxX || y < minY || y > maxY)
 
- 			break;
 
- 		pos = (x - minX) / ((maxX - minX) / 6);
 
- 		pos += ((y - minY) / ((maxY - minY) / 4)) * 6;
 
- 		break;
 
- 	case MultiviewLayout::VERTICAL_LEFT_8_SCENES:
 
- 		if (float(cx) / float(cy) > ratio) {
 
- 			int validX = cy * ratio;
 
- 			maxX = (cx / 2) + (validX / 2);
 
- 		} else {
 
- 			int validY = cx / ratio;
 
- 			minY = (cy / 2) - (validY / 2);
 
- 			maxY = (cy / 2) + (validY / 2);
 
- 		}
 
- 		minX = cx / 2;
 
- 		if (x < minX || x > maxX || y < minY || y > maxY)
 
- 			break;
 
- 		pos = 2 * ((y - minY) / ((maxY - minY) / 4));
 
- 		if (x > minX + ((maxX - minX) / 2))
 
- 			pos++;
 
- 		break;
 
- 	case MultiviewLayout::VERTICAL_RIGHT_8_SCENES:
 
- 		if (float(cx) / float(cy) > ratio) {
 
- 			int validX = cy * ratio;
 
- 			minX = (cx / 2) - (validX / 2);
 
- 		} else {
 
- 			int validY = cx / ratio;
 
- 			minY = (cy / 2) - (validY / 2);
 
- 			maxY = (cy / 2) + (validY / 2);
 
- 		}
 
- 		maxX = (cx / 2);
 
- 		if (x < minX || x > maxX || y < minY || y > maxY)
 
- 			break;
 
- 		pos = 2 * ((y - minY) / ((maxY - minY) / 4));
 
- 		if (x > minX + ((maxX - minX) / 2))
 
- 			pos++;
 
- 		break;
 
- 	case MultiviewLayout::HORIZONTAL_BOTTOM_8_SCENES:
 
- 		if (float(cx) / float(cy) > ratio) {
 
- 			int validX = cy * ratio;
 
- 			minX = (cx / 2) - (validX / 2);
 
- 			maxX = (cx / 2) + (validX / 2);
 
- 		} else {
 
- 			int validY = cx / ratio;
 
- 			minY = (cy / 2) - (validY / 2);
 
- 		}
 
- 		maxY = (cy / 2);
 
- 		if (x < minX || x > maxX || y < minY || y > maxY)
 
- 			break;
 
- 		pos = (x - minX) / ((maxX - minX) / 4);
 
- 		if (y > minY + ((maxY - minY) / 2))
 
- 			pos += 4;
 
- 		break;
 
- 	default: // MultiviewLayout::HORIZONTAL_TOP_8_SCENES
 
- 		if (float(cx) / float(cy) > ratio) {
 
- 			int validX = cy * ratio;
 
- 			minX = (cx / 2) - (validX / 2);
 
- 			maxX = (cx / 2) + (validX / 2);
 
- 		} else {
 
- 			int validY = cx / ratio;
 
- 			maxY = (cy / 2) + (validY / 2);
 
- 		}
 
- 		minY = (cy / 2);
 
- 		if (x < minX || x > maxX || y < minY || y > maxY)
 
- 			break;
 
- 		pos = (x - minX) / ((maxX - minX) / 4);
 
- 		if (y > minY + ((maxY - minY) / 2))
 
- 			pos += 4;
 
- 	}
 
- 	return pos;
 
- }
 
- void OBSProjector::mouseDoubleClickEvent(QMouseEvent *event)
 
- {
 
- 	OBSQTDisplay::mouseDoubleClickEvent(event);
 
- 	if (!mouseSwitching)
 
- 		return;
 
- 	if (!transitionOnDoubleClick)
 
- 		return;
 
- 	OBSBasic *main = (OBSBasic *)obs_frontend_get_main_window();
 
- 	if (!main->IsPreviewProgramMode())
 
- 		return;
 
- 	if (event->button() == Qt::LeftButton) {
 
- 		int pos = getSourceByPosition(event->x(), event->y(), ratio);
 
- 		if (pos < 0 || pos >= (int)numSrcs)
 
- 			return;
 
- 		OBSSource src = OBSGetStrongRef(multiviewScenes[pos]);
 
- 		if (!src)
 
- 			return;
 
- 		if (main->GetProgramSource() != src)
 
- 			main->TransitionToScene(src);
 
- 	}
 
- }
 
- void OBSProjector::mousePressEvent(QMouseEvent *event)
 
- {
 
- 	OBSQTDisplay::mousePressEvent(event);
 
- 	if (event->button() == Qt::RightButton) {
 
- 		OBSBasic *main =
 
- 			reinterpret_cast<OBSBasic *>(App()->GetMainWindow());
 
- 		QMenu popup(this);
 
- 		QMenu *projectorMenu = new QMenu(QTStr("Fullscreen"));
 
- 		main->AddProjectorMenuMonitors(projectorMenu, this,
 
- 					       SLOT(OpenFullScreenProjector()));
 
- 		popup.addMenu(projectorMenu);
 
- 		if (GetMonitor() > -1) {
 
- 			popup.addAction(QTStr("Windowed"), this,
 
- 					SLOT(OpenWindowedProjector()));
 
- 		} else if (!this->isMaximized()) {
 
- 			popup.addAction(QTStr("ResizeProjectorWindowToContent"),
 
- 					this, SLOT(ResizeToContent()));
 
- 		}
 
- 		QAction *alwaysOnTopButton =
 
- 			new QAction(QTStr("Basic.MainMenu.AlwaysOnTop"), this);
 
- 		alwaysOnTopButton->setCheckable(true);
 
- 		alwaysOnTopButton->setChecked(isAlwaysOnTop);
 
- 		connect(alwaysOnTopButton, &QAction::toggled, this,
 
- 			&OBSProjector::AlwaysOnTopToggled);
 
- 		popup.addAction(alwaysOnTopButton);
 
- 		popup.addAction(QTStr("Close"), this, SLOT(EscapeTriggered()));
 
- 		popup.exec(QCursor::pos());
 
- 	}
 
- 	if (!mouseSwitching)
 
- 		return;
 
- 	if (event->button() == Qt::LeftButton) {
 
- 		int pos = getSourceByPosition(event->x(), event->y(), ratio);
 
- 		if (pos < 0 || pos >= (int)numSrcs)
 
- 			return;
 
- 		OBSSource src = OBSGetStrongRef(multiviewScenes[pos]);
 
- 		if (!src)
 
- 			return;
 
- 		OBSBasic *main = (OBSBasic *)obs_frontend_get_main_window();
 
- 		if (main->GetCurrentSceneSource() != src)
 
- 			main->SetCurrentScene(src, false);
 
- 	}
 
- }
 
- void OBSProjector::EscapeTriggered()
 
- {
 
- 	OBSBasic *main = reinterpret_cast<OBSBasic *>(App()->GetMainWindow());
 
- 	main->DeleteProjector(this);
 
- 	allProjectors.removeAll(this);
 
- }
 
- void OBSProjector::UpdateMultiview()
 
- {
 
- 	multiviewScenes.clear();
 
- 	multiviewLabels.clear();
 
- 	struct obs_video_info ovi;
 
- 	obs_get_video_info(&ovi);
 
- 	uint32_t w = ovi.base_width;
 
- 	uint32_t h = ovi.base_height;
 
- 	fw = float(w);
 
- 	fh = float(h);
 
- 	ratio = fw / fh;
 
- 	struct obs_frontend_source_list scenes = {};
 
- 	obs_frontend_get_scenes(&scenes);
 
- 	multiviewLabels.emplace_back(
 
- 		CreateLabel(Str("StudioMode.Preview"), h / 2));
 
- 	multiviewLabels.emplace_back(
 
- 		CreateLabel(Str("StudioMode.Program"), h / 2));
 
- 	multiviewLayout = static_cast<MultiviewLayout>(config_get_int(
 
- 		GetGlobalConfig(), "BasicWindow", "MultiviewLayout"));
 
- 	drawLabel = config_get_bool(GetGlobalConfig(), "BasicWindow",
 
- 				    "MultiviewDrawNames");
 
- 	drawSafeArea = config_get_bool(GetGlobalConfig(), "BasicWindow",
 
- 				       "MultiviewDrawAreas");
 
- 	mouseSwitching = config_get_bool(GetGlobalConfig(), "BasicWindow",
 
- 					 "MultiviewMouseSwitch");
 
- 	transitionOnDoubleClick = config_get_bool(
 
- 		GetGlobalConfig(), "BasicWindow", "TransitionOnDoubleClick");
 
- 	switch (multiviewLayout) {
 
- 	case MultiviewLayout::HORIZONTAL_TOP_24_SCENES:
 
- 		pvwprgCX = fw / 3;
 
- 		pvwprgCY = fh / 3;
 
- 		maxSrcs = 24;
 
- 		break;
 
- 	default:
 
- 		pvwprgCX = fw / 2;
 
- 		pvwprgCY = fh / 2;
 
- 		maxSrcs = 8;
 
- 	}
 
- 	ppiCX = pvwprgCX - thicknessx2;
 
- 	ppiCY = pvwprgCY - thicknessx2;
 
- 	ppiScaleX = (pvwprgCX - thicknessx2) / fw;
 
- 	ppiScaleY = (pvwprgCY - thicknessx2) / fh;
 
- 	scenesCX = pvwprgCX / 2;
 
- 	scenesCY = pvwprgCY / 2;
 
- 	siCX = scenesCX - thicknessx2;
 
- 	siCY = scenesCY - thicknessx2;
 
- 	siScaleX = (scenesCX - thicknessx2) / fw;
 
- 	siScaleY = (scenesCY - thicknessx2) / fh;
 
- 	numSrcs = 0;
 
- 	size_t i = 0;
 
- 	while (i < scenes.sources.num && numSrcs < maxSrcs) {
 
- 		obs_source_t *src = scenes.sources.array[i++];
 
- 		OBSData data = obs_source_get_private_settings(src);
 
- 		obs_data_release(data);
 
- 		obs_data_set_default_bool(data, "show_in_multiview", true);
 
- 		if (!obs_data_get_bool(data, "show_in_multiview"))
 
- 			continue;
 
- 		// We have a displayable source.
 
- 		numSrcs++;
 
- 		multiviewScenes.emplace_back(OBSGetWeakRef(src));
 
- 		obs_source_inc_showing(src);
 
- 		std::string name = std::to_string(numSrcs) + " - " +
 
- 				   obs_source_get_name(src);
 
- 		multiviewLabels.emplace_back(CreateLabel(name.c_str(), h / 3));
 
- 	}
 
- 	obs_frontend_source_list_free(&scenes);
 
- }
 
- void OBSProjector::UpdateProjectorTitle(QString name)
 
- {
 
- 	bool window = (GetMonitor() == -1);
 
- 	QString title = nullptr;
 
- 	switch (type) {
 
- 	case ProjectorType::Scene:
 
- 		if (!window)
 
- 			title = QTStr("SceneProjector") + " - " + name;
 
- 		else
 
- 			title = QTStr("SceneWindow") + " - " + name;
 
- 		break;
 
- 	case ProjectorType::Source:
 
- 		if (!window)
 
- 			title = QTStr("SourceProjector") + " - " + name;
 
- 		else
 
- 			title = QTStr("SourceWindow") + " - " + name;
 
- 		break;
 
- 	case ProjectorType::Preview:
 
- 		if (!window)
 
- 			title = QTStr("PreviewProjector");
 
- 		else
 
- 			title = QTStr("PreviewWindow");
 
- 		break;
 
- 	case ProjectorType::StudioProgram:
 
- 		if (!window)
 
- 			title = QTStr("StudioProgramProjector");
 
- 		else
 
- 			title = QTStr("StudioProgramWindow");
 
- 		break;
 
- 	case ProjectorType::Multiview:
 
- 		if (!window)
 
- 			title = QTStr("MultiviewProjector");
 
- 		else
 
- 			title = QTStr("MultiviewWindowed");
 
- 		break;
 
- 	default:
 
- 		title = name;
 
- 		break;
 
- 	}
 
- 	setWindowTitle(title);
 
- }
 
- OBSSource OBSProjector::GetSource()
 
- {
 
- 	return source;
 
- }
 
- ProjectorType OBSProjector::GetProjectorType()
 
- {
 
- 	return type;
 
- }
 
- int OBSProjector::GetMonitor()
 
- {
 
- 	return savedMonitor;
 
- }
 
- void OBSProjector::UpdateMultiviewProjectors()
 
- {
 
- 	obs_enter_graphics();
 
- 	updatingMultiview = true;
 
- 	obs_leave_graphics();
 
- 	for (auto &projector : multiviewProjectors)
 
- 		projector->UpdateMultiview();
 
- 	obs_enter_graphics();
 
- 	updatingMultiview = false;
 
- 	obs_leave_graphics();
 
- }
 
- void OBSProjector::RenameProjector(QString oldName, QString newName)
 
- {
 
- 	if (oldName == newName)
 
- 		return;
 
- 	UpdateProjectorTitle(newName);
 
- }
 
- void OBSProjector::OpenFullScreenProjector()
 
- {
 
- 	if (!isFullScreen())
 
- 		prevGeometry = geometry();
 
- 	int monitor = sender()->property("monitor").toInt();
 
- 	SetMonitor(monitor);
 
- 	UpdateProjectorTitle(QT_UTF8(obs_source_get_name(source)));
 
- }
 
- void OBSProjector::OpenWindowedProjector()
 
- {
 
- 	showFullScreen();
 
- 	showNormal();
 
- 	setCursor(Qt::ArrowCursor);
 
- 	if (!prevGeometry.isNull())
 
- 		setGeometry(prevGeometry);
 
- 	else
 
- 		resize(480, 270);
 
- 	savedMonitor = -1;
 
- 	UpdateProjectorTitle(QT_UTF8(obs_source_get_name(source)));
 
- 	screen = nullptr;
 
- }
 
- void OBSProjector::ResizeToContent()
 
- {
 
- 	OBSSource source = GetSource();
 
- 	uint32_t targetCX;
 
- 	uint32_t targetCY;
 
- 	int x, y, newX, newY;
 
- 	float scale;
 
- 	if (source) {
 
- 		targetCX = std::max(obs_source_get_width(source), 1u);
 
- 		targetCY = std::max(obs_source_get_height(source), 1u);
 
- 	} else {
 
- 		struct obs_video_info ovi;
 
- 		obs_get_video_info(&ovi);
 
- 		targetCX = ovi.base_width;
 
- 		targetCY = ovi.base_height;
 
- 	}
 
- 	QSize size = this->size();
 
- 	GetScaleAndCenterPos(targetCX, targetCY, size.width(), size.height(), x,
 
- 			     y, scale);
 
- 	newX = size.width() - (x * 2);
 
- 	newY = size.height() - (y * 2);
 
- 	resize(newX, newY);
 
- }
 
- void OBSProjector::AlwaysOnTopToggled(bool isAlwaysOnTop)
 
- {
 
- 	SetIsAlwaysOnTop(isAlwaysOnTop, true);
 
- }
 
- void OBSProjector::closeEvent(QCloseEvent *event)
 
- {
 
- 	EscapeTriggered();
 
- 	event->accept();
 
- }
 
- bool OBSProjector::IsAlwaysOnTop() const
 
- {
 
- 	return isAlwaysOnTop;
 
- }
 
- bool OBSProjector::IsAlwaysOnTopOverridden() const
 
- {
 
- 	return isAlwaysOnTopOverridden;
 
- }
 
- void OBSProjector::SetIsAlwaysOnTop(bool isAlwaysOnTop, bool isOverridden)
 
- {
 
- 	this->isAlwaysOnTop = isAlwaysOnTop;
 
- 	this->isAlwaysOnTopOverridden = isOverridden;
 
- 	SetAlwaysOnTop(this, isAlwaysOnTop);
 
- }
 
- void OBSProjector::ScreenRemoved(QScreen *screen_)
 
- {
 
- 	if (GetMonitor() < 0 || !screen)
 
- 		return;
 
- 	if (screen == screen_)
 
- 		EscapeTriggered();
 
- }
 
 
  |