aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/App.hh
diff options
context:
space:
mode:
authorThomas Lübking <thomas.luebking@gmail.com>2016-09-03 22:08:04 (GMT)
committerMathias Gumz <akira@fluxbox.org>2016-09-11 07:56:33 (GMT)
commitcdd6861aff5cd06f84c9d23456b5a92b4202e423 (patch)
treea517c8a2638fe146c2db4af075dbf05f7db1e917 /src/FbTk/App.hh
parent2047b1a2ba9ea5d3df77c8de9b4e2b3fd3a40a6d (diff)
downloadfluxbox-cdd6861aff5cd06f84c9d23456b5a92b4202e423.zip
fluxbox-cdd6861aff5cd06f84c9d23456b5a92b4202e423.tar.bz2
Support editing utf-8 text in TextBox
aka "Flüxbøx" βµγ, pardon, BUG: 720
Diffstat (limited to 'src/FbTk/App.hh')
-rw-r--r--src/FbTk/App.hh2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/FbTk/App.hh b/src/FbTk/App.hh
index b83dd15..a31ed06 100644
--- a/src/FbTk/App.hh
+++ b/src/FbTk/App.hh
@@ -53,6 +53,7 @@ public:
53 /// forces an end to event loop 53 /// forces an end to event loop
54 void end(); 54 void end();
55 bool done() const { return m_done; } 55 bool done() const { return m_done; }
56 const XIM &inputModule() const { return m_xim; }
56 57
57 // the setenv()-routine is not everywhere available and 58 // the setenv()-routine is not everywhere available and
58 // putenv() doesnt manage the strings in the environment 59 // putenv() doesnt manage the strings in the environment
@@ -62,6 +63,7 @@ private:
62 static App *s_app; 63 static App *s_app;
63 bool m_done; 64 bool m_done;
64 Display *m_display; 65 Display *m_display;
66 XIM m_xim;
65}; 67};
66 68
67} // end namespace FbTk 69} // end namespace FbTk