lib_ui/ui/platform/mac/ui_window_mac.h
2019-09-26 09:53:57 +03:00

40 lines
913 B
C++

// This file is part of Desktop App Toolkit,
// a set of libraries for developing nice desktop applications.
//
// For license and copyright information please follow this link:
// https://github.com/desktop-app/legal/blob/master/LEGAL
//
#pragma once
#include "ui/platform/ui_platform_window.h"
namespace Ui {
namespace Platform {
class TitleWidget;
class WindowHelper final : public BasicWindowHelper {
public:
explicit WindowHelper(not_null<RpWidget*> window);
~WindowHelper();
not_null<RpWidget*> body() override;
void setTitle(const QString &title) override;
void setSizeMin(QSize size) override;
private:
class Private;
friend class Private;
void init();
void toggleCustomTitle(bool visible);
const not_null<RpWidget*> _window;
const std::unique_ptr<Private> _private;
const not_null<TitleWidget*> _title;
const not_null<RpWidget*> _body;
};
} // namespace Platform
} // namespace Ui