3
// GNOME Do is the legal property of its developers. Please refer to the
4
// COPYRIGHT file distributed with this source distribution.
6
// This program is free software: you can redistribute it and/or modify
7
// it under the terms of the GNU General Public License as published by
8
// the Free Software Foundation, either version 3 of the License, or
9
// (at your option) any later version.
11
// This program is distributed in the hope that it will be useful,
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
// GNU General Public License for more details.
16
// You should have received a copy of the GNU General Public License
17
// along with this program. If not, see <http://www.gnu.org/licenses/>.
21
using System.Collections.Generic;
26
namespace Do.Interface
28
public enum TextModeType {
35
public interface IUIContext
38
/// The current selection
45
IList<Item> Results {get;}
48
/// Integer index of the selection in the results list
53
/// Secondary selections indicies
55
int[] SecondaryCursors {get;}
58
/// The query that got us here
63
/// Tells the controller to present text in a larger box
65
bool LargeTextDisplay {get;}
68
TextModeType LargeTextModeType {get;}
71
/// The parent context of the current UI context if it exists.
73
IUIContext ParentContext {get;}