Remove vsync-monitor since is not used anymore and move egl-image-extensions-ubuntu...
[platform/core/uifw/dali-adaptor.git] / dali / internal / system / common / command-line-options.h
1 #ifndef DALI_INTERNAL_COMMAND_LINE_OPTIONS_H
2 #define DALI_INTERNAL_COMMAND_LINE_OPTIONS_H
3
4 /*
5  * Copyright (c) 2019 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <string>
23 #include <cstdint> // int32_t
24
25 namespace Dali
26 {
27
28 namespace Internal
29 {
30
31 namespace Adaptor
32 {
33
34 /**
35  * Parses the passed command line arguments and sets the values stored within this
36  * class appropriately.
37  *
38  * The following options are supported:
39  *
40  * @code
41  *  -w|--width          Stage Width
42  *  -h|--height         Stage Height
43  *  -d|--dpi            Emulated DPI
44  *     --help           Help
45  * @endcode
46  *
47  * When the above options are found, they are stripped from argv, and argc is updated appropriately.
48  */
49 struct CommandLineOptions
50 {
51 public:
52
53   /**
54    * Constructor
55    * @param[in,out]  argc  The number of arguments
56    * @param[in,out]  argv  The argument list
57    * @note Supported options are stripped from argv, and argc is updated appropriately.
58    */
59   CommandLineOptions( int32_t *argc, char **argv[] );
60
61   /**
62    * Destructor
63    */
64   ~CommandLineOptions();
65
66 public: // Command line parsed values
67
68   int32_t stageWidth;      ///< The width of the stage required.  0 if not set.
69   int32_t stageHeight;     ///< The height of the stage required.   0 if not set.
70   std::string stageDPI;    ///< DPI stored as hxv, where h is horizontal DPI and v is vertical DPI
71 };
72
73 } // namespace Adaptor
74
75 } // namespace Internal
76
77 } // namespace Dali
78
79 #endif // DALI_INTERNAL_COMMAND_LINE_OPTIONS_H