diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-11-03 15:52:35 +0100 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2023-11-03 15:52:35 +0100 |
commit | 1bccfebc0347ce7c4c6d25390f7bc8e04234012a (patch) | |
tree | 052682b25a3d1c93afb880216b4b9938cdc32467 /c++ | |
parent | 247d15cdd816af187eaf22c39fb3738efd56d132 (diff) |
window: Implement title return
Diffstat (limited to 'c++')
-rw-r--r-- | c++/window/xcb.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/c++/window/xcb.cpp b/c++/window/xcb.cpp index 422a0b6..5f3485c 100644 --- a/c++/window/xcb.cpp +++ b/c++/window/xcb.cpp @@ -237,6 +237,10 @@ void window<backend::linux_xcb>::hide(){ xcb_unmap_window(device_->xcb_connection_, xcb_window_); } +const std::string_view window<backend::linux_xcb>::get_title() const { + return window_title_; +} + const video_mode& window<backend::linux_xcb>::get_video_mode() const { return video_mode_; } |