summaryrefslogtreecommitdiff
path: root/src/user_interface.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2014-07-11 00:27:04 +0100
committerMaxime Coste <frrrwww@gmail.com>2014-07-11 00:27:43 +0100
commita32b49acd12538c27bf4f9abb8acd133e8cf2ee8 (patch)
treed1990535a90aa77fe6754f777e5f1c1c261e0ca8 /src/user_interface.hh
parent42611aef1e84b7dc13735021b8d0b68fedb86d60 (diff)
Rename ColorPair to Face and ColorRegistry to FaceRegistry
Face also stores the attributes
Diffstat (limited to 'src/user_interface.hh')
-rw-r--r--src/user_interface.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/user_interface.hh b/src/user_interface.hh
index 3181019b..fdd03994 100644
--- a/src/user_interface.hh
+++ b/src/user_interface.hh
@@ -28,13 +28,13 @@ public:
virtual ~UserInterface() {}
virtual void menu_show(memoryview<String> choices,
- CharCoord anchor, ColorPair fg, ColorPair bg,
+ CharCoord anchor, Face fg, Face bg,
MenuStyle style) = 0;
virtual void menu_select(int selected) = 0;
virtual void menu_hide() = 0;
virtual void info_show(StringView title, StringView content,
- CharCoord anchor, ColorPair colors,
+ CharCoord anchor, Face face,
MenuStyle style) = 0;
virtual void info_hide() = 0;