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
|
/*
RailControl - Model Railway Control Software
Copyright (c) 2017-2025 by Teddy / Dominik Mahrer - www.railcontrol.org
RailControl is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3, or (at your option) any
later version.
RailControl is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with RailControl; see the file LICENCE. If not see
<http://www.gnu.org/licenses/>.
*/
#include <string>
#include "Server/Web/HtmlTagLayoutItem.h"
using std::string;
using std::to_string;
namespace Server { namespace Web
{
const string HtmlTagLayoutItem::EdgeLengthString = std::to_string(HtmlTagLayoutItem::EdgeLength);
HtmlTagLayoutItem::HtmlTagLayoutItem(const DataModel::LayoutItem* layout,
const DataModel::LayoutItem::LayoutPosition posX,
const DataModel::LayoutItem::LayoutPosition posY)
: layout(layout),
imageDiv("div"),
onClickMenuDiv("div"),
onClickMenuContentDiv("ul"),
contextMenuDiv("div"),
contextMenuContentDiv("ul"),
layoutPosX(posX * EdgeLength),
layoutPosY(posY * EdgeLength)
{
switch (layout->GetObjectType())
{
case ObjectTypeAccessory:
identifier = "a_";
break;
case ObjectTypeFeedback:
identifier = "f_";
break;
case ObjectTypeRoute:
identifier = "r_";
break;
case ObjectTypeTrack:
identifier = "t_";
break;
case ObjectTypeSignal:
identifier = "si_";
break;
case ObjectTypeSwitch:
identifier = "sw_";
break;
case ObjectTypeText:
identifier = "tx_";
break;
case ObjectTypeCounter:
identifier = "c_";
break;
default:
identifier = "unknown_";
return;
}
identifier += to_string(layout->GetID());
imageDiv.AddId(identifier);
imageDiv.AddClass("layout_item");
imageDiv.AddAttribute("style", "left:" + to_string(layoutPosX) + "px;top:" + to_string(layoutPosY) + "px;");
imageDiv.AddAttribute("draggable", "true");
imageDiv.AddAttribute("ondragstart", "drag(event);");
string menuPosition = "left:" + to_string(layoutPosX + 5) + "px;top:" + to_string(layoutPosY + 30) + "px;";
onClickMenuDiv.AddAttribute("style", menuPosition);
contextMenuDiv.AddAttribute("style", menuPosition);
}
void HtmlTagLayoutItem::FinishInit()
{
const DataModel::LayoutItem::LayoutItemSize trackHeight = layout->GetHeight();
const DataModel::LayoutItem::LayoutItemSize trackWidth = layout->GetWidth();
int translate = 0;
if (trackHeight > DataModel::LayoutItem::Height1 || trackWidth > DataModel::LayoutItem::Width1)
{
DataModel::LayoutItem::LayoutRotation rotation = layout->GetRotation();
if (rotation == DataModel::LayoutItem::Rotation90 || rotation == DataModel::LayoutItem::Rotation270)
{
translate = (((trackHeight - trackWidth) * EdgeLength) / 2);
}
if (rotation == DataModel::LayoutItem::Rotation90)
{
translate = -translate;
}
}
const string layoutHeight = to_string(EdgeLength * trackHeight);
const string layoutWidth = to_string(EdgeLength * trackWidth);
const string translateText = to_string(translate);
imageDiv.AddChildTag(HtmlTag().AddContent("<svg width=\"" + layoutWidth + "\" height=\"" + layoutHeight + "\" id=\"" + identifier + "_img\" style=\"transform:rotate(" + DataModel::LayoutItem::Rotation(layout->GetRotation()) + "deg) translate(" + translateText + "px," + translateText + "px);\">" + image + "</svg>"));
if (onClickMenuContentDiv.ChildCount())
{
static const string OnClick("onclick");
if (!imageDiv.IsAttributeSet(OnClick))
{
imageDiv.AddAttribute(OnClick, "return showOnClickMenu(event, '" + identifier + "');");
}
onClickMenuContentDiv.AddClass("contextentries");
onClickMenuDiv.AddChildTag(onClickMenuContentDiv);
onClickMenuDiv.AddClass("contextmenu");
onClickMenuDiv.AddId(identifier + "_onclick");
AddChildTag(onClickMenuDiv);
}
if (contextMenuContentDiv.ChildCount())
{
imageDiv.AddAttribute("oncontextmenu", "return showContextMenu(event, '" + identifier + "');");
contextMenuContentDiv.AddClass("contextentries");
contextMenuDiv.AddChildTag(contextMenuContentDiv);
contextMenuDiv.AddClass("contextmenu");
contextMenuDiv.AddId(identifier + "_context");
AddChildTag(contextMenuDiv);
}
AddChildTag(imageDiv);
}
void HtmlTagLayoutItem::AddMenuTitle(HtmlTag& menu,
const string& text)
{
HtmlTag li("li");
li.AddClass("contexttitle");
li.AddContent(text);
menu.AddChildTag(li);
}
void HtmlTagLayoutItem::AddMenuEntry(HtmlTag& menu,
const string& text,
const string& onClick,
const string& className)
{
HtmlTag li("li");
li.AddClass("contextentry");
li.AddContent(text);
if (onClick.length() > 0)
{
li.AddAttribute("onClick", onClick);
}
if (className.length() > 0)
{
li.AddClass(className);
}
menu.AddChildTag(li);
}
}} // namespace Server::Web
|