diff options
author | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2024-08-02 13:37:44 +0200 |
---|---|---|
committer | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2024-08-02 15:47:54 +0200 |
commit | af5c4092052c98853b88cf886adb11b4a1532fff (patch) | |
tree | 06d396d749f0d523731064c971db718841bab062 /offapi/com/sun | |
parent | 35003f56dce36326777900b8562643651537a489 (diff) |
Expose WorkWindow fullscreen mode via new XTopWindow3
...deriving from the existing XTopWindow2. (Exposing this functionality via UNO
is useful e.g. for some embedded LOWA example application.)
Change-Id: Ib92f75510b7a2ca26933ea35afcc78882a7804fc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171403
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
Diffstat (limited to 'offapi/com/sun')
-rw-r--r-- | offapi/com/sun/star/awt/XTopWindow3.idl | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/offapi/com/sun/star/awt/XTopWindow3.idl b/offapi/com/sun/star/awt/XTopWindow3.idl new file mode 100644 index 000000000000..d64076423132 --- /dev/null +++ b/offapi/com/sun/star/awt/XTopWindow3.idl @@ -0,0 +1,23 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +module com { module sun { module star { module awt { + +/** extends XTopWindow with additional functionality + + @since LibreOffice 25.2 +*/ +interface XTopWindow3: XTopWindow2 { + /** controls whether the window is currently shown full screen */ + [attribute] boolean FullScreen; +}; + +}; }; }; }; + +/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ |