/usr/lib/bouml/xmi/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 | class Dialog
!!!147330.cpp!!! Dialog(inout path : string, inout encoding : string, inout genview : string, inout taggedvalue : int, 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);
encoding_cb->insertItem(QString(_encoding));
if (!charset.isEmpty() && (_encoding != (const char *) charset))
encoding_cb->insertItem(charset);
#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
// generate view checkbox
htab = new QHBox(this);
htab->setMargin(5);
vbox->addWidget(htab);
gen_cb = new QCheckBox("Generate views as package", htab);
if (_genview == "yes")
gen_cb->setChecked(TRUE);
// tagged value generation mode
htab = new QHBox(this);
htab->setMargin(5);
vbox->addWidget(htab);
QButtonGroup * bg =
new QButtonGroup(3, Qt::Vertical, "Tagged values generation", htab);
tg_0 = new QRadioButton("Not generated", bg);
tg_1 = new QRadioButton("<UML:TaggedValue tag=\"..\" value=\"..\"/>", bg);
tg_2 = new QRadioButton("<UML:TaggedValue>\n"
" <Uml:TaggedValue.tag>..</Uml:TaggedValue.tag>\n"
" <Uml:TaggedValue.value>..</Uml:TaggedValue.value>\n"
"</UML:TaggedValue>",
bg);
switch (taggedvalue) {
case 1: tg_1->setChecked(TRUE); break;
case 2: tg_2->setChecked(TRUE); break;
default: tg_0->setChecked(TRUE); break;
}
// 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()));
!!!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 = (gen_cb->isChecked()) ? "yes" : "no";
if (tg_0->isChecked())
_taggedvalue = 0;
else if (tg_1->isChecked())
_taggedvalue = 1;
else if (tg_2->isChecked())
_taggedvalue = 2;
QDialog::accept();
|