summaryrefslogtreecommitdiff
path: root/ricky/imgrid/selections.py
diff options
context:
space:
mode:
authorpepperpepperpepper <pepper@scannerjammer.com>2015-11-29 17:43:44 -0800
committerpepperpepperpepper <pepper@scannerjammer.com>2015-11-29 17:43:44 -0800
commit9a7bf3bffb2a8459e66b988aaff53611723b5ab4 (patch)
treecc4ef0de15e22f5c6e5f8d2ecf16db0486d7a8ff /ricky/imgrid/selections.py
parent10a619b2c7227b2ad214fbb985141b884fbe87fb (diff)
required=0, -e commit message for your changes. Lines starting
Diffstat (limited to 'ricky/imgrid/selections.py')
-rwxr-xr-xricky/imgrid/selections.py64
1 files changed, 0 insertions, 64 deletions
diff --git a/ricky/imgrid/selections.py b/ricky/imgrid/selections.py
deleted file mode 100755
index 7338709..0000000
--- a/ricky/imgrid/selections.py
+++ /dev/null
@@ -1,64 +0,0 @@
-from ricky.param.selections import Selections
-format_selections = Selections.from_dict(
- { 'weight': 20, 'value': 'png' },
- { 'weight': 0, 'value': 'gif' },
- { 'weight': 0, 'value': 'jpg' },
-)
-transition_selections = Selections.from_dict(
- { "value" : "background", "weight": 1 },
- { "value" : "dither", "weight": 1 },
- { "value" : "random", "weight": 1 },
- { "value" : "tile", "weight": 1 },
- { "value" : "edge", "weight": 1 },
-)
-skycolor_colors = \
- bgcolor_colors = planebgcolor_colors = Selections.from_dict(
- { "value" : "white", "weight" : 1 },
- { "value" : "silver", "weight" : 1 },
- { "value" : None, "weight" : 10 },
-)
-
-linecolor_colors = Selections.from_dict(
- { "value" : "black", "weight" : 1 },
- { "value" : "white", "weight" : 1 },
- { "value" : "silver", "weight" : 1 },
-)
-swing_selections = tilt_selections = roll_selections = Selections.from_dict(
- {"value": "", "weight": 2},
- {"value": 30, "weight": 1},
- {"value": -30, "weight": 1},
-)
-width_selections = height_selections = Selections.from_dict(
- { "value" : 400, "weight" : 1 },
- { "value" : 600, "weight" : 1 },
-)
-linethickness_selections = Selections.from_dict(
- {"value":1, "weight": 2},
- {"value":2, "weight": 1},
-)
-opacity_selections = Selections.from_dict(
- {"value":1, "weight": 2},
- {"value":0.5, "weight": 1},
-)
-spacing_selections = Selections.from_dict(
- {"value":10, "weight": 1},
- {"value":15, "weight": 1},
-)
-vlines_selections = hlines_selections = Selections.from_dict(
- {"value":"", "weight": 2},
- {"value":"true", "weight": 1},
-)
-shadow_selections = Selections.from_dict(
- {"value":"", "weight": 1},
- {"value":"true", "weight": 1},
-)
-zoom_selections = Selections.from_dict(
- {"value": 0, "weight": 3},
- {"value": 1.2, "weight": 1},
- {"value": -1.2, "weight": 1},
-)
-trim_selections = Selections.from_dict(
- {"value":"", "weight": 1},
- {"value":"true", "weight": 1},
-)
-