diff options
author | Ken Moore <moorekou@gmail.com> | 2015-08-04 16:44:46 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-08-04 16:44:46 -0400 |
commit | cc6bf725400819fdd88db5bc382e84da7b5520d9 (patch) | |
tree | d807c30076f307a26fd8a04b8f5662125e57ec59 /libLumina/LuminaX11.h | |
parent | Convert lumina-screenshot to use the XCB interface exclusively (no more XLib)... (diff) | |
download | lumina-cc6bf725400819fdd88db5bc382e84da7b5520d9.tar.gz lumina-cc6bf725400819fdd88db5bc382e84da7b5520d9.tar.bz2 lumina-cc6bf725400819fdd88db5bc382e84da7b5520d9.zip |
Add the XCB versions of the system tray start/stop routines, and setup LSession to use those new versions
Diffstat (limited to 'libLumina/LuminaX11.h')
-rw-r--r-- | libLumina/LuminaX11.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libLumina/LuminaX11.h b/libLumina/LuminaX11.h index df2a78d2..7d7585e6 100644 --- a/libLumina/LuminaX11.h +++ b/libLumina/LuminaX11.h @@ -164,6 +164,10 @@ public: uint EmbedWindow(WId win, WId container); //returns the damage ID (or 0 for an error) bool UnembedWindow(WId win); + //System Tray Management + WId startSystemTray(int screen = 0); //Startup the system tray (returns window ID for tray) + void closeSystemTray(WId); //Close the system tray + }; #endif
\ No newline at end of file |