-rw-r--r-- | noncore/net/mail/mainwindow.cpp | 21 | ||||
-rw-r--r-- | pics/opiemail/kmmsgnew.png | bin | 0 -> 481 bytes | |||
-rw-r--r-- | pics/opiemail/kmmsgunseen.png | bin | 0 -> 396 bytes |
3 files changed, 15 insertions, 6 deletions
diff --git a/noncore/net/mail/mainwindow.cpp b/noncore/net/mail/mainwindow.cpp index 1d6e901..f0a915d 100644 --- a/noncore/net/mail/mainwindow.cpp +++ b/noncore/net/mail/mainwindow.cpp | |||
@@ -7,2 +7,3 @@ | |||
7 | #include <qpe/qpeapplication.h> | 7 | #include <qpe/qpeapplication.h> |
8 | #include <qpe/resource.h> | ||
8 | 9 | ||
@@ -83,2 +84,3 @@ MainWindow::MainWindow( QWidget *parent, const char *name, WFlags flags ) | |||
83 | mailView = new QListView( view ); | 84 | mailView = new QListView( view ); |
85 | mailView->addColumn( tr( "Status" ) ); | ||
84 | mailView->addColumn( tr( "Subject" ),QListView::Manual ); | 86 | mailView->addColumn( tr( "Subject" ),QListView::Manual ); |
@@ -123,5 +125,6 @@ void MainWindow::slotAdjustColumns() | |||
123 | 125 | ||
124 | mailView->setColumnWidth( 0, mailView->visibleWidth() - 130 ); | 126 | mailView->setColumnWidth( 0, 10 ); |
125 | mailView->setColumnWidth( 1, 80 ); | 127 | mailView->setColumnWidth( 1, mailView->visibleWidth() - 130 ); |
126 | mailView->setColumnWidth( 2, 50 ); | 128 | mailView->setColumnWidth( 2, 80 ); |
129 | mailView->setColumnWidth( 3, 50 ); | ||
127 | } | 130 | } |
@@ -161,2 +164,3 @@ void MainWindow::displayMail(QListViewItem*item) | |||
161 | readMail.exec(); | 164 | readMail.exec(); |
165 | ( (MailListViewItem*)item )->setPixmap( 0, Resource::loadPixmap( "opiemail/kmmsgunseen") ); | ||
162 | } | 166 | } |
@@ -170,5 +174,10 @@ void MailListViewItem::showEntry() | |||
170 | { | 174 | { |
171 | setText(0,mail_data.getSubject()); | 175 | if ( mail_data.getFlags().testBit( FLAG_SEEN ) == true ) { |
172 | setText(1,mail_data.getFrom()); | 176 | setPixmap( 0, Resource::loadPixmap( "opiemail/kmmsgunseen") ); |
173 | setText(2,mail_data.getDate()); | 177 | } else { |
178 | setPixmap( 0, Resource::loadPixmap( "opiemail/kmmsgnew") ); | ||
179 | } | ||
180 | setText(1,mail_data.getSubject()); | ||
181 | setText(2,mail_data.getFrom()); | ||
182 | setText(3,mail_data.getDate()); | ||
174 | } | 183 | } |
diff --git a/pics/opiemail/kmmsgnew.png b/pics/opiemail/kmmsgnew.png new file mode 100644 index 0000000..245d156 --- a/dev/null +++ b/pics/opiemail/kmmsgnew.png | |||
Binary files differ | |||
diff --git a/pics/opiemail/kmmsgunseen.png b/pics/opiemail/kmmsgunseen.png new file mode 100644 index 0000000..8e3de20 --- a/dev/null +++ b/pics/opiemail/kmmsgunseen.png | |||
Binary files differ | |||