2018-09-13 20:21:07 +02:00
|
|
|
class HyperLinkDialog extends this.OS.GUI.BasicDialog
|
|
|
|
constructor: () ->
|
2020-06-25 18:23:33 +02:00
|
|
|
super "HyperLinkDialog", HyperLinkDialog.scheme
|
|
|
|
|
|
|
|
|
|
|
|
main: () ->
|
|
|
|
super.main()
|
|
|
|
txtText = @find "txtText"
|
|
|
|
txtLink = @find "txtLink"
|
|
|
|
if @data and @data.data
|
|
|
|
txtText.value = @data.data.text
|
|
|
|
txtLink.value = @data.data.link
|
|
|
|
$(txtText).prop('disabled', @data.data.readonly)
|
|
|
|
|
|
|
|
@find("btnCancel").onbtclick = (e) =>
|
|
|
|
@quit()
|
|
|
|
|
|
|
|
@find("btnOk").onbtclick = (e) =>
|
|
|
|
data =
|
|
|
|
text: txtText.value,
|
|
|
|
link: txtLink.value,
|
|
|
|
readonly: @data.data.readonly,
|
|
|
|
action: @data.data.action
|
|
|
|
@handle data if @handle
|
|
|
|
@quit()
|
|
|
|
|
|
|
|
HyperLinkDialog.scheme = """
|
|
|
|
<afx-app-window width='350' height='150' apptitle = "Hyperlink">
|
|
|
|
<afx-vbox>
|
|
|
|
<afx-hbox>
|
2021-03-15 13:17:09 +01:00
|
|
|
<div data-width = "10" ></div>
|
2020-06-25 18:23:33 +02:00
|
|
|
<afx-vbox>
|
2021-03-15 13:17:09 +01:00
|
|
|
<div data-height="10" ></div>
|
|
|
|
<afx-label class="header" text = "__(Text)" data-height="23" ></afx-label>
|
|
|
|
<input data-height = "30" data-id = "txtText" ></input>
|
|
|
|
<afx-label class="header" text = "__(Link)" data-height="23" ></afx-label>
|
|
|
|
<input data-height = "30" data-id = "txtLink" ></input>
|
|
|
|
<div data-height="10" ></div>
|
2020-06-25 18:23:33 +02:00
|
|
|
<afx-hbox data-height="30">
|
2021-03-15 13:17:09 +01:00
|
|
|
<div ></div>
|
|
|
|
<afx-button data-id = "btnOk" text = "__(Ok)" data-width = "40" ></afx-button>
|
|
|
|
<afx-button data-id = "btnCancel" text = "__(Cancel)" data-width = "40" ></afx-button>
|
|
|
|
<div data-width = "10" ></div>
|
2020-06-25 18:23:33 +02:00
|
|
|
</afx-hbox>
|
|
|
|
</afx-vbox>
|
2021-03-15 13:17:09 +01:00
|
|
|
<div data-width = "10" ></div>
|
2020-06-25 18:23:33 +02:00
|
|
|
</afx-hbox>
|
|
|
|
</afx-vbox>
|
|
|
|
</afx-app-window>
|
|
|
|
"""
|
2018-09-14 19:35:01 +02:00
|
|
|
|
2020-06-25 18:23:33 +02:00
|
|
|
class FormatDialog extends this.OS.GUI.BasicDialog
|
2018-09-14 19:35:01 +02:00
|
|
|
constructor: () ->
|
2020-06-25 18:23:33 +02:00
|
|
|
super "FormatDialog", FormatDialog.scheme
|
2018-09-14 19:35:01 +02:00
|
|
|
|
|
|
|
main: () ->
|
2020-06-25 18:23:33 +02:00
|
|
|
super.main()
|
2018-09-14 19:35:01 +02:00
|
|
|
@ui =
|
|
|
|
aligment:
|
|
|
|
left:@find("swleft"),
|
|
|
|
right:@find("swright"),
|
|
|
|
center:@find("swcenter"),
|
|
|
|
justify:@find("swjustify")
|
|
|
|
spacing:
|
|
|
|
left: @find("spnleft"),
|
|
|
|
right: @find("spnright"),
|
|
|
|
top: @find("spntop"),
|
|
|
|
bottom: @find("spnbottom"),
|
2018-09-15 21:36:01 +02:00
|
|
|
lineheight: @find("spnlheight")
|
2018-09-15 01:12:36 +02:00
|
|
|
padding:
|
|
|
|
left: @find("pspnleft"),
|
|
|
|
right: @find("pspnright"),
|
|
|
|
top: @find("pspntop"),
|
|
|
|
bottom: @find("pspnbottom"),
|
2018-09-14 19:35:01 +02:00
|
|
|
style:
|
|
|
|
bold: @find("swbold"),
|
|
|
|
italic: @find("switalic"),
|
|
|
|
underline: @find("swunderline"),
|
|
|
|
color: @find("txtcolor"),
|
|
|
|
bgcolor: @find("bgcolor")
|
|
|
|
font:
|
|
|
|
family: @find("lstfont"),
|
|
|
|
size: @find("spnfsize")
|
|
|
|
formats: @find("lstformats")
|
2018-09-15 01:12:36 +02:00
|
|
|
@initStyleObject()
|
|
|
|
@preview = ($(@find "preview").find "p")[0]
|
|
|
|
$(@preview)
|
|
|
|
.css "padding", "0"
|
|
|
|
.css "margin", "0"
|
|
|
|
@initUIEvent()
|
|
|
|
#@previewStyle()
|
|
|
|
|
|
|
|
initStyleObject: ()->
|
2018-09-14 19:35:01 +02:00
|
|
|
# init the format object
|
|
|
|
@currentStyle =
|
|
|
|
aligment: @_api.switcher("left", "right", "center", "justify"),
|
|
|
|
spacing:
|
|
|
|
left:0
|
|
|
|
top:0,
|
|
|
|
right:0,
|
2018-09-15 21:36:01 +02:00
|
|
|
bottom:0,
|
|
|
|
lineheight: 0
|
2018-09-15 01:12:36 +02:00
|
|
|
padding:
|
|
|
|
left:0
|
|
|
|
top:0,
|
|
|
|
right:0,
|
|
|
|
bottom:0
|
2018-09-14 19:35:01 +02:00
|
|
|
style:
|
|
|
|
bold:false,
|
|
|
|
italic: false,
|
|
|
|
underline: false,
|
|
|
|
color: undefined,
|
|
|
|
bgcolor: undefined
|
|
|
|
font:
|
|
|
|
family: undefined,
|
|
|
|
size: 12
|
|
|
|
|
|
|
|
initUIEvent: () ->
|
2020-06-25 18:23:33 +02:00
|
|
|
|
|
|
|
set = (e, o, k ,f) =>
|
|
|
|
@ui[o][k][e] = (r) =>
|
2018-09-14 19:35:01 +02:00
|
|
|
v = r
|
|
|
|
v = f r if f
|
2020-06-25 18:23:33 +02:00
|
|
|
@currentStyle[o][k] = v
|
|
|
|
@previewStyle()
|
2018-09-14 19:35:01 +02:00
|
|
|
|
|
|
|
for k,v of @ui.aligment
|
2020-06-25 18:23:33 +02:00
|
|
|
set "onswchange", "aligment", k, ((e) => e.data)
|
2018-09-14 19:35:01 +02:00
|
|
|
for k,v of @ui.spacing
|
2020-06-25 18:23:33 +02:00
|
|
|
set "onvaluechange", "spacing", k, ((e) => e.data)
|
2018-09-15 01:12:36 +02:00
|
|
|
for k,v of @ui.padding
|
2020-06-25 18:23:33 +02:00
|
|
|
set "onvaluechange", "padding", k, ((e) => e.data)
|
2018-09-14 19:35:01 +02:00
|
|
|
for k,v of @ui.style
|
2020-06-25 18:23:33 +02:00
|
|
|
set "onswchange", "style", k, ((e) => e.data) if k isnt "color" and k isnt "bgcolor"
|
|
|
|
set "onvaluechange", "font", "size"
|
|
|
|
$(@ui.style.color).click (e) =>
|
|
|
|
@openDialog "ColorPickerDialog"
|
|
|
|
.then (d) =>
|
|
|
|
@currentStyle.style.color = d
|
|
|
|
@previewStyle()
|
|
|
|
$(@ui.style.bgcolor).click (e) =>
|
|
|
|
@openDialog "ColorPickerDialog"
|
|
|
|
.then (d) =>
|
|
|
|
@currentStyle.style.bgcolor = d
|
|
|
|
@previewStyle()
|
2018-09-14 19:35:01 +02:00
|
|
|
#font
|
2020-06-25 18:23:33 +02:00
|
|
|
@ui.font.family.data = @data.data.fonts if @data.data and @data.data.fonts
|
|
|
|
set "onlistselect", "font", "family", ( (e) => e.data.item.data)
|
2018-09-14 19:35:01 +02:00
|
|
|
#format list
|
2020-06-25 18:23:33 +02:00
|
|
|
@ui.formats.selected = -1
|
|
|
|
@ui.formats.data = @data.data.formats if @data.data and @data.data.formats
|
|
|
|
@ui.formats.onlistselect = (e) =>
|
|
|
|
@fromODFStyleFormat e.data.item.data
|
|
|
|
@ui.formats.selected = 0
|
|
|
|
(@find "btok").onbtclick = (e) =>
|
|
|
|
@saveCurrentStyle()
|
2018-09-15 01:12:36 +02:00
|
|
|
|
2020-06-25 18:23:33 +02:00
|
|
|
(@find "btx").onbtclick = (e) =>
|
|
|
|
@quit()
|
2018-09-15 01:12:36 +02:00
|
|
|
|
2020-06-25 18:23:33 +02:00
|
|
|
(@find "bt-clone").onbtclick = (e) =>
|
|
|
|
@clone()
|
2018-09-15 01:12:36 +02:00
|
|
|
|
|
|
|
clone: ()->
|
2020-06-25 18:23:33 +02:00
|
|
|
|
|
|
|
selected = @ui.formats.selectedItem
|
2018-09-15 01:12:36 +02:00
|
|
|
return unless selected
|
2020-06-25 18:23:33 +02:00
|
|
|
selected = selected.data
|
|
|
|
@openDialog "PromptDialog", { title: __("Clone style: {0}", selected.text), label: __("New style name:") }
|
|
|
|
.then (d) =>
|
|
|
|
return @notify __("Abort: no style name is specified") unless d and d.trim() isnt ""
|
|
|
|
newstyle = @parent.editorSession.cloneParagraphStyle selected.name, d
|
|
|
|
@ui.formats.push { text:d, name: newstyle }
|
|
|
|
@ui.formats.selected = (@ui.formats.data.length - 1)
|
|
|
|
@notify __("New style: {0} added", newstyle)
|
2018-09-15 01:12:36 +02:00
|
|
|
|
|
|
|
saveCurrentStyle: () ->
|
2020-06-25 18:23:33 +02:00
|
|
|
selected = @ui.formats.selectedItem
|
2018-09-15 01:12:36 +02:00
|
|
|
return unless selected
|
2020-06-25 18:23:33 +02:00
|
|
|
selected = selected.data
|
2018-09-15 01:12:36 +02:00
|
|
|
odfs =
|
|
|
|
"style:paragraph-properties":
|
|
|
|
"fo:margin-top": @currentStyle.spacing.top + "mm"
|
|
|
|
"fo:margin-left": @currentStyle.spacing.left + "mm"
|
|
|
|
"fo:margin-bottom": @currentStyle.spacing.bottom + "mm"
|
|
|
|
"fo:margin-right": @currentStyle.spacing.right + "mm"
|
|
|
|
"fo:padding-top": @currentStyle.padding.top + "mm"
|
|
|
|
"fo:padding-left": @currentStyle.padding.left + "mm"
|
|
|
|
"fo:padding-bottom": @currentStyle.padding.bottom + "mm"
|
|
|
|
"fo:padding-right": @currentStyle.padding.right + "mm"
|
2018-09-15 21:36:01 +02:00
|
|
|
"fo:line-height": if @currentStyle.spacing.lineheight > 0 then @currentStyle.spacing.lineheight + "mm" else "normal"
|
2018-09-15 01:12:36 +02:00
|
|
|
"fo:text-align": @currentStyle.aligment.selected || "left"
|
|
|
|
"style:text-properties":
|
|
|
|
"fo:font-weight": if @currentStyle.style.bold then "bold" else "normal"
|
|
|
|
"fo:font-style": if @currentStyle.style.italic then "italic" else "normal"
|
|
|
|
"style:text-underline-style": if @currentStyle.style.underline then "solid" else "none"
|
|
|
|
"fo:font-size": @currentStyle.font.size + "pt"
|
|
|
|
"fo:font-name": @currentStyle.font.family.text
|
|
|
|
"fo:color": if @currentStyle.style.color then @currentStyle.style.color.hex else "#000000"
|
|
|
|
"fo:background-color": if @currentStyle.style.bgcolor then @currentStyle.style.bgcolor.hex else "transparent"
|
|
|
|
@parent.editorSession.updateParagraphStyle selected.name, odfs
|
|
|
|
@notify __("Paragraph format [{0}] is saved", selected.text)
|
2018-09-14 19:35:01 +02:00
|
|
|
|
|
|
|
fromODFStyleFormat: (odfs) ->
|
2020-06-25 18:23:33 +02:00
|
|
|
|
2018-09-15 01:12:36 +02:00
|
|
|
@initStyleObject()
|
|
|
|
cssUnits = new core.CSSUnits()
|
2020-06-25 18:23:33 +02:00
|
|
|
findFont = (name) =>
|
|
|
|
items = @ui.font.family.data
|
2018-09-15 01:12:36 +02:00
|
|
|
item = v for v in items when v.text is name
|
|
|
|
return undefined unless item
|
|
|
|
return item
|
|
|
|
# spacing
|
|
|
|
style = @parent.editorSession.getParagraphStyleAttributes(odfs.name)['style:paragraph-properties']
|
|
|
|
if style
|
|
|
|
@currentStyle.spacing.top = cssUnits.convertMeasure(style['fo:margin-top'], 'mm') || 0
|
|
|
|
@currentStyle.spacing.left = cssUnits.convertMeasure(style['fo:margin-left'], 'mm') || 0
|
|
|
|
@currentStyle.spacing.right = cssUnits.convertMeasure(style['fo:margin-right'], 'mm') || 0
|
|
|
|
@currentStyle.spacing.bottom = cssUnits.convertMeasure(style['fo:margin-bottom'], 'mm') || 0
|
|
|
|
@currentStyle.padding.top = cssUnits.convertMeasure(style['fo:padding-top'], 'mm') || 0
|
|
|
|
@currentStyle.padding.left = cssUnits.convertMeasure(style['fo:padding-left'], 'mm') || 0
|
|
|
|
@currentStyle.padding.right = cssUnits.convertMeasure(style['fo:padding-right'], 'mm') || 0
|
|
|
|
@currentStyle.padding.bottom = cssUnits.convertMeasure(style['fo:padding-bottom'], 'mm') || 0
|
2018-09-15 21:36:01 +02:00
|
|
|
@currentStyle.spacing.lineheight = cssUnits.convertMeasure(style['fo:line-height'], 'mm') || 4.2 # 1em = 4,2175176mm
|
2018-09-15 01:12:36 +02:00
|
|
|
@currentStyle.aligment[style['fo:text-align']] = true if style['fo:text-align']
|
|
|
|
style = @parent.editorSession.getParagraphStyleAttributes(odfs.name)['style:text-properties']
|
|
|
|
if style
|
|
|
|
@currentStyle.style.bold = style['fo:font-weight'] is 'bold'
|
|
|
|
@currentStyle.style.italic = style['fo:font-style'] is 'italic'
|
|
|
|
@currentStyle.style.underline = true if style['style:text-underline-style'] and style['style:text-underline-style'] isnt 'none'
|
|
|
|
@currentStyle.font.size = parseFloat style['fo:font-size']
|
|
|
|
@currentStyle.font.family = findFont style['style:font-name']
|
|
|
|
@currentStyle.style.color = { hex: style['fo:color'] } if style['fo:color']
|
|
|
|
@currentStyle.style.bgcolor = { hex: style['fo:background-color'] } if style['fo:background-color']
|
|
|
|
@previewStyle()
|
2018-09-14 19:35:01 +02:00
|
|
|
|
|
|
|
previewStyle: () ->
|
2018-09-15 01:12:36 +02:00
|
|
|
#console.log "previewing"
|
2018-09-14 19:35:01 +02:00
|
|
|
# reset ui
|
2020-06-25 18:23:33 +02:00
|
|
|
@ui.aligment.left.swon = @currentStyle.aligment.left
|
|
|
|
@ui.aligment.right.swon = @currentStyle.aligment.right
|
|
|
|
@ui.aligment.center.swon = @currentStyle.aligment.center
|
|
|
|
@ui.aligment.justify.swon = @currentStyle.aligment.justify
|
|
|
|
@ui.spacing.left.value = @currentStyle.spacing.left
|
|
|
|
@ui.spacing.right.value = @currentStyle.spacing.right
|
|
|
|
@ui.spacing.top.value = @currentStyle.spacing.top
|
|
|
|
@ui.spacing.bottom.value = @currentStyle.spacing.bottom
|
|
|
|
@ui.spacing.lineheight.value = @currentStyle.spacing.lineheight
|
2018-09-15 01:12:36 +02:00
|
|
|
|
2020-06-25 18:23:33 +02:00
|
|
|
@ui.padding.left.value = @currentStyle.padding.left
|
|
|
|
@ui.padding.right.value = @currentStyle.padding.right
|
|
|
|
@ui.padding.top.value = @currentStyle.padding.top
|
|
|
|
@ui.padding.bottom.value = @currentStyle.padding.bottom
|
2018-09-15 01:12:36 +02:00
|
|
|
|
2020-06-25 18:23:33 +02:00
|
|
|
@ui.style.bold.swon = @currentStyle.style.bold
|
|
|
|
@ui.style.italic.swon = @currentStyle.style.italic
|
|
|
|
@ui.style.underline.swon = @currentStyle.style.underline
|
|
|
|
@ui.font.size.value = @currentStyle.font.size
|
2018-09-14 19:35:01 +02:00
|
|
|
|
2018-09-15 01:12:36 +02:00
|
|
|
#console.log @currentStyle
|
|
|
|
if @currentStyle.font.family
|
2020-06-25 18:23:33 +02:00
|
|
|
items = @ui.font.family.data
|
2018-09-15 01:12:36 +02:00
|
|
|
item = i for v, i in items when v.text is @currentStyle.font.family.text
|
2020-06-25 18:23:33 +02:00
|
|
|
@ui.font.family.selected = item if item >= 0
|
2018-09-14 19:35:01 +02:00
|
|
|
|
2018-09-15 21:36:01 +02:00
|
|
|
$(@ui.style.color).css "background-color", if @currentStyle.style.color then @currentStyle.style.color.hex else "#000000"
|
2020-06-25 18:23:33 +02:00
|
|
|
$(@ui.style.bgcolor).css "background-color", if @currentStyle.style.bgcolor then @currentStyle.style.bgcolor.hex else "transparent"
|
2018-09-14 19:35:01 +02:00
|
|
|
# set the preview css
|
|
|
|
el = $ @preview
|
2018-09-15 21:36:01 +02:00
|
|
|
el.css "text-align", if @currentStyle.aligment.selected then @currentStyle.aligment.selected else "left"
|
2018-09-15 01:12:36 +02:00
|
|
|
el.css "margin-left", @currentStyle.spacing.left + "mm"
|
|
|
|
el.css "margin-right", @currentStyle.spacing.right + "mm"
|
|
|
|
el.css "margin-top", @currentStyle.spacing.top + "mm"
|
|
|
|
el.css "margin-bottom", @currentStyle.spacing.bottom + "mm"
|
|
|
|
|
|
|
|
el.css "padding-left", @currentStyle.padding.left + "mm"
|
|
|
|
el.css "padding-right", @currentStyle.padding.right + "mm"
|
|
|
|
el.css "padding-top", @currentStyle.padding.top + "mm"
|
|
|
|
el.css "padding-bottom", @currentStyle.padding.bottom + "mm"
|
|
|
|
|
2018-09-14 19:35:01 +02:00
|
|
|
el
|
|
|
|
.css "font-weight", "normal"
|
|
|
|
.css "font-style", "normal"
|
|
|
|
.css "text-decoration", "none"
|
2018-09-15 21:36:01 +02:00
|
|
|
.css "line-height", "normal"
|
2018-09-14 19:35:01 +02:00
|
|
|
el.css "font-weight", "bold" if @currentStyle.style.bold
|
|
|
|
el.css "font-style", "italic" if @currentStyle.style.italic
|
|
|
|
el.css "text-decoration", "underline" if @currentStyle.style.underline
|
2018-09-15 21:36:01 +02:00
|
|
|
el.css "color", if @currentStyle.style.color then @currentStyle.style.color.hex else "#000000"
|
|
|
|
el.css "background-color", if @currentStyle.style.bgcolor then @currentStyle.style.bgcolor.hex else "transparent"
|
2018-09-14 19:35:01 +02:00
|
|
|
el.css "font-size", @currentStyle.font.size + "pt"
|
|
|
|
el.css "font-family", @currentStyle.font.family.name if @currentStyle.font.family
|
2018-09-15 21:36:01 +02:00
|
|
|
el.css "line-height", @currentStyle.spacing.lineheight + "mm" if @currentStyle.spacing.lineheight > 0
|
2018-09-14 19:35:01 +02:00
|
|
|
|
|
|
|
FormatDialog.scheme = """
|
2018-09-15 01:12:36 +02:00
|
|
|
<afx-app-window apptitle="__(Format Dialog)" width="500" height="500" data-id="FormatDialog">
|
2018-09-14 19:35:01 +02:00
|
|
|
<afx-vbox>
|
|
|
|
<div data-height="5"></div>
|
|
|
|
<afx-hbox data-height="30">
|
|
|
|
<div data-width="5"></div>
|
|
|
|
<afx-list-view data-id="lstformats" dropdown = "true"></afx-list-view>
|
|
|
|
<div data-width="5" ></div>
|
2018-09-15 01:12:36 +02:00
|
|
|
<afx-button text="clone" data-id="bt-clone" iconclass = "fa fa-copy" data-width="65"></afx-button>
|
2018-09-14 19:35:01 +02:00
|
|
|
<div data-width="5"></div>
|
|
|
|
</afx-hbox>
|
|
|
|
<afx-label text="__(Aligment)" class="header" data-height="20"></afx-label>
|
|
|
|
<afx-hbox data-height="23" data-id="aligmentbox">
|
|
|
|
<div data-width="20" ></div>
|
|
|
|
<afx-switch data-width="30" data-id="swleft"></afx-switch>
|
|
|
|
<afx-label text="__(Left)"></afx-label>
|
|
|
|
<afx-switch data-width="30" data-id="swright"></afx-switch>
|
|
|
|
<afx-label text="__(Right)"></afx-label>
|
|
|
|
<afx-switch data-width="30" data-id="swcenter"></afx-switch>
|
|
|
|
<afx-label text="__(Center)"></afx-label>
|
|
|
|
<afx-switch data-width="30" data-id="swjustify"></afx-switch>
|
|
|
|
<afx-label text="__(Justify)"></afx-label>
|
|
|
|
<div data-width="20" ></div>
|
|
|
|
</afx-hbox>
|
|
|
|
<div data-height="5"></div>
|
2018-09-15 21:36:01 +02:00
|
|
|
<afx-label text="__(Margin)" class="header" data-height="20"></afx-label>
|
2018-09-14 19:35:01 +02:00
|
|
|
<div data-height="5"></div>
|
|
|
|
<afx-hbox data-height="23" data-id="spacingbox">
|
|
|
|
<div ></div>
|
|
|
|
<afx-label data-width="50" text="__(Left:)"></afx-label>
|
2020-06-25 18:23:33 +02:00
|
|
|
<afx-nspinner data-width="50" data-id="spnleft" value = "0" step="0.5"></afx-nspinner>
|
2018-09-14 19:35:01 +02:00
|
|
|
<div></div>
|
|
|
|
<afx-label data-width="50" text="__(Right:)"></afx-label>
|
2020-06-25 18:23:33 +02:00
|
|
|
<afx-nspinner data-width="50" data-id="spnright" value = "0" step="0.5"></afx-nspinner>
|
2018-09-14 19:35:01 +02:00
|
|
|
<div></div>
|
|
|
|
<afx-label data-width="50" text="__(Top:)"></afx-label>
|
2020-06-25 18:23:33 +02:00
|
|
|
<afx-nspinner data-width="50" data-id="spntop" value = "0" step="0.5"></afx-nspinner>
|
2018-09-14 19:35:01 +02:00
|
|
|
<div></div>
|
|
|
|
<afx-label data-width="50" text="__(Bottom:)"></afx-label>
|
2020-06-25 18:23:33 +02:00
|
|
|
<afx-nspinner data-width="50" data-id="spnbottom" value = "0" step="0.5"></afx-nspinner>
|
2018-09-14 19:35:01 +02:00
|
|
|
<div ></div>
|
|
|
|
</afx-hbox>
|
2018-09-15 01:12:36 +02:00
|
|
|
<div data-height="5"></div>
|
|
|
|
<afx-label text="__(Padding)" class="header" data-height="20"></afx-label>
|
|
|
|
<div data-height="5"></div>
|
|
|
|
<afx-hbox data-height="23" data-id="spacingbox">
|
|
|
|
<div ></div>
|
|
|
|
<afx-label data-width="50" text="__(Left:)"></afx-label>
|
2020-06-25 18:23:33 +02:00
|
|
|
<afx-nspinner data-width="50" data-id="pspnleft" value = "0" step="0.5"></afx-nspinner>
|
2018-09-15 01:12:36 +02:00
|
|
|
<div></div>
|
|
|
|
<afx-label data-width="50" text="__(Right:)"></afx-label>
|
2020-06-25 18:23:33 +02:00
|
|
|
<afx-nspinner data-width="50" value = "0" data-id="pspnright" step="0.5"></afx-nspinner>
|
2018-09-15 01:12:36 +02:00
|
|
|
<div></div>
|
|
|
|
<afx-label data-width="50" text="__(Top:)"></afx-label>
|
2020-06-25 18:23:33 +02:00
|
|
|
<afx-nspinner data-width="50" value = "0" data-id="pspntop" step="0.5"></afx-nspinner>
|
2018-09-15 01:12:36 +02:00
|
|
|
<div></div>
|
|
|
|
<afx-label data-width="50" text="__(Bottom:)"></afx-label>
|
2020-06-25 18:23:33 +02:00
|
|
|
<afx-nspinner data-width="50" value = "0" data-id="pspnbottom" step="0.5"></afx-nspinner>
|
2018-09-15 01:12:36 +02:00
|
|
|
<div ></div>
|
|
|
|
</afx-hbox>
|
|
|
|
|
2018-09-14 19:35:01 +02:00
|
|
|
<div data-height="5"></div>
|
|
|
|
<afx-label text="__(Style)" class="header" data-height="20"></afx-label>
|
|
|
|
<div data-height="5"></div>
|
|
|
|
<afx-hbox data-height="23" data-id="stylebox">
|
|
|
|
<div data-width="5"></div>
|
|
|
|
<afx-switch data-width="30" data-id="swbold"></afx-switch>
|
|
|
|
<afx-label text="__(Bold)"></afx-label>
|
|
|
|
<afx-switch data-width="30" data-id="switalic"></afx-switch>
|
|
|
|
<afx-label text="__(Italic)"></afx-label>
|
|
|
|
<afx-switch data-width="30" data-id="swunderline"></afx-switch>
|
|
|
|
<afx-label text="__(Underline)"></afx-label>
|
|
|
|
<afx-label data-width="35" text="__(Text:)"></afx-label>
|
|
|
|
<div data-width="30" data-id="txtcolor"></div>
|
|
|
|
<div data-width="5"></div>
|
|
|
|
<afx-label data-width="80" text="__(Background:)"></afx-label>
|
|
|
|
<div data-width="30" data-id="bgcolor"></div>
|
|
|
|
<div data-width="5"></div>
|
|
|
|
</afx-hbox>
|
|
|
|
<div data-height="5"></div>
|
|
|
|
<afx-label text="__(Font)" class="header" data-height="20"></afx-label>
|
|
|
|
<div data-height="5"></div>
|
2018-09-15 21:36:01 +02:00
|
|
|
<afx-hbox data-height="30" data-id="font-box">
|
2018-09-14 19:35:01 +02:00
|
|
|
<div data-width="5"></div>
|
|
|
|
<afx-list-view data-id="lstfont" dropdown = "true"></afx-list-view>
|
|
|
|
<div data-width="5" ></div>
|
|
|
|
<afx-label data-width="35" text="__(Size:)"></afx-label>
|
2020-06-25 18:23:33 +02:00
|
|
|
<afx-nspinner data-width="50" value = "12" data-id="spnfsize"></afx-nspinner>
|
2018-09-15 21:36:01 +02:00
|
|
|
<div data-width="5" ></div>
|
|
|
|
<afx-label data-width="80" text="__(Line Height:)"></afx-label>
|
|
|
|
<afx-nspinner data-width="50" data-id="spnlheight" value="4.2" step="0.2"></afx-nspinner>
|
2018-09-14 19:35:01 +02:00
|
|
|
<div data-width="5"></div>
|
|
|
|
</afx-hbox>
|
|
|
|
<div data-height="5"></div>
|
|
|
|
<afx-label text="__(Preview)" class="header" data-height="20"></afx-label>
|
|
|
|
<div data-height="5"></div>
|
|
|
|
<afx-hbox>
|
|
|
|
<div data-width="5"></div>
|
2020-06-25 18:23:33 +02:00
|
|
|
<div data-id="preview" style="background-color: white;">
|
2018-09-14 19:35:01 +02:00
|
|
|
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce laoreet diam vestibulum massa malesuada quis dignissim libero blandit. Duis sit amet volutpat nisl.</p>
|
|
|
|
</div>
|
|
|
|
<div data-width="5"></div>
|
|
|
|
</afx-hbox>
|
|
|
|
|
|
|
|
<div data-height="5"></div>
|
|
|
|
<afx-hbox data-height="30">
|
|
|
|
<div></div>
|
2018-09-15 01:12:36 +02:00
|
|
|
<afx-button text="__(Save)" data-width="35" data-id="btok"></afx-button>
|
2018-09-14 19:35:01 +02:00
|
|
|
<div data-width="5"></div>
|
|
|
|
<afx-button text="__(Cancel)" data-width="55" data-id="btx"></afx-button>
|
|
|
|
</afx-hbox>
|
|
|
|
<div data-height="5"></div>
|
|
|
|
</afx-vbox>
|
|
|
|
</afx-app-window>
|
|
|
|
"""
|