zhangyz wrote:
>       hello everyone!
>       
>       I'm  a newbie to ooo
>     In ooo,   how to maximize and minisize the window, These codes in which 
> module?    which functions?
> 
Hi zhangyz,

The project is called "VCL". Look at the following file:

vcl/inc/vcl/wrkwin.hxx

There you can find the methods you are looking for. Please keep in mind
that the VCL module is not part of the framework project. If you need
more information about VCL you should use the gsl development mailing
list ([EMAIL PROTECTED]).

class VCL_DLLPUBLIC WorkWindow : public SystemWindow
{
  ...
  void Minimize();
  ...
  void Maximize( BOOL bMaximize = TRUE );
  ...
};

Regards,
Carsten

-- 
Carsten Driesner (cd) - Project Lead OpenOffice.org Framework
Framework wiki: http://wiki.services.openoffice.org/wiki/Framework
OpenOffice.org Engineering at Sun: http://blogs.sun.com/GullFOSS

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to