Files
PyUIBuilder/src/frameworks/tkinter/constants/styling.js
2025-03-23 19:02:54 +05:30

40 lines
433 B
JavaScript

export const RELIEF = [
"FLAT",
"RAISED",
"SUNKEN",
"GROOVE",
"RIDGE"
]
export const JUSTIFY = [
"LEFT",
"CENTER",
"RIGHT"
]
export const ANCHOR = [
"n",
"s",
"e",
"w",
"center"
]
export const GRID_STICKY = {
N: "n",
S: "s",
E: "e",
W: "w",
WE: "we",
NS: "ns",
NW: "nw",
NE: "ne",
SW: "sw",
SE: "se",
NEWS: "news",
NONE: "",
}