forked from dolphin-emu/dolphin
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			479 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			479 B
		
	
	
	
		
			C++
		
	
	
	
	
	
// Copyright 2017 Dolphin Emulator Project
 | 
						|
// Licensed under GPLv2+
 | 
						|
// Refer to the license.txt file included.
 | 
						|
 | 
						|
#include "DolphinQt/Config/Graphics/GraphicsWidget.h"
 | 
						|
 | 
						|
#include <QEvent>
 | 
						|
#include <QLabel>
 | 
						|
 | 
						|
#include "DolphinQt/Config/Graphics/GraphicsWindow.h"
 | 
						|
 | 
						|
GraphicsWidget::GraphicsWidget(GraphicsWindow* parent)
 | 
						|
{
 | 
						|
  parent->RegisterWidget(this);
 | 
						|
}
 | 
						|
 | 
						|
void GraphicsWidget::AddDescription(QWidget* widget, const char* description)
 | 
						|
{
 | 
						|
  emit DescriptionAdded(widget, description);
 | 
						|
}
 |