lacci 0.3.0 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/lacci/scarpe_cli.rb +0 -1
- data/lib/lacci/version.rb +1 -1
- data/lib/scarpe/niente/display_service.rb +5 -1
- data/lib/scarpe/niente/drawable.rb +2 -0
- data/lib/scarpe/niente/shoes_spec.rb +7 -1
- data/lib/scarpe/niente.rb +14 -2
- data/lib/shoes/app.rb +44 -50
- data/lib/shoes/constants.rb +23 -2
- data/lib/shoes/display_service.rb +43 -4
- data/lib/shoes/drawable.rb +309 -35
- data/lib/shoes/drawables/arc.rb +2 -24
- data/lib/shoes/drawables/arrow.rb +2 -22
- data/lib/shoes/drawables/border.rb +28 -0
- data/lib/shoes/drawables/button.rb +4 -20
- data/lib/shoes/drawables/check.rb +7 -3
- data/lib/shoes/drawables/document_root.rb +4 -4
- data/lib/shoes/drawables/edit_box.rb +6 -5
- data/lib/shoes/drawables/edit_line.rb +5 -4
- data/lib/shoes/drawables/flow.rb +3 -5
- data/lib/shoes/drawables/font_helper.rb +62 -0
- data/lib/shoes/drawables/image.rb +2 -2
- data/lib/shoes/drawables/line.rb +4 -7
- data/lib/shoes/drawables/link.rb +5 -8
- data/lib/shoes/drawables/list_box.rb +8 -5
- data/lib/shoes/drawables/oval.rb +48 -0
- data/lib/shoes/drawables/para.rb +106 -18
- data/lib/shoes/drawables/progress.rb +2 -1
- data/lib/shoes/drawables/radio.rb +5 -3
- data/lib/shoes/drawables/rect.rb +5 -4
- data/lib/shoes/drawables/shape.rb +2 -1
- data/lib/shoes/drawables/slot.rb +99 -8
- data/lib/shoes/drawables/stack.rb +6 -11
- data/lib/shoes/drawables/star.rb +8 -30
- data/lib/shoes/drawables/text_drawable.rb +93 -34
- data/lib/shoes/drawables/video.rb +3 -2
- data/lib/shoes/drawables/widget.rb +8 -3
- data/lib/shoes/drawables.rb +2 -1
- data/lib/shoes/errors.rb +13 -3
- data/lib/shoes/margin_helper.rb +79 -0
- data/lib/shoes.rb +4 -3
- metadata +11 -11
- data/lib/scarpe/niente/logger.rb +0 -29
- data/lib/shoes/drawables/span.rb +0 -27
- data/lib/shoes/spacing.rb +0 -9
@@ -3,23 +3,18 @@
|
|
3
3
|
class Shoes
|
4
4
|
class Stack < Shoes::Slot
|
5
5
|
include Shoes::Background
|
6
|
-
include Shoes::Border
|
7
|
-
include Shoes::Spacing
|
8
6
|
|
9
|
-
|
10
|
-
shoes_styles :width, :height, :scroll
|
7
|
+
shoes_styles :scroll
|
11
8
|
|
12
|
-
shoes_events # No Stack-specific events
|
13
|
-
|
14
|
-
def initialize(width: nil, height: nil, margin: nil, padding: nil, scroll: false, margin_top: nil, margin_bottom: nil, margin_left: nil,
|
15
|
-
margin_right: nil, **options, &block)
|
16
|
-
|
17
|
-
@options = options
|
9
|
+
shoes_events # No Stack-specific events
|
18
10
|
|
11
|
+
def initialize(*args, **kwargs, &block)
|
19
12
|
super
|
20
13
|
|
21
14
|
create_display_drawable
|
22
|
-
|
15
|
+
|
16
|
+
# Create the display-side drawable *before* running the block.
|
17
|
+
# Then child drawables have a parent to add themselves to.
|
23
18
|
Shoes::App.instance.with_slot(self, &block) if block_given?
|
24
19
|
end
|
25
20
|
end
|
data/lib/shoes/drawables/star.rb
CHANGED
@@ -8,43 +8,21 @@ class Shoes
|
|
8
8
|
shoes_style(:outer) { |val| convert_to_float(val, "outer") }
|
9
9
|
shoes_style(:inner) { |val| convert_to_float(val, "inner") }
|
10
10
|
|
11
|
-
|
11
|
+
Shoes::Drawable.drawable_default_styles[Shoes::Star][:points] = 10
|
12
|
+
Shoes::Drawable.drawable_default_styles[Shoes::Star][:outer] = 100
|
13
|
+
Shoes::Drawable.drawable_default_styles[Shoes::Star][:inner] = 50
|
12
14
|
|
13
|
-
|
15
|
+
shoes_events # No Star-specific events
|
16
|
+
|
17
|
+
init_args :left, :top
|
18
|
+
opt_init_args :points, :outer, :inner
|
19
|
+
def initialize(*args, **kwargs)
|
14
20
|
super
|
15
|
-
self.left = left
|
16
|
-
self.top = top
|
17
|
-
self.points = points
|
18
|
-
self.outer = outer
|
19
|
-
self.inner = inner
|
20
21
|
|
21
22
|
@draw_context = Shoes::App.instance.current_draw_context
|
22
23
|
|
23
24
|
create_display_drawable
|
24
25
|
end
|
25
26
|
|
26
|
-
def self.convert_to_integer(value, attribute_name)
|
27
|
-
begin
|
28
|
-
value = Integer(value)
|
29
|
-
raise Shoes::Errors::InvalidAttributeValueError, "Negative num '#{value}' not allowed for attribute '#{attribute_name}'" if value < 0
|
30
|
-
|
31
|
-
value
|
32
|
-
rescue ArgumentError
|
33
|
-
error_message = "Invalid value '#{value}' provided for attribute '#{attribute_name}'. The value should be a number."
|
34
|
-
raise Shoes::Errors::InvalidAttributeValueError, error_message
|
35
|
-
end
|
36
|
-
end
|
37
|
-
|
38
|
-
def self.convert_to_float(value, attribute_name)
|
39
|
-
begin
|
40
|
-
value = Float(value)
|
41
|
-
raise Shoes::Errors::InvalidAttributeValueError, "Negative num '#{value}' not allowed for attribute '#{attribute_name}'" if value < 0
|
42
|
-
|
43
|
-
value
|
44
|
-
rescue ArgumentError
|
45
|
-
error_message = "Invalid value '#{value}' provided for attribute '#{attribute_name}'. The value should be a number."
|
46
|
-
raise Shoes::Errors::InvalidAttributeValueError, error_message
|
47
|
-
end
|
48
|
-
end
|
49
27
|
end
|
50
28
|
end
|
@@ -4,60 +4,119 @@ class Shoes
|
|
4
4
|
# TextDrawable is the parent class of various classes of
|
5
5
|
# text that can go inside a para. This includes normal
|
6
6
|
# text, but also links, italic text, bold text, etc.
|
7
|
+
#
|
8
|
+
# In Shoes3 this corresponds to cText, and it would
|
9
|
+
# have methods app, contents, children, parent,
|
10
|
+
# style, to_s, text, text= and replace.
|
11
|
+
#
|
12
|
+
# Much of what this does and how is similar to Para.
|
13
|
+
# It's a very similar API.
|
7
14
|
class TextDrawable < Shoes::Drawable
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
15
|
+
shoes_styles :text_items, :size, :stroke, :strokewidth, :fill, :undercolor, :font
|
16
|
+
|
17
|
+
STRIKETHROUGH_VALUES = [nil, "none", "single"]
|
18
|
+
shoes_style :strikethrough do |val, _name|
|
19
|
+
unless STRIKETHROUGH_VALUES.include?(val)
|
20
|
+
raise Shoes::Errors::InvalidAttributeValueError, "Strikethrough must be one of: #{STRIKETHROUGH_VALUES.inspect}!"
|
21
|
+
end
|
22
|
+
val
|
23
|
+
end
|
24
|
+
|
25
|
+
UNDERLINE_VALUES = [nil, "none", "single", "double", "low", "error"]
|
26
|
+
shoes_style :underline do |val, _name|
|
27
|
+
unless UNDERLINE_VALUES.include?(val)
|
28
|
+
raise Shoes::Errors::InvalidAttributeValueError, "Underline must be one of: #{UNDERLINE_VALUES.inspect}!"
|
16
29
|
end
|
17
|
-
|
30
|
+
val
|
18
31
|
end
|
19
32
|
|
20
33
|
shoes_events # No TextDrawable-specific events yet
|
21
|
-
end
|
22
34
|
|
23
|
-
|
24
|
-
|
25
|
-
|
35
|
+
def initialize(*args, **kwargs)
|
36
|
+
# Don't pass text_children args to Drawable#initialize
|
37
|
+
super(*[], **kwargs)
|
26
38
|
|
27
|
-
|
28
|
-
|
29
|
-
|
39
|
+
# Text_children alternates strings and TextDrawables, so we can't just pass
|
40
|
+
# it as a Shoes style. It won't serialize.
|
41
|
+
update_text_children(args)
|
30
42
|
|
31
|
-
|
32
|
-
|
43
|
+
create_display_drawable
|
44
|
+
end
|
33
45
|
|
34
|
-
|
46
|
+
def text_children_to_items(text_children)
|
47
|
+
text_children.map { |arg| arg.is_a?(TextDrawable) ? arg.linkable_id : arg.to_s }
|
48
|
+
end
|
35
49
|
|
36
|
-
|
37
|
-
|
50
|
+
# Sets the paragraph text to a new value, which can
|
51
|
+
# include {TextDrawable}s like em(), strong(), etc.
|
52
|
+
#
|
53
|
+
# @param children [Array] the arguments can be Strings and/or TextDrawables
|
54
|
+
# @return [void]
|
55
|
+
def replace(*children)
|
56
|
+
update_text_children(children)
|
57
|
+
end
|
38
58
|
|
39
|
-
|
40
|
-
|
41
|
-
|
59
|
+
# Set the paragraph text to a single String.
|
60
|
+
# To use bold, italics, etc. use {Para#replace} instead.
|
61
|
+
#
|
62
|
+
# @param child [String] the new text to use for this Para
|
63
|
+
# @return [void]
|
64
|
+
def text=(*children)
|
65
|
+
update_text_children(children)
|
66
|
+
end
|
42
67
|
|
43
|
-
|
44
|
-
|
45
|
-
|
68
|
+
# Return the text, but not the styling, of the para's
|
69
|
+
# contents. For example, if the contents had strong
|
70
|
+
# and emphasized text, the bold and emphasized would
|
71
|
+
# be removed but the text would be returned.
|
72
|
+
#
|
73
|
+
# @return [String] the text from this para
|
74
|
+
def text
|
75
|
+
@text_children.map(&:to_s).join
|
76
|
+
end
|
46
77
|
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
78
|
+
# Return the text but not styling from the para. This
|
79
|
+
# is the same as #text.
|
80
|
+
#
|
81
|
+
# @return [String] the text from this para
|
82
|
+
def to_s
|
83
|
+
self.text
|
84
|
+
end
|
85
|
+
|
86
|
+
private
|
87
|
+
|
88
|
+
# Text_children alternates strings and TextDrawables, so we can't just pass
|
89
|
+
# it as a Shoes style. It won't serialize.
|
90
|
+
def update_text_children(children)
|
91
|
+
@text_children = children.flatten
|
92
|
+
# This should signal the display drawable to change
|
93
|
+
self.text_items = text_children_to_items(@text_children)
|
94
|
+
end
|
95
|
+
end
|
54
96
|
|
97
|
+
class << self
|
98
|
+
def default_text_drawable_with(element)
|
99
|
+
class_name = element.capitalize
|
100
|
+
|
101
|
+
drawable_class = Class.new(Shoes::TextDrawable) do
|
55
102
|
shoes_events # No specific events
|
103
|
+
|
104
|
+
init_args # We're going to pass an empty array to super
|
56
105
|
end
|
106
|
+
Shoes.const_set class_name, drawable_class
|
57
107
|
end
|
58
108
|
end
|
59
109
|
end
|
60
110
|
|
61
111
|
Shoes.default_text_drawable_with(:code)
|
112
|
+
Shoes.default_text_drawable_with(:del)
|
62
113
|
Shoes.default_text_drawable_with(:em)
|
63
114
|
Shoes.default_text_drawable_with(:strong)
|
115
|
+
Shoes.default_text_drawable_with(:span)
|
116
|
+
Shoes.default_text_drawable_with(:sub)
|
117
|
+
Shoes.default_text_drawable_with(:sup)
|
118
|
+
Shoes.default_text_drawable_with(:ins) # in Shoes3, looks like "ins" is just underline
|
119
|
+
|
120
|
+
# Defaults must come *after* classes are defined
|
121
|
+
|
122
|
+
Shoes::Drawable.drawable_default_styles[Shoes::Ins][:underline] = "single"
|
@@ -37,11 +37,16 @@
|
|
37
37
|
|
38
38
|
class Shoes::Widget < Shoes::Slot
|
39
39
|
include Shoes::Background
|
40
|
-
include Shoes::Border
|
41
|
-
include Shoes::Spacing
|
42
40
|
|
43
41
|
shoes_events
|
44
42
|
|
43
|
+
def self.inherited(subclass)
|
44
|
+
super
|
45
|
+
|
46
|
+
# Widgets are special - we can't know in advance what sort of initialize args they take
|
47
|
+
subclass.init_args :any
|
48
|
+
end
|
49
|
+
|
45
50
|
def self.method_added(name)
|
46
51
|
# We're only looking for the initialize() method, and only on subclasses
|
47
52
|
# of Shoes::Widget, not Shoes::Widget itself.
|
@@ -57,7 +62,7 @@ class Shoes::Widget < Shoes::Slot
|
|
57
62
|
@midway_through_adding_initialize = true
|
58
63
|
define_method(:initialize) do |*args, **kwargs, &block|
|
59
64
|
super(*args, **kwargs, &block)
|
60
|
-
@options = kwargs
|
65
|
+
@options = kwargs # Get rid of options?
|
61
66
|
create_display_drawable
|
62
67
|
__widget_initialize(*args, **kwargs, &block)
|
63
68
|
|
data/lib/shoes/drawables.rb
CHANGED
@@ -15,6 +15,7 @@ require "shoes/drawables/line"
|
|
15
15
|
require "shoes/drawables/rect"
|
16
16
|
require "shoes/drawables/shape"
|
17
17
|
require "shoes/drawables/star"
|
18
|
+
require "shoes/drawables/oval"
|
18
19
|
require "shoes/drawables/arrow"
|
19
20
|
|
20
21
|
require "shoes/drawables/button"
|
@@ -26,6 +27,6 @@ require "shoes/drawables/link"
|
|
26
27
|
require "shoes/drawables/list_box"
|
27
28
|
require "shoes/drawables/para"
|
28
29
|
require "shoes/drawables/radio"
|
29
|
-
require "shoes/drawables/span"
|
30
30
|
require "shoes/drawables/video"
|
31
31
|
require "shoes/drawables/progress"
|
32
|
+
require "shoes/drawables/border"
|
data/lib/shoes/errors.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
class Shoes; end
|
4
|
-
|
4
|
+
module Shoes::Errors
|
5
5
|
class InvalidAttributeValueError < Shoes::Error; end
|
6
6
|
|
7
7
|
class TooManyInstancesError < Shoes::Error; end
|
@@ -16,13 +16,23 @@ class Shoes::Errors
|
|
16
16
|
|
17
17
|
class NoSuchStyleError < Shoes::Error; end
|
18
18
|
|
19
|
-
class
|
19
|
+
class NoSuchLinkableIdError < Shoes::Error; end
|
20
20
|
|
21
21
|
class BadLinkableIdError < Shoes::Error; end
|
22
22
|
|
23
|
-
class
|
23
|
+
class UnregisteredShoesEventError < Shoes::Error; end
|
24
|
+
|
25
|
+
class BadArgumentListError < Shoes::Error; end
|
24
26
|
|
25
27
|
class SingletonError < Shoes::Error; end
|
26
28
|
|
27
29
|
class MultipleShoesSpecRunsError < Shoes::Error; end
|
30
|
+
|
31
|
+
class UnsupportedFeatureError < Shoes::Error; end
|
32
|
+
|
33
|
+
class BadFilenameError < Shoes::Error; end
|
34
|
+
|
35
|
+
class UnknownEventsForClassError < Shoes::Error; end
|
36
|
+
|
37
|
+
class DoubleRegisteredShoesEventError < Shoes::Error; end
|
28
38
|
end
|
@@ -0,0 +1,79 @@
|
|
1
|
+
module MarginHelper
|
2
|
+
|
3
|
+
def margin_parse(kwargs)
|
4
|
+
|
5
|
+
if kwargs[:margin]
|
6
|
+
|
7
|
+
if kwargs[:margin].is_a?(Numeric)
|
8
|
+
|
9
|
+
if !kwargs[:margin_top]
|
10
|
+
kwargs[:margin_top] = kwargs[:margin]
|
11
|
+
end
|
12
|
+
if !kwargs[:margin_bottom]
|
13
|
+
kwargs[:margin_bottom] = kwargs[:margin]
|
14
|
+
end
|
15
|
+
if !kwargs[:margin_left]
|
16
|
+
kwargs[:margin_left] = kwargs[:margin]
|
17
|
+
end
|
18
|
+
if !kwargs[:margin_right]
|
19
|
+
kwargs[:margin_right] = kwargs[:margin]
|
20
|
+
end
|
21
|
+
|
22
|
+
elsif kwargs[:margin].is_a?(Hash)
|
23
|
+
|
24
|
+
kwargs[:margin].each do |key,value|
|
25
|
+
kwargs[:"margin_#{key}"] = value
|
26
|
+
end
|
27
|
+
|
28
|
+
else
|
29
|
+
margin_props = kwargs[:margin].is_a?(String) ? kwargs[:margin].split(/\s+|\,|-/) : kwargs[:margin]
|
30
|
+
if margin_props.length == 1
|
31
|
+
|
32
|
+
if !kwargs[:margin_top]
|
33
|
+
kwargs[:margin_top] = margin_props[0]
|
34
|
+
end
|
35
|
+
if !kwargs[:margin_bottom]
|
36
|
+
kwargs[:margin_bottom] = margin_props[0]
|
37
|
+
end
|
38
|
+
if !kwargs[:margin_left]
|
39
|
+
kwargs[:margin_left] = margin_props[0]
|
40
|
+
end
|
41
|
+
if !kwargs[:margin_right]
|
42
|
+
kwargs[:margin_right] = margin_props[0]
|
43
|
+
end
|
44
|
+
|
45
|
+
elsif margin_props.length == 2
|
46
|
+
|
47
|
+
raise(Shoes::Errors::InvalidAttributeValueError, "Margin don't support 2-3 values as Array/string input for using 2-3 input you can use the hash input method like '{left:value, right:value, top:value, bottom:value}'")
|
48
|
+
|
49
|
+
elsif margin_props.length == 3
|
50
|
+
|
51
|
+
raise(Shoes::Errors::InvalidAttributeValueError, "Margin don't support 2-3 values as Array/string input for using 2-3 input you can use the hash input method like '{left:value,right:value,top:value,bottom:value}'")
|
52
|
+
|
53
|
+
else
|
54
|
+
|
55
|
+
if !kwargs[:margin_top]
|
56
|
+
kwargs[:margin_top] = margin_props[1]
|
57
|
+
end
|
58
|
+
if !kwargs[:margin_bottom]
|
59
|
+
kwargs[:margin_bottom] = margin_props[3]
|
60
|
+
end
|
61
|
+
if !kwargs[:margin_left]
|
62
|
+
kwargs[:margin_left] = margin_props[0]
|
63
|
+
end
|
64
|
+
if !kwargs[:margin_right]
|
65
|
+
kwargs[:margin_right] = margin_props[2]
|
66
|
+
end
|
67
|
+
|
68
|
+
end
|
69
|
+
end
|
70
|
+
kwargs[:margin] = nil
|
71
|
+
end
|
72
|
+
if kwargs["options"] && !kwargs[:margin] && !kwargs[:margin_left] && !kwargs[:margin_right] && !kwargs[:margin_top] && !kwargs[:margin_bottom]
|
73
|
+
kwargs[options].each do |key,value|
|
74
|
+
kwargs[key] = value
|
75
|
+
end
|
76
|
+
end
|
77
|
+
kwargs
|
78
|
+
end
|
79
|
+
end
|
data/lib/shoes.rb
CHANGED
@@ -37,8 +37,6 @@ require_relative "shoes/colors"
|
|
37
37
|
require_relative "shoes/builtins"
|
38
38
|
|
39
39
|
require_relative "shoes/background"
|
40
|
-
require_relative "shoes/border"
|
41
|
-
require_relative "shoes/spacing"
|
42
40
|
|
43
41
|
require_relative "shoes/drawable"
|
44
42
|
require_relative "shoes/app"
|
@@ -76,6 +74,7 @@ class Shoes
|
|
76
74
|
# @param width [Integer] The new app window width
|
77
75
|
# @param height [Integer] The new app window height
|
78
76
|
# @param resizable [Boolean] Whether the app window should be resizeable
|
77
|
+
# @param features [Symbol,Array<Symbol>] Additional Shoes extensions requested by the app
|
79
78
|
# @return [void]
|
80
79
|
# @see Shoes::App#new
|
81
80
|
def app(
|
@@ -83,9 +82,11 @@ class Shoes
|
|
83
82
|
width: 480,
|
84
83
|
height: 420,
|
85
84
|
resizable: true,
|
85
|
+
features: [],
|
86
86
|
&app_code_body
|
87
87
|
)
|
88
|
-
|
88
|
+
f = [features].flatten # Make sure this is a list, not a single symbol
|
89
|
+
app = Shoes::App.new(title:, width:, height:, resizable:, features: f, &app_code_body)
|
89
90
|
app.init
|
90
91
|
app.run
|
91
92
|
nil
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lacci
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marco Concetto Rudilosso
|
@@ -9,22 +9,22 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2024-05-06 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: scarpe-components
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- - "
|
18
|
+
- - "~>"
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version:
|
20
|
+
version: 0.4.0
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
|
-
- - "
|
25
|
+
- - "~>"
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version:
|
27
|
+
version: 0.4.0
|
28
28
|
description:
|
29
29
|
email:
|
30
30
|
- marcoc.r@outlook.com
|
@@ -43,7 +43,6 @@ files:
|
|
43
43
|
- lib/scarpe/niente/app.rb
|
44
44
|
- lib/scarpe/niente/display_service.rb
|
45
45
|
- lib/scarpe/niente/drawable.rb
|
46
|
-
- lib/scarpe/niente/logger.rb
|
47
46
|
- lib/scarpe/niente/shoes_spec.rb
|
48
47
|
- lib/shoes-spec.rb
|
49
48
|
- lib/shoes.rb
|
@@ -60,23 +59,25 @@ files:
|
|
60
59
|
- lib/shoes/drawables.rb
|
61
60
|
- lib/shoes/drawables/arc.rb
|
62
61
|
- lib/shoes/drawables/arrow.rb
|
62
|
+
- lib/shoes/drawables/border.rb
|
63
63
|
- lib/shoes/drawables/button.rb
|
64
64
|
- lib/shoes/drawables/check.rb
|
65
65
|
- lib/shoes/drawables/document_root.rb
|
66
66
|
- lib/shoes/drawables/edit_box.rb
|
67
67
|
- lib/shoes/drawables/edit_line.rb
|
68
68
|
- lib/shoes/drawables/flow.rb
|
69
|
+
- lib/shoes/drawables/font_helper.rb
|
69
70
|
- lib/shoes/drawables/image.rb
|
70
71
|
- lib/shoes/drawables/line.rb
|
71
72
|
- lib/shoes/drawables/link.rb
|
72
73
|
- lib/shoes/drawables/list_box.rb
|
74
|
+
- lib/shoes/drawables/oval.rb
|
73
75
|
- lib/shoes/drawables/para.rb
|
74
76
|
- lib/shoes/drawables/progress.rb
|
75
77
|
- lib/shoes/drawables/radio.rb
|
76
78
|
- lib/shoes/drawables/rect.rb
|
77
79
|
- lib/shoes/drawables/shape.rb
|
78
80
|
- lib/shoes/drawables/slot.rb
|
79
|
-
- lib/shoes/drawables/span.rb
|
80
81
|
- lib/shoes/drawables/stack.rb
|
81
82
|
- lib/shoes/drawables/star.rb
|
82
83
|
- lib/shoes/drawables/subscription_item.rb
|
@@ -85,14 +86,13 @@ files:
|
|
85
86
|
- lib/shoes/drawables/widget.rb
|
86
87
|
- lib/shoes/errors.rb
|
87
88
|
- lib/shoes/log.rb
|
89
|
+
- lib/shoes/margin_helper.rb
|
88
90
|
- lib/shoes/ruby_extensions.rb
|
89
|
-
- lib/shoes/spacing.rb
|
90
91
|
homepage: https://github.com/scarpe-team/scarpe
|
91
92
|
licenses:
|
92
93
|
- MIT
|
93
94
|
metadata:
|
94
95
|
homepage_uri: https://github.com/scarpe-team/scarpe
|
95
|
-
source_code_uri: https://github.com/scarpe-team/scarpe
|
96
96
|
changelog_uri: https://github.com/scarpe-team/scarpe/blob/main/CHANGELOG.md
|
97
97
|
post_install_message:
|
98
98
|
rdoc_options: []
|
@@ -109,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '0'
|
111
111
|
requirements: []
|
112
|
-
rubygems_version: 3.
|
112
|
+
rubygems_version: 3.5.3
|
113
113
|
signing_key:
|
114
114
|
specification_version: 4
|
115
115
|
summary: Lacci - a portable Shoes DSL with switchable display backends, part of Scarpe
|
data/lib/scarpe/niente/logger.rb
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require "shoes/log"
|
4
|
-
require "json"
|
5
|
-
|
6
|
-
module Niente; end
|
7
|
-
class Niente::LogImpl
|
8
|
-
include Shoes::Log # for constants
|
9
|
-
|
10
|
-
class PrintLogger
|
11
|
-
def initialize(_)
|
12
|
-
end
|
13
|
-
|
14
|
-
[:error, :warn, :debug, :info].each do |level|
|
15
|
-
define_method(level) do |msg|
|
16
|
-
puts "#{level}: #{msg}"
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
|
21
|
-
def logger_for_component(component)
|
22
|
-
PrintLogger.new(component.to_s)
|
23
|
-
end
|
24
|
-
|
25
|
-
def configure_logger(log_config)
|
26
|
-
end
|
27
|
-
end
|
28
|
-
|
29
|
-
#Shoes::Log.instance = Niente::LogImpl.new
|
data/lib/shoes/drawables/span.rb
DELETED
@@ -1,27 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
class Shoes
|
4
|
-
class Span < Shoes::Drawable
|
5
|
-
shoes_styles :text, :stroke, :size, :font, :html_attributes
|
6
|
-
shoes_events # No Span-specific events yet
|
7
|
-
|
8
|
-
def initialize(text, stroke: nil, size: :span, font: nil, **html_attributes)
|
9
|
-
super
|
10
|
-
|
11
|
-
@text = text
|
12
|
-
@stroke = stroke
|
13
|
-
@size = size
|
14
|
-
@font = font
|
15
|
-
@html_attributes = html_attributes
|
16
|
-
|
17
|
-
create_display_drawable
|
18
|
-
end
|
19
|
-
|
20
|
-
def replace(text)
|
21
|
-
@text = text
|
22
|
-
|
23
|
-
# This should signal the display drawable to change
|
24
|
-
self.text = @text
|
25
|
-
end
|
26
|
-
end
|
27
|
-
end
|