2023-08-04 18:27:03 +00:00
|
|
|
import time
|
|
|
|
from collections import namedtuple
|
|
|
|
|
|
|
|
import allure
|
|
|
|
|
|
|
|
import driver.mouse
|
|
|
|
from gui.components.base_popup import BasePopup
|
2023-10-06 08:33:42 +00:00
|
|
|
from gui.elements.button import Button
|
|
|
|
from gui.elements.object import QObject
|
|
|
|
from gui.elements.slider import Slider
|
2023-08-04 18:27:03 +00:00
|
|
|
|
|
|
|
shift_image = namedtuple('Shift', ['left', 'right', 'top', 'bottom'])
|
|
|
|
|
|
|
|
|
2023-08-29 14:43:00 +00:00
|
|
|
class PictureEditPopup(BasePopup):
|
2023-08-04 18:27:03 +00:00
|
|
|
|
|
|
|
def __init__(self):
|
2023-08-29 14:43:00 +00:00
|
|
|
super(PictureEditPopup, self).__init__()
|
2023-08-04 18:27:03 +00:00
|
|
|
self._zoom_slider = Slider('o_StatusSlider')
|
|
|
|
self._view = QObject('cropSpaceItem_Item')
|
2023-08-29 14:43:00 +00:00
|
|
|
self._make_picture_button = Button('make_picture_StatusButton')
|
2023-08-04 18:27:03 +00:00
|
|
|
self._slider_handler = QObject('o_DropShadow')
|
|
|
|
|
2023-08-29 14:43:00 +00:00
|
|
|
@allure.step('Make picture')
|
|
|
|
def make_picture(
|
2023-08-04 18:27:03 +00:00
|
|
|
self,
|
|
|
|
zoom: int = None,
|
|
|
|
shift: shift_image = None
|
|
|
|
):
|
|
|
|
if zoom is not None:
|
|
|
|
self._zoom_slider.value = zoom
|
|
|
|
# The slider changed value, but image updates only after click on slider
|
|
|
|
self._slider_handler.click()
|
|
|
|
time.sleep(1)
|
|
|
|
if shift is not None:
|
|
|
|
if shift.left:
|
|
|
|
driver.mouse.press_and_move(self._view.object, 1, 1, shift.left, 1)
|
|
|
|
time.sleep(1)
|
|
|
|
if shift.right:
|
|
|
|
driver.mouse.press_and_move(
|
|
|
|
self._view.object, self._view.width, 1, self._view.width - shift.right, 1)
|
|
|
|
time.sleep(1)
|
|
|
|
if shift.top:
|
|
|
|
driver.mouse.press_and_move(self._view.object, 1, 1, 1, shift.top, step=1)
|
|
|
|
time.sleep(1)
|
|
|
|
if shift.bottom:
|
|
|
|
driver.mouse.press_and_move(
|
|
|
|
self._view.object, 1, self._view.height, 1, self._view.height - shift.bottom, step=1)
|
|
|
|
time.sleep(1)
|
|
|
|
|
2023-08-29 14:43:00 +00:00
|
|
|
self._make_picture_button.click()
|