TextRenderer: updated to new IPlugin interface
[profile/ivi/layer-management.git] / LayerManagerPlugins / Renderers / Platform / TextRenderer / include / TextRenderer.h
1 /***************************************************************************
2 *
3 * Copyright 2010 BMW Car IT GmbH
4 *
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 *        http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *
18 ****************************************************************************/
19
20 #ifndef DEBUGRENDERER_H_
21 #define DEBUGRENDERER_H_
22
23 #include "LayerList.h"
24 #include "BaseRenderer.h"
25
26 class TextRenderer : public BaseRenderer
27 {
28 public:
29     TextRenderer(ICommandExecutor& executor, Configuration& config);
30     virtual ~TextRenderer();
31     void doScreenShot(std::string fileToSave);
32     void doScreenShotOfLayer(std::string fileToSave, uint id);
33     void doScreenShotOfSurface(std::string fileToSave, uint id, uint layer_id);
34     uint getNumberOfHardwareLayers(uint screenID);
35     uint* getScreenResolution(uint screenID);
36     uint* getScreenIDs(uint* length);
37     bool start(int, int, const char*);
38     void stop();
39
40     void signalWindowSystemRedraw();
41     void forceCompositionWindowSystem();
42
43     virtual bool setOptimizationMode(OptimizationType id, OptimizationModeType mode);
44     virtual bool getOptimizationMode(OptimizationType id, OptimizationModeType* mode);
45
46     // from PluginBase
47     virtual HealthCondition pluginGetHealth();
48     virtual t_ilm_const_string pluginGetName() const;
49
50 private:
51     uint m_width;
52     uint m_height;
53     OptimizationModeType m_optimizationMode;
54 };
55
56 #endif /* DEBUGRENDERER_H_ */