tdf#120787: fine-tune window flags w/ focus on floating toolbars
[LibreOffice.git] / framework / inc / taskcreatordefs.hxx
blobb0044d9584625667c5824ca40283e04ff04fa966
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_FRAMEWORK_INC_TASKCREATORDEFS_HXX
21 #define INCLUDED_FRAMEWORK_INC_TASKCREATORDEFS_HXX
23 /// [XFrame] if it's set, it will be used as parent frame for the new created frame.
24 const char ARGUMENT_PARENTFRAME[] = "ParentFrame"; // XFrame
26 /** [OUString] if it's not a special name (beginning with "_" ... which are not allowed here!)
27 it will be set as the API name of the new created frame.
29 const char ARGUMENT_FRAMENAME[] = "FrameName"; // OUString
31 /// [sal_Bool] If its set to sal_True we will make the new created frame visible.
32 const char ARGUMENT_MAKEVISIBLE[] = "MakeVisible"; // sal_Bool
34 /** [sal_Bool] If not "ContainerWindow" property is set it force creation of a
35 top level window as new container window.
37 const char ARGUMENT_CREATETOPWINDOW[] = "CreateTopWindow"; // sal_Bool
39 /// [Rectangle] Place the new created frame on this place and resize the container window.
40 const char ARGUMENT_POSSIZE[] = "PosSize"; // Rectangle
42 /// [XWindow] an outside created window, used as container window of the new created frame.
43 const char ARGUMENT_CONTAINERWINDOW[] = "ContainerWindow"; // XWindow
45 /** [sal_Bool] enable/disable special mode, where this frame will be part of
46 the persistent window state feature suitable for any office module window
48 const char ARGUMENT_SUPPORTPERSISTENTWINDOWSTATE[] = "SupportPersistentWindowState"; // sal_Bool
50 /** [sal_Bool] enable/disable special mode, where the title bar of our
51 the new created frame will be updated automatically.
52 Default = ON !
54 const char ARGUMENT_ENABLE_TITLEBARUPDATE[] = "EnableTitleBarUpdate"; // sal_Bool
56 #endif // INCLUDED_FRAMEWORK_INC_TASKCREATORDEFS_HXX
58 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */