Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions plugins/ains/editors/ainsEditor/ainsEditor.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<node displayedName="Центр обработки данных" name="dataCenter">
<graphics>
<picture sizex="100" sizey="100">
<image y1="6" name="images/database.png" x1="1" y2="90" x2="90"/>
<external file="qml/dataCenterClass.qml"/>
</picture>
<labels>
<label x="5" y="95" textBinded="name"/>
Expand Down Expand Up @@ -37,7 +37,7 @@
<node displayedName="Обзорная диаграмма" name="diagram">
<graphics>
<picture sizex="32" sizey="32">
<image y1="0" name="images/circle_blue.png" x1="0" y2="31" x2="31"/>
<external file="qml/diagramClass.qml"/>
</picture>
<labels>
<label x="-1" y="40" textBinded="name"/>
Expand All @@ -51,7 +51,7 @@
<node displayedName="АРМ" description="автоматизированое рабочее место" name="computer">
<graphics>
<picture sizex="80" sizey="90">
<image y1="10" name="images/laptop.png" x1="8" y2="80" x2="80"/>
<external file="qml/computerClass.qml"/>
</picture>
<labels>
<label x="0" y="85" textBinded="name"/>
Expand Down Expand Up @@ -82,7 +82,7 @@
<node displayedName="Средство транспортировки" name="transport">
<graphics>
<picture sizex="70" sizey="80">
<image y1="8" name="images/transport.png" x1="5" y2="70" x2="70"/>
<external file="qml/transportClass.qml">
</picture>
<labels>
<label x="0" y="75" textBinded="name"/>
Expand Down Expand Up @@ -113,7 +113,7 @@
<node displayedName="Спутник" name="satellite">
<graphics>
<picture sizex="80" sizey="90">
<image y1="8" name="images/satellite.png" x1="7" y2="80" x2="80"/>
<external file="qml/satelliteClass.qml"/>
</picture>
<labels>
<label x="0" y="85" textBinded="name"/>
Expand Down Expand Up @@ -144,7 +144,7 @@
<node displayedName="Коммуникационный узел" name="communication">
<graphics>
<picture sizex="80" sizey="90">
<image y1="6" name="images/network-wireless.png" x1="7" y2="80" x2="80"/>
<external file="qml/communicationClass.qml"/>
</picture>
<labels>
<label x="0" y="85" textBinded="name"/>
Expand Down Expand Up @@ -175,7 +175,7 @@
<node displayedName="Карточка" name="card">
<graphics>
<picture sizex="50" sizey="50">
<image y1="3" name="images/controlpanel.png" x1="3" y2="40" x2="40"/>
<external file="qml/cardClass.qml"/>
</picture>
<labels>
<label x="0" y="45" textBinded="name"/>
Expand Down Expand Up @@ -206,7 +206,7 @@
<node displayedName="Пост проверки" name="control">
<graphics>
<picture sizex="80" sizey="90">
<image y1="5" name="images/ktalkd.png" x1="5" y2="85" x2="75"/>
<external file="qml/controlClass.qml"/>
</picture>
<labels>
<label x="0" y="85" textBinded="name"/>
Expand Down Expand Up @@ -237,7 +237,7 @@
<node displayedName="Промежуточный буфер" name="buffer">
<graphics>
<picture sizex="160" sizey="160">
<image y1="17" name="images/server.png" x1="21" y2="144" x2="148"/>
<external file="qml/bufferClass.qml"/>
</picture>
<labels>
<label x="0" y="166" textBinded="name"/>
Expand Down Expand Up @@ -268,7 +268,7 @@
<node displayedName="Описание" description="Блок для описания обязанностей и характера взаимодействия рассматриваемого узла" name="DescriptionBlock">
<graphics>
<picture sizex="150" sizey="180">
<rectangle fill="#f0f8ff" stroke-style="solid" stroke="#000000" y1="0" stroke-width="0" x1="0" y2="180" fill-style="solid" x2="150"/>
<external file="qml/DescriptionBlockClass.qml"/>
</picture>
<labels>
<label x="5" y="5" textBinded="text"/>
Expand Down
15 changes: 15 additions & 0 deletions plugins/ains/editors/ainsEditor/qml/DescriptionBlockClass.qml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import QtQuick 1.0
import CustomComponents 1.0
Rectangle {
width: 150; height: 180
color: "transparent"
Rectangle {
anchors.fill: parent
x: 0 * parent.width / 1
y: 0 * parent.height / 1
width: 1 * parent.width / 1
height: 1 * parent.height / 1
border.color: "#f0f8ff"
border.width: 0
}
}
13 changes: 13 additions & 0 deletions plugins/ains/editors/ainsEditor/qml/bufferClass.qml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import QtQuick 1.0
import CustomComponents 1.0
Rectangle {
width: 160; height: 160
color: "transparent"
Picture {
x1: 21 * parent.width / 160
y1: 17 * parent.height / 160
x2: 37 * parent.width / 40
y2: 9 * parent.height / 10
source: "images/server.png"
}
}
13 changes: 13 additions & 0 deletions plugins/ains/editors/ainsEditor/qml/cardClass.qml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import QtQuick 1.0
import CustomComponents 1.0
Rectangle {
width: 50; height: 50
color: "transparent"
Picture {
x1: 3 * parent.width / 50
y1: 3 * parent.height / 50
x2: 4 * parent.width / 5
y2: 4 * parent.height / 5
source: "images/controlpanel.png"
}
}
13 changes: 13 additions & 0 deletions plugins/ains/editors/ainsEditor/qml/communicationClass.qml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import QtQuick 1.0
import CustomComponents 1.0
Rectangle {
width: 80; height: 90
color: "transparent"
Picture {
x1: 7 * parent.width / 80
y1: 1 * parent.height / 15
x2: 1 * parent.width / 1
y2: 8 * parent.height / 9
source: "images/network-wireless.png"
}
}
13 changes: 13 additions & 0 deletions plugins/ains/editors/ainsEditor/qml/computerClass.qml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import QtQuick 1.0
import CustomComponents 1.0
Rectangle {
width: 80; height: 90
color: "transparent"
Picture {
x1: 1 * parent.width / 10
y1: 1 * parent.height / 9
x2: 1 * parent.width / 1
y2: 8 * parent.height / 9
source: "images/laptop.png"
}
}
13 changes: 13 additions & 0 deletions plugins/ains/editors/ainsEditor/qml/controlClass.qml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import QtQuick 1.0
import CustomComponents 1.0
Rectangle {
width: 80; height: 90
color: "transparent"
Picture {
x1: 1 * parent.width / 16
y1: 1 * parent.height / 18
x2: 15 * parent.width / 16
y2: 17 * parent.height / 18
source: "images/ktalkd.png"
}
}
13 changes: 13 additions & 0 deletions plugins/ains/editors/ainsEditor/qml/dataCenterClass.qml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import QtQuick 1.0
import CustomComponents 1.0
Rectangle {
width: 100; height: 100
color: "transparent"
Picture {
x1: 1 * parent.width / 100
y1: 3 * parent.height / 50
x2: 9 * parent.width / 10
y2: 9 * parent.height / 10
source: "images/database.png"
}
}
13 changes: 13 additions & 0 deletions plugins/ains/editors/ainsEditor/qml/diagramClass.qml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import QtQuick 1.0
import CustomComponents 1.0
Rectangle {
width: 32; height: 32
color: "transparent"
Picture {
x1: 0 * parent.width / 1
y1: 0 * parent.height / 1
x2: 31 * parent.width / 32
y2: 31 * parent.height / 32
source: "images/circle_blue.png"
}
}
13 changes: 13 additions & 0 deletions plugins/ains/editors/ainsEditor/qml/satelliteClass.qml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import QtQuick 1.0
import CustomComponents 1.0
Rectangle {
width: 80; height: 90
color: "transparent"
Picture {
x1: 7 * parent.width / 80
y1: 4 * parent.height / 45
x2: 1 * parent.width / 1
y2: 8 * parent.height / 9
source: "images/satellite.png"
}
}
13 changes: 13 additions & 0 deletions plugins/ains/editors/ainsEditor/qml/transportClass.qml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import QtQuick 1.0
import CustomComponents 1.0
Rectangle {
width: 70; height: 80
color: "transparent"
Picture {
x1: 1 * parent.width / 14
y1: 1 * parent.height / 10
x2: 1 * parent.width / 1
y2: 7 * parent.height / 8
source: "images/transport.png"
}
}
12 changes: 6 additions & 6 deletions plugins/ains/editors/databaseEditor/databaseEditor.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<node displayedName="Диаграмма баз данных" description="Корневой элемент создания диаграммы описания схемы базы данных. Для её создания перенесите этот элемент в обозреватель" name="DatabaseDiagram">
<graphics>
<picture sizex="48" sizey="48">
<image y1="0" name="images/table.png" x1="0" y2="47" x2="47"/>
<external file="qml/DatabaseDiagramClass.qml"/>
</picture>
<labels>
<label x="0" y="0" textBinded="name"/>
Expand All @@ -69,7 +69,7 @@
<node displayedName="Таблица" description="Новая таблица" name="Table">
<graphics>
<picture sizex="150" sizey="180">
<rectangle fill="#f5f5f5" stroke-style="solid" stroke="#000000" y1="0" stroke-width="0" x1="0" y2="180" fill-style="solid" x2="150"/>
<external file="qml/TableClass.qml"/>
</picture>
<labels>
<label x="0" y="-30" textBinded="name"/>
Expand Down Expand Up @@ -115,7 +115,7 @@
<node displayedName="Столбец строкового типа" name="ColumnString">
<graphics>
<picture sizex="200" sizey="20">
<rectangle fill="#f5f5f5" stroke-style="solid" stroke="#6495ed" y1="0" stroke-width="1" x1="0" y2="20" fill-style="solid" x2="200"/>
<external file="qml/ColumnStringStringClass.qml"/>
</picture>
<labels>
<label x="5" y="1" textBinded="name"/>
Expand Down Expand Up @@ -158,7 +158,7 @@
<node displayedName="Столбец числового типа" name="ColumnNumber">
<graphics>
<picture sizex="200" sizey="20">
<rectangle fill="#f5f5f5" stroke-style="solid" stroke="#f08080" y1="0" stroke-width="1" x1="0" y2="20" fill-style="solid" x2="200"/>
<external file="qml/ColumnNumberClass.qml"/>
</picture>
<labels>
<label x="5" y="1" textBinded="name"/>
Expand Down Expand Up @@ -206,7 +206,7 @@
<node displayedName="Столбец типа дата-время" name="ColumnDate">
<graphics>
<picture sizex="200" sizey="20">
<rectangle fill="#f5f5f5" stroke-style="solid" stroke="#483d8b" y1="0" stroke-width="1" x1="0" y2="20" fill-style="solid" x2="200"/>
<external file="qml/ColumnDateClass.qml"/>
</picture>
<labels>
<label x="5" y="1" textBinded="name"/>
Expand Down Expand Up @@ -248,7 +248,7 @@
<node displayedName="Столбец другого типа" name="ColumnOther">
<graphics>
<picture sizex="200" sizey="20">
<rectangle fill="#f5f5f5" stroke-style="solid" stroke="#00ff00" y1="0" stroke-width="1" x1="0" y2="20" fill-style="solid" x2="200"/>
<external file="qml/ColumnOtherClass.qml"/>
</picture>
<labels>
<label x="5" y="1" textBinded="name"/>
Expand Down
15 changes: 15 additions & 0 deletions plugins/ains/editors/databaseEditor/qml/ColumnDateClass.qml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import QtQuick 1.0
import CustomComponents 1.0
Rectangle {
width: 200; height: 20
color: "transparent"
Rectangle {
anchors.fill: parent
x: 0 * parent.width / 1
y: 0 * parent.height / 1
width: 1 * parent.width / 1
height: 1 * parent.height / 1
border.color: "#f5f5f5"
border.width: 1
}
}
15 changes: 15 additions & 0 deletions plugins/ains/editors/databaseEditor/qml/ColumnNumberClass.qml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import QtQuick 1.0
import CustomComponents 1.0
Rectangle {
width: 200; height: 20
color: "transparent"
Rectangle {
anchors.fill: parent
x: 0 * parent.width / 1
y: 0 * parent.height / 1
width: 1 * parent.width / 1
height: 1 * parent.height / 1
border.color: "#f5f5f5"
border.width: 1
}
}
15 changes: 15 additions & 0 deletions plugins/ains/editors/databaseEditor/qml/ColumnOtherClass.qml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import QtQuick 1.0
import CustomComponents 1.0
Rectangle {
width: 200; height: 20
color: "transparent"
Rectangle {
anchors.fill: parent
x: 0 * parent.width / 1
y: 0 * parent.height / 1
width: 1 * parent.width / 1
height: 1 * parent.height / 1
border.color: "#f5f5f5"
border.width: 1
}
}
15 changes: 15 additions & 0 deletions plugins/ains/editors/databaseEditor/qml/ColumnStringClass.qml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import QtQuick 1.0
import CustomComponents 1.0
Rectangle {
width: 200; height: 20
color: "transparent"
Rectangle {
anchors.fill: parent
x: 0 * parent.width / 1
y: 0 * parent.height / 1
width: 1 * parent.width / 1
height: 1 * parent.height / 1
border.color: "#f5f5f5"
border.width: 1
}
}
13 changes: 13 additions & 0 deletions plugins/ains/editors/databaseEditor/qml/DatabaseDiagramClass.qml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import QtQuick 1.0
import CustomComponents 1.0
Rectangle {
width: 48; height: 48
color: "transparent"
Picture {
x1: 0 * parent.width / 1
y1: 0 * parent.height / 1
x2: 47 * parent.width / 48
y2: 47 * parent.height / 48
source: "images/table.png"
}
}
15 changes: 15 additions & 0 deletions plugins/ains/editors/databaseEditor/qml/TableClass.qml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import QtQuick 1.0
import CustomComponents 1.0
Rectangle {
width: 150; height: 180
color: "transparent"
Rectangle {
anchors.fill: parent
x: 0 * parent.width / 1
y: 0 * parent.height / 1
width: 1 * parent.width / 1
height: 1 * parent.height / 1
border.color: "#f5f5f5"
border.width: 0
}
}
13 changes: 13 additions & 0 deletions plugins/ains/editors/usecaseDiagram/qml/actorClass.qml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import QtQuick 1.0
import CustomComponents 1.0
Rectangle {
width: 132; height: 132
color: "transparent"
Picture {
x1: 1 * parent.width / 66
y1: 1 * parent.height / 66
x2: 65 * parent.width / 66
y2: 65 * parent.height / 66
source: "images/user.png"
}
}
Loading