summaryrefslogtreecommitdiffstats
path: root/examples/network/mail/composer.cpp
blob: cee25929acc906487e8a2260a6f49402dd7e4131 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/****************************************************************************
**
** Copyright (C) 1992-2008 Trolltech ASA.  All rights reserved.
**
** This file is part of an example program for TQt.  This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/

#include "composer.h"
#include "smtp.h"

#include <ntqlineedit.h>
#include <ntqmultilineedit.h>
#include <ntqpushbutton.h>
#include <ntqlabel.h>
#include <ntqlayout.h>

Composer::Composer( TQWidget *parent )
    : TQWidget( parent )
{
    TQGridLayout * layout = new TQGridLayout( this, 1, 1, 6 );

    layout->addWidget( new TQLabel( tr( "From:" ), this ), 0, 0 );
    from = new TQLineEdit( this );
    layout->addWidget( from, 0, 1 );

    layout->addWidget( new TQLabel( tr( "To:" ), this ), 1, 0 );
    to = new TQLineEdit( this );
    layout->addWidget( to, 1, 1 );

    layout->addWidget( new TQLabel( tr( "Subject:" ), this ), 2, 0 );
    subject = new TQLineEdit( this );
    layout->addWidget( subject, 2, 1 );

    message = new TQMultiLineEdit( this );
    layout->addMultiCellWidget( message, 3, 3, 0, 1 );

    send = new TQPushButton( tr( "&Send" ), this );
    layout->addWidget( send, 4, 0 );
    connect( send, SIGNAL( clicked() ), this, SLOT( sendMessage() ) );

    sendStatus = new TQLabel( this );
    layout->addWidget( sendStatus, 4, 1 );
}


void Composer::sendMessage()
{
    send->setEnabled( FALSE );
    sendStatus->setText( tr( "Looking up mail servers" ) );
    Smtp *smtp = new Smtp( from->text(), to->text(),
			   subject->text(),
			   message->text() );
    connect( smtp, SIGNAL(destroyed()),
	     this, SLOT(enableSend()) );
    connect( smtp, SIGNAL(status(const TQString &)),
	     sendStatus, SLOT(setText(const TQString &)) );
}


void Composer::enableSend()
{
    send->setEnabled( TRUE );
}