AlbumShaper 1.0a3
Action Class Reference

#include <ALabel.h>

Collaboration diagram for Action:

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

References image, and next.

◆ ~Action()

Action::~Action ( )

Definition at line 648 of file ALabel.cpp.

649{
650 delete image;
651 image = NULL;
652}

References image.

Member Function Documentation

◆ getImage()

QPixmap * Action::getImage ( )

Definition at line 660 of file ALabel.cpp.

661{ return image; }

References image.

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

◆ getNext()

Action * Action::getNext ( )

Definition at line 654 of file ALabel.cpp.

655{ return next; }

References next.

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

◆ setNext()

void Action::setNext ( Action * next)

Definition at line 657 of file ALabel.cpp.

658{ this->next = next; }

References next.

Referenced by ALabel::appendJob().

Member Data Documentation

◆ image

QPixmap* Action::image
private

Definition at line 156 of file ALabel.h.

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

◆ next

Action* Action::next
private

Definition at line 157 of file ALabel.h.

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


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