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

Solutions
Whitepapers and eBooks
IBM Whitepaper: Innovative Collaboration to Advance Your Business
Internet.com eBook: Real Life Rails
Avaya Article: Call Control XML - Powerful, Standards-Based Call Control
Internet.com eBook: The Pros and Cons of Outsourcing
Go Parallel Article: Scalable Parallelism with Intel(R) Threading Building Blocks
Internet.com eBook: Best Practices for Developing a Web Site
IBM CXO Whitepaper: The 2008 Global CEO Study "The Enterprise of the Future"
Avaya Article: Call Control XML in Action - A CCXML Auto Attendant
Go Parallel Article: James Reinders on the Intel Parallel Studio Beta Program
IBM CXO Whitepaper: Unlocking the DNA of the Adaptable Workforce--The Global Human Capital Study 2008
Adobe Acrobat Connect Pro: Web Conferencing and eLearning Whitepapers
Go Parallel Article: Getting Started with TBB on Windows
HP eBook: Storage Networking , Part 1
MORE WHITEPAPERS, EBOOKS, AND ARTICLES
Webcasts
Go Parallel Video: Intel(R) Threading Building Blocks: A New Method for Threading in C++
HP Video: Is Your Data Center Ready for a Real World Disaster?
Microsoft Partner Portal Video: Microsoft Gold Certified Partners Build Successful Practices
HP On Demand Webcast: Virtualization in Action
Go Parallel Video: Performance and Threading Tools for Game Developers
Rackspace Hosting Center: Customer Videos
Intel vPro Developer Virtual Bootcamp
HP Disaster-Proof Solutions eSeminar
HP On Demand Webcast: Discover the Benefits of Virtualization
MORE WEBCASTS, PODCASTS, AND VIDEOS
Downloads and eKits
Microsoft Download: Silverlight 2 Software Development Kit Beta 2
30-Day Trial: SPAMfighter Exchange Module
Red Gate Download: SQL Toolbelt
Iron Speed Designer Application Generator
Microsoft Download: Silverlight 2 Beta 2 Runtime
MORE DOWNLOADS, EKITS, AND FREE TRIALS
Tutorials and Demos
IBM IT Innovation Article: Green Servers Provide a Competitive Advantage
Microsoft Article: Expression Web 2 for PHP Developers--Simplify Your PHP Applications
Featured Algorithm: Intel Threading Building Blocks - parallel_reduce
MORE TUTORIALS, DEMOS AND STEP-BY-STEP GUIDES
webref The latest from WebReference.com Browse >
Controllers: Programming Application Logic - Part 2 · How to Use JavaScript to Validate Form Data · Controllers: Programming Application Logic
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Sprint Launches Mobile WiMAX Network · Albatron Downsizes with the KI780G Mini-ITX Motherboard · Can't Find a Wi-Fi Network? Make Your Own.

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

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