diff --git a/.gitignore b/.gitignore index 72364f9..f6b0aa8 100644 --- a/.gitignore +++ b/.gitignore @@ -87,3 +87,5 @@ ENV/ # Rope project settings .ropeproject + +.DS_Store diff --git a/Texture-atlas/after_atlas/main.kv b/Texture-atlas/after_atlas/main.kv new file mode 100644 index 0000000..5cce249 --- /dev/null +++ b/Texture-atlas/after_atlas/main.kv @@ -0,0 +1,34 @@ +: + spacing: 50 + padding: 10, 10 + CustomButton: + text: "Button" + BoxLayout: + orientation: "vertical" + ProgressBar: + value: 25 + ProgressBar: + value: 50 + ProgressBar: + value: 75 + BoxLayout: + orientation: "vertical" + CustomCheckBox: + CustomCheckBox: + CustomCheckBox: + + +: + canvas: + Color: + rgb: 1, 1, 1 + BorderImage: + border: (12, 12, 12, 12) + pos: self.x, self.center_y - 12 + size: self.width, 24 + source: 'atlas://textures/red-lightgrey/myatlas/progressbar_background' + BorderImage: + border: [int(min(self.width * (self.value / float(self.max)) if self.max else 0, 12))] * 4 + pos: self.x, self.center_y - 12 + size: self.width * (self.value / float(self.max)) if self.max else 0, 24 + source: 'atlas://textures/red-lightgrey/myatlas/progressbar' diff --git a/Texture-atlas/after_atlas/main.py b/Texture-atlas/after_atlas/main.py new file mode 100644 index 0000000..be387b8 --- /dev/null +++ b/Texture-atlas/after_atlas/main.py @@ -0,0 +1,23 @@ +#!/usr/bin/env python3 + +from kivy.app import App +from kivy.uix.boxlayout import BoxLayout +from kivy.properties import OptionProperty + +from src.components import CustomButton, CustomCheckBox + + +class Theming(BoxLayout): + pass + + +class MainApp(App): + + def build(self): + self.title = 'Theming' + return Theming() + + +if __name__ == "__main__": + app = MainApp() + app.run() diff --git a/Texture-atlas/after_atlas/src/components/CustomButtons.py b/Texture-atlas/after_atlas/src/components/CustomButtons.py new file mode 100644 index 0000000..952dc87 --- /dev/null +++ b/Texture-atlas/after_atlas/src/components/CustomButtons.py @@ -0,0 +1,7 @@ +from kivy.uix.button import Button + +class CustomButton(Button): + def __init__(self, **kwargs): + super().__init__(**kwargs) + # self.background_down = 'atlas://textures/red-lightgrey/myatlas/button_pressed' + self.background_normal = 'atlas://textures/red-lightgrey/myatlas/button_pressed' diff --git a/Texture-atlas/after_atlas/src/components/CustomCheckBoxes.py b/Texture-atlas/after_atlas/src/components/CustomCheckBoxes.py new file mode 100644 index 0000000..bdfdf5d --- /dev/null +++ b/Texture-atlas/after_atlas/src/components/CustomCheckBoxes.py @@ -0,0 +1,11 @@ +from kivy.uix.checkbox import CheckBox + + +class CustomCheckBox(CheckBox): + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.background_down = 'atlas://textures/red-lightgrey/myatlas/button_pressed' + self.background_checkbox_normal = 'atlas://textures/red-lightgrey/myatlas/checkbox_off' + self.background_checkbox_down = 'atlas://textures/red-lightgrey/myatlas/checkbox_on' + self.background_checkbox_disabled_normal = 'atlas://textures/red-lightgrey/myatlas/checkbox_disabled_off' + self.background_checkbox_disabled_down = 'atlas://textures/red-lightgrey/myatlas/checkbox_disabled_on' diff --git a/Texture-atlas/after_atlas/src/components/__init__.py b/Texture-atlas/after_atlas/src/components/__init__.py new file mode 100644 index 0000000..8d0c539 --- /dev/null +++ b/Texture-atlas/after_atlas/src/components/__init__.py @@ -0,0 +1,2 @@ +from .CustomButtons import * +from .CustomCheckBoxes import * diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/action_bar.png b/Texture-atlas/after_atlas/textures/red-lightgrey/action_bar.png new file mode 100644 index 0000000..77bc386 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/action_bar.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/action_group.png b/Texture-atlas/after_atlas/textures/red-lightgrey/action_group.png new file mode 100644 index 0000000..dd44158 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/action_group.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/action_group_disabled.png b/Texture-atlas/after_atlas/textures/red-lightgrey/action_group_disabled.png new file mode 100644 index 0000000..ccb8393 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/action_group_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/action_group_down.png b/Texture-atlas/after_atlas/textures/red-lightgrey/action_group_down.png new file mode 100644 index 0000000..7fcb6f0 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/action_group_down.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/action_item.png b/Texture-atlas/after_atlas/textures/red-lightgrey/action_item.png new file mode 100644 index 0000000..4ce962d Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/action_item.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/action_item_down.png b/Texture-atlas/after_atlas/textures/red-lightgrey/action_item_down.png new file mode 100644 index 0000000..f7ebf2e Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/action_item_down.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/action_view.png b/Texture-atlas/after_atlas/textures/red-lightgrey/action_view.png new file mode 100644 index 0000000..32019f8 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/action_view.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/audio-volume-high.png b/Texture-atlas/after_atlas/textures/red-lightgrey/audio-volume-high.png new file mode 100755 index 0000000..0572299 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/audio-volume-high.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/audio-volume-low.png b/Texture-atlas/after_atlas/textures/red-lightgrey/audio-volume-low.png new file mode 100755 index 0000000..1437cf7 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/audio-volume-low.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/audio-volume-medium.png b/Texture-atlas/after_atlas/textures/red-lightgrey/audio-volume-medium.png new file mode 100755 index 0000000..023ba67 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/audio-volume-medium.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/audio-volume-muted.png b/Texture-atlas/after_atlas/textures/red-lightgrey/audio-volume-muted.png new file mode 100755 index 0000000..f50609f Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/audio-volume-muted.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/bubble.png b/Texture-atlas/after_atlas/textures/red-lightgrey/bubble.png new file mode 100644 index 0000000..879987b Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/bubble.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/bubble_arrow.png b/Texture-atlas/after_atlas/textures/red-lightgrey/bubble_arrow.png new file mode 100644 index 0000000..eafedd9 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/bubble_arrow.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/bubble_btn.png b/Texture-atlas/after_atlas/textures/red-lightgrey/bubble_btn.png new file mode 100644 index 0000000..4171565 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/bubble_btn.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/bubble_btn_pressed.png b/Texture-atlas/after_atlas/textures/red-lightgrey/bubble_btn_pressed.png new file mode 100644 index 0000000..0195f86 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/bubble_btn_pressed.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/button.png b/Texture-atlas/after_atlas/textures/red-lightgrey/button.png new file mode 100644 index 0000000..c4c449b Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/button.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/button_disabled.png b/Texture-atlas/after_atlas/textures/red-lightgrey/button_disabled.png new file mode 100644 index 0000000..fea6224 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/button_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/button_disabled_pressed.png b/Texture-atlas/after_atlas/textures/red-lightgrey/button_disabled_pressed.png new file mode 100644 index 0000000..b5aeed0 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/button_disabled_pressed.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/button_pressed.png b/Texture-atlas/after_atlas/textures/red-lightgrey/button_pressed.png new file mode 100644 index 0000000..baecd42 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/button_pressed.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_disabled_off.png b/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_disabled_off.png new file mode 100644 index 0000000..5fd8099 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_disabled_off.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_disabled_on.png b/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_disabled_on.png new file mode 100644 index 0000000..258bf4e Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_disabled_on.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_off.png b/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_off.png new file mode 100644 index 0000000..d3acfc1 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_off.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_on.png b/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_on.png new file mode 100644 index 0000000..8ac9fe9 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_on.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_radio_disabled_off.png b/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_radio_disabled_off.png new file mode 100644 index 0000000..aa2ec8f Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_radio_disabled_off.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_radio_disabled_on.png b/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_radio_disabled_on.png new file mode 100644 index 0000000..2c7159e Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_radio_disabled_on.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_radio_off.png b/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_radio_off.png new file mode 100644 index 0000000..f96d7e7 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_radio_off.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_radio_on.png b/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_radio_on.png new file mode 100644 index 0000000..ba387f8 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/checkbox_radio_on.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/close.png b/Texture-atlas/after_atlas/textures/red-lightgrey/close.png new file mode 100644 index 0000000..3dcecc0 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/close.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/filechooser_file.png b/Texture-atlas/after_atlas/textures/red-lightgrey/filechooser_file.png new file mode 100644 index 0000000..31f5bd7 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/filechooser_file.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/filechooser_folder.png b/Texture-atlas/after_atlas/textures/red-lightgrey/filechooser_folder.png new file mode 100644 index 0000000..3af7c38 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/filechooser_folder.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/filechooser_selected.png b/Texture-atlas/after_atlas/textures/red-lightgrey/filechooser_selected.png new file mode 100644 index 0000000..8ee7c7f Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/filechooser_selected.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/image-missing.png b/Texture-atlas/after_atlas/textures/red-lightgrey/image-missing.png new file mode 100644 index 0000000..e6ba992 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/image-missing.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/media-playback-pause.png b/Texture-atlas/after_atlas/textures/red-lightgrey/media-playback-pause.png new file mode 100755 index 0000000..9037e4e Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/media-playback-pause.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/media-playback-start.png b/Texture-atlas/after_atlas/textures/red-lightgrey/media-playback-start.png new file mode 100755 index 0000000..767c734 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/media-playback-start.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/media-playback-stop.png b/Texture-atlas/after_atlas/textures/red-lightgrey/media-playback-stop.png new file mode 100755 index 0000000..f885667 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/media-playback-stop.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/modalview-background.png b/Texture-atlas/after_atlas/textures/red-lightgrey/modalview-background.png new file mode 100644 index 0000000..d824da6 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/modalview-background.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/myatlas-0.png b/Texture-atlas/after_atlas/textures/red-lightgrey/myatlas-0.png new file mode 100644 index 0000000..2bfe934 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/myatlas-0.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/myatlas-1.png b/Texture-atlas/after_atlas/textures/red-lightgrey/myatlas-1.png new file mode 100644 index 0000000..c7340db Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/myatlas-1.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/myatlas-2.png b/Texture-atlas/after_atlas/textures/red-lightgrey/myatlas-2.png new file mode 100644 index 0000000..099789c Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/myatlas-2.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/myatlas-3.png b/Texture-atlas/after_atlas/textures/red-lightgrey/myatlas-3.png new file mode 100644 index 0000000..12226cd Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/myatlas-3.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/myatlas.atlas b/Texture-atlas/after_atlas/textures/red-lightgrey/myatlas.atlas new file mode 100644 index 0000000..9727b80 --- /dev/null +++ b/Texture-atlas/after_atlas/textures/red-lightgrey/myatlas.atlas @@ -0,0 +1 @@ +{"myatlas-0.png": {"filechooser_selected": [2, 132, 122, 122], "player-play-overlay": [126, 139, 117, 115], "textinput_disabled": [2, 19, 111, 111], "ring": [115, 22, 108, 108], "button": [225, 93, 29, 37], "button_disabled": [225, 54, 29, 37], "action_item": [225, 28, 24, 24]}, "myatlas-1.png": {"player-background": [2, 151, 103, 103], "bubble": [107, 189, 65, 65], "filechooser_file": [174, 190, 64, 64], "filechooser_folder": [2, 85, 64, 64], "textinput": [68, 85, 64, 64], "textinput_active": [134, 85, 64, 64], "textinput_disabled_active": [2, 19, 64, 64], "vkeyboard_background": [68, 19, 64, 64], "vkeyboard_disabled_background": [134, 19, 64, 64], "selector_left": [200, 87, 55, 62], "selector_middle": [200, 21, 55, 62], "tab": [107, 155, 96, 32], "switch-button": [205, 155, 43, 32], "splitter_down": [240, 222, 7, 32], "bubble_arrow": [240, 210, 16, 10]}, "myatlas-2.png": {"selector_right": [2, 192, 55, 62], "tab_disabled": [59, 222, 96, 32], "switch-background": [157, 222, 83, 32], "switch-background_disabled": [2, 158, 83, 32], "modalview-background": [2, 102, 45, 54], "audio-volume-high": [49, 108, 48, 48], "audio-volume-low": [99, 108, 48, 48], "audio-volume-medium": [149, 108, 48, 48], "audio-volume-muted": [199, 108, 48, 48], "image-missing": [2, 52, 48, 48], "media-playback-pause": [52, 52, 48, 48], "media-playback-start": [102, 52, 48, 48], "media-playback-stop": [152, 52, 48, 48], "slider_cursor": [202, 52, 48, 48], "slider_cursor_disabled": [2, 2, 48, 48], "action_group": [52, 2, 33, 48], "action_group_disabled": [87, 2, 33, 48], "action_group_down": [122, 2, 33, 48], "sliderh_background": [157, 13, 41, 37], "sliderh_background_disabled": [200, 13, 41, 37], "switch-button_disabled": [87, 158, 43, 32], "bubble_btn_pressed": [132, 158, 32, 32], "checkbox_disabled_off": [166, 158, 32, 32], "checkbox_disabled_on": [200, 158, 32, 32], "previous_normal": [234, 158, 19, 32], "tree_opened": [59, 200, 20, 20], "splitter_grip": [242, 228, 12, 26], "splitter_grip_h": [81, 208, 26, 12], "separator": [249, 108, 5, 48], "splitter": [243, 18, 7, 32], "splitter_disabled_down_h": [157, 4, 32, 7], "splitter_disabled_h": [191, 4, 32, 7], "splitter_down_h": [109, 213, 32, 7], "splitter_h": [143, 213, 32, 7]}, "myatlas-3.png": {"sliderv_background": [2, 213, 37, 41], "sliderv_background_disabled": [41, 213, 37, 41], "action_bar": [80, 218, 36, 36], "button_disabled_pressed": [2, 174, 29, 37], "button_pressed": [33, 174, 29, 37], "spinner": [64, 174, 29, 37], "spinner_disabled": [95, 174, 29, 37], "spinner_pressed": [126, 174, 29, 37], "action_item_down": [157, 179, 32, 32], "bubble_btn": [191, 179, 32, 32], "checkbox_off": [118, 222, 32, 32], "checkbox_on": [152, 222, 32, 32], "checkbox_radio_disabled_off": [186, 222, 32, 32], "checkbox_radio_disabled_on": [220, 222, 32, 32], "checkbox_radio_off": [2, 140, 32, 32], "checkbox_radio_on": [36, 140, 32, 32], "overflow": [70, 140, 32, 32], "tab_btn": [104, 140, 32, 32], "tab_btn_disabled": [138, 140, 32, 32], "tab_btn_disabled_pressed": [172, 140, 32, 32], "tab_btn_pressed": [206, 140, 32, 32], "vkeyboard_disabled_key_down": [2, 106, 32, 32], "vkeyboard_disabled_key_normal": [36, 106, 32, 32], "vkeyboard_key_down": [70, 106, 32, 32], "vkeyboard_key_normal": [104, 106, 32, 32], "progressbar": [138, 114, 32, 24], "action_view": [225, 187, 24, 24], "progressbar_background": [172, 114, 24, 24], "close": [198, 118, 20, 20], "tree_closed": [220, 118, 20, 20], "splitter_disabled": [240, 140, 7, 32], "splitter_disabled_down": [249, 140, 7, 32]}} \ No newline at end of file diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/overflow.png b/Texture-atlas/after_atlas/textures/red-lightgrey/overflow.png new file mode 100755 index 0000000..afbc8d0 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/overflow.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/player-background.png b/Texture-atlas/after_atlas/textures/red-lightgrey/player-background.png new file mode 100644 index 0000000..daffa93 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/player-background.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/player-play-overlay.png b/Texture-atlas/after_atlas/textures/red-lightgrey/player-play-overlay.png new file mode 100644 index 0000000..9f2ee0a Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/player-play-overlay.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/previous_normal.png b/Texture-atlas/after_atlas/textures/red-lightgrey/previous_normal.png new file mode 100644 index 0000000..9828055 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/previous_normal.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/progressbar.png b/Texture-atlas/after_atlas/textures/red-lightgrey/progressbar.png new file mode 100644 index 0000000..0b7c3dd Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/progressbar.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/progressbar_background.png b/Texture-atlas/after_atlas/textures/red-lightgrey/progressbar_background.png new file mode 100644 index 0000000..c6a76a0 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/progressbar_background.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/ring.png b/Texture-atlas/after_atlas/textures/red-lightgrey/ring.png new file mode 100644 index 0000000..bbbdcaa Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/ring.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/selector_left.png b/Texture-atlas/after_atlas/textures/red-lightgrey/selector_left.png new file mode 100644 index 0000000..e470378 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/selector_left.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/selector_middle.png b/Texture-atlas/after_atlas/textures/red-lightgrey/selector_middle.png new file mode 100644 index 0000000..1a409bd Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/selector_middle.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/selector_right.png b/Texture-atlas/after_atlas/textures/red-lightgrey/selector_right.png new file mode 100644 index 0000000..9510d9d Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/selector_right.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/separator.png b/Texture-atlas/after_atlas/textures/red-lightgrey/separator.png new file mode 100755 index 0000000..f8c863b Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/separator.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/slider_cursor.png b/Texture-atlas/after_atlas/textures/red-lightgrey/slider_cursor.png new file mode 100644 index 0000000..ec18fac Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/slider_cursor.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/slider_cursor_disabled.png b/Texture-atlas/after_atlas/textures/red-lightgrey/slider_cursor_disabled.png new file mode 100644 index 0000000..564d195 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/slider_cursor_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/sliderh_background.png b/Texture-atlas/after_atlas/textures/red-lightgrey/sliderh_background.png new file mode 100644 index 0000000..1cbffdb Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/sliderh_background.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/sliderh_background_disabled.png b/Texture-atlas/after_atlas/textures/red-lightgrey/sliderh_background_disabled.png new file mode 100644 index 0000000..9974ed1 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/sliderh_background_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/sliderv_background.png b/Texture-atlas/after_atlas/textures/red-lightgrey/sliderv_background.png new file mode 100644 index 0000000..ccc7ae8 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/sliderv_background.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/sliderv_background_disabled.png b/Texture-atlas/after_atlas/textures/red-lightgrey/sliderv_background_disabled.png new file mode 100644 index 0000000..62491cf Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/sliderv_background_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/spinner.png b/Texture-atlas/after_atlas/textures/red-lightgrey/spinner.png new file mode 100644 index 0000000..f4f2518 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/spinner.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/spinner_disabled.png b/Texture-atlas/after_atlas/textures/red-lightgrey/spinner_disabled.png new file mode 100644 index 0000000..015c247 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/spinner_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/spinner_pressed.png b/Texture-atlas/after_atlas/textures/red-lightgrey/spinner_pressed.png new file mode 100644 index 0000000..95ce655 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/spinner_pressed.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/splitter.png b/Texture-atlas/after_atlas/textures/red-lightgrey/splitter.png new file mode 100644 index 0000000..4a1f8e5 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/splitter.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_disabled.png b/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_disabled.png new file mode 100644 index 0000000..e6142d9 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_disabled_down.png b/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_disabled_down.png new file mode 100644 index 0000000..008d2d2 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_disabled_down.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_disabled_down_h.png b/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_disabled_down_h.png new file mode 100644 index 0000000..6baf85c Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_disabled_down_h.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_disabled_h.png b/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_disabled_h.png new file mode 100644 index 0000000..f46235d Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_disabled_h.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_down.png b/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_down.png new file mode 100644 index 0000000..fcedb96 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_down.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_down_h.png b/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_down_h.png new file mode 100644 index 0000000..6c19de6 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_down_h.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_grip.png b/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_grip.png new file mode 100644 index 0000000..201b629 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_grip.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_grip_h.png b/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_grip_h.png new file mode 100644 index 0000000..fbbfdaf Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_grip_h.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_h.png b/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_h.png new file mode 100644 index 0000000..d1d1f75 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/splitter_h.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/switch-background.png b/Texture-atlas/after_atlas/textures/red-lightgrey/switch-background.png new file mode 100644 index 0000000..81d1a36 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/switch-background.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/switch-background_disabled.png b/Texture-atlas/after_atlas/textures/red-lightgrey/switch-background_disabled.png new file mode 100644 index 0000000..9436896 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/switch-background_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/switch-button.png b/Texture-atlas/after_atlas/textures/red-lightgrey/switch-button.png new file mode 100644 index 0000000..7cd8439 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/switch-button.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/switch-button_disabled.png b/Texture-atlas/after_atlas/textures/red-lightgrey/switch-button_disabled.png new file mode 100644 index 0000000..7121d58 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/switch-button_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/tab.png b/Texture-atlas/after_atlas/textures/red-lightgrey/tab.png new file mode 100644 index 0000000..2a7bc06 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/tab.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/tab_btn.png b/Texture-atlas/after_atlas/textures/red-lightgrey/tab_btn.png new file mode 100644 index 0000000..8b57adb Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/tab_btn.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/tab_btn_disabled.png b/Texture-atlas/after_atlas/textures/red-lightgrey/tab_btn_disabled.png new file mode 100644 index 0000000..3ca1492 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/tab_btn_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/tab_btn_disabled_pressed.png b/Texture-atlas/after_atlas/textures/red-lightgrey/tab_btn_disabled_pressed.png new file mode 100644 index 0000000..5f76100 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/tab_btn_disabled_pressed.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/tab_btn_pressed.png b/Texture-atlas/after_atlas/textures/red-lightgrey/tab_btn_pressed.png new file mode 100644 index 0000000..4dcc31d Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/tab_btn_pressed.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/tab_disabled.png b/Texture-atlas/after_atlas/textures/red-lightgrey/tab_disabled.png new file mode 100644 index 0000000..958d5f3 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/tab_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/textinput.png b/Texture-atlas/after_atlas/textures/red-lightgrey/textinput.png new file mode 100644 index 0000000..74d3f60 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/textinput.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/textinput_active.png b/Texture-atlas/after_atlas/textures/red-lightgrey/textinput_active.png new file mode 100644 index 0000000..2b08c25 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/textinput_active.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/textinput_disabled.png b/Texture-atlas/after_atlas/textures/red-lightgrey/textinput_disabled.png new file mode 100644 index 0000000..2142820 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/textinput_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/textinput_disabled_active.png b/Texture-atlas/after_atlas/textures/red-lightgrey/textinput_disabled_active.png new file mode 100644 index 0000000..536028b Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/textinput_disabled_active.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/tree_closed.png b/Texture-atlas/after_atlas/textures/red-lightgrey/tree_closed.png new file mode 100644 index 0000000..a8154d2 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/tree_closed.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/tree_opened.png b/Texture-atlas/after_atlas/textures/red-lightgrey/tree_opened.png new file mode 100644 index 0000000..970fd6f Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/tree_opened.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/vkeyboard_background.png b/Texture-atlas/after_atlas/textures/red-lightgrey/vkeyboard_background.png new file mode 100644 index 0000000..8bbfda3 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/vkeyboard_background.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/vkeyboard_disabled_background.png b/Texture-atlas/after_atlas/textures/red-lightgrey/vkeyboard_disabled_background.png new file mode 100644 index 0000000..10ab1c4 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/vkeyboard_disabled_background.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/vkeyboard_disabled_key_down.png b/Texture-atlas/after_atlas/textures/red-lightgrey/vkeyboard_disabled_key_down.png new file mode 100644 index 0000000..eee5155 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/vkeyboard_disabled_key_down.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/vkeyboard_disabled_key_normal.png b/Texture-atlas/after_atlas/textures/red-lightgrey/vkeyboard_disabled_key_normal.png new file mode 100644 index 0000000..562aded Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/vkeyboard_disabled_key_normal.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/vkeyboard_key_down.png b/Texture-atlas/after_atlas/textures/red-lightgrey/vkeyboard_key_down.png new file mode 100644 index 0000000..5659cd6 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/vkeyboard_key_down.png differ diff --git a/Texture-atlas/after_atlas/textures/red-lightgrey/vkeyboard_key_normal.png b/Texture-atlas/after_atlas/textures/red-lightgrey/vkeyboard_key_normal.png new file mode 100644 index 0000000..5d062a0 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/red-lightgrey/vkeyboard_key_normal.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/action_bar.png b/Texture-atlas/after_atlas/textures/theme-blue/action_bar.png new file mode 100644 index 0000000..058c376 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/action_bar.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/action_group.png b/Texture-atlas/after_atlas/textures/theme-blue/action_group.png new file mode 100644 index 0000000..bf548cc Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/action_group.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/action_group_disabled.png b/Texture-atlas/after_atlas/textures/theme-blue/action_group_disabled.png new file mode 100644 index 0000000..571b1fb Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/action_group_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/action_group_down.png b/Texture-atlas/after_atlas/textures/theme-blue/action_group_down.png new file mode 100644 index 0000000..6b508bc Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/action_group_down.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/action_item.png b/Texture-atlas/after_atlas/textures/theme-blue/action_item.png new file mode 100644 index 0000000..4ce962d Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/action_item.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/action_item_down.png b/Texture-atlas/after_atlas/textures/theme-blue/action_item_down.png new file mode 100644 index 0000000..da79cfc Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/action_item_down.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/action_view.png b/Texture-atlas/after_atlas/textures/theme-blue/action_view.png new file mode 100644 index 0000000..32019f8 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/action_view.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/audio-volume-high.png b/Texture-atlas/after_atlas/textures/theme-blue/audio-volume-high.png new file mode 100755 index 0000000..1240349 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/audio-volume-high.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/audio-volume-low.png b/Texture-atlas/after_atlas/textures/theme-blue/audio-volume-low.png new file mode 100755 index 0000000..ac692fa Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/audio-volume-low.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/audio-volume-medium.png b/Texture-atlas/after_atlas/textures/theme-blue/audio-volume-medium.png new file mode 100755 index 0000000..dbd9698 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/audio-volume-medium.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/audio-volume-muted.png b/Texture-atlas/after_atlas/textures/theme-blue/audio-volume-muted.png new file mode 100755 index 0000000..38b025b Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/audio-volume-muted.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/bubble.png b/Texture-atlas/after_atlas/textures/theme-blue/bubble.png new file mode 100644 index 0000000..f7222eb Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/bubble.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/bubble_arrow.png b/Texture-atlas/after_atlas/textures/theme-blue/bubble_arrow.png new file mode 100644 index 0000000..6564d07 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/bubble_arrow.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/bubble_btn.png b/Texture-atlas/after_atlas/textures/theme-blue/bubble_btn.png new file mode 100644 index 0000000..4171565 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/bubble_btn.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/bubble_btn_pressed.png b/Texture-atlas/after_atlas/textures/theme-blue/bubble_btn_pressed.png new file mode 100644 index 0000000..0195f86 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/bubble_btn_pressed.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/button.png b/Texture-atlas/after_atlas/textures/theme-blue/button.png new file mode 100644 index 0000000..d31bb02 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/button.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/button_disabled.png b/Texture-atlas/after_atlas/textures/theme-blue/button_disabled.png new file mode 100644 index 0000000..1a2827a Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/button_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/button_disabled_pressed.png b/Texture-atlas/after_atlas/textures/theme-blue/button_disabled_pressed.png new file mode 100644 index 0000000..29ab6fe Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/button_disabled_pressed.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/button_pressed.png b/Texture-atlas/after_atlas/textures/theme-blue/button_pressed.png new file mode 100644 index 0000000..ded0aca Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/button_pressed.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/checkbox_disabled_off.png b/Texture-atlas/after_atlas/textures/theme-blue/checkbox_disabled_off.png new file mode 100644 index 0000000..5fd8099 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/checkbox_disabled_off.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/checkbox_disabled_on.png b/Texture-atlas/after_atlas/textures/theme-blue/checkbox_disabled_on.png new file mode 100644 index 0000000..258bf4e Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/checkbox_disabled_on.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/checkbox_off.png b/Texture-atlas/after_atlas/textures/theme-blue/checkbox_off.png new file mode 100644 index 0000000..d3acfc1 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/checkbox_off.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/checkbox_on.png b/Texture-atlas/after_atlas/textures/theme-blue/checkbox_on.png new file mode 100644 index 0000000..2e04abd Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/checkbox_on.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/checkbox_radio_disabled_off.png b/Texture-atlas/after_atlas/textures/theme-blue/checkbox_radio_disabled_off.png new file mode 100644 index 0000000..aa2ec8f Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/checkbox_radio_disabled_off.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/checkbox_radio_disabled_on.png b/Texture-atlas/after_atlas/textures/theme-blue/checkbox_radio_disabled_on.png new file mode 100644 index 0000000..5673754 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/checkbox_radio_disabled_on.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/checkbox_radio_off.png b/Texture-atlas/after_atlas/textures/theme-blue/checkbox_radio_off.png new file mode 100644 index 0000000..5066669 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/checkbox_radio_off.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/checkbox_radio_on.png b/Texture-atlas/after_atlas/textures/theme-blue/checkbox_radio_on.png new file mode 100644 index 0000000..d02f8f7 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/checkbox_radio_on.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/close.png b/Texture-atlas/after_atlas/textures/theme-blue/close.png new file mode 100644 index 0000000..de5f3b1 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/close.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/filechooser_file.png b/Texture-atlas/after_atlas/textures/theme-blue/filechooser_file.png new file mode 100644 index 0000000..162f35d Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/filechooser_file.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/filechooser_folder.png b/Texture-atlas/after_atlas/textures/theme-blue/filechooser_folder.png new file mode 100644 index 0000000..ad0b8e1 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/filechooser_folder.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/filechooser_selected.png b/Texture-atlas/after_atlas/textures/theme-blue/filechooser_selected.png new file mode 100644 index 0000000..8634717 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/filechooser_selected.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/image-missing.png b/Texture-atlas/after_atlas/textures/theme-blue/image-missing.png new file mode 100644 index 0000000..e6ba992 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/image-missing.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/media-playback-pause.png b/Texture-atlas/after_atlas/textures/theme-blue/media-playback-pause.png new file mode 100755 index 0000000..9037e4e Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/media-playback-pause.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/media-playback-start.png b/Texture-atlas/after_atlas/textures/theme-blue/media-playback-start.png new file mode 100755 index 0000000..767c734 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/media-playback-start.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/media-playback-stop.png b/Texture-atlas/after_atlas/textures/theme-blue/media-playback-stop.png new file mode 100755 index 0000000..f885667 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/media-playback-stop.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/modalview-background.png b/Texture-atlas/after_atlas/textures/theme-blue/modalview-background.png new file mode 100644 index 0000000..5d203f4 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/modalview-background.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/myatlas-0.png b/Texture-atlas/after_atlas/textures/theme-blue/myatlas-0.png new file mode 100644 index 0000000..a80b1d0 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/myatlas-0.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/myatlas-1.png b/Texture-atlas/after_atlas/textures/theme-blue/myatlas-1.png new file mode 100644 index 0000000..9ccb1f9 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/myatlas-1.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/myatlas-2.png b/Texture-atlas/after_atlas/textures/theme-blue/myatlas-2.png new file mode 100644 index 0000000..267045c Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/myatlas-2.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/myatlas-3.png b/Texture-atlas/after_atlas/textures/theme-blue/myatlas-3.png new file mode 100644 index 0000000..cdb30a6 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/myatlas-3.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/myatlas.atlas b/Texture-atlas/after_atlas/textures/theme-blue/myatlas.atlas new file mode 100644 index 0000000..9727b80 --- /dev/null +++ b/Texture-atlas/after_atlas/textures/theme-blue/myatlas.atlas @@ -0,0 +1 @@ +{"myatlas-0.png": {"filechooser_selected": [2, 132, 122, 122], "player-play-overlay": [126, 139, 117, 115], "textinput_disabled": [2, 19, 111, 111], "ring": [115, 22, 108, 108], "button": [225, 93, 29, 37], "button_disabled": [225, 54, 29, 37], "action_item": [225, 28, 24, 24]}, "myatlas-1.png": {"player-background": [2, 151, 103, 103], "bubble": [107, 189, 65, 65], "filechooser_file": [174, 190, 64, 64], "filechooser_folder": [2, 85, 64, 64], "textinput": [68, 85, 64, 64], "textinput_active": [134, 85, 64, 64], "textinput_disabled_active": [2, 19, 64, 64], "vkeyboard_background": [68, 19, 64, 64], "vkeyboard_disabled_background": [134, 19, 64, 64], "selector_left": [200, 87, 55, 62], "selector_middle": [200, 21, 55, 62], "tab": [107, 155, 96, 32], "switch-button": [205, 155, 43, 32], "splitter_down": [240, 222, 7, 32], "bubble_arrow": [240, 210, 16, 10]}, "myatlas-2.png": {"selector_right": [2, 192, 55, 62], "tab_disabled": [59, 222, 96, 32], "switch-background": [157, 222, 83, 32], "switch-background_disabled": [2, 158, 83, 32], "modalview-background": [2, 102, 45, 54], "audio-volume-high": [49, 108, 48, 48], "audio-volume-low": [99, 108, 48, 48], "audio-volume-medium": [149, 108, 48, 48], "audio-volume-muted": [199, 108, 48, 48], "image-missing": [2, 52, 48, 48], "media-playback-pause": [52, 52, 48, 48], "media-playback-start": [102, 52, 48, 48], "media-playback-stop": [152, 52, 48, 48], "slider_cursor": [202, 52, 48, 48], "slider_cursor_disabled": [2, 2, 48, 48], "action_group": [52, 2, 33, 48], "action_group_disabled": [87, 2, 33, 48], "action_group_down": [122, 2, 33, 48], "sliderh_background": [157, 13, 41, 37], "sliderh_background_disabled": [200, 13, 41, 37], "switch-button_disabled": [87, 158, 43, 32], "bubble_btn_pressed": [132, 158, 32, 32], "checkbox_disabled_off": [166, 158, 32, 32], "checkbox_disabled_on": [200, 158, 32, 32], "previous_normal": [234, 158, 19, 32], "tree_opened": [59, 200, 20, 20], "splitter_grip": [242, 228, 12, 26], "splitter_grip_h": [81, 208, 26, 12], "separator": [249, 108, 5, 48], "splitter": [243, 18, 7, 32], "splitter_disabled_down_h": [157, 4, 32, 7], "splitter_disabled_h": [191, 4, 32, 7], "splitter_down_h": [109, 213, 32, 7], "splitter_h": [143, 213, 32, 7]}, "myatlas-3.png": {"sliderv_background": [2, 213, 37, 41], "sliderv_background_disabled": [41, 213, 37, 41], "action_bar": [80, 218, 36, 36], "button_disabled_pressed": [2, 174, 29, 37], "button_pressed": [33, 174, 29, 37], "spinner": [64, 174, 29, 37], "spinner_disabled": [95, 174, 29, 37], "spinner_pressed": [126, 174, 29, 37], "action_item_down": [157, 179, 32, 32], "bubble_btn": [191, 179, 32, 32], "checkbox_off": [118, 222, 32, 32], "checkbox_on": [152, 222, 32, 32], "checkbox_radio_disabled_off": [186, 222, 32, 32], "checkbox_radio_disabled_on": [220, 222, 32, 32], "checkbox_radio_off": [2, 140, 32, 32], "checkbox_radio_on": [36, 140, 32, 32], "overflow": [70, 140, 32, 32], "tab_btn": [104, 140, 32, 32], "tab_btn_disabled": [138, 140, 32, 32], "tab_btn_disabled_pressed": [172, 140, 32, 32], "tab_btn_pressed": [206, 140, 32, 32], "vkeyboard_disabled_key_down": [2, 106, 32, 32], "vkeyboard_disabled_key_normal": [36, 106, 32, 32], "vkeyboard_key_down": [70, 106, 32, 32], "vkeyboard_key_normal": [104, 106, 32, 32], "progressbar": [138, 114, 32, 24], "action_view": [225, 187, 24, 24], "progressbar_background": [172, 114, 24, 24], "close": [198, 118, 20, 20], "tree_closed": [220, 118, 20, 20], "splitter_disabled": [240, 140, 7, 32], "splitter_disabled_down": [249, 140, 7, 32]}} \ No newline at end of file diff --git a/Texture-atlas/after_atlas/textures/theme-blue/overflow.png b/Texture-atlas/after_atlas/textures/theme-blue/overflow.png new file mode 100755 index 0000000..21320a7 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/overflow.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/player-background.png b/Texture-atlas/after_atlas/textures/theme-blue/player-background.png new file mode 100644 index 0000000..74c447e Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/player-background.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/player-play-overlay.png b/Texture-atlas/after_atlas/textures/theme-blue/player-play-overlay.png new file mode 100644 index 0000000..9f2ee0a Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/player-play-overlay.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/previous_normal.png b/Texture-atlas/after_atlas/textures/theme-blue/previous_normal.png new file mode 100644 index 0000000..9828055 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/previous_normal.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/progressbar.png b/Texture-atlas/after_atlas/textures/theme-blue/progressbar.png new file mode 100644 index 0000000..6189663 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/progressbar.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/progressbar_background.png b/Texture-atlas/after_atlas/textures/theme-blue/progressbar_background.png new file mode 100644 index 0000000..d27d984 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/progressbar_background.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/ring.png b/Texture-atlas/after_atlas/textures/theme-blue/ring.png new file mode 100644 index 0000000..bbbdcaa Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/ring.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/selector_left.png b/Texture-atlas/after_atlas/textures/theme-blue/selector_left.png new file mode 100644 index 0000000..88129b9 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/selector_left.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/selector_middle.png b/Texture-atlas/after_atlas/textures/theme-blue/selector_middle.png new file mode 100644 index 0000000..e2d5e2a Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/selector_middle.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/selector_right.png b/Texture-atlas/after_atlas/textures/theme-blue/selector_right.png new file mode 100644 index 0000000..9c64518 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/selector_right.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/separator.png b/Texture-atlas/after_atlas/textures/theme-blue/separator.png new file mode 100755 index 0000000..b92274f Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/separator.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/slider_cursor.png b/Texture-atlas/after_atlas/textures/theme-blue/slider_cursor.png new file mode 100644 index 0000000..3e5b683 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/slider_cursor.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/slider_cursor_disabled.png b/Texture-atlas/after_atlas/textures/theme-blue/slider_cursor_disabled.png new file mode 100644 index 0000000..4dd0826 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/slider_cursor_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/sliderh_background.png b/Texture-atlas/after_atlas/textures/theme-blue/sliderh_background.png new file mode 100644 index 0000000..1cbffdb Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/sliderh_background.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/sliderh_background_disabled.png b/Texture-atlas/after_atlas/textures/theme-blue/sliderh_background_disabled.png new file mode 100644 index 0000000..9974ed1 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/sliderh_background_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/sliderv_background.png b/Texture-atlas/after_atlas/textures/theme-blue/sliderv_background.png new file mode 100644 index 0000000..ccc7ae8 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/sliderv_background.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/sliderv_background_disabled.png b/Texture-atlas/after_atlas/textures/theme-blue/sliderv_background_disabled.png new file mode 100644 index 0000000..62491cf Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/sliderv_background_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/spinner.png b/Texture-atlas/after_atlas/textures/theme-blue/spinner.png new file mode 100644 index 0000000..986bc8f Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/spinner.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/spinner_disabled.png b/Texture-atlas/after_atlas/textures/theme-blue/spinner_disabled.png new file mode 100644 index 0000000..455edc5 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/spinner_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/spinner_pressed.png b/Texture-atlas/after_atlas/textures/theme-blue/spinner_pressed.png new file mode 100644 index 0000000..02a2510 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/spinner_pressed.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/splitter.png b/Texture-atlas/after_atlas/textures/theme-blue/splitter.png new file mode 100644 index 0000000..de6256b Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/splitter.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/splitter_disabled.png b/Texture-atlas/after_atlas/textures/theme-blue/splitter_disabled.png new file mode 100644 index 0000000..0ec48bc Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/splitter_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/splitter_disabled_down.png b/Texture-atlas/after_atlas/textures/theme-blue/splitter_disabled_down.png new file mode 100644 index 0000000..a882622 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/splitter_disabled_down.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/splitter_disabled_down_h.png b/Texture-atlas/after_atlas/textures/theme-blue/splitter_disabled_down_h.png new file mode 100644 index 0000000..f7faa44 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/splitter_disabled_down_h.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/splitter_disabled_h.png b/Texture-atlas/after_atlas/textures/theme-blue/splitter_disabled_h.png new file mode 100644 index 0000000..a60ac8c Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/splitter_disabled_h.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/splitter_down.png b/Texture-atlas/after_atlas/textures/theme-blue/splitter_down.png new file mode 100644 index 0000000..c1d989a Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/splitter_down.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/splitter_down_h.png b/Texture-atlas/after_atlas/textures/theme-blue/splitter_down_h.png new file mode 100644 index 0000000..f7bd313 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/splitter_down_h.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/splitter_grip.png b/Texture-atlas/after_atlas/textures/theme-blue/splitter_grip.png new file mode 100644 index 0000000..acee7a4 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/splitter_grip.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/splitter_grip_h.png b/Texture-atlas/after_atlas/textures/theme-blue/splitter_grip_h.png new file mode 100644 index 0000000..ffaf91e Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/splitter_grip_h.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/splitter_h.png b/Texture-atlas/after_atlas/textures/theme-blue/splitter_h.png new file mode 100644 index 0000000..36e7ab1 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/splitter_h.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/switch-background.png b/Texture-atlas/after_atlas/textures/theme-blue/switch-background.png new file mode 100644 index 0000000..7d2e7a3 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/switch-background.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/switch-background_disabled.png b/Texture-atlas/after_atlas/textures/theme-blue/switch-background_disabled.png new file mode 100644 index 0000000..458104c Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/switch-background_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/switch-button.png b/Texture-atlas/after_atlas/textures/theme-blue/switch-button.png new file mode 100644 index 0000000..36a056a Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/switch-button.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/switch-button_disabled.png b/Texture-atlas/after_atlas/textures/theme-blue/switch-button_disabled.png new file mode 100644 index 0000000..77e251c Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/switch-button_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/tab.png b/Texture-atlas/after_atlas/textures/theme-blue/tab.png new file mode 100644 index 0000000..f9f40de Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/tab.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/tab_btn.png b/Texture-atlas/after_atlas/textures/theme-blue/tab_btn.png new file mode 100644 index 0000000..7731a53 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/tab_btn.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/tab_btn_disabled.png b/Texture-atlas/after_atlas/textures/theme-blue/tab_btn_disabled.png new file mode 100644 index 0000000..565e2e2 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/tab_btn_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/tab_btn_disabled_pressed.png b/Texture-atlas/after_atlas/textures/theme-blue/tab_btn_disabled_pressed.png new file mode 100644 index 0000000..54e8f51 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/tab_btn_disabled_pressed.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/tab_btn_pressed.png b/Texture-atlas/after_atlas/textures/theme-blue/tab_btn_pressed.png new file mode 100644 index 0000000..66ee679 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/tab_btn_pressed.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/tab_disabled.png b/Texture-atlas/after_atlas/textures/theme-blue/tab_disabled.png new file mode 100644 index 0000000..497bc99 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/tab_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/textinput.png b/Texture-atlas/after_atlas/textures/theme-blue/textinput.png new file mode 100644 index 0000000..74d3f60 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/textinput.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/textinput_active.png b/Texture-atlas/after_atlas/textures/theme-blue/textinput_active.png new file mode 100644 index 0000000..5c082f3 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/textinput_active.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/textinput_disabled.png b/Texture-atlas/after_atlas/textures/theme-blue/textinput_disabled.png new file mode 100644 index 0000000..2142820 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/textinput_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/textinput_disabled_active.png b/Texture-atlas/after_atlas/textures/theme-blue/textinput_disabled_active.png new file mode 100644 index 0000000..536028b Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/textinput_disabled_active.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/tree_closed.png b/Texture-atlas/after_atlas/textures/theme-blue/tree_closed.png new file mode 100644 index 0000000..2408f57 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/tree_closed.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/tree_opened.png b/Texture-atlas/after_atlas/textures/theme-blue/tree_opened.png new file mode 100644 index 0000000..cbc8efc Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/tree_opened.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/vkeyboard_background.png b/Texture-atlas/after_atlas/textures/theme-blue/vkeyboard_background.png new file mode 100644 index 0000000..6c7ff49 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/vkeyboard_background.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/vkeyboard_disabled_background.png b/Texture-atlas/after_atlas/textures/theme-blue/vkeyboard_disabled_background.png new file mode 100644 index 0000000..a4c943f Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/vkeyboard_disabled_background.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/vkeyboard_disabled_key_down.png b/Texture-atlas/after_atlas/textures/theme-blue/vkeyboard_disabled_key_down.png new file mode 100644 index 0000000..c9137a8 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/vkeyboard_disabled_key_down.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/vkeyboard_disabled_key_normal.png b/Texture-atlas/after_atlas/textures/theme-blue/vkeyboard_disabled_key_normal.png new file mode 100644 index 0000000..38e300a Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/vkeyboard_disabled_key_normal.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/vkeyboard_key_down.png b/Texture-atlas/after_atlas/textures/theme-blue/vkeyboard_key_down.png new file mode 100644 index 0000000..773d481 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/vkeyboard_key_down.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-blue/vkeyboard_key_normal.png b/Texture-atlas/after_atlas/textures/theme-blue/vkeyboard_key_normal.png new file mode 100644 index 0000000..67eb7e3 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-blue/vkeyboard_key_normal.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/action_bar.png b/Texture-atlas/after_atlas/textures/theme-orange/action_bar.png new file mode 100644 index 0000000..505f9cb Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/action_bar.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/action_group.png b/Texture-atlas/after_atlas/textures/theme-orange/action_group.png new file mode 100644 index 0000000..bf548cc Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/action_group.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/action_group_disabled.png b/Texture-atlas/after_atlas/textures/theme-orange/action_group_disabled.png new file mode 100644 index 0000000..571b1fb Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/action_group_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/action_group_down.png b/Texture-atlas/after_atlas/textures/theme-orange/action_group_down.png new file mode 100644 index 0000000..15ead4b Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/action_group_down.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/action_item.png b/Texture-atlas/after_atlas/textures/theme-orange/action_item.png new file mode 100644 index 0000000..4ce962d Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/action_item.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/action_item_down.png b/Texture-atlas/after_atlas/textures/theme-orange/action_item_down.png new file mode 100644 index 0000000..7cd3c86 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/action_item_down.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/action_view.png b/Texture-atlas/after_atlas/textures/theme-orange/action_view.png new file mode 100644 index 0000000..32019f8 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/action_view.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/audio-volume-high.png b/Texture-atlas/after_atlas/textures/theme-orange/audio-volume-high.png new file mode 100755 index 0000000..c783447 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/audio-volume-high.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/audio-volume-low.png b/Texture-atlas/after_atlas/textures/theme-orange/audio-volume-low.png new file mode 100755 index 0000000..aaac36f Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/audio-volume-low.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/audio-volume-medium.png b/Texture-atlas/after_atlas/textures/theme-orange/audio-volume-medium.png new file mode 100755 index 0000000..4059a8a Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/audio-volume-medium.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/audio-volume-muted.png b/Texture-atlas/after_atlas/textures/theme-orange/audio-volume-muted.png new file mode 100755 index 0000000..f50609f Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/audio-volume-muted.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/bubble.png b/Texture-atlas/after_atlas/textures/theme-orange/bubble.png new file mode 100644 index 0000000..6481dac Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/bubble.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/bubble_arrow.png b/Texture-atlas/after_atlas/textures/theme-orange/bubble_arrow.png new file mode 100644 index 0000000..9250266 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/bubble_arrow.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/bubble_btn.png b/Texture-atlas/after_atlas/textures/theme-orange/bubble_btn.png new file mode 100644 index 0000000..4171565 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/bubble_btn.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/bubble_btn_pressed.png b/Texture-atlas/after_atlas/textures/theme-orange/bubble_btn_pressed.png new file mode 100644 index 0000000..0195f86 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/bubble_btn_pressed.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/button.png b/Texture-atlas/after_atlas/textures/theme-orange/button.png new file mode 100644 index 0000000..4399c92 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/button.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/button_disabled.png b/Texture-atlas/after_atlas/textures/theme-orange/button_disabled.png new file mode 100644 index 0000000..ebe14cf Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/button_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/button_disabled_pressed.png b/Texture-atlas/after_atlas/textures/theme-orange/button_disabled_pressed.png new file mode 100644 index 0000000..4e985a7 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/button_disabled_pressed.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/button_pressed.png b/Texture-atlas/after_atlas/textures/theme-orange/button_pressed.png new file mode 100644 index 0000000..c8db7c5 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/button_pressed.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/checkbox_disabled_off.png b/Texture-atlas/after_atlas/textures/theme-orange/checkbox_disabled_off.png new file mode 100644 index 0000000..5fd8099 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/checkbox_disabled_off.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/checkbox_disabled_on.png b/Texture-atlas/after_atlas/textures/theme-orange/checkbox_disabled_on.png new file mode 100644 index 0000000..258bf4e Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/checkbox_disabled_on.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/checkbox_off.png b/Texture-atlas/after_atlas/textures/theme-orange/checkbox_off.png new file mode 100644 index 0000000..d3acfc1 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/checkbox_off.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/checkbox_on.png b/Texture-atlas/after_atlas/textures/theme-orange/checkbox_on.png new file mode 100644 index 0000000..5dc65e8 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/checkbox_on.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/checkbox_radio_disabled_off.png b/Texture-atlas/after_atlas/textures/theme-orange/checkbox_radio_disabled_off.png new file mode 100644 index 0000000..aa2ec8f Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/checkbox_radio_disabled_off.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/checkbox_radio_disabled_on.png b/Texture-atlas/after_atlas/textures/theme-orange/checkbox_radio_disabled_on.png new file mode 100644 index 0000000..5673754 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/checkbox_radio_disabled_on.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/checkbox_radio_off.png b/Texture-atlas/after_atlas/textures/theme-orange/checkbox_radio_off.png new file mode 100644 index 0000000..5066669 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/checkbox_radio_off.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/checkbox_radio_on.png b/Texture-atlas/after_atlas/textures/theme-orange/checkbox_radio_on.png new file mode 100644 index 0000000..04fdb7a Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/checkbox_radio_on.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/close.png b/Texture-atlas/after_atlas/textures/theme-orange/close.png new file mode 100644 index 0000000..1df074b Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/close.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/filechooser_file.png b/Texture-atlas/after_atlas/textures/theme-orange/filechooser_file.png new file mode 100644 index 0000000..9a58f6d Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/filechooser_file.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/filechooser_folder.png b/Texture-atlas/after_atlas/textures/theme-orange/filechooser_folder.png new file mode 100644 index 0000000..4628246 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/filechooser_folder.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/filechooser_selected.png b/Texture-atlas/after_atlas/textures/theme-orange/filechooser_selected.png new file mode 100644 index 0000000..f8aa6a6 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/filechooser_selected.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/image-missing.png b/Texture-atlas/after_atlas/textures/theme-orange/image-missing.png new file mode 100644 index 0000000..e6ba992 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/image-missing.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/media-playback-pause.png b/Texture-atlas/after_atlas/textures/theme-orange/media-playback-pause.png new file mode 100755 index 0000000..9037e4e Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/media-playback-pause.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/media-playback-start.png b/Texture-atlas/after_atlas/textures/theme-orange/media-playback-start.png new file mode 100755 index 0000000..767c734 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/media-playback-start.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/media-playback-stop.png b/Texture-atlas/after_atlas/textures/theme-orange/media-playback-stop.png new file mode 100755 index 0000000..f885667 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/media-playback-stop.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/modalview-background.png b/Texture-atlas/after_atlas/textures/theme-orange/modalview-background.png new file mode 100644 index 0000000..a2ef648 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/modalview-background.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/myatlas-0.png b/Texture-atlas/after_atlas/textures/theme-orange/myatlas-0.png new file mode 100644 index 0000000..b52ef5d Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/myatlas-0.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/myatlas-1.png b/Texture-atlas/after_atlas/textures/theme-orange/myatlas-1.png new file mode 100644 index 0000000..96b9ceb Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/myatlas-1.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/myatlas-2.png b/Texture-atlas/after_atlas/textures/theme-orange/myatlas-2.png new file mode 100644 index 0000000..ed7de7f Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/myatlas-2.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/myatlas-3.png b/Texture-atlas/after_atlas/textures/theme-orange/myatlas-3.png new file mode 100644 index 0000000..ee38291 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/myatlas-3.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/myatlas.atlas b/Texture-atlas/after_atlas/textures/theme-orange/myatlas.atlas new file mode 100644 index 0000000..9727b80 --- /dev/null +++ b/Texture-atlas/after_atlas/textures/theme-orange/myatlas.atlas @@ -0,0 +1 @@ +{"myatlas-0.png": {"filechooser_selected": [2, 132, 122, 122], "player-play-overlay": [126, 139, 117, 115], "textinput_disabled": [2, 19, 111, 111], "ring": [115, 22, 108, 108], "button": [225, 93, 29, 37], "button_disabled": [225, 54, 29, 37], "action_item": [225, 28, 24, 24]}, "myatlas-1.png": {"player-background": [2, 151, 103, 103], "bubble": [107, 189, 65, 65], "filechooser_file": [174, 190, 64, 64], "filechooser_folder": [2, 85, 64, 64], "textinput": [68, 85, 64, 64], "textinput_active": [134, 85, 64, 64], "textinput_disabled_active": [2, 19, 64, 64], "vkeyboard_background": [68, 19, 64, 64], "vkeyboard_disabled_background": [134, 19, 64, 64], "selector_left": [200, 87, 55, 62], "selector_middle": [200, 21, 55, 62], "tab": [107, 155, 96, 32], "switch-button": [205, 155, 43, 32], "splitter_down": [240, 222, 7, 32], "bubble_arrow": [240, 210, 16, 10]}, "myatlas-2.png": {"selector_right": [2, 192, 55, 62], "tab_disabled": [59, 222, 96, 32], "switch-background": [157, 222, 83, 32], "switch-background_disabled": [2, 158, 83, 32], "modalview-background": [2, 102, 45, 54], "audio-volume-high": [49, 108, 48, 48], "audio-volume-low": [99, 108, 48, 48], "audio-volume-medium": [149, 108, 48, 48], "audio-volume-muted": [199, 108, 48, 48], "image-missing": [2, 52, 48, 48], "media-playback-pause": [52, 52, 48, 48], "media-playback-start": [102, 52, 48, 48], "media-playback-stop": [152, 52, 48, 48], "slider_cursor": [202, 52, 48, 48], "slider_cursor_disabled": [2, 2, 48, 48], "action_group": [52, 2, 33, 48], "action_group_disabled": [87, 2, 33, 48], "action_group_down": [122, 2, 33, 48], "sliderh_background": [157, 13, 41, 37], "sliderh_background_disabled": [200, 13, 41, 37], "switch-button_disabled": [87, 158, 43, 32], "bubble_btn_pressed": [132, 158, 32, 32], "checkbox_disabled_off": [166, 158, 32, 32], "checkbox_disabled_on": [200, 158, 32, 32], "previous_normal": [234, 158, 19, 32], "tree_opened": [59, 200, 20, 20], "splitter_grip": [242, 228, 12, 26], "splitter_grip_h": [81, 208, 26, 12], "separator": [249, 108, 5, 48], "splitter": [243, 18, 7, 32], "splitter_disabled_down_h": [157, 4, 32, 7], "splitter_disabled_h": [191, 4, 32, 7], "splitter_down_h": [109, 213, 32, 7], "splitter_h": [143, 213, 32, 7]}, "myatlas-3.png": {"sliderv_background": [2, 213, 37, 41], "sliderv_background_disabled": [41, 213, 37, 41], "action_bar": [80, 218, 36, 36], "button_disabled_pressed": [2, 174, 29, 37], "button_pressed": [33, 174, 29, 37], "spinner": [64, 174, 29, 37], "spinner_disabled": [95, 174, 29, 37], "spinner_pressed": [126, 174, 29, 37], "action_item_down": [157, 179, 32, 32], "bubble_btn": [191, 179, 32, 32], "checkbox_off": [118, 222, 32, 32], "checkbox_on": [152, 222, 32, 32], "checkbox_radio_disabled_off": [186, 222, 32, 32], "checkbox_radio_disabled_on": [220, 222, 32, 32], "checkbox_radio_off": [2, 140, 32, 32], "checkbox_radio_on": [36, 140, 32, 32], "overflow": [70, 140, 32, 32], "tab_btn": [104, 140, 32, 32], "tab_btn_disabled": [138, 140, 32, 32], "tab_btn_disabled_pressed": [172, 140, 32, 32], "tab_btn_pressed": [206, 140, 32, 32], "vkeyboard_disabled_key_down": [2, 106, 32, 32], "vkeyboard_disabled_key_normal": [36, 106, 32, 32], "vkeyboard_key_down": [70, 106, 32, 32], "vkeyboard_key_normal": [104, 106, 32, 32], "progressbar": [138, 114, 32, 24], "action_view": [225, 187, 24, 24], "progressbar_background": [172, 114, 24, 24], "close": [198, 118, 20, 20], "tree_closed": [220, 118, 20, 20], "splitter_disabled": [240, 140, 7, 32], "splitter_disabled_down": [249, 140, 7, 32]}} \ No newline at end of file diff --git a/Texture-atlas/after_atlas/textures/theme-orange/overflow.png b/Texture-atlas/after_atlas/textures/theme-orange/overflow.png new file mode 100755 index 0000000..483831a Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/overflow.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/player-background.png b/Texture-atlas/after_atlas/textures/theme-orange/player-background.png new file mode 100644 index 0000000..b200446 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/player-background.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/player-play-overlay.png b/Texture-atlas/after_atlas/textures/theme-orange/player-play-overlay.png new file mode 100644 index 0000000..9f2ee0a Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/player-play-overlay.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/previous_normal.png b/Texture-atlas/after_atlas/textures/theme-orange/previous_normal.png new file mode 100644 index 0000000..9828055 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/previous_normal.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/progressbar.png b/Texture-atlas/after_atlas/textures/theme-orange/progressbar.png new file mode 100644 index 0000000..76fa36b Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/progressbar.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/progressbar_background.png b/Texture-atlas/after_atlas/textures/theme-orange/progressbar_background.png new file mode 100644 index 0000000..d27d984 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/progressbar_background.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/ring.png b/Texture-atlas/after_atlas/textures/theme-orange/ring.png new file mode 100644 index 0000000..bbbdcaa Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/ring.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/selector_left.png b/Texture-atlas/after_atlas/textures/theme-orange/selector_left.png new file mode 100644 index 0000000..d9d4b5e Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/selector_left.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/selector_middle.png b/Texture-atlas/after_atlas/textures/theme-orange/selector_middle.png new file mode 100644 index 0000000..955bc6f Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/selector_middle.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/selector_right.png b/Texture-atlas/after_atlas/textures/theme-orange/selector_right.png new file mode 100644 index 0000000..ec4f93e Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/selector_right.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/separator.png b/Texture-atlas/after_atlas/textures/theme-orange/separator.png new file mode 100755 index 0000000..27a034b Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/separator.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/slider_cursor.png b/Texture-atlas/after_atlas/textures/theme-orange/slider_cursor.png new file mode 100644 index 0000000..d556817 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/slider_cursor.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/slider_cursor_disabled.png b/Texture-atlas/after_atlas/textures/theme-orange/slider_cursor_disabled.png new file mode 100644 index 0000000..f82a2f5 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/slider_cursor_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/sliderh_background.png b/Texture-atlas/after_atlas/textures/theme-orange/sliderh_background.png new file mode 100644 index 0000000..1cbffdb Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/sliderh_background.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/sliderh_background_disabled.png b/Texture-atlas/after_atlas/textures/theme-orange/sliderh_background_disabled.png new file mode 100644 index 0000000..9974ed1 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/sliderh_background_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/sliderv_background.png b/Texture-atlas/after_atlas/textures/theme-orange/sliderv_background.png new file mode 100644 index 0000000..ccc7ae8 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/sliderv_background.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/sliderv_background_disabled.png b/Texture-atlas/after_atlas/textures/theme-orange/sliderv_background_disabled.png new file mode 100644 index 0000000..62491cf Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/sliderv_background_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/spinner.png b/Texture-atlas/after_atlas/textures/theme-orange/spinner.png new file mode 100644 index 0000000..9c43c9d Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/spinner.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/spinner_disabled.png b/Texture-atlas/after_atlas/textures/theme-orange/spinner_disabled.png new file mode 100644 index 0000000..0a16fc6 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/spinner_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/spinner_pressed.png b/Texture-atlas/after_atlas/textures/theme-orange/spinner_pressed.png new file mode 100644 index 0000000..12b62bb Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/spinner_pressed.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/splitter.png b/Texture-atlas/after_atlas/textures/theme-orange/splitter.png new file mode 100644 index 0000000..ec04383 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/splitter.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/splitter_disabled.png b/Texture-atlas/after_atlas/textures/theme-orange/splitter_disabled.png new file mode 100644 index 0000000..a3f8bf9 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/splitter_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/splitter_disabled_down.png b/Texture-atlas/after_atlas/textures/theme-orange/splitter_disabled_down.png new file mode 100644 index 0000000..9d1d907 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/splitter_disabled_down.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/splitter_disabled_down_h.png b/Texture-atlas/after_atlas/textures/theme-orange/splitter_disabled_down_h.png new file mode 100644 index 0000000..079cbab Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/splitter_disabled_down_h.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/splitter_disabled_h.png b/Texture-atlas/after_atlas/textures/theme-orange/splitter_disabled_h.png new file mode 100644 index 0000000..1e80a00 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/splitter_disabled_h.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/splitter_down.png b/Texture-atlas/after_atlas/textures/theme-orange/splitter_down.png new file mode 100644 index 0000000..42535ad Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/splitter_down.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/splitter_down_h.png b/Texture-atlas/after_atlas/textures/theme-orange/splitter_down_h.png new file mode 100644 index 0000000..27cf42f Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/splitter_down_h.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/splitter_grip.png b/Texture-atlas/after_atlas/textures/theme-orange/splitter_grip.png new file mode 100644 index 0000000..3754615 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/splitter_grip.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/splitter_grip_h.png b/Texture-atlas/after_atlas/textures/theme-orange/splitter_grip_h.png new file mode 100644 index 0000000..a7bd59d Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/splitter_grip_h.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/splitter_h.png b/Texture-atlas/after_atlas/textures/theme-orange/splitter_h.png new file mode 100644 index 0000000..f5ff0d9 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/splitter_h.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/switch-background.png b/Texture-atlas/after_atlas/textures/theme-orange/switch-background.png new file mode 100644 index 0000000..8c7a23b Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/switch-background.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/switch-background_disabled.png b/Texture-atlas/after_atlas/textures/theme-orange/switch-background_disabled.png new file mode 100644 index 0000000..458104c Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/switch-background_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/switch-button.png b/Texture-atlas/after_atlas/textures/theme-orange/switch-button.png new file mode 100644 index 0000000..2dc4734 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/switch-button.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/switch-button_disabled.png b/Texture-atlas/after_atlas/textures/theme-orange/switch-button_disabled.png new file mode 100644 index 0000000..77e251c Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/switch-button_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/tab.png b/Texture-atlas/after_atlas/textures/theme-orange/tab.png new file mode 100644 index 0000000..b701d3c Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/tab.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/tab_btn.png b/Texture-atlas/after_atlas/textures/theme-orange/tab_btn.png new file mode 100644 index 0000000..08f3a46 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/tab_btn.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/tab_btn_disabled.png b/Texture-atlas/after_atlas/textures/theme-orange/tab_btn_disabled.png new file mode 100644 index 0000000..b0ddc06 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/tab_btn_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/tab_btn_disabled_pressed.png b/Texture-atlas/after_atlas/textures/theme-orange/tab_btn_disabled_pressed.png new file mode 100644 index 0000000..b42f9aa Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/tab_btn_disabled_pressed.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/tab_btn_pressed.png b/Texture-atlas/after_atlas/textures/theme-orange/tab_btn_pressed.png new file mode 100644 index 0000000..41a5bdd Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/tab_btn_pressed.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/tab_disabled.png b/Texture-atlas/after_atlas/textures/theme-orange/tab_disabled.png new file mode 100644 index 0000000..5deec23 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/tab_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/textinput.png b/Texture-atlas/after_atlas/textures/theme-orange/textinput.png new file mode 100644 index 0000000..74d3f60 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/textinput.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/textinput_active.png b/Texture-atlas/after_atlas/textures/theme-orange/textinput_active.png new file mode 100644 index 0000000..65c5d55 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/textinput_active.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/textinput_disabled.png b/Texture-atlas/after_atlas/textures/theme-orange/textinput_disabled.png new file mode 100644 index 0000000..2142820 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/textinput_disabled.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/textinput_disabled_active.png b/Texture-atlas/after_atlas/textures/theme-orange/textinput_disabled_active.png new file mode 100644 index 0000000..536028b Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/textinput_disabled_active.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/tree_closed.png b/Texture-atlas/after_atlas/textures/theme-orange/tree_closed.png new file mode 100644 index 0000000..2408f57 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/tree_closed.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/tree_opened.png b/Texture-atlas/after_atlas/textures/theme-orange/tree_opened.png new file mode 100644 index 0000000..cbc8efc Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/tree_opened.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/vkeyboard_background.png b/Texture-atlas/after_atlas/textures/theme-orange/vkeyboard_background.png new file mode 100644 index 0000000..61fee4c Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/vkeyboard_background.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/vkeyboard_disabled_background.png b/Texture-atlas/after_atlas/textures/theme-orange/vkeyboard_disabled_background.png new file mode 100644 index 0000000..ae02f34 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/vkeyboard_disabled_background.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/vkeyboard_disabled_key_down.png b/Texture-atlas/after_atlas/textures/theme-orange/vkeyboard_disabled_key_down.png new file mode 100644 index 0000000..2fbdc40 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/vkeyboard_disabled_key_down.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/vkeyboard_disabled_key_normal.png b/Texture-atlas/after_atlas/textures/theme-orange/vkeyboard_disabled_key_normal.png new file mode 100644 index 0000000..92bd035 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/vkeyboard_disabled_key_normal.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/vkeyboard_key_down.png b/Texture-atlas/after_atlas/textures/theme-orange/vkeyboard_key_down.png new file mode 100644 index 0000000..b09959d Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/vkeyboard_key_down.png differ diff --git a/Texture-atlas/after_atlas/textures/theme-orange/vkeyboard_key_normal.png b/Texture-atlas/after_atlas/textures/theme-orange/vkeyboard_key_normal.png new file mode 100644 index 0000000..72e4c83 Binary files /dev/null and b/Texture-atlas/after_atlas/textures/theme-orange/vkeyboard_key_normal.png differ diff --git a/Texture-atlas/before_atlas/main.kv b/Texture-atlas/before_atlas/main.kv new file mode 100644 index 0000000..eb553f0 --- /dev/null +++ b/Texture-atlas/before_atlas/main.kv @@ -0,0 +1,18 @@ +: + spacing: 50 + padding: 10, 10 + CustomButton: + text: "Button" + BoxLayout: + orientation: "vertical" + ProgressBar: + value: 25 + ProgressBar: + value: 50 + ProgressBar: + value: 75 + BoxLayout: + orientation: "vertical" + CustomCheckBox: + CustomCheckBox: + CustomCheckBox: diff --git a/Texture-atlas/before_atlas/main.py b/Texture-atlas/before_atlas/main.py new file mode 100644 index 0000000..be387b8 --- /dev/null +++ b/Texture-atlas/before_atlas/main.py @@ -0,0 +1,23 @@ +#!/usr/bin/env python3 + +from kivy.app import App +from kivy.uix.boxlayout import BoxLayout +from kivy.properties import OptionProperty + +from src.components import CustomButton, CustomCheckBox + + +class Theming(BoxLayout): + pass + + +class MainApp(App): + + def build(self): + self.title = 'Theming' + return Theming() + + +if __name__ == "__main__": + app = MainApp() + app.run() diff --git a/Texture-atlas/before_atlas/src/components/CustomButtons.py b/Texture-atlas/before_atlas/src/components/CustomButtons.py new file mode 100644 index 0000000..7107139 --- /dev/null +++ b/Texture-atlas/before_atlas/src/components/CustomButtons.py @@ -0,0 +1,6 @@ +from kivy.uix.button import Button + +class CustomButton(Button): + def __init__(self, **kwargs): + super().__init__(**kwargs) + diff --git a/Texture-atlas/before_atlas/src/components/CustomCheckBoxes.py b/Texture-atlas/before_atlas/src/components/CustomCheckBoxes.py new file mode 100644 index 0000000..eb58a90 --- /dev/null +++ b/Texture-atlas/before_atlas/src/components/CustomCheckBoxes.py @@ -0,0 +1,6 @@ +from kivy.uix.checkbox import CheckBox + + +class CustomCheckBox(CheckBox): + def __init__(self, **kwargs): + super().__init__(**kwargs) diff --git a/Texture-atlas/before_atlas/src/components/__init__.py b/Texture-atlas/before_atlas/src/components/__init__.py new file mode 100644 index 0000000..8d0c539 --- /dev/null +++ b/Texture-atlas/before_atlas/src/components/__init__.py @@ -0,0 +1,2 @@ +from .CustomButtons import * +from .CustomCheckBoxes import * diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/action_bar.png b/Texture-atlas/before_atlas/textures/red-lightgrey/action_bar.png new file mode 100644 index 0000000..77bc386 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/action_bar.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/action_group.png b/Texture-atlas/before_atlas/textures/red-lightgrey/action_group.png new file mode 100644 index 0000000..dd44158 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/action_group.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/action_group_disabled.png b/Texture-atlas/before_atlas/textures/red-lightgrey/action_group_disabled.png new file mode 100644 index 0000000..ccb8393 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/action_group_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/action_group_down.png b/Texture-atlas/before_atlas/textures/red-lightgrey/action_group_down.png new file mode 100644 index 0000000..7fcb6f0 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/action_group_down.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/action_item.png b/Texture-atlas/before_atlas/textures/red-lightgrey/action_item.png new file mode 100644 index 0000000..4ce962d Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/action_item.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/action_item_down.png b/Texture-atlas/before_atlas/textures/red-lightgrey/action_item_down.png new file mode 100644 index 0000000..f7ebf2e Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/action_item_down.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/action_view.png b/Texture-atlas/before_atlas/textures/red-lightgrey/action_view.png new file mode 100644 index 0000000..32019f8 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/action_view.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/audio-volume-high.png b/Texture-atlas/before_atlas/textures/red-lightgrey/audio-volume-high.png new file mode 100755 index 0000000..0572299 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/audio-volume-high.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/audio-volume-low.png b/Texture-atlas/before_atlas/textures/red-lightgrey/audio-volume-low.png new file mode 100755 index 0000000..1437cf7 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/audio-volume-low.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/audio-volume-medium.png b/Texture-atlas/before_atlas/textures/red-lightgrey/audio-volume-medium.png new file mode 100755 index 0000000..023ba67 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/audio-volume-medium.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/audio-volume-muted.png b/Texture-atlas/before_atlas/textures/red-lightgrey/audio-volume-muted.png new file mode 100755 index 0000000..f50609f Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/audio-volume-muted.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/bubble.png b/Texture-atlas/before_atlas/textures/red-lightgrey/bubble.png new file mode 100644 index 0000000..879987b Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/bubble.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/bubble_arrow.png b/Texture-atlas/before_atlas/textures/red-lightgrey/bubble_arrow.png new file mode 100644 index 0000000..eafedd9 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/bubble_arrow.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/bubble_btn.png b/Texture-atlas/before_atlas/textures/red-lightgrey/bubble_btn.png new file mode 100644 index 0000000..4171565 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/bubble_btn.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/bubble_btn_pressed.png b/Texture-atlas/before_atlas/textures/red-lightgrey/bubble_btn_pressed.png new file mode 100644 index 0000000..0195f86 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/bubble_btn_pressed.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/button.png b/Texture-atlas/before_atlas/textures/red-lightgrey/button.png new file mode 100644 index 0000000..c4c449b Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/button.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/button_disabled.png b/Texture-atlas/before_atlas/textures/red-lightgrey/button_disabled.png new file mode 100644 index 0000000..fea6224 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/button_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/button_disabled_pressed.png b/Texture-atlas/before_atlas/textures/red-lightgrey/button_disabled_pressed.png new file mode 100644 index 0000000..b5aeed0 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/button_disabled_pressed.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/button_pressed.png b/Texture-atlas/before_atlas/textures/red-lightgrey/button_pressed.png new file mode 100644 index 0000000..baecd42 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/button_pressed.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_disabled_off.png b/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_disabled_off.png new file mode 100644 index 0000000..5fd8099 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_disabled_off.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_disabled_on.png b/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_disabled_on.png new file mode 100644 index 0000000..258bf4e Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_disabled_on.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_off.png b/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_off.png new file mode 100644 index 0000000..d3acfc1 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_off.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_on.png b/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_on.png new file mode 100644 index 0000000..8ac9fe9 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_on.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_radio_disabled_off.png b/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_radio_disabled_off.png new file mode 100644 index 0000000..aa2ec8f Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_radio_disabled_off.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_radio_disabled_on.png b/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_radio_disabled_on.png new file mode 100644 index 0000000..2c7159e Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_radio_disabled_on.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_radio_off.png b/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_radio_off.png new file mode 100644 index 0000000..f96d7e7 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_radio_off.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_radio_on.png b/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_radio_on.png new file mode 100644 index 0000000..ba387f8 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/checkbox_radio_on.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/close.png b/Texture-atlas/before_atlas/textures/red-lightgrey/close.png new file mode 100644 index 0000000..3dcecc0 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/close.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/filechooser_file.png b/Texture-atlas/before_atlas/textures/red-lightgrey/filechooser_file.png new file mode 100644 index 0000000..31f5bd7 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/filechooser_file.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/filechooser_folder.png b/Texture-atlas/before_atlas/textures/red-lightgrey/filechooser_folder.png new file mode 100644 index 0000000..3af7c38 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/filechooser_folder.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/filechooser_selected.png b/Texture-atlas/before_atlas/textures/red-lightgrey/filechooser_selected.png new file mode 100644 index 0000000..8ee7c7f Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/filechooser_selected.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/image-missing.png b/Texture-atlas/before_atlas/textures/red-lightgrey/image-missing.png new file mode 100644 index 0000000..e6ba992 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/image-missing.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/media-playback-pause.png b/Texture-atlas/before_atlas/textures/red-lightgrey/media-playback-pause.png new file mode 100755 index 0000000..9037e4e Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/media-playback-pause.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/media-playback-start.png b/Texture-atlas/before_atlas/textures/red-lightgrey/media-playback-start.png new file mode 100755 index 0000000..767c734 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/media-playback-start.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/media-playback-stop.png b/Texture-atlas/before_atlas/textures/red-lightgrey/media-playback-stop.png new file mode 100755 index 0000000..f885667 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/media-playback-stop.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/modalview-background.png b/Texture-atlas/before_atlas/textures/red-lightgrey/modalview-background.png new file mode 100644 index 0000000..d824da6 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/modalview-background.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/myatlas-0.png b/Texture-atlas/before_atlas/textures/red-lightgrey/myatlas-0.png new file mode 100644 index 0000000..2bfe934 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/myatlas-0.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/myatlas-1.png b/Texture-atlas/before_atlas/textures/red-lightgrey/myatlas-1.png new file mode 100644 index 0000000..c7340db Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/myatlas-1.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/myatlas-2.png b/Texture-atlas/before_atlas/textures/red-lightgrey/myatlas-2.png new file mode 100644 index 0000000..099789c Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/myatlas-2.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/myatlas-3.png b/Texture-atlas/before_atlas/textures/red-lightgrey/myatlas-3.png new file mode 100644 index 0000000..12226cd Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/myatlas-3.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/myatlas.atlas b/Texture-atlas/before_atlas/textures/red-lightgrey/myatlas.atlas new file mode 100644 index 0000000..9727b80 --- /dev/null +++ b/Texture-atlas/before_atlas/textures/red-lightgrey/myatlas.atlas @@ -0,0 +1 @@ +{"myatlas-0.png": {"filechooser_selected": [2, 132, 122, 122], "player-play-overlay": [126, 139, 117, 115], "textinput_disabled": [2, 19, 111, 111], "ring": [115, 22, 108, 108], "button": [225, 93, 29, 37], "button_disabled": [225, 54, 29, 37], "action_item": [225, 28, 24, 24]}, "myatlas-1.png": {"player-background": [2, 151, 103, 103], "bubble": [107, 189, 65, 65], "filechooser_file": [174, 190, 64, 64], "filechooser_folder": [2, 85, 64, 64], "textinput": [68, 85, 64, 64], "textinput_active": [134, 85, 64, 64], "textinput_disabled_active": [2, 19, 64, 64], "vkeyboard_background": [68, 19, 64, 64], "vkeyboard_disabled_background": [134, 19, 64, 64], "selector_left": [200, 87, 55, 62], "selector_middle": [200, 21, 55, 62], "tab": [107, 155, 96, 32], "switch-button": [205, 155, 43, 32], "splitter_down": [240, 222, 7, 32], "bubble_arrow": [240, 210, 16, 10]}, "myatlas-2.png": {"selector_right": [2, 192, 55, 62], "tab_disabled": [59, 222, 96, 32], "switch-background": [157, 222, 83, 32], "switch-background_disabled": [2, 158, 83, 32], "modalview-background": [2, 102, 45, 54], "audio-volume-high": [49, 108, 48, 48], "audio-volume-low": [99, 108, 48, 48], "audio-volume-medium": [149, 108, 48, 48], "audio-volume-muted": [199, 108, 48, 48], "image-missing": [2, 52, 48, 48], "media-playback-pause": [52, 52, 48, 48], "media-playback-start": [102, 52, 48, 48], "media-playback-stop": [152, 52, 48, 48], "slider_cursor": [202, 52, 48, 48], "slider_cursor_disabled": [2, 2, 48, 48], "action_group": [52, 2, 33, 48], "action_group_disabled": [87, 2, 33, 48], "action_group_down": [122, 2, 33, 48], "sliderh_background": [157, 13, 41, 37], "sliderh_background_disabled": [200, 13, 41, 37], "switch-button_disabled": [87, 158, 43, 32], "bubble_btn_pressed": [132, 158, 32, 32], "checkbox_disabled_off": [166, 158, 32, 32], "checkbox_disabled_on": [200, 158, 32, 32], "previous_normal": [234, 158, 19, 32], "tree_opened": [59, 200, 20, 20], "splitter_grip": [242, 228, 12, 26], "splitter_grip_h": [81, 208, 26, 12], "separator": [249, 108, 5, 48], "splitter": [243, 18, 7, 32], "splitter_disabled_down_h": [157, 4, 32, 7], "splitter_disabled_h": [191, 4, 32, 7], "splitter_down_h": [109, 213, 32, 7], "splitter_h": [143, 213, 32, 7]}, "myatlas-3.png": {"sliderv_background": [2, 213, 37, 41], "sliderv_background_disabled": [41, 213, 37, 41], "action_bar": [80, 218, 36, 36], "button_disabled_pressed": [2, 174, 29, 37], "button_pressed": [33, 174, 29, 37], "spinner": [64, 174, 29, 37], "spinner_disabled": [95, 174, 29, 37], "spinner_pressed": [126, 174, 29, 37], "action_item_down": [157, 179, 32, 32], "bubble_btn": [191, 179, 32, 32], "checkbox_off": [118, 222, 32, 32], "checkbox_on": [152, 222, 32, 32], "checkbox_radio_disabled_off": [186, 222, 32, 32], "checkbox_radio_disabled_on": [220, 222, 32, 32], "checkbox_radio_off": [2, 140, 32, 32], "checkbox_radio_on": [36, 140, 32, 32], "overflow": [70, 140, 32, 32], "tab_btn": [104, 140, 32, 32], "tab_btn_disabled": [138, 140, 32, 32], "tab_btn_disabled_pressed": [172, 140, 32, 32], "tab_btn_pressed": [206, 140, 32, 32], "vkeyboard_disabled_key_down": [2, 106, 32, 32], "vkeyboard_disabled_key_normal": [36, 106, 32, 32], "vkeyboard_key_down": [70, 106, 32, 32], "vkeyboard_key_normal": [104, 106, 32, 32], "progressbar": [138, 114, 32, 24], "action_view": [225, 187, 24, 24], "progressbar_background": [172, 114, 24, 24], "close": [198, 118, 20, 20], "tree_closed": [220, 118, 20, 20], "splitter_disabled": [240, 140, 7, 32], "splitter_disabled_down": [249, 140, 7, 32]}} \ No newline at end of file diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/overflow.png b/Texture-atlas/before_atlas/textures/red-lightgrey/overflow.png new file mode 100755 index 0000000..afbc8d0 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/overflow.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/player-background.png b/Texture-atlas/before_atlas/textures/red-lightgrey/player-background.png new file mode 100644 index 0000000..daffa93 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/player-background.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/player-play-overlay.png b/Texture-atlas/before_atlas/textures/red-lightgrey/player-play-overlay.png new file mode 100644 index 0000000..9f2ee0a Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/player-play-overlay.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/previous_normal.png b/Texture-atlas/before_atlas/textures/red-lightgrey/previous_normal.png new file mode 100644 index 0000000..9828055 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/previous_normal.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/progressbar.png b/Texture-atlas/before_atlas/textures/red-lightgrey/progressbar.png new file mode 100644 index 0000000..0b7c3dd Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/progressbar.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/progressbar_background.png b/Texture-atlas/before_atlas/textures/red-lightgrey/progressbar_background.png new file mode 100644 index 0000000..c6a76a0 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/progressbar_background.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/ring.png b/Texture-atlas/before_atlas/textures/red-lightgrey/ring.png new file mode 100644 index 0000000..bbbdcaa Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/ring.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/selector_left.png b/Texture-atlas/before_atlas/textures/red-lightgrey/selector_left.png new file mode 100644 index 0000000..e470378 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/selector_left.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/selector_middle.png b/Texture-atlas/before_atlas/textures/red-lightgrey/selector_middle.png new file mode 100644 index 0000000..1a409bd Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/selector_middle.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/selector_right.png b/Texture-atlas/before_atlas/textures/red-lightgrey/selector_right.png new file mode 100644 index 0000000..9510d9d Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/selector_right.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/separator.png b/Texture-atlas/before_atlas/textures/red-lightgrey/separator.png new file mode 100755 index 0000000..f8c863b Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/separator.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/slider_cursor.png b/Texture-atlas/before_atlas/textures/red-lightgrey/slider_cursor.png new file mode 100644 index 0000000..ec18fac Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/slider_cursor.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/slider_cursor_disabled.png b/Texture-atlas/before_atlas/textures/red-lightgrey/slider_cursor_disabled.png new file mode 100644 index 0000000..564d195 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/slider_cursor_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/sliderh_background.png b/Texture-atlas/before_atlas/textures/red-lightgrey/sliderh_background.png new file mode 100644 index 0000000..1cbffdb Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/sliderh_background.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/sliderh_background_disabled.png b/Texture-atlas/before_atlas/textures/red-lightgrey/sliderh_background_disabled.png new file mode 100644 index 0000000..9974ed1 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/sliderh_background_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/sliderv_background.png b/Texture-atlas/before_atlas/textures/red-lightgrey/sliderv_background.png new file mode 100644 index 0000000..ccc7ae8 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/sliderv_background.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/sliderv_background_disabled.png b/Texture-atlas/before_atlas/textures/red-lightgrey/sliderv_background_disabled.png new file mode 100644 index 0000000..62491cf Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/sliderv_background_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/spinner.png b/Texture-atlas/before_atlas/textures/red-lightgrey/spinner.png new file mode 100644 index 0000000..f4f2518 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/spinner.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/spinner_disabled.png b/Texture-atlas/before_atlas/textures/red-lightgrey/spinner_disabled.png new file mode 100644 index 0000000..015c247 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/spinner_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/spinner_pressed.png b/Texture-atlas/before_atlas/textures/red-lightgrey/spinner_pressed.png new file mode 100644 index 0000000..95ce655 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/spinner_pressed.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/splitter.png b/Texture-atlas/before_atlas/textures/red-lightgrey/splitter.png new file mode 100644 index 0000000..4a1f8e5 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/splitter.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_disabled.png b/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_disabled.png new file mode 100644 index 0000000..e6142d9 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_disabled_down.png b/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_disabled_down.png new file mode 100644 index 0000000..008d2d2 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_disabled_down.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_disabled_down_h.png b/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_disabled_down_h.png new file mode 100644 index 0000000..6baf85c Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_disabled_down_h.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_disabled_h.png b/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_disabled_h.png new file mode 100644 index 0000000..f46235d Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_disabled_h.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_down.png b/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_down.png new file mode 100644 index 0000000..fcedb96 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_down.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_down_h.png b/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_down_h.png new file mode 100644 index 0000000..6c19de6 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_down_h.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_grip.png b/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_grip.png new file mode 100644 index 0000000..201b629 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_grip.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_grip_h.png b/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_grip_h.png new file mode 100644 index 0000000..fbbfdaf Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_grip_h.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_h.png b/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_h.png new file mode 100644 index 0000000..d1d1f75 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/splitter_h.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/switch-background.png b/Texture-atlas/before_atlas/textures/red-lightgrey/switch-background.png new file mode 100644 index 0000000..81d1a36 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/switch-background.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/switch-background_disabled.png b/Texture-atlas/before_atlas/textures/red-lightgrey/switch-background_disabled.png new file mode 100644 index 0000000..9436896 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/switch-background_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/switch-button.png b/Texture-atlas/before_atlas/textures/red-lightgrey/switch-button.png new file mode 100644 index 0000000..7cd8439 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/switch-button.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/switch-button_disabled.png b/Texture-atlas/before_atlas/textures/red-lightgrey/switch-button_disabled.png new file mode 100644 index 0000000..7121d58 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/switch-button_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/tab.png b/Texture-atlas/before_atlas/textures/red-lightgrey/tab.png new file mode 100644 index 0000000..2a7bc06 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/tab.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/tab_btn.png b/Texture-atlas/before_atlas/textures/red-lightgrey/tab_btn.png new file mode 100644 index 0000000..8b57adb Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/tab_btn.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/tab_btn_disabled.png b/Texture-atlas/before_atlas/textures/red-lightgrey/tab_btn_disabled.png new file mode 100644 index 0000000..3ca1492 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/tab_btn_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/tab_btn_disabled_pressed.png b/Texture-atlas/before_atlas/textures/red-lightgrey/tab_btn_disabled_pressed.png new file mode 100644 index 0000000..5f76100 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/tab_btn_disabled_pressed.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/tab_btn_pressed.png b/Texture-atlas/before_atlas/textures/red-lightgrey/tab_btn_pressed.png new file mode 100644 index 0000000..4dcc31d Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/tab_btn_pressed.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/tab_disabled.png b/Texture-atlas/before_atlas/textures/red-lightgrey/tab_disabled.png new file mode 100644 index 0000000..958d5f3 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/tab_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/textinput.png b/Texture-atlas/before_atlas/textures/red-lightgrey/textinput.png new file mode 100644 index 0000000..74d3f60 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/textinput.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/textinput_active.png b/Texture-atlas/before_atlas/textures/red-lightgrey/textinput_active.png new file mode 100644 index 0000000..2b08c25 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/textinput_active.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/textinput_disabled.png b/Texture-atlas/before_atlas/textures/red-lightgrey/textinput_disabled.png new file mode 100644 index 0000000..2142820 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/textinput_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/textinput_disabled_active.png b/Texture-atlas/before_atlas/textures/red-lightgrey/textinput_disabled_active.png new file mode 100644 index 0000000..536028b Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/textinput_disabled_active.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/tree_closed.png b/Texture-atlas/before_atlas/textures/red-lightgrey/tree_closed.png new file mode 100644 index 0000000..a8154d2 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/tree_closed.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/tree_opened.png b/Texture-atlas/before_atlas/textures/red-lightgrey/tree_opened.png new file mode 100644 index 0000000..970fd6f Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/tree_opened.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/vkeyboard_background.png b/Texture-atlas/before_atlas/textures/red-lightgrey/vkeyboard_background.png new file mode 100644 index 0000000..8bbfda3 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/vkeyboard_background.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/vkeyboard_disabled_background.png b/Texture-atlas/before_atlas/textures/red-lightgrey/vkeyboard_disabled_background.png new file mode 100644 index 0000000..10ab1c4 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/vkeyboard_disabled_background.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/vkeyboard_disabled_key_down.png b/Texture-atlas/before_atlas/textures/red-lightgrey/vkeyboard_disabled_key_down.png new file mode 100644 index 0000000..eee5155 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/vkeyboard_disabled_key_down.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/vkeyboard_disabled_key_normal.png b/Texture-atlas/before_atlas/textures/red-lightgrey/vkeyboard_disabled_key_normal.png new file mode 100644 index 0000000..562aded Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/vkeyboard_disabled_key_normal.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/vkeyboard_key_down.png b/Texture-atlas/before_atlas/textures/red-lightgrey/vkeyboard_key_down.png new file mode 100644 index 0000000..5659cd6 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/vkeyboard_key_down.png differ diff --git a/Texture-atlas/before_atlas/textures/red-lightgrey/vkeyboard_key_normal.png b/Texture-atlas/before_atlas/textures/red-lightgrey/vkeyboard_key_normal.png new file mode 100644 index 0000000..5d062a0 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/red-lightgrey/vkeyboard_key_normal.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/action_bar.png b/Texture-atlas/before_atlas/textures/theme-blue/action_bar.png new file mode 100644 index 0000000..058c376 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/action_bar.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/action_group.png b/Texture-atlas/before_atlas/textures/theme-blue/action_group.png new file mode 100644 index 0000000..bf548cc Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/action_group.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/action_group_disabled.png b/Texture-atlas/before_atlas/textures/theme-blue/action_group_disabled.png new file mode 100644 index 0000000..571b1fb Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/action_group_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/action_group_down.png b/Texture-atlas/before_atlas/textures/theme-blue/action_group_down.png new file mode 100644 index 0000000..6b508bc Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/action_group_down.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/action_item.png b/Texture-atlas/before_atlas/textures/theme-blue/action_item.png new file mode 100644 index 0000000..4ce962d Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/action_item.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/action_item_down.png b/Texture-atlas/before_atlas/textures/theme-blue/action_item_down.png new file mode 100644 index 0000000..da79cfc Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/action_item_down.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/action_view.png b/Texture-atlas/before_atlas/textures/theme-blue/action_view.png new file mode 100644 index 0000000..32019f8 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/action_view.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/audio-volume-high.png b/Texture-atlas/before_atlas/textures/theme-blue/audio-volume-high.png new file mode 100755 index 0000000..1240349 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/audio-volume-high.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/audio-volume-low.png b/Texture-atlas/before_atlas/textures/theme-blue/audio-volume-low.png new file mode 100755 index 0000000..ac692fa Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/audio-volume-low.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/audio-volume-medium.png b/Texture-atlas/before_atlas/textures/theme-blue/audio-volume-medium.png new file mode 100755 index 0000000..dbd9698 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/audio-volume-medium.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/audio-volume-muted.png b/Texture-atlas/before_atlas/textures/theme-blue/audio-volume-muted.png new file mode 100755 index 0000000..38b025b Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/audio-volume-muted.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/bubble.png b/Texture-atlas/before_atlas/textures/theme-blue/bubble.png new file mode 100644 index 0000000..f7222eb Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/bubble.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/bubble_arrow.png b/Texture-atlas/before_atlas/textures/theme-blue/bubble_arrow.png new file mode 100644 index 0000000..6564d07 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/bubble_arrow.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/bubble_btn.png b/Texture-atlas/before_atlas/textures/theme-blue/bubble_btn.png new file mode 100644 index 0000000..4171565 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/bubble_btn.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/bubble_btn_pressed.png b/Texture-atlas/before_atlas/textures/theme-blue/bubble_btn_pressed.png new file mode 100644 index 0000000..0195f86 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/bubble_btn_pressed.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/button.png b/Texture-atlas/before_atlas/textures/theme-blue/button.png new file mode 100644 index 0000000..d31bb02 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/button.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/button_disabled.png b/Texture-atlas/before_atlas/textures/theme-blue/button_disabled.png new file mode 100644 index 0000000..1a2827a Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/button_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/button_disabled_pressed.png b/Texture-atlas/before_atlas/textures/theme-blue/button_disabled_pressed.png new file mode 100644 index 0000000..29ab6fe Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/button_disabled_pressed.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/button_pressed.png b/Texture-atlas/before_atlas/textures/theme-blue/button_pressed.png new file mode 100644 index 0000000..ded0aca Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/button_pressed.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/checkbox_disabled_off.png b/Texture-atlas/before_atlas/textures/theme-blue/checkbox_disabled_off.png new file mode 100644 index 0000000..5fd8099 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/checkbox_disabled_off.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/checkbox_disabled_on.png b/Texture-atlas/before_atlas/textures/theme-blue/checkbox_disabled_on.png new file mode 100644 index 0000000..258bf4e Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/checkbox_disabled_on.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/checkbox_off.png b/Texture-atlas/before_atlas/textures/theme-blue/checkbox_off.png new file mode 100644 index 0000000..d3acfc1 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/checkbox_off.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/checkbox_on.png b/Texture-atlas/before_atlas/textures/theme-blue/checkbox_on.png new file mode 100644 index 0000000..2e04abd Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/checkbox_on.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/checkbox_radio_disabled_off.png b/Texture-atlas/before_atlas/textures/theme-blue/checkbox_radio_disabled_off.png new file mode 100644 index 0000000..aa2ec8f Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/checkbox_radio_disabled_off.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/checkbox_radio_disabled_on.png b/Texture-atlas/before_atlas/textures/theme-blue/checkbox_radio_disabled_on.png new file mode 100644 index 0000000..5673754 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/checkbox_radio_disabled_on.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/checkbox_radio_off.png b/Texture-atlas/before_atlas/textures/theme-blue/checkbox_radio_off.png new file mode 100644 index 0000000..5066669 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/checkbox_radio_off.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/checkbox_radio_on.png b/Texture-atlas/before_atlas/textures/theme-blue/checkbox_radio_on.png new file mode 100644 index 0000000..d02f8f7 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/checkbox_radio_on.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/close.png b/Texture-atlas/before_atlas/textures/theme-blue/close.png new file mode 100644 index 0000000..de5f3b1 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/close.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/filechooser_file.png b/Texture-atlas/before_atlas/textures/theme-blue/filechooser_file.png new file mode 100644 index 0000000..162f35d Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/filechooser_file.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/filechooser_folder.png b/Texture-atlas/before_atlas/textures/theme-blue/filechooser_folder.png new file mode 100644 index 0000000..ad0b8e1 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/filechooser_folder.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/filechooser_selected.png b/Texture-atlas/before_atlas/textures/theme-blue/filechooser_selected.png new file mode 100644 index 0000000..8634717 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/filechooser_selected.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/image-missing.png b/Texture-atlas/before_atlas/textures/theme-blue/image-missing.png new file mode 100644 index 0000000..e6ba992 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/image-missing.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/media-playback-pause.png b/Texture-atlas/before_atlas/textures/theme-blue/media-playback-pause.png new file mode 100755 index 0000000..9037e4e Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/media-playback-pause.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/media-playback-start.png b/Texture-atlas/before_atlas/textures/theme-blue/media-playback-start.png new file mode 100755 index 0000000..767c734 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/media-playback-start.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/media-playback-stop.png b/Texture-atlas/before_atlas/textures/theme-blue/media-playback-stop.png new file mode 100755 index 0000000..f885667 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/media-playback-stop.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/modalview-background.png b/Texture-atlas/before_atlas/textures/theme-blue/modalview-background.png new file mode 100644 index 0000000..5d203f4 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/modalview-background.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/myatlas-0.png b/Texture-atlas/before_atlas/textures/theme-blue/myatlas-0.png new file mode 100644 index 0000000..a80b1d0 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/myatlas-0.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/myatlas-1.png b/Texture-atlas/before_atlas/textures/theme-blue/myatlas-1.png new file mode 100644 index 0000000..9ccb1f9 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/myatlas-1.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/myatlas-2.png b/Texture-atlas/before_atlas/textures/theme-blue/myatlas-2.png new file mode 100644 index 0000000..267045c Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/myatlas-2.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/myatlas-3.png b/Texture-atlas/before_atlas/textures/theme-blue/myatlas-3.png new file mode 100644 index 0000000..cdb30a6 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/myatlas-3.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/myatlas.atlas b/Texture-atlas/before_atlas/textures/theme-blue/myatlas.atlas new file mode 100644 index 0000000..9727b80 --- /dev/null +++ b/Texture-atlas/before_atlas/textures/theme-blue/myatlas.atlas @@ -0,0 +1 @@ +{"myatlas-0.png": {"filechooser_selected": [2, 132, 122, 122], "player-play-overlay": [126, 139, 117, 115], "textinput_disabled": [2, 19, 111, 111], "ring": [115, 22, 108, 108], "button": [225, 93, 29, 37], "button_disabled": [225, 54, 29, 37], "action_item": [225, 28, 24, 24]}, "myatlas-1.png": {"player-background": [2, 151, 103, 103], "bubble": [107, 189, 65, 65], "filechooser_file": [174, 190, 64, 64], "filechooser_folder": [2, 85, 64, 64], "textinput": [68, 85, 64, 64], "textinput_active": [134, 85, 64, 64], "textinput_disabled_active": [2, 19, 64, 64], "vkeyboard_background": [68, 19, 64, 64], "vkeyboard_disabled_background": [134, 19, 64, 64], "selector_left": [200, 87, 55, 62], "selector_middle": [200, 21, 55, 62], "tab": [107, 155, 96, 32], "switch-button": [205, 155, 43, 32], "splitter_down": [240, 222, 7, 32], "bubble_arrow": [240, 210, 16, 10]}, "myatlas-2.png": {"selector_right": [2, 192, 55, 62], "tab_disabled": [59, 222, 96, 32], "switch-background": [157, 222, 83, 32], "switch-background_disabled": [2, 158, 83, 32], "modalview-background": [2, 102, 45, 54], "audio-volume-high": [49, 108, 48, 48], "audio-volume-low": [99, 108, 48, 48], "audio-volume-medium": [149, 108, 48, 48], "audio-volume-muted": [199, 108, 48, 48], "image-missing": [2, 52, 48, 48], "media-playback-pause": [52, 52, 48, 48], "media-playback-start": [102, 52, 48, 48], "media-playback-stop": [152, 52, 48, 48], "slider_cursor": [202, 52, 48, 48], "slider_cursor_disabled": [2, 2, 48, 48], "action_group": [52, 2, 33, 48], "action_group_disabled": [87, 2, 33, 48], "action_group_down": [122, 2, 33, 48], "sliderh_background": [157, 13, 41, 37], "sliderh_background_disabled": [200, 13, 41, 37], "switch-button_disabled": [87, 158, 43, 32], "bubble_btn_pressed": [132, 158, 32, 32], "checkbox_disabled_off": [166, 158, 32, 32], "checkbox_disabled_on": [200, 158, 32, 32], "previous_normal": [234, 158, 19, 32], "tree_opened": [59, 200, 20, 20], "splitter_grip": [242, 228, 12, 26], "splitter_grip_h": [81, 208, 26, 12], "separator": [249, 108, 5, 48], "splitter": [243, 18, 7, 32], "splitter_disabled_down_h": [157, 4, 32, 7], "splitter_disabled_h": [191, 4, 32, 7], "splitter_down_h": [109, 213, 32, 7], "splitter_h": [143, 213, 32, 7]}, "myatlas-3.png": {"sliderv_background": [2, 213, 37, 41], "sliderv_background_disabled": [41, 213, 37, 41], "action_bar": [80, 218, 36, 36], "button_disabled_pressed": [2, 174, 29, 37], "button_pressed": [33, 174, 29, 37], "spinner": [64, 174, 29, 37], "spinner_disabled": [95, 174, 29, 37], "spinner_pressed": [126, 174, 29, 37], "action_item_down": [157, 179, 32, 32], "bubble_btn": [191, 179, 32, 32], "checkbox_off": [118, 222, 32, 32], "checkbox_on": [152, 222, 32, 32], "checkbox_radio_disabled_off": [186, 222, 32, 32], "checkbox_radio_disabled_on": [220, 222, 32, 32], "checkbox_radio_off": [2, 140, 32, 32], "checkbox_radio_on": [36, 140, 32, 32], "overflow": [70, 140, 32, 32], "tab_btn": [104, 140, 32, 32], "tab_btn_disabled": [138, 140, 32, 32], "tab_btn_disabled_pressed": [172, 140, 32, 32], "tab_btn_pressed": [206, 140, 32, 32], "vkeyboard_disabled_key_down": [2, 106, 32, 32], "vkeyboard_disabled_key_normal": [36, 106, 32, 32], "vkeyboard_key_down": [70, 106, 32, 32], "vkeyboard_key_normal": [104, 106, 32, 32], "progressbar": [138, 114, 32, 24], "action_view": [225, 187, 24, 24], "progressbar_background": [172, 114, 24, 24], "close": [198, 118, 20, 20], "tree_closed": [220, 118, 20, 20], "splitter_disabled": [240, 140, 7, 32], "splitter_disabled_down": [249, 140, 7, 32]}} \ No newline at end of file diff --git a/Texture-atlas/before_atlas/textures/theme-blue/overflow.png b/Texture-atlas/before_atlas/textures/theme-blue/overflow.png new file mode 100755 index 0000000..21320a7 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/overflow.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/player-background.png b/Texture-atlas/before_atlas/textures/theme-blue/player-background.png new file mode 100644 index 0000000..74c447e Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/player-background.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/player-play-overlay.png b/Texture-atlas/before_atlas/textures/theme-blue/player-play-overlay.png new file mode 100644 index 0000000..9f2ee0a Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/player-play-overlay.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/previous_normal.png b/Texture-atlas/before_atlas/textures/theme-blue/previous_normal.png new file mode 100644 index 0000000..9828055 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/previous_normal.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/progressbar.png b/Texture-atlas/before_atlas/textures/theme-blue/progressbar.png new file mode 100644 index 0000000..6189663 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/progressbar.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/progressbar_background.png b/Texture-atlas/before_atlas/textures/theme-blue/progressbar_background.png new file mode 100644 index 0000000..d27d984 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/progressbar_background.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/ring.png b/Texture-atlas/before_atlas/textures/theme-blue/ring.png new file mode 100644 index 0000000..bbbdcaa Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/ring.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/selector_left.png b/Texture-atlas/before_atlas/textures/theme-blue/selector_left.png new file mode 100644 index 0000000..88129b9 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/selector_left.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/selector_middle.png b/Texture-atlas/before_atlas/textures/theme-blue/selector_middle.png new file mode 100644 index 0000000..e2d5e2a Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/selector_middle.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/selector_right.png b/Texture-atlas/before_atlas/textures/theme-blue/selector_right.png new file mode 100644 index 0000000..9c64518 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/selector_right.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/separator.png b/Texture-atlas/before_atlas/textures/theme-blue/separator.png new file mode 100755 index 0000000..b92274f Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/separator.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/slider_cursor.png b/Texture-atlas/before_atlas/textures/theme-blue/slider_cursor.png new file mode 100644 index 0000000..3e5b683 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/slider_cursor.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/slider_cursor_disabled.png b/Texture-atlas/before_atlas/textures/theme-blue/slider_cursor_disabled.png new file mode 100644 index 0000000..4dd0826 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/slider_cursor_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/sliderh_background.png b/Texture-atlas/before_atlas/textures/theme-blue/sliderh_background.png new file mode 100644 index 0000000..1cbffdb Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/sliderh_background.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/sliderh_background_disabled.png b/Texture-atlas/before_atlas/textures/theme-blue/sliderh_background_disabled.png new file mode 100644 index 0000000..9974ed1 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/sliderh_background_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/sliderv_background.png b/Texture-atlas/before_atlas/textures/theme-blue/sliderv_background.png new file mode 100644 index 0000000..ccc7ae8 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/sliderv_background.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/sliderv_background_disabled.png b/Texture-atlas/before_atlas/textures/theme-blue/sliderv_background_disabled.png new file mode 100644 index 0000000..62491cf Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/sliderv_background_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/spinner.png b/Texture-atlas/before_atlas/textures/theme-blue/spinner.png new file mode 100644 index 0000000..986bc8f Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/spinner.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/spinner_disabled.png b/Texture-atlas/before_atlas/textures/theme-blue/spinner_disabled.png new file mode 100644 index 0000000..455edc5 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/spinner_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/spinner_pressed.png b/Texture-atlas/before_atlas/textures/theme-blue/spinner_pressed.png new file mode 100644 index 0000000..02a2510 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/spinner_pressed.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/splitter.png b/Texture-atlas/before_atlas/textures/theme-blue/splitter.png new file mode 100644 index 0000000..de6256b Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/splitter.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/splitter_disabled.png b/Texture-atlas/before_atlas/textures/theme-blue/splitter_disabled.png new file mode 100644 index 0000000..0ec48bc Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/splitter_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/splitter_disabled_down.png b/Texture-atlas/before_atlas/textures/theme-blue/splitter_disabled_down.png new file mode 100644 index 0000000..a882622 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/splitter_disabled_down.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/splitter_disabled_down_h.png b/Texture-atlas/before_atlas/textures/theme-blue/splitter_disabled_down_h.png new file mode 100644 index 0000000..f7faa44 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/splitter_disabled_down_h.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/splitter_disabled_h.png b/Texture-atlas/before_atlas/textures/theme-blue/splitter_disabled_h.png new file mode 100644 index 0000000..a60ac8c Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/splitter_disabled_h.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/splitter_down.png b/Texture-atlas/before_atlas/textures/theme-blue/splitter_down.png new file mode 100644 index 0000000..c1d989a Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/splitter_down.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/splitter_down_h.png b/Texture-atlas/before_atlas/textures/theme-blue/splitter_down_h.png new file mode 100644 index 0000000..f7bd313 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/splitter_down_h.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/splitter_grip.png b/Texture-atlas/before_atlas/textures/theme-blue/splitter_grip.png new file mode 100644 index 0000000..acee7a4 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/splitter_grip.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/splitter_grip_h.png b/Texture-atlas/before_atlas/textures/theme-blue/splitter_grip_h.png new file mode 100644 index 0000000..ffaf91e Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/splitter_grip_h.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/splitter_h.png b/Texture-atlas/before_atlas/textures/theme-blue/splitter_h.png new file mode 100644 index 0000000..36e7ab1 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/splitter_h.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/switch-background.png b/Texture-atlas/before_atlas/textures/theme-blue/switch-background.png new file mode 100644 index 0000000..7d2e7a3 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/switch-background.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/switch-background_disabled.png b/Texture-atlas/before_atlas/textures/theme-blue/switch-background_disabled.png new file mode 100644 index 0000000..458104c Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/switch-background_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/switch-button.png b/Texture-atlas/before_atlas/textures/theme-blue/switch-button.png new file mode 100644 index 0000000..36a056a Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/switch-button.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/switch-button_disabled.png b/Texture-atlas/before_atlas/textures/theme-blue/switch-button_disabled.png new file mode 100644 index 0000000..77e251c Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/switch-button_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/tab.png b/Texture-atlas/before_atlas/textures/theme-blue/tab.png new file mode 100644 index 0000000..f9f40de Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/tab.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/tab_btn.png b/Texture-atlas/before_atlas/textures/theme-blue/tab_btn.png new file mode 100644 index 0000000..7731a53 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/tab_btn.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/tab_btn_disabled.png b/Texture-atlas/before_atlas/textures/theme-blue/tab_btn_disabled.png new file mode 100644 index 0000000..565e2e2 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/tab_btn_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/tab_btn_disabled_pressed.png b/Texture-atlas/before_atlas/textures/theme-blue/tab_btn_disabled_pressed.png new file mode 100644 index 0000000..54e8f51 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/tab_btn_disabled_pressed.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/tab_btn_pressed.png b/Texture-atlas/before_atlas/textures/theme-blue/tab_btn_pressed.png new file mode 100644 index 0000000..66ee679 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/tab_btn_pressed.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/tab_disabled.png b/Texture-atlas/before_atlas/textures/theme-blue/tab_disabled.png new file mode 100644 index 0000000..497bc99 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/tab_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/textinput.png b/Texture-atlas/before_atlas/textures/theme-blue/textinput.png new file mode 100644 index 0000000..74d3f60 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/textinput.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/textinput_active.png b/Texture-atlas/before_atlas/textures/theme-blue/textinput_active.png new file mode 100644 index 0000000..5c082f3 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/textinput_active.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/textinput_disabled.png b/Texture-atlas/before_atlas/textures/theme-blue/textinput_disabled.png new file mode 100644 index 0000000..2142820 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/textinput_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/textinput_disabled_active.png b/Texture-atlas/before_atlas/textures/theme-blue/textinput_disabled_active.png new file mode 100644 index 0000000..536028b Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/textinput_disabled_active.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/tree_closed.png b/Texture-atlas/before_atlas/textures/theme-blue/tree_closed.png new file mode 100644 index 0000000..2408f57 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/tree_closed.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/tree_opened.png b/Texture-atlas/before_atlas/textures/theme-blue/tree_opened.png new file mode 100644 index 0000000..cbc8efc Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/tree_opened.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/vkeyboard_background.png b/Texture-atlas/before_atlas/textures/theme-blue/vkeyboard_background.png new file mode 100644 index 0000000..6c7ff49 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/vkeyboard_background.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/vkeyboard_disabled_background.png b/Texture-atlas/before_atlas/textures/theme-blue/vkeyboard_disabled_background.png new file mode 100644 index 0000000..a4c943f Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/vkeyboard_disabled_background.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/vkeyboard_disabled_key_down.png b/Texture-atlas/before_atlas/textures/theme-blue/vkeyboard_disabled_key_down.png new file mode 100644 index 0000000..c9137a8 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/vkeyboard_disabled_key_down.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/vkeyboard_disabled_key_normal.png b/Texture-atlas/before_atlas/textures/theme-blue/vkeyboard_disabled_key_normal.png new file mode 100644 index 0000000..38e300a Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/vkeyboard_disabled_key_normal.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/vkeyboard_key_down.png b/Texture-atlas/before_atlas/textures/theme-blue/vkeyboard_key_down.png new file mode 100644 index 0000000..773d481 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/vkeyboard_key_down.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-blue/vkeyboard_key_normal.png b/Texture-atlas/before_atlas/textures/theme-blue/vkeyboard_key_normal.png new file mode 100644 index 0000000..67eb7e3 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-blue/vkeyboard_key_normal.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/action_bar.png b/Texture-atlas/before_atlas/textures/theme-orange/action_bar.png new file mode 100644 index 0000000..505f9cb Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/action_bar.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/action_group.png b/Texture-atlas/before_atlas/textures/theme-orange/action_group.png new file mode 100644 index 0000000..bf548cc Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/action_group.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/action_group_disabled.png b/Texture-atlas/before_atlas/textures/theme-orange/action_group_disabled.png new file mode 100644 index 0000000..571b1fb Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/action_group_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/action_group_down.png b/Texture-atlas/before_atlas/textures/theme-orange/action_group_down.png new file mode 100644 index 0000000..15ead4b Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/action_group_down.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/action_item.png b/Texture-atlas/before_atlas/textures/theme-orange/action_item.png new file mode 100644 index 0000000..4ce962d Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/action_item.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/action_item_down.png b/Texture-atlas/before_atlas/textures/theme-orange/action_item_down.png new file mode 100644 index 0000000..7cd3c86 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/action_item_down.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/action_view.png b/Texture-atlas/before_atlas/textures/theme-orange/action_view.png new file mode 100644 index 0000000..32019f8 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/action_view.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/audio-volume-high.png b/Texture-atlas/before_atlas/textures/theme-orange/audio-volume-high.png new file mode 100755 index 0000000..c783447 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/audio-volume-high.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/audio-volume-low.png b/Texture-atlas/before_atlas/textures/theme-orange/audio-volume-low.png new file mode 100755 index 0000000..aaac36f Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/audio-volume-low.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/audio-volume-medium.png b/Texture-atlas/before_atlas/textures/theme-orange/audio-volume-medium.png new file mode 100755 index 0000000..4059a8a Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/audio-volume-medium.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/audio-volume-muted.png b/Texture-atlas/before_atlas/textures/theme-orange/audio-volume-muted.png new file mode 100755 index 0000000..f50609f Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/audio-volume-muted.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/bubble.png b/Texture-atlas/before_atlas/textures/theme-orange/bubble.png new file mode 100644 index 0000000..6481dac Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/bubble.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/bubble_arrow.png b/Texture-atlas/before_atlas/textures/theme-orange/bubble_arrow.png new file mode 100644 index 0000000..9250266 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/bubble_arrow.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/bubble_btn.png b/Texture-atlas/before_atlas/textures/theme-orange/bubble_btn.png new file mode 100644 index 0000000..4171565 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/bubble_btn.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/bubble_btn_pressed.png b/Texture-atlas/before_atlas/textures/theme-orange/bubble_btn_pressed.png new file mode 100644 index 0000000..0195f86 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/bubble_btn_pressed.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/button.png b/Texture-atlas/before_atlas/textures/theme-orange/button.png new file mode 100644 index 0000000..4399c92 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/button.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/button_disabled.png b/Texture-atlas/before_atlas/textures/theme-orange/button_disabled.png new file mode 100644 index 0000000..ebe14cf Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/button_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/button_disabled_pressed.png b/Texture-atlas/before_atlas/textures/theme-orange/button_disabled_pressed.png new file mode 100644 index 0000000..4e985a7 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/button_disabled_pressed.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/button_pressed.png b/Texture-atlas/before_atlas/textures/theme-orange/button_pressed.png new file mode 100644 index 0000000..c8db7c5 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/button_pressed.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/checkbox_disabled_off.png b/Texture-atlas/before_atlas/textures/theme-orange/checkbox_disabled_off.png new file mode 100644 index 0000000..5fd8099 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/checkbox_disabled_off.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/checkbox_disabled_on.png b/Texture-atlas/before_atlas/textures/theme-orange/checkbox_disabled_on.png new file mode 100644 index 0000000..258bf4e Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/checkbox_disabled_on.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/checkbox_off.png b/Texture-atlas/before_atlas/textures/theme-orange/checkbox_off.png new file mode 100644 index 0000000..d3acfc1 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/checkbox_off.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/checkbox_on.png b/Texture-atlas/before_atlas/textures/theme-orange/checkbox_on.png new file mode 100644 index 0000000..5dc65e8 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/checkbox_on.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/checkbox_radio_disabled_off.png b/Texture-atlas/before_atlas/textures/theme-orange/checkbox_radio_disabled_off.png new file mode 100644 index 0000000..aa2ec8f Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/checkbox_radio_disabled_off.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/checkbox_radio_disabled_on.png b/Texture-atlas/before_atlas/textures/theme-orange/checkbox_radio_disabled_on.png new file mode 100644 index 0000000..5673754 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/checkbox_radio_disabled_on.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/checkbox_radio_off.png b/Texture-atlas/before_atlas/textures/theme-orange/checkbox_radio_off.png new file mode 100644 index 0000000..5066669 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/checkbox_radio_off.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/checkbox_radio_on.png b/Texture-atlas/before_atlas/textures/theme-orange/checkbox_radio_on.png new file mode 100644 index 0000000..04fdb7a Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/checkbox_radio_on.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/close.png b/Texture-atlas/before_atlas/textures/theme-orange/close.png new file mode 100644 index 0000000..1df074b Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/close.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/filechooser_file.png b/Texture-atlas/before_atlas/textures/theme-orange/filechooser_file.png new file mode 100644 index 0000000..9a58f6d Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/filechooser_file.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/filechooser_folder.png b/Texture-atlas/before_atlas/textures/theme-orange/filechooser_folder.png new file mode 100644 index 0000000..4628246 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/filechooser_folder.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/filechooser_selected.png b/Texture-atlas/before_atlas/textures/theme-orange/filechooser_selected.png new file mode 100644 index 0000000..f8aa6a6 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/filechooser_selected.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/image-missing.png b/Texture-atlas/before_atlas/textures/theme-orange/image-missing.png new file mode 100644 index 0000000..e6ba992 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/image-missing.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/media-playback-pause.png b/Texture-atlas/before_atlas/textures/theme-orange/media-playback-pause.png new file mode 100755 index 0000000..9037e4e Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/media-playback-pause.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/media-playback-start.png b/Texture-atlas/before_atlas/textures/theme-orange/media-playback-start.png new file mode 100755 index 0000000..767c734 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/media-playback-start.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/media-playback-stop.png b/Texture-atlas/before_atlas/textures/theme-orange/media-playback-stop.png new file mode 100755 index 0000000..f885667 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/media-playback-stop.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/modalview-background.png b/Texture-atlas/before_atlas/textures/theme-orange/modalview-background.png new file mode 100644 index 0000000..a2ef648 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/modalview-background.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/myatlas-0.png b/Texture-atlas/before_atlas/textures/theme-orange/myatlas-0.png new file mode 100644 index 0000000..b52ef5d Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/myatlas-0.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/myatlas-1.png b/Texture-atlas/before_atlas/textures/theme-orange/myatlas-1.png new file mode 100644 index 0000000..96b9ceb Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/myatlas-1.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/myatlas-2.png b/Texture-atlas/before_atlas/textures/theme-orange/myatlas-2.png new file mode 100644 index 0000000..ed7de7f Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/myatlas-2.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/myatlas-3.png b/Texture-atlas/before_atlas/textures/theme-orange/myatlas-3.png new file mode 100644 index 0000000..ee38291 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/myatlas-3.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/myatlas.atlas b/Texture-atlas/before_atlas/textures/theme-orange/myatlas.atlas new file mode 100644 index 0000000..9727b80 --- /dev/null +++ b/Texture-atlas/before_atlas/textures/theme-orange/myatlas.atlas @@ -0,0 +1 @@ +{"myatlas-0.png": {"filechooser_selected": [2, 132, 122, 122], "player-play-overlay": [126, 139, 117, 115], "textinput_disabled": [2, 19, 111, 111], "ring": [115, 22, 108, 108], "button": [225, 93, 29, 37], "button_disabled": [225, 54, 29, 37], "action_item": [225, 28, 24, 24]}, "myatlas-1.png": {"player-background": [2, 151, 103, 103], "bubble": [107, 189, 65, 65], "filechooser_file": [174, 190, 64, 64], "filechooser_folder": [2, 85, 64, 64], "textinput": [68, 85, 64, 64], "textinput_active": [134, 85, 64, 64], "textinput_disabled_active": [2, 19, 64, 64], "vkeyboard_background": [68, 19, 64, 64], "vkeyboard_disabled_background": [134, 19, 64, 64], "selector_left": [200, 87, 55, 62], "selector_middle": [200, 21, 55, 62], "tab": [107, 155, 96, 32], "switch-button": [205, 155, 43, 32], "splitter_down": [240, 222, 7, 32], "bubble_arrow": [240, 210, 16, 10]}, "myatlas-2.png": {"selector_right": [2, 192, 55, 62], "tab_disabled": [59, 222, 96, 32], "switch-background": [157, 222, 83, 32], "switch-background_disabled": [2, 158, 83, 32], "modalview-background": [2, 102, 45, 54], "audio-volume-high": [49, 108, 48, 48], "audio-volume-low": [99, 108, 48, 48], "audio-volume-medium": [149, 108, 48, 48], "audio-volume-muted": [199, 108, 48, 48], "image-missing": [2, 52, 48, 48], "media-playback-pause": [52, 52, 48, 48], "media-playback-start": [102, 52, 48, 48], "media-playback-stop": [152, 52, 48, 48], "slider_cursor": [202, 52, 48, 48], "slider_cursor_disabled": [2, 2, 48, 48], "action_group": [52, 2, 33, 48], "action_group_disabled": [87, 2, 33, 48], "action_group_down": [122, 2, 33, 48], "sliderh_background": [157, 13, 41, 37], "sliderh_background_disabled": [200, 13, 41, 37], "switch-button_disabled": [87, 158, 43, 32], "bubble_btn_pressed": [132, 158, 32, 32], "checkbox_disabled_off": [166, 158, 32, 32], "checkbox_disabled_on": [200, 158, 32, 32], "previous_normal": [234, 158, 19, 32], "tree_opened": [59, 200, 20, 20], "splitter_grip": [242, 228, 12, 26], "splitter_grip_h": [81, 208, 26, 12], "separator": [249, 108, 5, 48], "splitter": [243, 18, 7, 32], "splitter_disabled_down_h": [157, 4, 32, 7], "splitter_disabled_h": [191, 4, 32, 7], "splitter_down_h": [109, 213, 32, 7], "splitter_h": [143, 213, 32, 7]}, "myatlas-3.png": {"sliderv_background": [2, 213, 37, 41], "sliderv_background_disabled": [41, 213, 37, 41], "action_bar": [80, 218, 36, 36], "button_disabled_pressed": [2, 174, 29, 37], "button_pressed": [33, 174, 29, 37], "spinner": [64, 174, 29, 37], "spinner_disabled": [95, 174, 29, 37], "spinner_pressed": [126, 174, 29, 37], "action_item_down": [157, 179, 32, 32], "bubble_btn": [191, 179, 32, 32], "checkbox_off": [118, 222, 32, 32], "checkbox_on": [152, 222, 32, 32], "checkbox_radio_disabled_off": [186, 222, 32, 32], "checkbox_radio_disabled_on": [220, 222, 32, 32], "checkbox_radio_off": [2, 140, 32, 32], "checkbox_radio_on": [36, 140, 32, 32], "overflow": [70, 140, 32, 32], "tab_btn": [104, 140, 32, 32], "tab_btn_disabled": [138, 140, 32, 32], "tab_btn_disabled_pressed": [172, 140, 32, 32], "tab_btn_pressed": [206, 140, 32, 32], "vkeyboard_disabled_key_down": [2, 106, 32, 32], "vkeyboard_disabled_key_normal": [36, 106, 32, 32], "vkeyboard_key_down": [70, 106, 32, 32], "vkeyboard_key_normal": [104, 106, 32, 32], "progressbar": [138, 114, 32, 24], "action_view": [225, 187, 24, 24], "progressbar_background": [172, 114, 24, 24], "close": [198, 118, 20, 20], "tree_closed": [220, 118, 20, 20], "splitter_disabled": [240, 140, 7, 32], "splitter_disabled_down": [249, 140, 7, 32]}} \ No newline at end of file diff --git a/Texture-atlas/before_atlas/textures/theme-orange/overflow.png b/Texture-atlas/before_atlas/textures/theme-orange/overflow.png new file mode 100755 index 0000000..483831a Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/overflow.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/player-background.png b/Texture-atlas/before_atlas/textures/theme-orange/player-background.png new file mode 100644 index 0000000..b200446 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/player-background.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/player-play-overlay.png b/Texture-atlas/before_atlas/textures/theme-orange/player-play-overlay.png new file mode 100644 index 0000000..9f2ee0a Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/player-play-overlay.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/previous_normal.png b/Texture-atlas/before_atlas/textures/theme-orange/previous_normal.png new file mode 100644 index 0000000..9828055 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/previous_normal.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/progressbar.png b/Texture-atlas/before_atlas/textures/theme-orange/progressbar.png new file mode 100644 index 0000000..76fa36b Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/progressbar.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/progressbar_background.png b/Texture-atlas/before_atlas/textures/theme-orange/progressbar_background.png new file mode 100644 index 0000000..d27d984 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/progressbar_background.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/ring.png b/Texture-atlas/before_atlas/textures/theme-orange/ring.png new file mode 100644 index 0000000..bbbdcaa Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/ring.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/selector_left.png b/Texture-atlas/before_atlas/textures/theme-orange/selector_left.png new file mode 100644 index 0000000..d9d4b5e Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/selector_left.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/selector_middle.png b/Texture-atlas/before_atlas/textures/theme-orange/selector_middle.png new file mode 100644 index 0000000..955bc6f Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/selector_middle.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/selector_right.png b/Texture-atlas/before_atlas/textures/theme-orange/selector_right.png new file mode 100644 index 0000000..ec4f93e Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/selector_right.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/separator.png b/Texture-atlas/before_atlas/textures/theme-orange/separator.png new file mode 100755 index 0000000..27a034b Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/separator.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/slider_cursor.png b/Texture-atlas/before_atlas/textures/theme-orange/slider_cursor.png new file mode 100644 index 0000000..d556817 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/slider_cursor.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/slider_cursor_disabled.png b/Texture-atlas/before_atlas/textures/theme-orange/slider_cursor_disabled.png new file mode 100644 index 0000000..f82a2f5 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/slider_cursor_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/sliderh_background.png b/Texture-atlas/before_atlas/textures/theme-orange/sliderh_background.png new file mode 100644 index 0000000..1cbffdb Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/sliderh_background.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/sliderh_background_disabled.png b/Texture-atlas/before_atlas/textures/theme-orange/sliderh_background_disabled.png new file mode 100644 index 0000000..9974ed1 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/sliderh_background_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/sliderv_background.png b/Texture-atlas/before_atlas/textures/theme-orange/sliderv_background.png new file mode 100644 index 0000000..ccc7ae8 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/sliderv_background.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/sliderv_background_disabled.png b/Texture-atlas/before_atlas/textures/theme-orange/sliderv_background_disabled.png new file mode 100644 index 0000000..62491cf Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/sliderv_background_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/spinner.png b/Texture-atlas/before_atlas/textures/theme-orange/spinner.png new file mode 100644 index 0000000..9c43c9d Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/spinner.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/spinner_disabled.png b/Texture-atlas/before_atlas/textures/theme-orange/spinner_disabled.png new file mode 100644 index 0000000..0a16fc6 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/spinner_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/spinner_pressed.png b/Texture-atlas/before_atlas/textures/theme-orange/spinner_pressed.png new file mode 100644 index 0000000..12b62bb Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/spinner_pressed.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/splitter.png b/Texture-atlas/before_atlas/textures/theme-orange/splitter.png new file mode 100644 index 0000000..ec04383 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/splitter.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/splitter_disabled.png b/Texture-atlas/before_atlas/textures/theme-orange/splitter_disabled.png new file mode 100644 index 0000000..a3f8bf9 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/splitter_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/splitter_disabled_down.png b/Texture-atlas/before_atlas/textures/theme-orange/splitter_disabled_down.png new file mode 100644 index 0000000..9d1d907 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/splitter_disabled_down.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/splitter_disabled_down_h.png b/Texture-atlas/before_atlas/textures/theme-orange/splitter_disabled_down_h.png new file mode 100644 index 0000000..079cbab Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/splitter_disabled_down_h.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/splitter_disabled_h.png b/Texture-atlas/before_atlas/textures/theme-orange/splitter_disabled_h.png new file mode 100644 index 0000000..1e80a00 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/splitter_disabled_h.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/splitter_down.png b/Texture-atlas/before_atlas/textures/theme-orange/splitter_down.png new file mode 100644 index 0000000..42535ad Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/splitter_down.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/splitter_down_h.png b/Texture-atlas/before_atlas/textures/theme-orange/splitter_down_h.png new file mode 100644 index 0000000..27cf42f Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/splitter_down_h.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/splitter_grip.png b/Texture-atlas/before_atlas/textures/theme-orange/splitter_grip.png new file mode 100644 index 0000000..3754615 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/splitter_grip.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/splitter_grip_h.png b/Texture-atlas/before_atlas/textures/theme-orange/splitter_grip_h.png new file mode 100644 index 0000000..a7bd59d Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/splitter_grip_h.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/splitter_h.png b/Texture-atlas/before_atlas/textures/theme-orange/splitter_h.png new file mode 100644 index 0000000..f5ff0d9 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/splitter_h.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/switch-background.png b/Texture-atlas/before_atlas/textures/theme-orange/switch-background.png new file mode 100644 index 0000000..8c7a23b Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/switch-background.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/switch-background_disabled.png b/Texture-atlas/before_atlas/textures/theme-orange/switch-background_disabled.png new file mode 100644 index 0000000..458104c Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/switch-background_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/switch-button.png b/Texture-atlas/before_atlas/textures/theme-orange/switch-button.png new file mode 100644 index 0000000..2dc4734 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/switch-button.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/switch-button_disabled.png b/Texture-atlas/before_atlas/textures/theme-orange/switch-button_disabled.png new file mode 100644 index 0000000..77e251c Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/switch-button_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/tab.png b/Texture-atlas/before_atlas/textures/theme-orange/tab.png new file mode 100644 index 0000000..b701d3c Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/tab.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/tab_btn.png b/Texture-atlas/before_atlas/textures/theme-orange/tab_btn.png new file mode 100644 index 0000000..08f3a46 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/tab_btn.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/tab_btn_disabled.png b/Texture-atlas/before_atlas/textures/theme-orange/tab_btn_disabled.png new file mode 100644 index 0000000..b0ddc06 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/tab_btn_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/tab_btn_disabled_pressed.png b/Texture-atlas/before_atlas/textures/theme-orange/tab_btn_disabled_pressed.png new file mode 100644 index 0000000..b42f9aa Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/tab_btn_disabled_pressed.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/tab_btn_pressed.png b/Texture-atlas/before_atlas/textures/theme-orange/tab_btn_pressed.png new file mode 100644 index 0000000..41a5bdd Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/tab_btn_pressed.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/tab_disabled.png b/Texture-atlas/before_atlas/textures/theme-orange/tab_disabled.png new file mode 100644 index 0000000..5deec23 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/tab_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/textinput.png b/Texture-atlas/before_atlas/textures/theme-orange/textinput.png new file mode 100644 index 0000000..74d3f60 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/textinput.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/textinput_active.png b/Texture-atlas/before_atlas/textures/theme-orange/textinput_active.png new file mode 100644 index 0000000..65c5d55 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/textinput_active.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/textinput_disabled.png b/Texture-atlas/before_atlas/textures/theme-orange/textinput_disabled.png new file mode 100644 index 0000000..2142820 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/textinput_disabled.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/textinput_disabled_active.png b/Texture-atlas/before_atlas/textures/theme-orange/textinput_disabled_active.png new file mode 100644 index 0000000..536028b Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/textinput_disabled_active.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/tree_closed.png b/Texture-atlas/before_atlas/textures/theme-orange/tree_closed.png new file mode 100644 index 0000000..2408f57 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/tree_closed.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/tree_opened.png b/Texture-atlas/before_atlas/textures/theme-orange/tree_opened.png new file mode 100644 index 0000000..cbc8efc Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/tree_opened.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/vkeyboard_background.png b/Texture-atlas/before_atlas/textures/theme-orange/vkeyboard_background.png new file mode 100644 index 0000000..61fee4c Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/vkeyboard_background.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/vkeyboard_disabled_background.png b/Texture-atlas/before_atlas/textures/theme-orange/vkeyboard_disabled_background.png new file mode 100644 index 0000000..ae02f34 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/vkeyboard_disabled_background.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/vkeyboard_disabled_key_down.png b/Texture-atlas/before_atlas/textures/theme-orange/vkeyboard_disabled_key_down.png new file mode 100644 index 0000000..2fbdc40 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/vkeyboard_disabled_key_down.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/vkeyboard_disabled_key_normal.png b/Texture-atlas/before_atlas/textures/theme-orange/vkeyboard_disabled_key_normal.png new file mode 100644 index 0000000..92bd035 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/vkeyboard_disabled_key_normal.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/vkeyboard_key_down.png b/Texture-atlas/before_atlas/textures/theme-orange/vkeyboard_key_down.png new file mode 100644 index 0000000..b09959d Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/vkeyboard_key_down.png differ diff --git a/Texture-atlas/before_atlas/textures/theme-orange/vkeyboard_key_normal.png b/Texture-atlas/before_atlas/textures/theme-orange/vkeyboard_key_normal.png new file mode 100644 index 0000000..72e4c83 Binary files /dev/null and b/Texture-atlas/before_atlas/textures/theme-orange/vkeyboard_key_normal.png differ