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]

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

Whitepapers and eBooks

Symantec Whitepaper: Converging System and Data Protection for Complete Disaster Recovery
Intel Whitepaper: Comparing Two- and Four-Socket Platforms for Server Virtualization
IBM Solutions Brief: Go Green With IBM System xTM And Intel
HP eBook: Simplifying SQL Server Management
IBM Contest: Are You the Next Superstar? Join the "Search for the XML Superstar" Contest to Find Out
Intel PDF: Quad-Core Impacts More Than the Data Center
Intel PDF: Virtualization Delivers Data Center Efficiency
Go Parallel Article: PDC 2008 in Review
Avaya Article: Communication-Enabled Mashups: Empowering Both Business Owners and IT
Intel Whitepaper: Building a Real-World Model to Assess Virtualization Platforms
PDF: Intel Centrino Duo Processor Technology with Intel Core2 Duo Processor
Microsoft Article: Build and Run Virtual Machines with Hyper-V Server 2008
  Go Parallel Article: Q&A with a TBB Junkie
IBM Whitepaper: Innovative Collaboration to Advance Your Business
Internet.com eBook: Real Life Rails
IBM eBook: The Pros and Cons of Outsourcing
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
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
Symantec Whitepaper: Comprehensive Backup and Recovery of VMware Virtual Infrastructure
MORE WHITEPAPERS, EBOOKS, AND ARTICLES
webref The latest from WebReference.com Browse >
Popular JavaScript Framework Libraries: An Overview - Part 3 · Accessing Your MySQL Database from the Web with PHP · Working with the DOM Stylesheets Collection
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Fixing MySQL Replication · Firewall Guide: First Steps to Securing the Enterprise · VoxOx Tames the Tumultuous Communications Tangle

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

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