/**************************************************************************** Hyper's CD Catalog A multiplatform qt and xml based catalog program Author : Peter Deak (hyperr@freemail.hu) License : GPL Copyright : (C) 2003 Peter Deak ****************************************************************************/ #ifndef SHOWCONTENT_H #define SHOWCONTENT_H #include #include #include class QVBoxLayout; class QHBoxLayout; class QGridLayout; class QPushButton; class QTextBrowser; class QToolButton; class QLabel; class Node; class ShowContent : public QDialog { Q_OBJECT public: ShowContent( Node *node,QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); ~ShowContent(); QPushButton* closeButton; QToolButton* deleteButton; QToolButton* saveButton; QTextBrowser* textBrowser; QLabel* sizel; public slots: int deletenode(void); int savenode(void); protected: QGridLayout* ShowContentLayout; QHBoxLayout* layout1; protected slots: virtual void languageChange(); private: Node *parentnode,*mynode; }; #endif // SHOWCONTENT_H