ITT Rule IDL Version 7.0 user manual

User manual for the device ITT Rule IDL Version 7.0

Device: ITT Rule IDL Version 7.0
Category: Computer Accessories
Manufacturer: ITT Rule
Size: 2.93 MB
Added : 12/15/2013
Number of pages: 430
Print the manual

Download

How to use this site?

Our goal is to provide you with a quick access to the content of the user manual for ITT Rule IDL Version 7.0. Using the online preview, you can quickly view the contents and go to the page where you will find the solution to your problem with ITT Rule IDL Version 7.0.

For your convenience

If looking through the ITT Rule IDL Version 7.0 user manual directly on this website is not convenient for you, there are two possible solutions:

  • Full Screen Viewing - to easily view the user manual (without downloading it to your computer), you can use full-screen viewing mode. To start viewing the user manual ITT Rule IDL Version 7.0 on full screen, use the button Fullscreen.
  • Downloading to your computer - You can also download the user manual ITT Rule IDL Version 7.0 to your computer and keep it in your files. However, if you do not want to take up too much of your disk space, you can always download it in the future from ManualsBase.
ITT Rule IDL Version 7.0 User manual - Online PDF
Advertisement
« Page 1 of 430 »
Advertisement
Print version

Many people prefer to read the documents not on the screen, but in the printed version. The option to print the manual has also been provided, and you can use it by clicking the link above - Print the manual. You do not have to print the entire manual ITT Rule IDL Version 7.0 but the selected pages only. paper.

Summaries

Below you will find previews of the content of the user manuals presented on the following pages to ITT Rule IDL Version 7.0. If you want to quickly view the content of pages found on the following pages of the manual, you can use them.

Abstracts of contents
Summary of the content on the page No. 1

iTool
Programming
IDL Version 7.0
November 2007 Edition
Copyright © ITT Visual Information Solutions
All Rights Reserved
1107IDL70ITD

Summary of the content on the page No. 2

Restricted Rights Notice ® The IDL®, IDL Analyst™, ENVI , and ENVI Zoom™ software programs and the accompanying procedures, functions, and documentation described herein are sold under license agreement. Their use, duplication, and disclosure are subject to the restrictions stated in the license agreement. ITT Visual Information Solutions reserves the right to make changes to this document at any time and without notice. Limitation of Warranty ITT Visual Information Solutions makes no warrant

Summary of the content on the page No. 3

Contents Chapter 1 Overview of iTools ................................................................................... 9 What are iTools? ............................................................................................................. 10 What is the iTools Component Framework? ................................................................... 11 About this Manual ........................................................................................................... 12 About

Summary of the content on the page No. 4

4 Registering Components .................................................................................................. 38 iTool Messaging System .................................................................................................. 41 System Resources ............................................................................................................ 44 Chapter 3 Data Management ................................................................................. 51 Overview

Summary of the content on the page No. 5

5 Chapter 6 Creating a Visualization ...................................................................... 113 Overview of iTool Visualization Types ........................................................................ 114 Predefined iTool Visualization Classes ......................................................................... 115 Creating a New Visualization Type .............................................................................. 121 Registering a Visualization Type ......

Summary of the content on the page No. 6

6 Creating a New File Reader ........................................................................................... 234 Registering a File Reader ............................................................................................... 245 Unregistering a File Reader ........................................................................................... 246 Example: TIFF File Reader ........................................................................................... 248 Cha

Summary of the content on the page No. 7

7 Chapter 14 Creating a User Interface Panel ......................................................... 311 Overview of the iTool UI Panel .................................................................................... 312 Creating a UI Panel Interface ........................................................................................ 313 Creating Callback Routines ........................................................................................... 318 Registering a UI Panel ....

Summary of the content on the page No. 8

8 Appendix B iTool Compound Widgets .................................................................. 397 Overview of iTools Compound Widgets ....................................................................... 398 CW_ITMENU ................................................................................................................ 399 CW_ITPANEL .............................................................................................................. 404 CW_ITSTATUSBAR .............

Summary of the content on the page No. 9

Chapter 1 Overview of iTools This chapter provides an overview of the IDL iTool Component Framework. What are iTools? . . . . . . . . . . . . . . . . . . . . . 10 About the iTools Code Base . . . . . . . . . . . . 13 What is the iTools Component Framework? 11 Skills Required to Use the iTools Component Framework . . . . . . . . . . . . . . . . . . . . . . . . . 15 About this Manual . . . . . . . . . . . . . . . . . . . . 12 iTool Developer’s Guide 9

Summary of the content on the page No. 10

