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 &);
43 Exception
& operator =(Exception
const &);
47 virtual std::optional
< OUString
> getCwdUrl() = 0;
48 virtual bool next(OUString
& argument
) = 0;
52 explicit CommandLineArgs( Supplier
& supplier
);
54 CommandLineArgs(const CommandLineArgs
&) = delete;
55 const CommandLineArgs
& operator=(const CommandLineArgs
&) = delete;
57 const std::optional
< OUString
>& getCwdUrl() const { return m_cwdUrl
; }
59 // Access to bool parameters
60 bool IsMinimized() const { return m_minimized
;}
61 bool IsInvisible() const
63 return m_invisible
|| m_headless
;
65 bool IsNoRestore() const { return m_norestore
;}
66 bool IsNoDefault() const { return m_nodefault
;}
67 bool IsHeadless() const { return m_headless
;}
68 bool IsQuickstart() const { return m_quickstart
;}
69 bool IsNoQuickstart() const { return m_noquickstart
;}
70 bool IsTerminateAfterInit() const { return m_terminateafterinit
;}
71 bool IsNoLogo() const { return m_nologo
;}
72 bool IsNoLockcheck() const { return m_nolockcheck
;}
73 bool IsHelp() const { return m_help
;}
74 bool IsHelpWriter() const { return m_helpwriter
;}
75 bool IsHelpCalc() const { return m_helpcalc
;}
76 bool IsHelpDraw() const { return m_helpdraw
;}
77 bool IsHelpImpress() const { return m_helpimpress
;}
78 bool IsHelpBase() const { return m_helpbase
;}
79 bool IsHelpMath() const { return m_helpmath
;}
80 bool IsHelpBasic() const { return m_helpbasic
;}
81 bool IsWriter() const { return m_writer
;}
82 bool IsCalc() const { return m_calc
;}
83 bool IsDraw() const { return m_draw
;}
84 bool IsImpress() const { return m_impress
;}
85 bool IsBase() const { return m_base
;}
86 bool IsGlobal() const { return m_global
;}
87 bool IsMath() const { return m_math
;}
88 bool IsWeb() const { return m_web
;}
89 bool IsVersion() const { return m_version
;}
90 bool HasModuleParam() const;
91 bool WantsToLoadDocument() const { return m_bDocumentArgs
;}
92 bool IsTextCat() const { return m_textcat
;}
93 bool IsScriptCat() const { return m_scriptcat
;}
94 bool IsSafeMode() const { return m_safemode
; }
96 const OUString
& GetUnknown() const { return m_unknown
;}
98 // Access to string parameters
99 bool HasSplashPipe() const { return m_splashpipe
;}
100 std::vector
< OUString
> const & GetAccept() const { return m_accept
;}
101 std::vector
< OUString
> const & GetUnaccept() const { return m_unaccept
;}
102 void RemoveFilesFromOpenListEndingWith(const OUString
& rExt
);
103 std::vector
< OUString
> GetOpenList() const;
104 std::vector
< OUString
> GetViewList() const;
105 std::vector
< OUString
> GetStartList() const;
106 std::vector
< OUString
> GetForceOpenList() const;
107 std::vector
< OUString
> GetForceNewList() const;
108 std::vector
< OUString
> GetPrintList() const;
109 std::vector
< OUString
> GetPrintToList() const;
110 const OUString
& GetPrinterName() const { return m_printername
;}
111 const OUString
& GetLanguage() const { return m_language
;}
112 std::vector
< OUString
> const & GetInFilter() const { return m_infilter
;}
113 std::vector
< OUString
> GetConversionList() const;
114 const OUString
& GetConversionParams() const { return m_conversionparams
;}
115 OUString
GetConversionOut() const;
116 OUString
const & GetImageConversionType() const { return m_convertimages
; }
117 const OUString
& GetStartListParams() const { return m_startListParams
; }
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
;
137 bool m_terminateafterinit
;
165 bool m_bEmpty
; // No Args at all
166 bool m_bDocumentArgs
; // A document creation/open/load arg is used
167 std::vector
< OUString
> m_accept
;
168 std::vector
< OUString
> m_unaccept
;
169 std::vector
< OUString
> m_openlist
; // contains external URIs
170 std::vector
< OUString
> m_viewlist
; // contains external URIs
171 std::vector
< OUString
> m_startlist
; // contains external URIs
172 std::vector
< OUString
> m_forceopenlist
; // contains external URIs
173 std::vector
< OUString
> m_forcenewlist
; // contains external URIs
174 std::vector
< OUString
> m_printlist
; // contains external URIs
175 std::vector
< OUString
> m_printtolist
; // contains external URIs
176 OUString m_printername
;
177 std::vector
< OUString
> m_conversionlist
; // contains external URIs
178 OUString m_conversionparams
;
179 OUString m_conversionout
; // contains external URIs
180 OUString m_convertimages
; // The format in which images should be converted
181 OUString m_startListParams
;
182 std::vector
< OUString
> m_infilter
;
189 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */