1 /*
2 This file is part of Telegram Desktop,
3 the official desktop application for the Telegram messaging service.
4 
5 For license and copyright information please follow this link:
6 https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
7 */
8 #pragma once
9 
10 namespace Window {
11 
12 enum class SectionActionResult {
13 	Handle, // Handle an action and stay in the current section.
14 	Fallback, // Ignore an action and fallback to the HistoryWidget.
15 	Ignore, // Ignore an action and stay in the current section.
16 };
17 
18 } // namespace Window
19