mirror of
https://github.com/ulbwazhine/MockupEngineer.git
synced 2024-11-22 17:06:32 +03:00
30 lines
905 B
Python
30 lines
905 B
Python
from dataclasses import dataclass
|
|
|
|
from MockupModule.templates import Template
|
|
|
|
|
|
@dataclass
|
|
class Device(Template):
|
|
def __device_init__(self):
|
|
self.manufacturer = 'Apple'
|
|
self.name = 'iPhone 12 Pro Max'
|
|
self.type = 'phone'
|
|
self.year = 2020
|
|
self.resolution = '{width} x {height}'.format(width=1284, height=2778)
|
|
|
|
self.__template_path__ = 'iphone12promax'
|
|
self.__colors__ = {"Gold": 'gold',
|
|
"Graphite": 'graphite',
|
|
"Pacific Blue": 'pacificblue',
|
|
"Silver": 'silver'}
|
|
|
|
self.__portrait_width__ = 1284
|
|
self.__portrait_height__ = 2778
|
|
self.__portrait_x__ = 200
|
|
self.__portrait_y__ = 200
|
|
|
|
self.__landscape_width__ = 2778
|
|
self.__landscape_height__ = 1284
|
|
self.__landscape_x__ = 200
|
|
self.__landscape_y__ = 200
|