/*************************************************************************** documentitemdlg.h - description ------------------- begin : Do Sep 10 2004 copyright : (C) 2004 by Dominik Seichter email : domseichter@web.de ***************************************************************************/ /*************************************************************************** This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. ***************************************************************************/ #ifndef DOCUMENTITEMDLG_H #define DOCUMENTITEMDLG_H #include #include "documentitem.h" #include "propertywidget.h" #include class KCommandHistory; class DocumentItemDlg : public KDialogBase { TQ_OBJECT public: DocumentItemDlg( TokenProvider* token, DocumentItem* item, KCommandHistory* history, TQWidget* parent ); ~DocumentItemDlg(); void addPage( PropertyWidget* widget ); protected slots: void accept(); private: DocumentItem* m_item; std::list m_list; KCommandHistory* m_history; }; #endif