/// <summary>
        /// This method runs once in the Module life.
        /// In this method, you can do registrations of the UI related components.
        /// (eg: settingspages, treeextensions)
        /// </summary>
        public void IntegratePresentation()
        {
            // Registrations:

            GeoCommunication.Discuss.AddNewMenuItemsUnderDiscussMenuItem();
            cm = new SimpleContextMenuHandler <SeismicCube>("GeoCom 3D Visualizer", callback);
            PetrelSystem.ToolService.AddContextMenuHandler(cm);

            // TODO:  Add WellReader.IntegratePresentation implementation
        }
Example #2
0
        /// <summary>
        /// This method runs once in the Module life.
        /// In this method, you can do registrations of the UI related components.
        /// (eg: settingspages, treeextensions)
        /// </summary>
        public void IntegratePresentation()
        {
            SimpleContextMenuHandler <CustomVectorField> cItem = new SimpleContextMenuHandler <CustomVectorField>("–едактировать исходные данные", PetrelImages.Modules, false, Editing);

            PetrelSystem.ToolService.AddContextMenuHandler(cItem);
        }
Example #3
0
 /// <summary>
 /// This method runs once in the Module life. 
 /// In this method, you can do registrations of the UI related components.
 /// (eg: settingspages, treeextensions)
 /// </summary>
 public void IntegratePresentation()
 {
     SimpleContextMenuHandler<CustomVectorField> cItem = new SimpleContextMenuHandler<CustomVectorField>("–едактировать исходные данные", PetrelImages.Modules, false, Editing);
     PetrelSystem.ToolService.AddContextMenuHandler(cItem);
 }
Example #4
0
        /// <summary>
        /// This method runs once in the Module life. 
        /// In this method, you can do registrations of the UI related components.
        /// (eg: settingspages, treeextensions)
        /// </summary>
        public void IntegratePresentation()
        {
            // Registrations:

            GeoCommunication.Discuss.AddNewMenuItemsUnderDiscussMenuItem();
            cm = new SimpleContextMenuHandler<SeismicCube>("GeoCom 3D Visualizer", callback);
            PetrelSystem.ToolService.AddContextMenuHandler(cm);

            // TODO:  Add WellReader.IntegratePresentation implementation
        }