2019-06-12 14:13:49 +00:00
|
|
|
/*
|
|
|
|
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
|
|
|
|
|
2019-09-18 11:19:05 +00:00
|
|
|
#include "ui/layers/generic_box.h"
|
|
|
|
|
2019-06-12 14:13:49 +00:00
|
|
|
class UserData;
|
|
|
|
|
|
|
|
namespace Window {
|
2020-06-23 17:21:58 +00:00
|
|
|
class SessionController;
|
2019-06-12 14:13:49 +00:00
|
|
|
} // namespace Window
|
|
|
|
|
|
|
|
void EditContactBox(
|
2019-09-18 11:19:05 +00:00
|
|
|
not_null<Ui::GenericBox*> box,
|
2020-06-23 17:21:58 +00:00
|
|
|
not_null<Window::SessionController*> window,
|
2019-06-12 14:13:49 +00:00
|
|
|
not_null<UserData*> user);
|