aboutsummaryrefslogtreecommitdiff
path: root/src/Focusable.hh
diff options
context:
space:
mode:
authorMathias Gumz <akira at fluxbox dot org>2012-07-14 08:08:28 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2012-07-14 08:08:28 (GMT)
commita076bdcbdaef5d61370acd35e8e2870fb7ad9e09 (patch)
tree407162dc75cc242fa446a7dece77987aad0c81e8 /src/Focusable.hh
parent9a28a8bfec7606f19f373a27df33a89ba6f7de7c (diff)
parent2944cd0014cde6a219822f120fff9588225e8776 (diff)
downloadfluxbox-a076bdcbdaef5d61370acd35e8e2870fb7ad9e09.zip
fluxbox-a076bdcbdaef5d61370acd35e8e2870fb7ad9e09.tar.bz2
merge
Diffstat (limited to 'src/Focusable.hh')
-rw-r--r--src/Focusable.hh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Focusable.hh b/src/Focusable.hh
index 679e00b..fd0705b 100644
--- a/src/Focusable.hh
+++ b/src/Focusable.hh
@@ -54,8 +54,10 @@ public:
54 54
55 /// @return true if the focusable has input focus 55 /// @return true if the focusable has input focus
56 virtual bool isFocused() const { return m_focused; } 56 virtual bool isFocused() const { return m_focused; }
57 /// @return return true if it can be focused 57 /// @return true if it can be focused
58 virtual bool acceptsFocus() const { return true; } 58 virtual bool acceptsFocus() const { return true; }
59 /// @return true if temporarily prevented from being focused
60 virtual bool isModal() const { return false; }
59 61
60 /// @return true if icon button should appear focused 62 /// @return true if icon button should appear focused
61 bool getAttentionState() const { return m_attention_state; } 63 bool getAttentionState() const { return m_attention_state; }