ReverseEngineering/InitGui.py
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 class ReverseEngineeringWorkbench ( Workbench ):
00035 "ReverseEngineering workbench object"
00036 Icon = """
00037 /* XPM */
00038 static const char *ReverseEngineering_Box[]={
00039 "16 16 3 1",
00040 ". c None",
00041 "# c #000000",
00042 "a c #c6c642",
00043 "................",
00044 ".......#######..",
00045 "......#aaaaa##..",
00046 ".....#aaaaa###..",
00047 "....#aaaaa##a#..",
00048 "...#aaaaa##aa#..",
00049 "..#aaaaa##aaa#..",
00050 ".########aaaa#..",
00051 ".#aaaaa#aaaaa#..",
00052 ".#aaaaa#aaaa##..",
00053 ".#aaaaa#aaa##...",
00054 ".#aaaaa#aa##....",
00055 ".#aaaaa#a##... .",
00056 ".#aaaaa###......",
00057 ".########.......",
00058 "................"};
00059 """
00060 MenuText = "Reverse Engineering"
00061 ToolTip = "Reverse Engineering workbench"
00062
00063 def Initialize(self):
00064
00065 import ReverseEngineeringGui
00066 import ReverseEngineering
00067 def GetClassName(self):
00068 return "ReverseEngineeringGui::Workbench"
00069
00070 Gui.addWorkbench(ReverseEngineeringWorkbench())