summaryrefslogtreecommitdiff
path: root/cad/src/commands/QuteMol/QuteMol_Command.py
blob: 6dce08be2caec8990778ba973a3f3e69119e1963 (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
# Copyright 2008 Nanorex, Inc.  See LICENSE file for details.
"""
QuteMol_Command.py

@author: Ninad
@copyright: 2008 Nanorex, Inc.  See LICENSE file for details.
@version: $Id$

History:
2008-07-24 : Created

TODO:
"""
import foundation.changes as changes
from commands.SelectChunks.SelectChunks_Command import SelectChunks_Command
from commands.SelectChunks.SelectChunks_GraphicsMode import SelectChunks_GraphicsMode
from commands.QuteMol.QuteMolPropertyManager import QuteMolPropertyManager

_superclass = SelectChunks_Command
class QuteMol_Command(SelectChunks_Command):
    commandName = 'QUTEMOL'
    featurename = "QuteMol"
    from utilities.constants import CL_EXTERNAL_ACTION
    command_level = CL_EXTERNAL_ACTION

    GraphicsMode_class = SelectChunks_GraphicsMode

    PM_class = QuteMolPropertyManager

    command_should_resume_prevMode = True
    command_has_its_own_PM = True

    flyoutToolbar = None