diff options
Diffstat (limited to 'ktnef/gui/messagepropertydialog.cpp')
-rw-r--r-- | ktnef/gui/messagepropertydialog.cpp | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/ktnef/gui/messagepropertydialog.cpp b/ktnef/gui/messagepropertydialog.cpp new file mode 100644 index 000000000..0e098c35c --- /dev/null +++ b/ktnef/gui/messagepropertydialog.cpp @@ -0,0 +1,46 @@ +/* + messagepropertydialog.cpp + + Copyright (C) 2003 Michael Goffioul <kdeprint@swing.be> + + This file is part of KTNEF, the KDE TNEF support library/program. + + 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. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#include "messagepropertydialog.h" +#include "attachpropertydialog.h" +#include "ktnef/ktnefmessage.h" + +#include <klistview.h> +#include <klocale.h> + +MessagePropertyDialog::MessagePropertyDialog( QWidget *parent, KTNEFMessage *msg ) + : KDialogBase( parent, "MessagePropertyDialog", true, i18n( "Message Properties" ), + KDialogBase::Close|KDialogBase::User1, KDialogBase::Close, false, + KStdGuiItem::save() ) +{ + m_message = msg; + + m_listview = new KListView( this ); + m_listview->addColumn( i18n( "Name" ) ); + m_listview->addColumn( i18n( "Value" ) ); + m_listview->setAllColumnsShowFocus( true ); + setMainWidget( m_listview ); + + formatPropertySet( m_message, m_listview ); +} + +void MessagePropertyDialog::slotUser1() +{ + saveProperty( m_listview, m_message, this ); +} + +#include "messagepropertydialog.moc" |