73 VCS status and the file status. |
73 VCS status and the file status. |
74 |
74 |
75 @param menu reference to the menu to be shown |
75 @param menu reference to the menu to be shown |
76 @param standardItems array of standard items that need activation/deactivation |
76 @param standardItems array of standard items that need activation/deactivation |
77 depending on the overall VCS status |
77 depending on the overall VCS status |
|
78 @exception RuntimeError to indicate that this method must be |
|
79 implemented by a subclass |
78 """ |
80 """ |
79 raise RuntimeError('Not implemented') |
81 raise RuntimeError('Not implemented') |
80 |
82 |
81 def showContextMenuMulti(self, menu, standardItems): |
83 def showContextMenuMulti(self, menu, standardItems): |
82 """ |
84 """ |
86 VCS status and the files status. |
88 VCS status and the files status. |
87 |
89 |
88 @param menu reference to the menu to be shown |
90 @param menu reference to the menu to be shown |
89 @param standardItems array of standard items that need activation/deactivation |
91 @param standardItems array of standard items that need activation/deactivation |
90 depending on the overall VCS status |
92 depending on the overall VCS status |
|
93 @exception RuntimeError to indicate that this method must be |
|
94 implemented by a subclass |
91 """ |
95 """ |
92 raise RuntimeError('Not implemented') |
96 raise RuntimeError('Not implemented') |
93 |
97 |
94 def showContextMenuDir(self, menu, standardItems): |
98 def showContextMenuDir(self, menu, standardItems): |
95 """ |
99 """ |
99 VCS status and the directory status. |
103 VCS status and the directory status. |
100 |
104 |
101 @param menu reference to the menu to be shown |
105 @param menu reference to the menu to be shown |
102 @param standardItems array of standard items that need activation/deactivation |
106 @param standardItems array of standard items that need activation/deactivation |
103 depending on the overall VCS status |
107 depending on the overall VCS status |
|
108 @exception RuntimeError to indicate that this method must be |
|
109 implemented by a subclass |
104 """ |
110 """ |
105 raise RuntimeError('Not implemented') |
111 raise RuntimeError('Not implemented') |
106 |
112 |
107 def showContextMenuDirMulti(self, menu, standardItems): |
113 def showContextMenuDirMulti(self, menu, standardItems): |
108 """ |
114 """ |
112 VCS status and the directory status. |
118 VCS status and the directory status. |
113 |
119 |
114 @param menu reference to the menu to be shown |
120 @param menu reference to the menu to be shown |
115 @param standardItems array of standard items that need activation/deactivation |
121 @param standardItems array of standard items that need activation/deactivation |
116 depending on the overall VCS status |
122 depending on the overall VCS status |
|
123 @exception RuntimeError to indicate that this method must be |
|
124 implemented by a subclass |
117 """ |
125 """ |
118 raise RuntimeError('Not implemented') |
126 raise RuntimeError('Not implemented') |
119 |
127 |
120 ############################################################################ |
128 ############################################################################ |
121 ## General menu handling methods below |
129 ## General menu handling methods below |