ImageEditor.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. /*
  2. * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. *
  8. * 1. Redistributions of source code must retain the above copyright notice, this
  9. * list of conditions and the following disclaimer.
  10. *
  11. * 2. Redistributions in binary form must reproduce the above copyright notice,
  12. * this list of conditions and the following disclaimer in the documentation
  13. * and/or other materials provided with the distribution.
  14. *
  15. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  16. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  18. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  19. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  20. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  21. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  22. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  23. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  24. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25. */
  26. #include "ImageEditor.h"
  27. #include "Image.h"
  28. #include "Layer.h"
  29. #include "Tool.h"
  30. #include <LibGUI/Painter.h>
  31. #include <LibGfx/Palette.h>
  32. #include <LibGfx/Rect.h>
  33. namespace PixelPaint {
  34. ImageEditor::ImageEditor()
  35. {
  36. }
  37. ImageEditor::~ImageEditor()
  38. {
  39. if (m_image)
  40. m_image->remove_client(*this);
  41. }
  42. void ImageEditor::set_image(RefPtr<Image> image)
  43. {
  44. if (m_image)
  45. m_image->remove_client(*this);
  46. m_image = move(image);
  47. update();
  48. if (m_image)
  49. m_image->add_client(*this);
  50. }
  51. void ImageEditor::paint_event(GUI::PaintEvent& event)
  52. {
  53. GUI::Frame::paint_event(event);
  54. GUI::Painter painter(*this);
  55. painter.add_clip_rect(event.rect());
  56. painter.add_clip_rect(frame_inner_rect());
  57. Gfx::StylePainter::paint_transparency_grid(painter, rect(), palette());
  58. if (m_image) {
  59. painter.draw_rect(m_editor_image_rect.inflated(2, 2), Color::Black);
  60. m_image->paint_into(painter, m_editor_image_rect);
  61. }
  62. if (m_active_layer) {
  63. painter.draw_rect(enclosing_int_rect(image_rect_to_editor_rect(m_active_layer->relative_rect())).inflated(2, 2), Color::Black);
  64. }
  65. }
  66. Gfx::FloatRect ImageEditor::layer_rect_to_editor_rect(const Layer& layer, const Gfx::IntRect& layer_rect) const
  67. {
  68. return image_rect_to_editor_rect(layer_rect.translated(layer.location()));
  69. }
  70. Gfx::FloatRect ImageEditor::image_rect_to_editor_rect(const Gfx::IntRect& image_rect) const
  71. {
  72. Gfx::FloatRect editor_rect;
  73. editor_rect.set_location(image_position_to_editor_position(image_rect.location()));
  74. editor_rect.set_width((float)image_rect.width() * m_scale);
  75. editor_rect.set_height((float)image_rect.height() * m_scale);
  76. return editor_rect;
  77. }
  78. Gfx::FloatRect ImageEditor::editor_rect_to_image_rect(const Gfx::IntRect& editor_rect) const
  79. {
  80. Gfx::FloatRect image_rect;
  81. image_rect.set_location(editor_position_to_image_position(editor_rect.location()));
  82. image_rect.set_width((float)editor_rect.width() / m_scale);
  83. image_rect.set_height((float)editor_rect.height() / m_scale);
  84. return image_rect;
  85. }
  86. Gfx::FloatPoint ImageEditor::layer_position_to_editor_position(const Layer& layer, const Gfx::IntPoint& layer_position) const
  87. {
  88. return image_position_to_editor_position(layer_position.translated(layer.location()));
  89. }
  90. Gfx::FloatPoint ImageEditor::image_position_to_editor_position(const Gfx::IntPoint& image_position) const
  91. {
  92. Gfx::FloatPoint editor_position;
  93. editor_position.set_x(m_editor_image_rect.x() + ((float)image_position.x() * m_scale));
  94. editor_position.set_y(m_editor_image_rect.y() + ((float)image_position.y() * m_scale));
  95. return editor_position;
  96. }
  97. Gfx::FloatPoint ImageEditor::editor_position_to_image_position(const Gfx::IntPoint& editor_position) const
  98. {
  99. Gfx::FloatPoint image_position;
  100. image_position.set_x(((float)editor_position.x() - m_editor_image_rect.x()) / m_scale);
  101. image_position.set_y(((float)editor_position.y() - m_editor_image_rect.y()) / m_scale);
  102. return image_position;
  103. }
  104. void ImageEditor::second_paint_event(GUI::PaintEvent& event)
  105. {
  106. if (m_active_tool && m_active_layer)
  107. m_active_tool->on_second_paint(*m_active_layer, event);
  108. }
  109. GUI::MouseEvent ImageEditor::event_with_pan_and_scale_applied(const GUI::MouseEvent& event) const
  110. {
  111. auto image_position = editor_position_to_image_position(event.position());
  112. return {
  113. static_cast<GUI::Event::Type>(event.type()),
  114. Gfx::IntPoint(image_position.x(), image_position.y()),
  115. event.buttons(),
  116. event.button(),
  117. event.modifiers(),
  118. event.wheel_delta()
  119. };
  120. }
  121. GUI::MouseEvent ImageEditor::event_adjusted_for_layer(const GUI::MouseEvent& event, const Layer& layer) const
  122. {
  123. auto image_position = editor_position_to_image_position(event.position());
  124. image_position.move_by(-layer.location().x(), -layer.location().y());
  125. return {
  126. static_cast<GUI::Event::Type>(event.type()),
  127. Gfx::IntPoint(image_position.x(), image_position.y()),
  128. event.buttons(),
  129. event.button(),
  130. event.modifiers(),
  131. event.wheel_delta()
  132. };
  133. }
  134. void ImageEditor::mousedown_event(GUI::MouseEvent& event)
  135. {
  136. if (event.button() == GUI::MouseButton::Middle) {
  137. m_click_position = event.position();
  138. m_saved_pan_origin = m_pan_origin;
  139. return;
  140. }
  141. if (!m_active_tool)
  142. return;
  143. if (m_active_tool->is_move_tool()) {
  144. if (auto* other_layer = layer_at_editor_position(event.position())) {
  145. set_active_layer(other_layer);
  146. }
  147. }
  148. if (!m_active_layer)
  149. return;
  150. auto layer_event = event_adjusted_for_layer(event, *m_active_layer);
  151. auto image_event = event_with_pan_and_scale_applied(event);
  152. m_active_tool->on_mousedown(*m_active_layer, layer_event, image_event);
  153. }
  154. void ImageEditor::mousemove_event(GUI::MouseEvent& event)
  155. {
  156. if (event.buttons() & GUI::MouseButton::Middle) {
  157. auto delta = event.position() - m_click_position;
  158. m_pan_origin = m_saved_pan_origin.translated(
  159. -delta.x() / m_scale,
  160. -delta.y() / m_scale);
  161. relayout();
  162. return;
  163. }
  164. if (!m_active_layer || !m_active_tool)
  165. return;
  166. auto layer_event = event_adjusted_for_layer(event, *m_active_layer);
  167. auto image_event = event_with_pan_and_scale_applied(event);
  168. m_active_tool->on_mousemove(*m_active_layer, layer_event, image_event);
  169. }
  170. void ImageEditor::mouseup_event(GUI::MouseEvent& event)
  171. {
  172. if (!m_active_layer || !m_active_tool)
  173. return;
  174. auto layer_event = event_adjusted_for_layer(event, *m_active_layer);
  175. auto image_event = event_with_pan_and_scale_applied(event);
  176. m_active_tool->on_mouseup(*m_active_layer, layer_event, image_event);
  177. }
  178. void ImageEditor::mousewheel_event(GUI::MouseEvent& event)
  179. {
  180. auto old_scale = m_scale;
  181. m_scale += -event.wheel_delta() * 0.1f;
  182. if (m_scale < 0.1f)
  183. m_scale = 0.1f;
  184. if (m_scale > 100.0f)
  185. m_scale = 100.0f;
  186. auto focus_point = Gfx::FloatPoint(
  187. m_pan_origin.x() - ((float)event.x() - (float)width() / 2.0) / old_scale,
  188. m_pan_origin.y() - ((float)event.y() - (float)height() / 2.0) / old_scale);
  189. m_pan_origin = Gfx::FloatPoint(
  190. focus_point.x() - m_scale / old_scale * (focus_point.x() - m_pan_origin.x()),
  191. focus_point.y() - m_scale / old_scale * (focus_point.y() - m_pan_origin.y()));
  192. if (old_scale != m_scale)
  193. relayout();
  194. }
  195. void ImageEditor::context_menu_event(GUI::ContextMenuEvent& event)
  196. {
  197. if (!m_active_layer || !m_active_tool)
  198. return;
  199. m_active_tool->on_context_menu(*m_active_layer, event);
  200. }
  201. void ImageEditor::resize_event(GUI::ResizeEvent& event)
  202. {
  203. relayout();
  204. GUI::Frame::resize_event(event);
  205. }
  206. void ImageEditor::keydown_event(GUI::KeyEvent& event)
  207. {
  208. if (m_active_tool)
  209. m_active_tool->on_keydown(event);
  210. }
  211. void ImageEditor::keyup_event(GUI::KeyEvent& event)
  212. {
  213. if (m_active_tool)
  214. m_active_tool->on_keyup(event);
  215. }
  216. void ImageEditor::set_active_layer(Layer* layer)
  217. {
  218. if (m_active_layer == layer)
  219. return;
  220. m_active_layer = layer;
  221. if (m_active_layer) {
  222. size_t index = 0;
  223. for (; index < m_image->layer_count(); ++index) {
  224. if (&m_image->layer(index) == layer)
  225. break;
  226. }
  227. if (on_active_layer_change)
  228. on_active_layer_change(layer);
  229. } else {
  230. if (on_active_layer_change)
  231. on_active_layer_change({});
  232. }
  233. layers_did_change();
  234. }
  235. void ImageEditor::set_active_tool(Tool* tool)
  236. {
  237. if (m_active_tool == tool)
  238. return;
  239. if (m_active_tool)
  240. m_active_tool->clear();
  241. m_active_tool = tool;
  242. if (m_active_tool)
  243. m_active_tool->setup(*this);
  244. }
  245. void ImageEditor::layers_did_change()
  246. {
  247. update();
  248. }
  249. Color ImageEditor::color_for(GUI::MouseButton button) const
  250. {
  251. if (button == GUI::MouseButton::Left)
  252. return m_primary_color;
  253. if (button == GUI::MouseButton::Right)
  254. return m_secondary_color;
  255. ASSERT_NOT_REACHED();
  256. }
  257. Color ImageEditor::color_for(const GUI::MouseEvent& event) const
  258. {
  259. if (event.buttons() & GUI::MouseButton::Left)
  260. return m_primary_color;
  261. if (event.buttons() & GUI::MouseButton::Right)
  262. return m_secondary_color;
  263. ASSERT_NOT_REACHED();
  264. }
  265. void ImageEditor::set_primary_color(Color color)
  266. {
  267. if (m_primary_color == color)
  268. return;
  269. m_primary_color = color;
  270. if (on_primary_color_change)
  271. on_primary_color_change(color);
  272. }
  273. void ImageEditor::set_secondary_color(Color color)
  274. {
  275. if (m_secondary_color == color)
  276. return;
  277. m_secondary_color = color;
  278. if (on_secondary_color_change)
  279. on_secondary_color_change(color);
  280. }
  281. Layer* ImageEditor::layer_at_editor_position(const Gfx::IntPoint& editor_position)
  282. {
  283. if (!m_image)
  284. return nullptr;
  285. auto image_position = editor_position_to_image_position(editor_position);
  286. for (ssize_t i = m_image->layer_count() - 1; i >= 0; --i) {
  287. auto& layer = m_image->layer(i);
  288. if (!layer.is_visible())
  289. continue;
  290. if (layer.relative_rect().contains(Gfx::IntPoint(image_position.x(), image_position.y())))
  291. return const_cast<Layer*>(&layer);
  292. }
  293. return nullptr;
  294. }
  295. void ImageEditor::relayout()
  296. {
  297. if (!image())
  298. return;
  299. auto& image = *this->image();
  300. Gfx::IntSize new_size;
  301. new_size.set_width(image.size().width() * m_scale);
  302. new_size.set_height(image.size().height() * m_scale);
  303. m_editor_image_rect.set_size(new_size);
  304. Gfx::IntPoint new_location;
  305. new_location.set_x((width() / 2) - (new_size.width() / 2) - (m_pan_origin.x() * m_scale));
  306. new_location.set_y((height() / 2) - (new_size.height() / 2) - (m_pan_origin.y() * m_scale));
  307. m_editor_image_rect.set_location(new_location);
  308. update();
  309. }
  310. void ImageEditor::image_did_change()
  311. {
  312. update();
  313. }
  314. }