summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/examples/biff/Biff.java
blob: b3107da438abed3e39e99e59c99c5407b424a7ef (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/***************************************************************************
* $Id$
**
* Copyright (C) 1992-2000 Trolltech AS.  All rights reserved.
**
* This file is part of an example program for Qt.  This example
* program may be used, distributed and modified without limitation.
**
****************************************************************************/
import org.kde.qt.*;
import java.util.Calendar;

class Biff extends QWidget
{
private    Calendar	lastModified;
private    QPixmap	hasNewMail = new QPixmap();
private    QPixmap	noNewMail = new QPixmap();
private    String	mailbox;
private    boolean	gotMail;

public Biff(  )
{
	this(null, null);
}
public Biff( QWidget parent, String name )
{
    super( parent, name, WType_Modal );
//    QFileInfo fi = new QFileInfo(System.getProperty("MAIL"));
    QFileInfo fi = new QFileInfo("");
    if ( !fi.exists() ) {
	String s = "/var/spool/mail/";
	s += System.getProperty("user.name");
	fi.setFile( s );
    }
    if ( fi.exists() ) {
	mailbox = fi.absFilePath();
	startTimer( 1000 );
    }

    setMinimumSize( 48, 48 );
    setMaximumSize( 48, 48 );
    resize( 48, 48 );

    hasNewMail.loadFromData( bmp.hasmail_bmp_data );
    noNewMail.loadFromData( bmp.nomail_bmp_data );

    gotMail = false;
    lastModified = fi.lastModified();
}


protected void timerEvent( QTimerEvent event )
{
    QFileInfo fi = new QFileInfo( mailbox );
    boolean newState = ( fi.lastModified() != lastModified &&
		      fi.lastModified().after( fi.lastRead() ) );
    if ( newState != gotMail ) {
	if ( gotMail )
	    lastModified = fi.lastModified();
	gotMail = newState;
	repaint( false );
    }
}
    

protected void paintEvent( QPaintEvent event )
{
    if ( gotMail )
	bitBlt( this, 0, 0, hasNewMail );
    else
	bitBlt( this, 0, 0, noNewMail );
}


protected void mousePressEvent( QMouseEvent event  )
{
    QFileInfo fi = new QFileInfo( mailbox );
    lastModified = fi.lastModified();
}
}