summaryrefslogtreecommitdiff
path: root/services.h
blob: ea2372bcc65ec2fd2cf2779e6722520f42b2ed33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#ifndef __SKINDESIGNERSERVICES_H
#define __SKINDESIGNERSERVICES_H

using namespace std;

#include <string>
#include <map>

/*********************************************************************
* Data Structures for Service Calls
*********************************************************************/

// Data structure for service "RegisterPlugin"
class RegisterPlugin {
public:
    RegisterPlugin(void) {
        name = "";
    };
    void SetMenu(int key, string templateName) {
        menus.insert(pair<int, string>(key, templateName));
    }
    void SetView(int key, string templateName) {
		views.insert(pair<int, string>(key, templateName));    	
    }
    void SetViewElement(int view, int viewElement, string name) {
        map< int, map<int, string> >::iterator hit = viewElements.find(view);
        if (hit == viewElements.end()) {
        	map<int, string> vE;
        	vE.insert(pair<int, string >(viewElement, name));
        	viewElements.insert(pair<int, map < int, string > >(view, vE));
        } else {
        	(hit->second).insert(pair<int, string >(viewElement, name));
        }
    }
    void SetViewGrid(int view, int viewGrid, string name) {
        map< int, map<int, string> >::iterator hit = viewGrids.find(view);
        if (hit == viewGrids.end()) {
            map<int, string> vG;
            vG.insert(pair<int, string >(viewGrid, name));
            viewGrids.insert(pair<int, map < int, string > >(view, vG));
        } else {
            (hit->second).insert(pair<int, string >(viewGrid, name));
        }
    }
// in
    string name;                          //name of plugin
    map< int, string > menus;             //menus as key -> templatename hashmap 
    map< int, string>  views;             //standalone views as key -> templatename hashmap 
    map< int, map <int, string> > viewElements;  //viewelements as key -> (viewelement, viewelementname) hashmap 
    map< int, map <int, string> > viewGrids;     //viewgrids as key -> (viewgrid, viewgridname) hashmap
//out
};

// Data structure for service "GetDisplayMenu"
class GetDisplayMenu {
public:
    GetDisplayMenu(void) {
        displayMenu = NULL;
    };
// in
//out	
    cSDDisplayMenu *displayMenu;
};

// Data structure for service "GetDisplayPlugin"
class GetDisplayPlugin {
public:
    GetDisplayPlugin(void) {
        pluginName = "";
        viewID = -1;
        displayPlugin = NULL;
    };
// in
    string pluginName;
    int viewID;
//out
    cSkinDisplayPlugin *displayPlugin;
};
#endif //__SKINDESIGNERSERVICES_H