26 lines
546 B
C++
26 lines
546 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;
|
|
class QWindow;
|
|
|
|
extern "C" {
|
|
#include <gtk/gtk.h>
|
|
#include <gdk/gdk.h>
|
|
} // extern "C"
|
|
|
|
namespace Platform {
|
|
namespace internal {
|
|
|
|
void GdkHelperLoad(QLibrary &lib);
|
|
void GdkSetTransientFor(GdkWindow *window, QWindow *parent);
|
|
|
|
} // namespace internal
|
|
} // namespace Platform
|