home *** CD-ROM | disk | FTP | other *** search
-
- // utils.h.viewwindow
-
- // Dreamscape - C++ class library for RISC OS
- // Copyright (c) 1996 Mark Seaborn <mseaborn@argonet.co.uk>
- //
- // This library is free software; you can redistribute it and/or
- // modify it under the terms of the GNU Library General Public
- // License as published by the Free Software Foundation; either
- // version 2 of the License, or (at your option) any later version.
- // See the Dreamscape documentation for more information.
-
- #ifndef dreamscape_viewwindow_H
- #define dreamscape_viewwindow_H
-
- #include "document.h"
-
- class ViewWindow: public View, private Command {
- void reset_title();
- void reset_extent();
- void execute();
-
- public:
- ViewWindow(Document *document, BaseWindow *window);
- virtual ~ViewWindow();
-
- void document_info_changed(const DocumentInfo &info);
- void view_info_changed(const ViewInfo &info);
- };
-
- #endif
-