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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/common/common_param_traits.h"
#include "content/public/common/webkit_param_traits.h"
#include "ui/base/models/menu_model.h"
// Get basic type definitions.
#define IPC_MESSAGE_IMPL
#include "chrome/common/automation_messages.h"
// Generate constructors.
#include "ipc/struct_constructor_macros.h"
#include "chrome/common/automation_messages.h"
// Generate destructors.
#include "ipc/struct_destructor_macros.h"
#include "chrome/common/automation_messages.h"
// Generate param traits write methods.
#include "ipc/param_traits_write_macros.h"
namespace IPC {
#include "chrome/common/automation_messages.h"
} // namespace IPC
// Generate param traits read methods.
#include "ipc/param_traits_read_macros.h"
namespace IPC {
#include "chrome/common/automation_messages.h"
} // namespace IPC
// Generate param traits log methods.
#include "ipc/param_traits_log_macros.h"
namespace IPC {
#include "chrome/common/automation_messages.h"
} // namespace IPC
ContextMenuModel::ContextMenuModel() {
}
ContextMenuModel::~ContextMenuModel() {
for (size_t i = 0; i < items.size(); ++i)
delete items[i].submenu;
}
ContextMenuModel::Item::Item()
: type(static_cast<int>(ui::MenuModel::TYPE_COMMAND)),
item_id(0),
checked(false),
enabled(true),
submenu(NULL) {
}
namespace IPC {
// static
void ParamTraits<ContextMenuModel>::Write(Message* m,
const param_type& p) {
WriteParam(m, p.items.size());
for (size_t i = 0; i < p.items.size(); ++i) {
WriteParam(m, static_cast<int>(p.items[i].type));
WriteParam(m, p.items[i].item_id);
WriteParam(m, p.items[i].label);
WriteParam(m, p.items[i].checked);
WriteParam(m, p.items[i].enabled);
if (p.items[i].type == static_cast<int>(ui::MenuModel::TYPE_SUBMENU)) {
Write(m, *p.items[i].submenu);
}
}
}
// static
bool ParamTraits<ContextMenuModel>::Read(const Message* m,
void** iter,
param_type* p) {
size_t item_count = 0;
if (!ReadParam(m, iter, &item_count))
return false;
p->items.reserve(item_count);
for (size_t i = 0; i < item_count; ++i) {
ContextMenuModel::Item item;
if (!ReadParam(m, iter, &item.type))
return false;
if (!ReadParam(m, iter, &item.item_id))
return false;
if (!ReadParam(m, iter, &item.label))
return false;
if (!ReadParam(m, iter, &item.checked))
return false;
if (!ReadParam(m, iter, &item.enabled))
return false;
if (item.type == static_cast<int>(ui::MenuModel::TYPE_SUBMENU)) {
item.submenu = new ContextMenuModel;
if (!Read(m, iter, item.submenu)) {
delete item.submenu;
item.submenu = NULL;
return false;
}
}
p->items.push_back(item);
}
return true;
}
// static
void ParamTraits<ContextMenuModel>::Log(const param_type& p,
std::string* l) {
l->append("(");
for (size_t i = 0; i < p.items.size(); ++i) {
const ContextMenuModel::Item& item = p.items[i];
if (i)
l->append(", ");
l->append("(");
LogParam(item.type, l);
l->append(", ");
LogParam(item.item_id, l);
l->append(", ");
LogParam(item.label, l);
l->append(", ");
LogParam(item.checked, l);
l->append(", ");
LogParam(item.enabled, l);
if (item.type == ui::MenuModel::TYPE_SUBMENU) {
l->append(", ");
Log(*item.submenu, l);
}
l->append(")");
}
l->append(")");
}
} // namespace IPC
|