You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.4 KiB
47 lines
1.4 KiB
15 years ago
|
/*
|
||
|
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"
|