32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
"""
|
|
BY: Wanderson M.Pimenta
|
|
PROJECT MADE WITH: Qt Designer and PySide6
|
|
V: 1.0.0
|
|
|
|
This project can be used freely for all uses, as long as they maintain the
|
|
respective credits only in the Python scripts, any information in the visual
|
|
interface (GUI) can be modified without any implication.
|
|
|
|
There are limitations on Qt licenses if you want to use your products
|
|
commercially, I recommend reading them on the official website:
|
|
https://doc.qt.io/qtforpython/licenses.html
|
|
"""
|
|
class Settings():
|
|
# APP SETTINGS
|
|
# ///////////////////////////////////////////////////////////////
|
|
ENABLE_CUSTOM_TITLE_BAR = True
|
|
MENU_WIDTH = 180
|
|
LEFT_BOX_WIDTH = 240
|
|
RIGHT_BOX_WIDTH = 240
|
|
TIME_ANIMATION = 500
|
|
|
|
# BTNS LEFT AND RIGHT BOX COLORS
|
|
BTN_LEFT_BOX_COLOR = "background-color: rgb(44, 49, 58);"
|
|
BTN_RIGHT_BOX_COLOR = "background-color: #ff79c6;"
|
|
|
|
# MENU SELECTED STYLESHEET
|
|
MENU_SELECTED_STYLESHEET = """
|
|
border-left: 22px solid qlineargradient(spread:pad, x1:0.034, y1:0, x2:0.216, y2:0, stop:0.499 rgba(255, 121, 198, 255), stop:0.5 rgba(85, 170, 255, 0));
|
|
background-color: rgb(40, 44, 52);
|
|
"""
|