Initialized empty files of photo editor.
This commit is contained in:
parent
2b47d6d63f
commit
45f8e68203
|
@ -508,6 +508,12 @@ PRIVATE
|
||||||
dialogs/dialogs_search_from_controllers.h
|
dialogs/dialogs_search_from_controllers.h
|
||||||
dialogs/dialogs_widget.cpp
|
dialogs/dialogs_widget.cpp
|
||||||
dialogs/dialogs_widget.h
|
dialogs/dialogs_widget.h
|
||||||
|
editor/photo_editor.cpp
|
||||||
|
editor/photo_editor.h
|
||||||
|
editor/photo_editor_content.cpp
|
||||||
|
editor/photo_editor_content.h
|
||||||
|
editor/photo_editor_controls.cpp
|
||||||
|
editor/photo_editor_controls.h
|
||||||
export/export_manager.cpp
|
export/export_manager.cpp
|
||||||
export/export_manager.h
|
export/export_manager.h
|
||||||
export/view/export_view_content.cpp
|
export/view/export_view_content.cpp
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
/*
|
||||||
|
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
|
||||||
|
*/
|
||||||
|
#include "editor/photo_editor.h"
|
||||||
|
|
||||||
|
#include "editor/photo_editor_content.h"
|
||||||
|
#include "editor/photo_editor_controls.h"
|
||||||
|
|
||||||
|
namespace Editor {
|
||||||
|
|
||||||
|
PhotoEditor::PhotoEditor(
|
||||||
|
not_null<Ui::RpWidget*> parent,
|
||||||
|
std::shared_ptr<QPixmap> photo)
|
||||||
|
: RpWidget(parent) {
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace Editor
|
|
@ -0,0 +1,27 @@
|
||||||
|
/*
|
||||||
|
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
|
||||||
|
|
||||||
|
#include "ui/rp_widget.h"
|
||||||
|
|
||||||
|
namespace Editor {
|
||||||
|
|
||||||
|
class PhotoEditorContent;
|
||||||
|
class PhotoEditorControls;
|
||||||
|
|
||||||
|
class PhotoEditor final : public Ui::RpWidget {
|
||||||
|
public:
|
||||||
|
PhotoEditor(
|
||||||
|
not_null<Ui::RpWidget*> parent,
|
||||||
|
std::shared_ptr<QPixmap> photo);
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace Editor
|
|
@ -0,0 +1,18 @@
|
||||||
|
/*
|
||||||
|
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
|
||||||
|
*/
|
||||||
|
#include "editor/photo_editor_content.h"
|
||||||
|
|
||||||
|
namespace Editor {
|
||||||
|
|
||||||
|
PhotoEditorContent::PhotoEditorContent(
|
||||||
|
not_null<Ui::RpWidget*> parent,
|
||||||
|
std::shared_ptr<QPixmap> photo)
|
||||||
|
: RpWidget(parent) {
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace Editor
|
|
@ -0,0 +1,24 @@
|
||||||
|
/*
|
||||||
|
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
|
||||||
|
|
||||||
|
#include "ui/rp_widget.h"
|
||||||
|
|
||||||
|
namespace Editor {
|
||||||
|
|
||||||
|
class PhotoEditorContent final : public Ui::RpWidget {
|
||||||
|
public:
|
||||||
|
PhotoEditorContent(
|
||||||
|
not_null<Ui::RpWidget*> parent,
|
||||||
|
std::shared_ptr<QPixmap> photo);
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace Editor
|
|
@ -0,0 +1,17 @@
|
||||||
|
/*
|
||||||
|
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
|
||||||
|
*/
|
||||||
|
#include "editor/photo_editor_controls.h"
|
||||||
|
|
||||||
|
namespace Editor {
|
||||||
|
|
||||||
|
PhotoEditorControls::PhotoEditorControls(
|
||||||
|
not_null<Ui::RpWidget*> parent)
|
||||||
|
: RpWidget(parent) {
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace Editor
|
|
@ -0,0 +1,22 @@
|
||||||
|
/*
|
||||||
|
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
|
||||||
|
|
||||||
|
#include "ui/rp_widget.h"
|
||||||
|
|
||||||
|
namespace Editor {
|
||||||
|
|
||||||
|
class PhotoEditorControls final : public Ui::RpWidget {
|
||||||
|
public:
|
||||||
|
PhotoEditorControls(not_null<Ui::RpWidget*> parent);
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace Editor
|
Loading…
Reference in New Issue