Crossfire Server, Branch 1.12  R12190
CRETreeItemAnimation.h
Go to the documentation of this file.
00001 #ifndef CREETREEITEMANIMATION_H
00002 #define CREETREEITEMANIMATION_H
00003 
00004 #include "CRETreeItem.h"
00005 
00006 extern "C" {
00007 #include "global.h"
00008 #include "image.h"
00009 }
00010 
00011 class CRETreeItemAnimation : public CRETreeItem
00012 {
00013     Q_OBJECT
00014     public:
00015         CRETreeItemAnimation(const Animations* animation);
00016         virtual ~CRETreeItemAnimation();
00017 
00018         virtual QString getPanelName() const { return "Animation"; }
00019         virtual void fillPanel(QWidget* panel);
00020 
00021     protected:
00022         const Animations* myAnimation;
00023 };
00024 
00025 #endif // CREETREEITEMANIMATION_H