19 lines
523 B
C++
19 lines
523 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
|
|
|
|
namespace Window {
|
|
|
|
enum class SectionActionResult {
|
|
Handle, // Handle an action and stay in the current section.
|
|
Fallback, // Ignore an action and fallback to the HistoryWidget.
|
|
Ignore, // Ignore an action and stay in the current section.
|
|
};
|
|
|
|
} // namespace Window
|