Denis Laprise <[EMAIL PROTECTED]> writes: > I'm new to OpenOffice and I'd like to discuss about the (foolish) > possibility of re-implementing the Visual Class Library to have it > output HTML and Javascript code to render the whole OpenOffice UI on a > web browser. > Hi Denis,
welcome to OOo - you heroically picked a task that sounds like _a lot_ of work. ;-) > After a quick look at the codebase, I figure out that focusing on the > AWT toolkit, basic GDI emulation and event dispatching (in order to > render basic dialogs) would be a good start. > AWT is a UNO wrapper around native window and control classes - you should start with those (class Window and derivees). Rendering is performed via the OutputDevice class. This is not to discourage you, but OOo is a _huge_ beast - and derived classes quite up in the application code sometimes depend on the order of calls like SetFocus() or Activate() (which is one of the reasons why plugging in a different toolkit as VCL is so hard). Cheers, -- Thorsten If you're not failing some of the time, you're not trying hard enough. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
