summaryrefslogtreecommitdiff
path: root/cad/src/commands/StereoProperties/StereoProperties_Command.py
blob: 0f4fcda94fdad99d9efb4a9f4b812abb6735e356 (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
# Copyright 2008 Nanorex, Inc.  See LICENSE file for details. 
"""
@author:    Piotr
@version:   $Id$
@copyright: 2008 Nanorex, Inc.  See LICENSE file for details.
"""

from commands.SelectChunks.SelectChunks_GraphicsMode import SelectChunks_GraphicsMode
from commands.SelectChunks.SelectChunks_Command import SelectChunks_Command
from commands.StereoProperties.StereoProperties_PropertyManager import StereoProperties_PropertyManager

# == GraphicsMode part

class StereoProperties_GraphicsMode(SelectChunks_GraphicsMode ):
    """
    Graphics mode for StereoProperties command. 
    """
    pass

# == Command part

class StereoProperties_Command(SelectChunks_Command): 
    """

    """
       
    # class constants
    GraphicsMode_class = StereoProperties_GraphicsMode
    PM_class = StereoProperties_PropertyManager
    
    commandName = 'STEREO_PROPERTIES'
    featurename = "Stereo View Properties"
    from utilities.constants import CL_GLOBAL_PROPERTIES
    command_level = CL_GLOBAL_PROPERTIES
   
    command_should_resume_prevMode = True 
    command_has_its_own_PM = True

    flyoutToolbar = None