Last change
on this file was
49,
checked in by Sam Hocevar, 15 years ago
|
- Imported original public domain release, for future reference.
|
File size:
506 bytes
|
Line | |
---|
1 | #ifndef MACSTAT_HPP |
---|
2 | #define MACSTAT_HPP |
---|
3 | |
---|
4 | #include "status.hpp" // get visual object declaration |
---|
5 | #include <QDOffscreen.h> |
---|
6 | |
---|
7 | class mac_status_node; |
---|
8 | class mac_status_manager : public status_manager |
---|
9 | { |
---|
10 | protected: |
---|
11 | CWindowPtr win; |
---|
12 | GWorldPtr saveWorld; |
---|
13 | GDHandle saveDevice; |
---|
14 | PixPatHandle pat1,pat2,pat3; |
---|
15 | |
---|
16 | int level; |
---|
17 | mac_status_node *first; |
---|
18 | public : |
---|
19 | mac_status_manager(); |
---|
20 | virtual void push(char *name, visual_object *show); |
---|
21 | virtual void update(int percentage); |
---|
22 | virtual void pop(); |
---|
23 | } ; |
---|
24 | |
---|
25 | #endif |
---|
26 | |
---|
Note: See
TracBrowser
for help on using the repository browser.