summaryrefslogtreecommitdiff
path: root/cad/src/commands/Move/MovePropertyManager.py
blob: 2b6c47994c72f39453cb4eb38583f42a36cca92e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
# Copyright 2004-2008 Nanorex, Inc.  See LICENSE file for details.
"""
@author: Ninad
@copyright: 2004-2008 Nanorex, Inc.  See LICENSE file for details.
@version: $Id$

History:

ninad 2007-02-07: Created to implement new UI for Move and Rotate chunks mode.
ninad 2007-08-20: Code cleanup to use new PM module classes.

"""


from commands.Move.Ui_MovePropertyManager import Ui_MovePropertyManager
from PyQt4.Qt import SIGNAL


class MovePropertyManager(Ui_MovePropertyManager):
    """
    The MovePropertyManager class provides a Property Manager
    for the "Move > Translate / Rotate Components  commands. It also
    serves as a superclass for FusePropertyManager
    """

    def __init__(self, command):
        #see self.connect_or_disconnect_signals for comment about this flag
        self.isAlreadyConnected =  False
        self.lastCheckedRotateButton = None
        self.lastCheckedTranslateButton = None

        Ui_MovePropertyManager.__init__(self, command)
        self.updateMessage()


    def connect_or_disconnect_signals(self, isConnect):
        """
        Connect the slots in Move Property Manager.
        @see: Move_Command.connect_or_disconnect_signals.
        """
        if isConnect:
            change_connect = self.w.connect
        else:
            change_connect = self.w.disconnect

        #TODO: This is a temporary fix for a bug. When you invoke a temporary mode
        #such as Line_Command or PanMode, entering such a temporary mode keeps the
        #PM from the previous mode open (and theus keeps all its signals
        #connected)  but while exiting that temporary mode and reentering the
        #previous mode, it atucally reconnects the signal! This gives rise to
        #lots  of bugs. This needs more general fix in Temporary mode API.
        # -- Ninad 2007-10-29

        if isConnect and self.isAlreadyConnected:
            return


        self.isAlreadyConnected = isConnect

        change_connect(self.translateGroupBox.titleButton,
                       SIGNAL("clicked()"),
                       self.activate_translateGroupBox_using_groupButton)

        change_connect(self.rotateGroupBox.titleButton,
                       SIGNAL("clicked()"),
                       self.activate_rotateGroupBox_using_groupButton)

        change_connect(self.translateComboBox,
                       SIGNAL("currentIndexChanged(int)"),
                       self.updateTranslateGroupBoxes)

        change_connect(self.rotateComboBox,
                       SIGNAL("currentIndexChanged(int)"),
                       self.updateRotateGroupBoxes)

        change_connect( self.freeDragTranslateButtonGroup.buttonGroup,
                        SIGNAL("buttonClicked(QAbstractButton *)"),
                        self.changeMoveOption )

        change_connect( self.freeDragRotateButtonGroup.buttonGroup,
                        SIGNAL("buttonClicked(QAbstractButton *)"),
                        self.changeRotateOption )

        change_connect(self.transDeltaPlusButton,
                       SIGNAL("clicked()"),
                       self.command.transDeltaPlus)

        change_connect(self.transDeltaMinusButton,
                       SIGNAL("clicked()"),
                       self.command.transDeltaMinus)

        change_connect(self.moveAbsoluteButton,
                       SIGNAL("clicked()"),
                       self.command.moveAbsolute)

        change_connect(self.rotateThetaPlusButton,
                       SIGNAL("clicked()"),
                       self.command.rotateThetaPlus)

        change_connect(self.rotateThetaMinusButton,
                       SIGNAL("clicked()"),
                       self.command.rotateThetaMinus)

        change_connect(self.moveFromToButton,
                       SIGNAL("toggled(bool)"),
                       self.command.moveFromToTemporaryMode)

        change_connect(self.rotateAboutPointButton,
                       SIGNAL("toggled(bool)"),
                       self.command.rotateAboutPointTemporaryCommand)


    def activate_translateGroupBox_using_groupButton(self):
        """Show contents of this groupbox, deactivae the other groupbox.
        Also check the button that was checked when this groupbox  was active
        last time. (if applicable). This method is called only when move
        groupbox button is clicked. See also activate_translateGroupBox
        method.
        """

        self.toggle_translateGroupBox()

        if not self.w.toolsMoveMoleculeAction.isChecked():

            self.w.toolsMoveMoleculeAction.setChecked(True)
            self.command.switchGraphicsModeTo(newGraphicsMode = 'TRANSLATE_CHUNKS')

            # Update the title and icon.
            self.setHeaderIcon(self.translateIconPath)
            self.setHeaderTitle(self.translateTitle)

            self.deactivate_rotateGroupBox()

            buttonToCheck = self.getTranslateButtonToCheck()

            if buttonToCheck:
                buttonToCheck.setChecked(True)
            else:
                transButtonGroup = self.freeDragTranslateButtonGroup
                buttonToCheck = transButtonGroup.getButtonByText('MOVEDEFAULT')
                buttonToCheck.setChecked(True)

            self.changeMoveOption(buttonToCheck)

            self.command.graphicsMode.update_cursor()
            self.updateMessage()


    def activate_rotateGroupBox_using_groupButton(self):
        """
        Show contents of this groupbox, deactivae the other groupbox.
        Also check the button that was checked when this groupbox  was active
        last time. (if applicable). This method is called only when rotate
        groupbox button is clicked. See also activate_rotateGroupBox method.
        """

        self.toggle_rotateGroupBox()

        if not self.w.rotateComponentsAction.isChecked():
            self.w.rotateComponentsAction.setChecked(True)
            self.command.switchGraphicsModeTo(newGraphicsMode = 'ROTATE_CHUNKS')

            # Update the title and icon.
            self.setHeaderIcon(self.rotateIconPath)
            self.setHeaderTitle(self.rotateTitle)

            self.deactivate_translateGroupBox()

            #Following implements NFR bug 2485.
            #Earlier, it used to remember the last checked button
            #so this wasn't necessary
            buttonToCheck = self.getRotateButtonToCheck()

            if buttonToCheck:
                buttonToCheck.setChecked(True)
            else:
                rotButtonGroup = self.freeDragRotateButtonGroup
                buttonToCheck = rotButtonGroup.getButtonByText('ROTATEDEFAULT')
                buttonToCheck.setChecked(True)

            self.changeRotateOption(buttonToCheck)

            self.command.graphicsMode.update_cursor()
            self.updateMessage()

    def activate_translateGroupBox(self):
        """
        Show contents of this groupbox, deactivae the other groupbox.
        Also check the button that was checked when this groupbox  was active
        last time. (if applicable) This button is called when
        toolsMoveMoleculeAction is checked from the toolbar or command toolbar.
        see also: activate_translateGroupBox_using_groupButton
        """


        self.command.switchGraphicsModeTo(newGraphicsMode = 'TRANSLATE_CHUNKS')

        #Update the icon and the title
        self.setHeaderIcon(self.translateIconPath)
        self.setHeaderTitle(self.translateTitle)

        self.toggle_translateGroupBox()

        self.deactivate_rotateGroupBox()

        #Following implements NFR bug 2485.
        #Earlier, it used to remember the last checked button
        #so this wasn't necessary
        buttonToCheck = self.getTranslateButtonToCheck()


        if buttonToCheck:
            buttonToCheck.setChecked(True)
        else:
            transButtonGroup = self.freeDragTranslateButtonGroup
            buttonToCheck = transButtonGroup.getButtonByText('MOVEDEFAULT')
            buttonToCheck.setChecked(True)

        self.changeMoveOption(buttonToCheck)

        self.command.graphicsMode.update_cursor()
        self.updateMessage()

    def activate_rotateGroupBox(self):
        """Show contents of this groupbox, deactivae the other groupbox.
        Also check the button that was checked when this groupbox  was active
        last time. (if applicable). This button is called when
        rotateComponentsAction is checked from the toolbar or command toolbar.
        @see: L{self.activate_rotateGroupBox_using_groupButton}
        """


        self.command.switchGraphicsModeTo(newGraphicsMode = 'ROTATE_CHUNKS')

        #Update the icon and the title.
        self.setHeaderIcon(self.rotateIconPath)
        self.setHeaderTitle(self.rotateTitle)

        self.toggle_rotateGroupBox()

        self.deactivate_translateGroupBox()

        buttonToCheck = self.getRotateButtonToCheck()

        if buttonToCheck:
            buttonToCheck.setChecked(True)
        else:
            rotButtonGroup = self.freeDragRotateButtonGroup
            buttonToCheck = rotButtonGroup.getButtonByText('ROTATEDEFAULT')
            buttonToCheck.setChecked(True)

        self.changeRotateOption(buttonToCheck)

        self.command.graphicsMode.update_cursor()
        self.updateMessage()


    def deactivate_rotateGroupBox(self):
        """ Hide the items in the groupbox, Also
        store the current checked button which will be checked again
        when user activates this groupbox again. After storing
        the checked button, uncheck it (so that other active groupbox
        button can operate easily). """

        self.rotateGroupBox.collapse()

        #Store the last checked button of the groupbox you are about to close
        #(in this case Rotate Groupbox is the groupbox that will be deactivated
        #and Move groupbox will be activated (opened) )
        lastCheckedRotateButton = self.freeDragRotateButtonGroup.checkedButton()
        self.setLastCheckedRotateButton(lastCheckedRotateButton)

        #Disconnect checked button in Rotate Components groupbox
        #bruce 070613 added condition
        if self.freeDragRotateButtonGroup.checkedButton():
            self.freeDragRotateButtonGroup.checkedButton().setChecked(False)

    def deactivate_translateGroupBox(self):
        """ Hide the items in the groupbox, Also
        store the current checked button which will be checked again
        when user activates this groupbox again. After storing
        the checked button, uncheck it (so that other active groupbox
        button can operate easily). """

        self.translateGroupBox.collapse()

        #Store the last checked button of the groupbox you are about to close
        #(in this case Move Groupbox is the groupbox that will be deactivated
        # and 'Rotate groupbox will be activated (opened) )
        buttonGroup = self.freeDragTranslateButtonGroup
        lastCheckedTranslateButton = buttonGroup.checkedButton()
        self.setLastCheckedMoveButton(lastCheckedTranslateButton)

        #Disconnect checked button in Move groupbox
        if self.freeDragTranslateButtonGroup.checkedButton():
            self.freeDragTranslateButtonGroup.checkedButton().setChecked(False)


    def toggle_translateGroupBox(self):

        """
        Toggles the item display in the parent groupbox of the button and
        hides the other groupbox also disconnecting the actions in the other
        groupbox
        Example: If user clicks on Move groupbox button, it will toggle the
        display of the groupbox, connect its actions and Hide the other groupbox
        i.e. Rotate Components groupbox and also disconnect actions inside it.
        """

        self.translateGroupBox.toggleExpandCollapse()


    def toggle_rotateGroupBox(self):
        """
        Toggles the item display in the parent groupbox of the button and
        hides the other groupbox also disconnecting the actions in the other
        groupbox.
        Example: If user clicks on Move groupbox button, it will toggle the
        display of the groupbox, connect its actions and Hide the other groupbox
        i.e. Rotate Components groupbox and also disconnect actions inside it
       """

        self.rotateGroupBox.toggleExpandCollapse()


    def setLastCheckedRotateButton(self, lastCheckedButton):
        """"
        Sets the  'last checked button value' Program remembers the last checked
        button in a groupbox (either Translate or rotate (components)) .
        When that groupbox is displayed, it checks this last button again
        (see get method)
        """
        self.lastCheckedRotateButton = lastCheckedButton

    def setLastCheckedMoveButton(self, lastCheckedButton):
        """" Sets the  'last checked button value' Program remembers the last
        checked button in a groupbox (either Translate components or rotate
        components) . When that groupbox is displayed, it checks this last
        button again (see get method)
        """
        self.lastCheckedTranslateButton = lastCheckedButton

    def getLastCheckedRotateButton(self):
        """returns the last checked button in a groupbox."""
        if self.lastCheckedRotateButton:
            return self.lastCheckedRotateButton
        else:
            return None

    def getLastCheckedMoveButton(self):
        """returns the last checked button in a groupbox."""
        if self.lastCheckedTranslateButton:
            return self.lastCheckedTranslateButton
        else:
            return None

    def getRotateButtonToCheck(self):
        """
        Decide which rotate group box button to check
        based on the last button that was checked in *translate*
        groupbox
        @return <buttonToCheck>:rotate button to be checked when rotate groupbox
        is active (and when free drag rotate is chosen from the combo box)"""
        lastMoveButton =  self.getLastCheckedMoveButton()

        rotateButtonToCheck = None

        if lastMoveButton in \
           self.freeDragTranslateButtonGroup.buttonGroup.buttons():
            transButtonGroup = self.freeDragTranslateButtonGroup.buttonGroup
            buttonId = transButtonGroup.id(lastMoveButton)

            rotButtonGroup = self.freeDragRotateButtonGroup
            rotateButtonToCheck = rotButtonGroup.getButtonById(buttonId)


        return rotateButtonToCheck

    def getTranslateButtonToCheck(self):
        """ Decide which translate group box button to check
        based on the last button that was checked in *rotate* groupbox.

        @return <buttonToCheck>:translate button to be checked when translate
        grpbx is active (and when free drag translate is chosen from the combo
        box)"""

        lastRotateButton =  self.getLastCheckedRotateButton()
        translateButtonToCheck = None

        if lastRotateButton in \
           self.freeDragRotateButtonGroup.buttonGroup.buttons():
            rotButtonGroup = self.freeDragRotateButtonGroup.buttonGroup
            buttonId = rotButtonGroup.id(lastRotateButton)

            transButtonGroup = self.freeDragTranslateButtonGroup
            translateButtonToCheck = transButtonGroup.getButtonById(buttonId)


        return translateButtonToCheck

    def updateRotationDeltaLabels(self, rotateOption, rotDelta):
        """
        Updates the Rotation Delta labels in the Rotate combobox  while rotating
        the selection around an axis
        """

        if rotateOption == 'ROTATEX':
            listx = [self.rotateXLabelRow]
            listyz = [self.rotateYLabelRow, self.rotateZLabelRow]
            for lbl in listx:
                lbl.setBold(isBold = True)
                lbl.show()
            txt = str(round(rotDelta, 2))
            self.deltaThetaX_lbl.setText(txt)
            for lbl in listyz:
                lbl.setBold(isBold = False)
                lbl.show()
        elif rotateOption == 'ROTATEY':
            listy = [self.rotateYLabelRow]
            listxz = [self.rotateXLabelRow, self.rotateZLabelRow]
            for lbl in listy :
                lbl.setBold(True)
                lbl.show()
            txt = str(round(rotDelta, 2))
            self.deltaThetaY_lbl.setText(txt)
            for lbl in listxz:
                lbl.setBold(False)
                lbl.show()
        elif rotateOption == 'ROTATEZ':
            listz = [self.rotateZLabelRow]
            listxy =  [ self.rotateXLabelRow, self.rotateYLabelRow]
            for lbl in listz:
                lbl.setBold(True)
                lbl.show()
            txt = str(round(rotDelta, 2))
            self.deltaThetaZ_lbl.setText(txt)
            for lbl in listxy:
                lbl.setBold(False)
                lbl.show()
        else:
            print "MovePropertyManager.updateRotationDeltaLabels:\
                  Error - unknown rotateOption value :", self.rotateOption

    def toggleRotationDeltaLabels(self, show = False):
        """
        Hide all the rotation delta labels when
        rotateFreeDragAction is checked
        """

        lst = [self.rotateXLabelRow, self.rotateYLabelRow, self.rotateZLabelRow]

        if not show:
            for lbl in lst:
                lbl.hide()
        else:
            for lbl in lst:
                lbl.show()

    def changeMoveOption(self, button):
        """
        Change the translate option.

        @param button: QToolButton that decides the type of translate operation
                       to be set.
        @type  button: QToolButton
                       U{B{QToolButton}
                       <http://doc.trolltech.com/4.2/qtoolbutton.html>}

        """

        buttonText = str(button.text())

        assert buttonText in ['TRANSX', 'TRANSY', 'TRANSZ',
                              'ROT_TRANS_ALONG_AXIS', 'MOVEDEFAULT' ]

        self.command.graphicsMode.moveOption = buttonText

        #commandSequencer = self.win.commandSequencer

        #if commandSequencer.currentCommand.commandName == 'TRANSLATE_CHUNKS':
            #commandSequencer.currentCommand.graphicsMode.moveOption = buttonText

        ##self.command.moveOption = buttonText


    def changeRotateOption(self, button):
        """
        Change the rotate option.

        @param button: QToolButton that decides the type of rotate operation
                       to be set.
        @type  button: QToolButton
                       U{B{QToolButton}
                       <http://doc.trolltech.com/4.2/qtoolbutton.html>}
        """

        buttonText = str(button.text())

        assert buttonText in ['ROTATEX', 'ROTATEY', 'ROTATEZ',
                              'ROT_TRANS_ALONG_AXIS', 'ROTATEDEFAULT' ]


        if buttonText in ['ROTATEDEFAULT', 'ROT_TRANS_ALONG_AXIS']:
            self.toggleRotationDeltaLabels(show = False)
        else:
            self.toggleRotationDeltaLabels(show = True)

        self.command.graphicsMode.rotateOption = buttonText
        #commandSequencer = self.win.commandSequencer
        #if commandSequencer.currentCommand.commandName == 'ROTATE_CHUNKS':
            #commandSequencer.currentCommand.graphicsMode.rotateOption = buttonText

        ##self.command.rotateOption = buttonText


    def set_move_xyz(self, x, y, z):
        """
        Set values of X, Y and Z coordinates in the Move Property Manager.
        @param x: X coordinate of the common center of the selected objects
        @param y: Y coordinate of the common center of the selected objects
        @param z: Z coordinate of the common center of the selected objects
        """
        self.moveXSpinBox.setValue(x)
        self.moveYSpinBox.setValue(y)
        self.moveZSpinBox.setValue(z)

    def get_move_xyz(self):
        """
        Returns the xyz coordinate in the Move Property Manager.
        @return: the coordinate
        @rtype: tuple (x, y, z)
        """

        x = self.moveXSpinBox.value()
        y = self.moveYSpinBox.value()
        z = self.moveZSpinBox.value()

        return (x, y, z)

    def set_move_delta_xyz(self, delX, delY, delZ):
        """
        Sets the values for 'move by distance delta' spinboxes
        These are the values by which the selection will be translated
        along the specified axes.
        @param delX: Delta X value
        @param delY: Delta Y value
        @param delZ: Delta Z value

        """
        self.moveDeltaXSpinBox.setValue(delX)
        self.moveDeltaYSpinBox.setValue(delY)
        self.moveDeltaZSpinBox.setValue(delZ)

    def get_move_delta_xyz(self, Plus = True):
        """
        Returns the values for 'move by distance delta' spinboxes
        @param Plus : Boolean that decides the sign of the return values.
        (True returns positive values)
        @return : A tuple containing delta X, delta Y and delta Z values
        """

        delX = self.moveDeltaXSpinBox.value()
        delY = self.moveDeltaYSpinBox.value()
        delZ = self.moveDeltaZSpinBox.value()

        if Plus:
            return (delX, delY, delZ) # Plus
        else:
            return (-delX, -delY, -delZ) # Minus


    def close(self):
        """
        Closes this Property Manager.
        @see:  L{PM_GroupBox.close()}  (overrides this method)
        @Note: Before calling close method of its superclass, it collapses the
        translate and rotate groupboxes. This is necessary as it calls the
        activate groupbox method which also toggles the current state of the
        current groupbox. Earlier, explicitely collapsing groupboxes while
        closing the PM was not needed as a new PM object was created each time
        you enter move mode. (and L{Ui_MovePropertyManager} used to call
        collapse method of these groupboxes to acheive the desired effect.

        """

        self.translateGroupBox.collapse()
        self.rotateGroupBox.collapse()

        Ui_MovePropertyManager.close(self)

    def updateMessage(self, msg = ''): # Mark 2007-06-23
        """
        Updates the message box with an informative message.
        """
        graphicsModeName = ''
        #Question: should we define a new attr in Graphicsmode classes
        #suchs as graphicsModeName ? (or a method that returns the GM name
        # and which falls backs to graphicsMode.__class__.__name__ if name  is
        # not defined ? -- Ninad 2008-01-25
        if hasattr(self.command, 'graphicsMode'):
            graphicsModeName = self.command.graphicsMode.__class__.__name__

        if msg:
            self.MessageGroupBox.insertHtmlMessage( msg, setAsDefault  =  True )
            return

        from operations.ops_select import objectSelected
        if objectSelected(self.o.assy):
            msg = ""
        else:
            msg = "Click on objects to select them. "

        if graphicsModeName:

            if graphicsModeName == 'TranslateChunks_GraphicsMode':
                currentIndex = self.translateComboBox.currentIndex()
                if  currentIndex == 0:
                    msg += "To <b>translate</b> the selection, <b>highlight</b> "\
                        "any of the selected items and <b>drag</b> while " \
                        "holding down the <b>LMB</b>. "\
                        "Translate options are available below."
                elif currentIndex == 1:
                    msg += "<b>Translate</b> the selection by specified offset, "\
                        "using the <b>'+Delta'</b> and <b> '-Delta'</b> "\
                        "buttons."
                elif currentIndex == 2:
                    msg += "Use the <b>Move Selection</b> button to translate "\
                        "the selection to the specified absolute XYZ coordinate."

            else:
                currentIndex = self.rotateComboBox.currentIndex()
                if  currentIndex == 0:
                    msg += "To <b>rotate</b> the selection, <b>highlight</b> "\
                        "any of the selected items and <b>drag</b> while " \
                        "holding down the <b>LMB</b>. "\
                        "Translate options are available below."
                elif currentIndex == 1:
                    msg += "<b>Rotate</b> the selection by the specified "\
                        "angle (around the specified axis) using the "\
                        " <b>'+Theta'</b> and <b>'-Theta'</b> buttons."

        self.MessageGroupBox.insertHtmlMessage( msg, setAsDefault  =  True )