10 Chapter 1: Overview of iTools What are iTools? IDL Intelligent Tools, or iTools, are applications written in IDL to perform a variety of data analysis and visualization tasks. iTools share a common underlying application framework, presenting a full-featured, customizable, application-like user interface with menus, toolbars, and other graphical features. Several predefined iTools are provided along with IDL; you can use these tools to explore and visualize your data without writing any

Summary of the content on the page No. 11

Chapter 1: Overview of iTools 11 What is the iTools Component Framework? The iTools component framework is a set of object class definitions written in the IDL language. It is designed to facilitate the development of sophisticated visualization tools by providing a set of pre-built components that provide standard features including:  creation of visualization graphics  mouse manipulations of visualization graphics  annotations  management of visualization and application properties  un

Summary of the content on the page No. 12

12 Chapter 1: Overview of iTools About this Manual The iTool Developer’s Guide describes the IDL iTools component framework and provides examples of its use. After reading this manual, you will understand how to use the component framework to create your own intelligent tools. This manual is divided into three parts: Part I: Understanding the iTools Component Framework This section describes the iTools component framework in conceptual terms, and outlines some of the processes you will use in

Summary of the content on the page No. 13

Chapter 1: Overview of iTools 13 About the iTools Code Base The iTools component framework is written almost entirely in the IDL language. The IDL code that implements both the component framework and all of the standard iTools included with IDL is available for you to inspect, copy, and learn from. To inspect the iTools code, look in the lib/itools subdirectory of your IDL installation directory. The iTools code base is organized as follows: In thelib/itools directory you will find code th

Summary of the content on the page No. 14

14 Chapter 1: Overview of iTools  The core iTool component framework classes used to build individual iTools, visualization types, operations, etc. are formally documented in the IDL Reference Guide and discussed in detail in this manual. If an object class, method, or property is necessary for the construction of a new iTool or component of an iTool, it is formally documented in the IDL Reference Guide or in this manual. Core iTool framework classes are located in the lib/itools/framewor

Summary of the content on the page No. 15

Chapter 1: Overview of iTools 15 Skills Required to Use the iTools Component Framework The iTools component framework consists of a set of IDL object classes, supplemented by utility routines. If you are already familiar with the concepts of object-oriented programming, or have written programs that use IDL object graphics, you will find the iTools framework easy to understand and use. The framework approach means that most of the details of creating a full-featured and usable application

Summary of the content on the page No. 16

16 Chapter 1: Overview of iTools Skills Required to Use the iTools Component Framework iTool Developer’s Guide

Summary of the content on the page No. 17

Part I: Understanding the iTools Component Framework

Summary of the content on the page No. 18

Summary of the content on the page No. 19

Chapter 2 iTool System Architecture This chapter describes the iTool component framework architecture. Overview of the iTool System Architecture 20 Registering Components . . . . . . . . . . . . . . 38 iTools Object Model Diagram . . . . . . . . . . . 21 iTool Messaging System . . . . . . . . . . . . . . 41 iTool Object Identifiers . . . . . . . . . . . . . . . . 28 System Resources . . . . . . . . . . . . . . . . . . . . 44 iTool Object Hierarchy . . . . . . . . . . . . . . . . 31 iToo

Summary of the content on the page No. 20

20 Chapter 2: iTool System Architecture Overview of the iTool System Architecture The iTool system architecture is designed to maintain a separation between the functionality provided by an iTool and the graphical presentation layer that reveals that functionality to an iTool user (the iTool user interface). Such a separation allows for the creation of different user interfaces for the same underlying functionality; while the initial iTool user interface has been created using IDL widgets, i


Alternative user manuals
# User manual Category Download
1 Sony VGC-RB50(G) User manual Computer Accessories 1
2 Sony Movie Studio HD Platinum Suite 11 MSPSMS11000 User manual Computer Accessories 177
3 Sony Hi-MD Walkman MCMD-R1 User manual Computer Accessories 7
4 Sony Sound Forge V.10.0 Pro SF-10000 User manual Computer Accessories 435
5 Sony Rechargable Battery Pack VGP-BPSC31 User manual Computer Accessories 23
6 Sony SMP-N100 User manual Computer Accessories 10
7 Sony VGP-BPS13 User manual Computer Accessories 1
8 Sony VGP-BPS22A User manual Computer Accessories 2
9 Sony Walkman NWZ-S616F User manual Computer Accessories 48
10 Philips SBCAC250/00 User manual Computer Accessories 0
11 Sony Rechargable Battery Pack VGPBPSC31 User manual Computer Accessories 1
12 Philips SBCAC250 User manual Computer Accessories 0
13 Sony Walkman NWZ-S615F User manual Computer Accessories 21
14 Philips FR-996 User manual Computer Accessories 514
15 Sony SGPAC10V1 AC Adapter SGPAC10V1 User manual Computer Accessories 17