MockupEngineer/MockupModule/templates/iphone12promax/__init__.py

30 lines
905 B
Python
Raw Normal View History

2021-12-29 19:52:41 +03:00
from dataclasses import dataclass
2022-01-22 09:17:42 +03:00
from MockupModule.templates import Template
2021-12-29 19:52:41 +03:00
@dataclass
class Device(Template):
2022-01-22 09:17:42 +03:00
def __device_init__(self):
2021-12-29 19:52:41 +03:00
self.manufacturer = 'Apple'
self.name = 'iPhone 12 Pro Max'
self.type = 'phone'
self.year = 2020
2022-01-22 09:17:42 +03:00
self.resolution = '{width} x {height}'.format(width=1284, height=2778)
2021-12-29 19:52:41 +03:00
2022-01-22 09:17:42 +03:00
self.__template_path__ = 'iphone12promax'
self.__colors__ = {"Gold": 'gold',
"Graphite": 'graphite',
"Pacific Blue": 'pacificblue',
"Silver": 'silver'}
2021-12-29 19:52:41 +03:00
2022-01-22 09:17:42 +03:00
self.__portrait_width__ = 1284
self.__portrait_height__ = 2778
self.__portrait_x__ = 200
self.__portrait_y__ = 200
2021-12-29 19:52:41 +03:00
2022-01-22 09:17:42 +03:00
self.__landscape_width__ = 2778
self.__landscape_height__ = 1284
self.__landscape_x__ = 200
self.__landscape_y__ = 200