24 lines
		
	
	
	
		
			537 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			537 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
This file is part of Telegram Desktop,
 | 
						|
the official desktop application for the Telegram messaging service.
 | 
						|
 | 
						|
For license and copyright information please follow this link:
 | 
						|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
 | 
						|
*/
 | 
						|
#pragma once
 | 
						|
 | 
						|
class QLibrary;
 | 
						|
 | 
						|
extern "C" {
 | 
						|
#include <gtk/gtk.h>
 | 
						|
#include <gdk/gdk.h>
 | 
						|
} // extern "C"
 | 
						|
 | 
						|
namespace Platform {
 | 
						|
namespace internal {
 | 
						|
 | 
						|
void GdkHelperLoad(QLibrary &lib);
 | 
						|
void GdkSetTransientFor(GdkWindow *window, const QString &parent);
 | 
						|
 | 
						|
} // namespace internal
 | 
						|
} // namespace Platform
 |