#include <ALabel.h>
Collaboration diagram for Action:

Public Member Functions | |
| Action (QPixmap *image) | |
| ~Action () | |
| Action * | getNext () |
| void | setNext (Action *next) |
| QPixmap * | getImage () |
Private Attributes | |
| QPixmap * | image |
| Action * | next |
|
|
Definition at line 636 of file ALabel.cpp. References next. 00637 {
00638 this->image = image;
00639 next = NULL;
00640 }
|
|
|
Definition at line 642 of file ALabel.cpp. References image. 00643 {
00644 delete image;
00645 image = NULL;
00646 }
|
|
|
Definition at line 654 of file ALabel.cpp. Referenced by ALabel::animate(), and ALabel::cleanStack(). 00655 { return image; }
|
|
|
Definition at line 648 of file ALabel.cpp. Referenced by ALabel::animate(), and ALabel::cleanStack(). 00649 { return next; }
|
|
|
Definition at line 651 of file ALabel.cpp. Referenced by ALabel::appendJob(). 00652 { this->next = next; }
|
|
|
Definition at line 152 of file ALabel.h. Referenced by ~Action(). |
|
|
Definition at line 153 of file ALabel.h. Referenced by Action(). |
1.3.9.1