1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
22 #include <sal/config.h>
26 #include <rtl/ustring.hxx>
37 // Thrown from constructors and next:
42 Exception(Exception
const &);
44 Exception
& operator =(Exception
const &);
48 virtual std::optional
< OUString
> getCwdUrl() = 0;
49 virtual bool next(OUString
* argument
) = 0;
53 explicit CommandLineArgs( Supplier
& supplier
);
55 CommandLineArgs(const CommandLineArgs
&) = delete;
56 const CommandLineArgs
& operator=(const CommandLineArgs
&) = delete;
58 const std::optional
< OUString
>& getCwdUrl() const { return m_cwdUrl
; }
60 // Access to bool parameters
61 bool IsMinimized() const { return m_minimized
;}
62 bool IsInvisible() const
64 return m_invisible
|| (m_headless
&& !m_eventtesting
);
66 bool IsNoRestore() const { return m_norestore
;}
67 bool IsNoDefault() const { return m_nodefault
;}
68 bool IsHeadless() const { return m_headless
;}
69 bool IsEventTesting() const { return m_eventtesting
;}
70 bool IsQuickstart() const { return m_quickstart
;}
71 bool IsNoQuickstart() const { return m_noquickstart
;}
72 bool IsTerminateAfterInit() const { return m_terminateafterinit
;}
73 bool IsNoLogo() const { return m_nologo
;}
74 bool IsNoLockcheck() const { return m_nolockcheck
;}
75 bool IsHelp() const { return m_help
;}
76 bool IsHelpWriter() const { return m_helpwriter
;}
77 bool IsHelpCalc() const { return m_helpcalc
;}
78 bool IsHelpDraw() const { return m_helpdraw
;}
79 bool IsHelpImpress() const { return m_helpimpress
;}
80 bool IsHelpBase() const { return m_helpbase
;}
81 bool IsHelpMath() const { return m_helpmath
;}
82 bool IsHelpBasic() const { return m_helpbasic
;}
83 bool IsWriter() const { return m_writer
;}
84 bool IsCalc() const { return m_calc
;}
85 bool IsDraw() const { return m_draw
;}
86 bool IsImpress() const { return m_impress
;}
87 bool IsBase() const { return m_base
;}
88 bool IsGlobal() const { return m_global
;}
89 bool IsMath() const { return m_math
;}
90 bool IsWeb() const { return m_web
;}
91 bool IsVersion() const { return m_version
;}
92 bool HasModuleParam() const;
93 bool WantsToLoadDocument() const { return m_bDocumentArgs
;}
94 bool IsTextCat() const { return m_textcat
;}
95 bool IsScriptCat() const { return m_scriptcat
;}
96 bool IsSafeMode() const { return m_safemode
; }
98 const OUString
& GetUnknown() const { return m_unknown
;}
100 // Access to string parameters
101 bool HasSplashPipe() const { return m_splashpipe
;}
102 std::vector
< OUString
> const & GetAccept() const { return m_accept
;}
103 std::vector
< OUString
> const & GetUnaccept() const { return m_unaccept
;}
104 std::vector
< OUString
> GetOpenList() const;
105 std::vector
< OUString
> GetViewList() const;
106 std::vector
< OUString
> GetStartList() const;
107 std::vector
< OUString
> GetForceOpenList() const;
108 std::vector
< OUString
> GetForceNewList() const;
109 std::vector
< OUString
> GetPrintList() const;
110 std::vector
< OUString
> GetPrintToList() const;
111 const OUString
& GetPrinterName() const { return m_printername
;}
112 const OUString
& GetLanguage() const { return m_language
;}
113 std::vector
< OUString
> const & GetInFilter() const { return m_infilter
;}
114 std::vector
< OUString
> GetConversionList() const;
115 const OUString
& GetConversionParams() const { return m_conversionparams
;}
116 OUString
GetConversionOut() const;
117 OUString
const & GetImageConversionType() const { return m_convertimages
; }
118 const OUString
& GetPidfileName() const { return m_pidfile
;}
120 // Special analyzed states (does not match directly to a command line parameter!)
121 bool IsEmpty() const { return m_bEmpty
;}
123 void setHeadless() { m_headless
= true; }
126 void ParseCommandLine_Impl( Supplier
& supplier
);
127 void InitParamValues();
129 std::optional
< OUString
> m_cwdUrl
;
138 bool m_terminateafterinit
;
166 bool m_bEmpty
; // No Args at all
167 bool m_bDocumentArgs
; // A document creation/open/load arg is used
168 std::vector
< OUString
> m_accept
;
169 std::vector
< OUString
> m_unaccept
;
170 std::vector
< OUString
> m_openlist
; // contains external URIs
171 std::vector
< OUString
> m_viewlist
; // contains external URIs
172 std::vector
< OUString
> m_startlist
; // contains external URIs
173 std::vector
< OUString
> m_forceopenlist
; // contains external URIs
174 std::vector
< OUString
> m_forcenewlist
; // contains external URIs
175 std::vector
< OUString
> m_printlist
; // contains external URIs
176 std::vector
< OUString
> m_printtolist
; // contains external URIs
177 OUString m_printername
;
178 std::vector
< OUString
> m_conversionlist
; // contains external URIs
179 OUString m_conversionparams
;
180 OUString m_conversionout
; // contains external URIs
181 OUString m_convertimages
; // The format in which images should be converted
182 std::vector
< OUString
> m_infilter
;
189 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */