spacer
home / programming / javascript / gr / column21 / 1 current pageTo page 2To page 3
[next]

Doodle, A Demo Drawing Program - Part 2

Introduction

In Doodle: Part 1, I introduced the Doodle application; a program for editing drawings. In that article the application was little more than a graphics canvas and an input device. In this article, I add an application framework complete with a document-view architecture.

The document-view model is a powerful application programming technique that separates the document data - the information that will be saved away in a file or database somewhere, from the view - the visual representation of the data that the user can interract with.

Demonstration

New and improved Doodle

Click and drag the mouse over the 'canvas' on the left to draw lines

At first glance, the demo above looks similar to the demo from the first article, but underneath this user interface things have changed.

The most significant change is the introduction of the Doodle instance in place of where the Canvas was created. The Doodle instance will control all aspects of the application including communication between the document and views.

The Doodle constructor creates a Doodle.Doc instance and one view to the document - the Doodle.Canvas. Notice how the document and view classes Doodle.Doc and Doodle.Canvas have been nested within the Doodle class. What's happening here is that the Doodle class has two extra properties called 'Doc' and 'Canvas' that just happen to also be JavaScript classes. This technique allows all of the Doodle code to be isolated within a namespace called 'Doodle' and won't interfere or interact with other code. This has great advantages if you want to host two or more applications on the same Web page. If two applications running on the same Web page were to use global scope (i.e. the window object) for their variables and classes, it's likely that they would clash over a number of those variable or class names.

At this point, each component has yet to be initialised so the newDocument() function must be called before the application is ready.

home / programming / javascript / gr / column21 / 1 current pageTo page 2To page 3
[next]



JupiterOnlineMedia

internet.comearthweb.comDevx.commediabistro.comGraphics.com

Search:

Jupitermedia Corporation has two divisions: Jupiterimages and JupiterOnlineMedia

Jupitermedia Corporate Info


Legal Notices, Licensing, Reprints, & Permissions, Privacy Policy.

Advertise | Newsletters | Tech Jobs | Shopping | E-mail Offers

webref The latest from WebReference.com Browse >
How to Create an Ajax Autocomplete Text Field: Part 10 · Adding Client Capabilities to Server Controls Using the ASP.NET AJAX Control Toolkit · JavaScript and HTML Tricks
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Palm's Treo Presses On (iPhone Who?) · Toshiba Extends Notebook Line with 5400 and 7200-RPM Drives · Epson Kicks Color Cost to the Curb

Created: March 27, 2003
Revised: Sept 27, 2006

URL: http://webreference.com/programming/javascript/gr/column21/1