summaryrefslogtreecommitdiffstats
path: root/ktnef/gui/messagepropertydialog.cpp
blob: 73aba4ff9ea3db44f5b1169890624229c47da4d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
    messagepropertydialog.cpp

    Copyright (C) 2003 Michael Goffioul <tdeprint@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( TQWidget *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 TDEListView( 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"