AlbumShaper  1.0a3
Public Member Functions | Private Attributes | List of all members
Action Class Reference

#include <ALabel.h>

Collaboration diagram for Action:
Collaboration graph
[legend]

Public Member Functions

 Action (QPixmap *image)
 
 ~Action ()
 
ActiongetNext ()
 
void setNext (Action *next)
 
QPixmap * getImage ()
 

Private Attributes

QPixmap * image
 
Actionnext
 

Detailed Description

Definition at line 146 of file ALabel.h.

Constructor & Destructor Documentation

§ Action()

Action::Action ( QPixmap *  image)

Definition at line 642 of file ALabel.cpp.

643 {
644  this->image = image;
645  next = NULL;
646 }
QPixmap * image
Definition: ALabel.h:156
Action * next
Definition: ALabel.h:157

§ ~Action()

Action::~Action ( )

Definition at line 648 of file ALabel.cpp.

649 {
650  delete image;
651  image = NULL;
652 }
QPixmap * image
Definition: ALabel.h:156

Member Function Documentation

§ getImage()

QPixmap * Action::getImage ( )

Definition at line 660 of file ALabel.cpp.

Referenced by ALabel::animate(), and ALabel::cleanStack().

661 { return image; }
QPixmap * image
Definition: ALabel.h:156

§ getNext()

Action * Action::getNext ( )

Definition at line 654 of file ALabel.cpp.

Referenced by ALabel::animate(), and ALabel::cleanStack().

655 { return next; }
Action * next
Definition: ALabel.h:157

§ setNext()

void Action::setNext ( Action next)

Definition at line 657 of file ALabel.cpp.

Referenced by ALabel::appendJob().

658 { this->next = next; }
Action * next
Definition: ALabel.h:157

Member Data Documentation

§ image

QPixmap* Action::image
private

Definition at line 156 of file ALabel.h.

§ next

Action* Action::next
private

Definition at line 157 of file ALabel.h.


The documentation for this class was generated from the following files: