AlbumShaper  1.0a3
Public Member Functions | Private Attributes
Action Class Reference

#include <ALabel.h>

Collaboration diagram for Action:
Collaboration graph
[legend]

List of all members.

Public Member Functions

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

Private Attributes

QPixmap * image
Actionnext

Detailed Description

Definition at line 142 of file ALabel.h.


Constructor & Destructor Documentation

Action::Action ( QPixmap *  image)

Definition at line 636 of file ALabel.cpp.

References image, and next.

{
  this->image = image;
  next = NULL;
}
Action::~Action ( )

Definition at line 642 of file ALabel.cpp.

References image.

{
  delete image;
  image = NULL;
}

Member Function Documentation

QPixmap * Action::getImage ( )

Definition at line 654 of file ALabel.cpp.

References image.

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

{ return image; }
Action * Action::getNext ( )

Definition at line 648 of file ALabel.cpp.

References next.

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

{ return next; }
void Action::setNext ( Action next)

Definition at line 651 of file ALabel.cpp.

References next.

Referenced by ALabel::appendJob().

{ this->next = next; }

Member Data Documentation

QPixmap* Action::image [private]

Definition at line 152 of file ALabel.h.

Referenced by Action(), getImage(), and ~Action().

Action* Action::next [private]

Definition at line 153 of file ALabel.h.

Referenced by Action(), getNext(), and setNext().


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