aboutsummaryrefslogtreecommitdiff
path: root/src/Window.hh
diff options
context:
space:
mode:
authorMathias Gumz <akira at fluxbox dot org>2010-09-08 18:17:21 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2010-09-08 18:17:21 (GMT)
commit690d926ac444243611cd875fb84fabb4e6db2cf2 (patch)
treec8ef84056b295071f9a9207ffea5393c6cf4ad4d /src/Window.hh
parent1e8fe2bc14856fa16508686a28a85e72cb0e422c (diff)
downloadfluxbox-690d926ac444243611cd875fb84fabb4e6db2cf2.zip
fluxbox-690d926ac444243611cd875fb84fabb4e6db2cf2.tar.bz2
introduced FbTk::BidiString
a 'BidiString' holds both the logical content and the visual reordered version of the content of a string. this helps to reduce the number of calls to reorder the string before drawing it (as introduced in the patch from Ken Bloom) and to be more consistent in menus and textboxes (drawing cursors and underlining text).
Diffstat (limited to 'src/Window.hh')
-rw-r--r--src/Window.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Window.hh b/src/Window.hh
index d7fd812..080ceac 100644
--- a/src/Window.hh
+++ b/src/Window.hh
@@ -418,9 +418,9 @@ public:
418 418
419 bool acceptsFocus() const; 419 bool acceptsFocus() const;
420 const FbTk::PixmapWithMask &icon() const; 420 const FbTk::PixmapWithMask &icon() const;
421 const std::string &title() const; 421 const FbTk::BiDiString &title() const;
422 const std::string &getWMClassName() const; 422 const FbTk::FbString &getWMClassName() const;
423 const std::string &getWMClassClass() const; 423 const FbTk::FbString &getWMClassClass() const;
424 std::string getWMRole() const; 424 std::string getWMRole() const;
425 void setWindowType(WindowState::WindowType type); 425 void setWindowType(WindowState::WindowType type);
426 bool isTransient() const; 426 bool isTransient() const;