ColorDropperDialog
A widget that displays an indicator and a zoom window for selecting a color on the screen.
Left-click the mouse button to select a color. The result is
stored in the result property as a ColorChoice tuple which
contains named fields for rgb, hsl, and hex color models.
Zoom in and out on the zoom window by using the mouse wheel.
This widget is implemented for Windows and Linux only.
high resolution displays
This widget may not function properly on high resolution displays if you are not using the application in high resolution mode. This is enabled automatically on Windows.
Source code in src/ttkbootstrap/dialogs/colordropper.py
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | |
build_screenshot_canvas()
Build the screenshot canvas
Source code in src/ttkbootstrap/dialogs/colordropper.py
82 83 84 85 86 87 88 89 90 | |
build_zoom_toplevel(master)
Build the toplevel widget that shows the zoomed version of the pixels underneath the mouse cursor.
Source code in src/ttkbootstrap/dialogs/colordropper.py
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | |
get_hover_color()
Get the color that is hovered over by the mouse cursor.
Source code in src/ttkbootstrap/dialogs/colordropper.py
175 176 177 178 179 180 181 182 | |
on_left_click(_)
Capture the color underneath the mouse cursor and destroy the toplevel widget
Source code in src/ttkbootstrap/dialogs/colordropper.py
130 131 132 133 134 135 136 137 138 139 140 141 142 143 | |
on_mouse_motion(event=None)
Callback for mouse motion
Source code in src/ttkbootstrap/dialogs/colordropper.py
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | |
on_mouse_wheel(event)
Zoom in and out on the image underneath the mouse TODO Cross platform testing needed
Source code in src/ttkbootstrap/dialogs/colordropper.py
115 116 117 118 119 120 121 122 123 124 125 126 127 128 | |
on_right_click(_)
Close the color dropper without saving any color information
Source code in src/ttkbootstrap/dialogs/colordropper.py
145 146 147 148 149 150 151 | |
show()
Show the toplevel window
Source code in src/ttkbootstrap/dialogs/colordropper.py
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | |