2022-04-15 00:00:46 +02:00
|
|
|
|
|
|
|
|
|
|
|
def can_build(env, platform):
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def configure(env):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
2022-08-21 00:32:32 +02:00
|
|
|
"BrightenAction",
|
|
|
|
"BrushAction",
|
|
|
|
"BucketAction",
|
|
|
|
"CutAction",
|
|
|
|
"DarkenAction",
|
|
|
|
"LineAction",
|
|
|
|
"MultiLineAction",
|
|
|
|
"PaintAction",
|
|
|
|
"PasteCutAction",
|
|
|
|
"PencilAction",
|
|
|
|
"RainbowAction",
|
|
|
|
"RectAction",
|
|
|
|
|
|
|
|
"PaintWindow",
|
2022-11-15 12:35:44 +01:00
|
|
|
|
|
|
|
"PaintNode",
|
2022-11-15 13:17:37 +01:00
|
|
|
"PaintCanvas",
|
2022-11-15 17:58:00 +01:00
|
|
|
"PaintProject",
|
|
|
|
|
|
|
|
"PaintSidebar",
|
|
|
|
"PaintSidebarModule",
|
2022-04-15 00:00:46 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|