Skip to content

Commit

Permalink
remove trash files
Browse files Browse the repository at this point in the history
  • Loading branch information
Heitor-Tasso committed Feb 23, 2022
1 parent 6ba3499 commit 6802b87
Show file tree
Hide file tree
Showing 41 changed files with 13 additions and 1,335 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
*.DS_Store
*.kpf
.designer/
docs/source/_static
docs/source/_templates
docs/build/
build/
.idea

Expand Down
37 changes: 0 additions & 37 deletions .travis.yml

This file was deleted.

31 changes: 0 additions & 31 deletions Makefile

This file was deleted.

1 change: 1 addition & 0 deletions designer/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
__version__ = '0.1dev'
init_file = __file__
19 changes: 10 additions & 9 deletions designer/designer.kv
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,16 @@
#:set designer_padding '4sp'
#:set designer_text_input_height '30sp'
#:set designer_action_width 200
<DesignerButton@Button,DesignerLabel@Label>:

<DesignerButton@Button+Label>:
size_hint_y: None
height: designer_height

<DesignerButtonFit@DesignerButton>
size_hint_x: None
width: self.texture_size[0] + sp(32)

<DesignerLabelFit@DesignerLabel>:
<DesignerLabelFit@Label>:
text_size: self.width - sp(32), None

<DesignerListItemButton@ListItemButton>:
Expand Down Expand Up @@ -129,7 +130,7 @@
Label:
text_size: self.size
padding: 30, 20
text: ' Kivy Designer is Kivy\'s tool for designing Graphical User Interfaces (GUIs) from Kivy Widgets. \nYou can compose and customize widgets, and test them. It is completely written in Python using Kivy. \nKivy Designer is integrated with Buildozer and Hanga, so you can easily develop and publish your applications to Desktop and Mobile devices.'
text: " Kivy Designer is Kivy\'s tool for designing Graphical User Interfaces (GUIs) from Kivy Widgets. \nYou can compose and customize widgets, and test them. It is completely written in Python using Kivy. \nKivy Designer is integrated with Buildozer and Hanga, so you can easily develop and publish your applications to Desktop and Mobile devices.'"
font_size: '12pt'
valign: 'top'
DesignerButton:
Expand Down Expand Up @@ -215,7 +216,7 @@
text: 'Save'
on_release: root.dispatch('on_save')
DesignerButton:
text: 'Don\'t Save'
text: "Don\'t Save"
on_release: root.dispatch('on_dont_save')
DesignerButton:
text: 'Cancel'
Expand Down Expand Up @@ -819,10 +820,10 @@
padding_x: 20
canvas.after:
Color:
rgba: (47 / 255., 167 / 255., 212 / 255., 1.) if self.is_selected else (.2, .2, .2, 1)
rgba: (47/255.0, 167/255.0, 212/255.0, 1.0) if self.is_selected else (0.2, 0.2, 0.2, 1)
Rectangle:
pos: self.x + 25, self.y
size: self.width - 50, 1
pos: self.x+dp(25), self.y
size: self.width-dp(50), 1

#
# Buildozer Spec Editor
Expand Down Expand Up @@ -1623,7 +1624,7 @@
size_hint_x: None
width: 20
active: True
Label
Label:
text: 'Text'
size_hint_x: None
padding_x: 10
Expand All @@ -1633,7 +1634,7 @@
size_hint_x: None
width: 20
on_active: root.use_regex = args[1]
Label
Label:
text: 'Regex'
size_hint_x: None
padding_x: 10
Expand Down
1 change: 0 additions & 1 deletion designer/files.py

This file was deleted.

Loading

0 comments on commit 6802b87

Please sign in to comment.