51 Public method to generate the action objects. |
51 Public method to generate the action objects. |
52 |
52 |
53 Note: Derived class must implement this method. |
53 Note: Derived class must implement this method. |
54 |
54 |
55 @exception NotImplementedError raised if the class has not been |
55 @exception NotImplementedError raised if the class has not been |
56 reimplemente |
56 reimplemented |
57 """ |
57 """ |
58 raise NotImplementedError |
58 raise NotImplementedError |
59 |
59 |
60 def initMenu(self, mainMenu): |
60 def initMenu(self, mainMenu): |
61 """ |
61 """ |
64 Note: Derived class must implement this method. |
64 Note: Derived class must implement this method. |
65 |
65 |
66 @param mainMenu reference to the main menu (QMenu) |
66 @param mainMenu reference to the main menu (QMenu) |
67 @ireturn populated menu (QMenu) |
67 @ireturn populated menu (QMenu) |
68 @exception NotImplementedError raised if the class has not been |
68 @exception NotImplementedError raised if the class has not been |
69 reimplemente |
69 reimplemented |
70 """ |
70 """ |
71 raise NotImplementedError |
71 raise NotImplementedError |
72 |
72 |
73 def menuTitle(self): |
73 def menuTitle(self): |
74 """ |
74 """ |