/usr/lib/bouml/xmi2/132866.bodies is in bouml-plugouts-src 4.21-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 | class Dialog
!!!147330.cpp!!! Dialog(inout path : string, inout encoding : string, inout genview : string, inout uml20 : string, inout pk : string, inout vis : string, inout primitivetype : string, inout genextension : string, inout geneclipse : string, inout commentexporter : string, inout linefeed : string, inout lang : Language)
QVBoxLayout * vbox = new QVBoxLayout(this);
QHBox * htab;
vbox->setMargin(5);
// get xmi pathname
htab = new QHBox(this);
htab->setMargin(5);
vbox->addWidget(htab);
new QLabel("generated \nXMI file : ", htab);
ed = new QLineEdit(htab);
ed->setText(_path);
new QLabel(" ", htab);
SmallPushButton * br = new SmallPushButton("browse", htab);
connect(br, SIGNAL(clicked ()), this, SLOT(browse()));
// to choose encoding
htab = new QHBox(this);
htab->setMargin(5);
vbox->addWidget(htab);
new QLabel("Encoding : ", htab);
QString charset = getenv("BOUML_CHARSET");
int index = 0;
while ((index = charset.find('_')) != -1) {
charset[index] = '-';
index += 1;
}
encoding_cb = new QComboBox(TRUE, htab);
htab->setStretchFactor(encoding_cb, 1000);
if (_encoding.isEmpty())
_encoding = "UTF-8";
encoding_cb->insertItem(QString(_encoding));
if (!charset.isEmpty() && (_encoding != (const char *) charset))
encoding_cb->insertItem(charset);
if (_encoding != "UTF-8")
encoding_cb->insertItem("UTF-8");
#ifdef WIN32
if ((_encoding != "windows-1252") && (charset != "windows-1252"))
encoding_cb->insertItem("windows-1252");
if ((_encoding != "ISO-8859-1") && (charset != "ISO-8859-1"))
encoding_cb->insertItem("ISO-8859-1");
#else
if ((_encoding != "ISO-8859-1") && (charset != "ISO-8859-1"))
encoding_cb->insertItem("ISO-8859-1");
if ((_encoding != "windows-1252") && (charset != "windows-1252"))
encoding_cb->insertItem("windows-1252");
#endif
// uml 2.0 or uml2.1
htab = new QHBox(this);
htab->setMargin(5);
vbox->addWidget(htab);
QButtonGroup * bg = new QButtonGroup(2, Qt::Horizontal, "Uml", htab);
uml20_rb = new QRadioButton("uml 2.0", bg);
uml21_rb = new QRadioButton("uml 2.1", bg);
if (uml20 == "yes")
uml20_rb->setChecked(TRUE);
else
uml21_rb->setChecked(TRUE);
// generate view checkbox
htab = new QHBox(this);
htab->setMargin(5);
vbox->addWidget(htab);
genview_cb = new QCheckBox("Generate views as package (non compatible with profile generation)", htab);
if (_genview == "yes")
genview_cb->setChecked(TRUE);
// generate pk_ prefix
htab = new QHBox(this);
htab->setMargin(5);
vbox->addWidget(htab);
pk_cb = new QCheckBox("Generate 'pk_' prefix for parameter direction", htab);
if (_pk == "yes")
pk_cb->setChecked(TRUE);
// generate vis_ prefix
htab = new QHBox(this);
htab->setMargin(5);
vbox->addWidget(htab);
vis_cb = new QCheckBox("Generate 'vis_' prefix for visibility", htab);
if (_vis == "yes")
vis_cb->setChecked(TRUE);
// use PrimitiveType rather than DataType
htab = new QHBox(this);
htab->setMargin(5);
vbox->addWidget(htab);
primitivetype_cb = new QCheckBox("Use PrimitiveType rather than DataType", htab);
if (_primitivetype == "yes")
primitivetype_cb->setChecked(TRUE);
// generate extension
htab = new QHBox(this);
htab->setMargin(5);
vbox->addWidget(htab);
genextension_cb = new QCheckBox("Generate extensions", htab);
if (_genextension == "yes")
genextension_cb->setChecked(TRUE);
// generate for Eclipse
htab = new QHBox(this);
htab->setMargin(5);
vbox->addWidget(htab);
geneclipse_cb = new QCheckBox("Generate for Eclipse (aggregation set on other relation side)", htab);
if (_geneclipse == "yes")
geneclipse_cb->setChecked(TRUE);
// comment exporter
htab = new QHBox(this);
htab->setMargin(5);
vbox->addWidget(htab);
commentexporter_cb = new QCheckBox("Comment exporter indication (needed to import in some tools like Rsa)", htab);
if (_commentexporter == "yes")
commentexporter_cb->setChecked(TRUE);
// generate rather than linefeed
htab = new QHBox(this);
htab->setMargin(5);
vbox->addWidget(htab);
linefeed_cb = new QCheckBox("Generate lf and cr characters in string rather than '& ' and '& '", htab);
if (_linefeed == "yes")
linefeed_cb->setChecked(TRUE);
// uml , c++, java, cancel buttons
htab = new QHBox(this);
htab->setMargin(5);
vbox->addWidget(htab);
new QLabel(htab);
QPushButton * uml = new QPushButton("&Uml", htab);
new QLabel(htab);
QPushButton * cpp = new QPushButton("&C++", htab);
new QLabel(htab);
QPushButton * java = new QPushButton("&Java", htab);
new QLabel(htab);
QPushButton * cancel = new QPushButton("&Cancel", htab);
new QLabel(htab);
QSize bs(cancel->sizeHint());
uml->setFixedSize(bs);
cpp->setFixedSize(bs);
java->setFixedSize(bs);
connect(uml, SIGNAL(clicked()), this, SLOT(accept_uml()));
connect(cpp, SIGNAL(clicked()), this, SLOT(accept_cpp()));
connect(java, SIGNAL(clicked()), this, SLOT(accept_java()));
connect(cancel, SIGNAL(clicked()), this, SLOT(reject()));
// help
htab = new QHBox(this);
htab->setMargin(5);
vbox->addWidget(htab);
new QLabel(htab);
new QLabel("Remark : to help Eclipse to import the generated file,\n"
"choose Uml 2.1 and name the file with the extension '.xmi'", htab);
new QLabel(htab);
!!!147586.cpp!!! browse() : void
QString s = QFileDialog::getSaveFileName(_path, "*.xmi", 0);
if (! s.isEmpty()) {
if (s.right(4).lower() != ".xmi")
ed->setText(s + ".xmi");
else
ed->setText(s);
}
!!!147458.cpp!!! accept_cpp() : void
_lang = Cpp;
accept();
!!!148098.cpp!!! accept_uml() : void
_lang = Uml;
accept();
!!!148226.cpp!!! accept_java() : void
_lang = Java;
accept();
!!!150530.cpp!!! accept() : void
_path = ed->text();
_encoding = encoding_cb->currentText();
_genview = (genview_cb->isChecked()) ? "yes" : "no";
_uml20 = (uml20_rb->isChecked()) ? "yes" : "no";
_pk = (pk_cb->isChecked()) ? "yes" : "no";
_vis = (vis_cb->isChecked()) ? "yes" : "no";
_primitivetype = (primitivetype_cb->isChecked()) ? "yes" : "no";
_genextension = (genextension_cb->isChecked()) ? "yes" : "no";
_geneclipse = (geneclipse_cb->isChecked()) ? "yes" : "no";
_commentexporter = (commentexporter_cb->isChecked()) ? "yes" : "no";
_linefeed = (linefeed_cb->isChecked()) ? "yes" : "no";
QDialog::accept();
|