LibreOffice
LibreOffice 24.2 SDK API Reference
FrameSearchFlag.idl
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
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/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
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 .
18  */
19 
20 
21 
22  module com { module sun { module star { module frame {
23 
37 published constants FrameSearchFlag
38 {
48  const long AUTO = 0;
49 
52  const long PARENT = 1;
53 
56  const long SELF = 2;
57 
65  const long CHILDREN = 4;
66 
69  const long CREATE = 8;
70 
79  const long SIBLINGS = 16;
80 
92  const long TASKS = 32;
93 
97  const long ALL = 23;
98 
102  const long GLOBAL = 55;
103 };
104 
105 
106 }; }; }; };
107 
108 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
const long AUTO
no longer supported
Definition: FrameSearchFlag.idl:48
const long CHILDREN
includes all child frames of the start frame
Definition: FrameSearchFlag.idl:65
const long SELF
includes the start frame himself
Definition: FrameSearchFlag.idl:56
const long CREATE
frame will be created if not found
Definition: FrameSearchFlag.idl:69
Definition: Ambiguous.idl:20
const long PARENT
allows search on the parent frames
Definition: FrameSearchFlag.idl:52
const long GLOBAL
searches in the whole hierarchy of frames but doesn't create any new frame
Definition: FrameSearchFlag.idl:102
const long ALL
includes all frames except frames in other tasks sub trees but doesn't create any new frame ...
Definition: FrameSearchFlag.idl:97
const long SIBLINGS
includes the direct siblings of the start frame
Definition: FrameSearchFlag.idl:79
const long TASKS
allow the search outside the current sub task tree of the whole possible frame tree ...
Definition: FrameSearchFlag.idl:92