mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-24 19:26:05 +02:00
24 lines
456 B
C++
24 lines
456 B
C++
//
|
|
// UIUtil.h
|
|
// library/shared/src
|
|
//
|
|
// Created by Ryan Huffman on 09/02/2014.
|
|
// Copyright 2014 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
|
|
#ifndef hifi_UIUtil_h
|
|
#define hifi_UIUtil_h
|
|
|
|
#include <QWidget>
|
|
|
|
class UIUtil {
|
|
public:
|
|
static int getWindowTitleBarHeight(const QWidget* window);
|
|
|
|
};
|
|
|
|
#endif // hifi_UIUtil_h
|