Lines Matching refs:options
4 Copyright (C) 2010 Nicolas Dufour, nicoduf@yahoo.fr (color options)
87 if self.options.tab == '"object"':
90 if (self.options.invert):
96 if (self.options.assign_alpha):
99 if (self.options.invert):
105 if (self.options.fill_type == "solid"):
107 if (self.options.assign_alpha):
110 elif self.options.tab == '"custom"':
111 fill_red = ((self.options.fill_color >> 24) & 255)
112 fill_green = ((self.options.fill_color >> 16) & 255)
113 fill_blue = ((self.options.fill_color >> 8) & 255)
115 fill_opacity = (((self.options.fill_color) & 255) / 255.)
116 stroke_red = ((self.options.stroke_color >> 24) & 255)
117 stroke_green = ((self.options.stroke_color >> 16) & 255)
118 stroke_blue = ((self.options.stroke_color >> 8) & 255)
120 stroke_opacity = (((self.options.stroke_color) & 255) / 255.)
121 if (not(self.options.assign_fill)):
123 if (not(self.options.assign_stroke)):
132 if not self.options.modify:
140 new_id = self.uniqueId(marker_id, not self.options.modify)
150 if (not('stroke' in cstyle and self.options.tab == '"object"' and cstyle['stroke'] == 'none' and self.options.fill_type == "filled")):
154 if (not('fill' in cstyle and self.options.tab == '"object"' and cstyle['fill'] == 'none' and self.options.fill_type == "solid")):