-rw-r--r-- | noncore/net/mail/composemail.cpp | 7 | ||||
-rw-r--r-- | noncore/net/mail/editaccounts.cpp | 1 | ||||
-rw-r--r-- | noncore/net/mail/libmailwrapper/mailwrapper.cpp | 2 | ||||
-rw-r--r-- | noncore/net/mail/mailwrapper.cpp | 2 | ||||
-rw-r--r-- | noncore/net/mail/main.cpp | 1 | ||||
-rw-r--r-- | noncore/net/mail/mainwindow.cpp | 1 |
6 files changed, 0 insertions, 14 deletions
diff --git a/noncore/net/mail/composemail.cpp b/noncore/net/mail/composemail.cpp index a17ccb3..88dd780 100644 --- a/noncore/net/mail/composemail.cpp +++ b/noncore/net/mail/composemail.cpp | |||
@@ -1,37 +1,30 @@ | |||
1 | #include <qt.h> | 1 | #include <qt.h> |
2 | #include <qcombobox.h> | ||
3 | #include <qmessagebox.h> | ||
4 | #include <qlistview.h> | ||
5 | #include <qtabwidget.h> | ||
6 | #include <qmultilineedit.h> | ||
7 | #include <qregexp.h> | ||
8 | 2 | ||
9 | #include <opie/ofiledialog.h> | 3 | #include <opie/ofiledialog.h> |
10 | #include <qpe/resource.h> | 4 | #include <qpe/resource.h> |
11 | 5 | ||
12 | #include "composemail.h" | 6 | #include "composemail.h" |
13 | #include "mailwrapper.h" | ||
14 | 7 | ||
15 | ComposeMail::ComposeMail( Settings *s, QWidget *parent, const char *name, bool modal, WFlags flags ) | 8 | ComposeMail::ComposeMail( Settings *s, QWidget *parent, const char *name, bool modal, WFlags flags ) |
16 | : ComposeMailUI( parent, name, modal, flags ) | 9 | : ComposeMailUI( parent, name, modal, flags ) |
17 | { | 10 | { |
18 | settings = s; | 11 | settings = s; |
19 | 12 | ||
20 | attList->addColumn( tr( "Name" ) ); | 13 | attList->addColumn( tr( "Name" ) ); |
21 | attList->addColumn( tr( "Size" ) ); | 14 | attList->addColumn( tr( "Size" ) ); |
22 | 15 | ||
23 | QList<Account> accounts = settings->getAccounts(); | 16 | QList<Account> accounts = settings->getAccounts(); |
24 | Account *it; | 17 | Account *it; |
25 | for ( it = accounts.first(); it; it = accounts.next() ) { | 18 | for ( it = accounts.first(); it; it = accounts.next() ) { |
26 | if ( it->getType().compare( "SMTP" ) == 0 ) { | 19 | if ( it->getType().compare( "SMTP" ) == 0 ) { |
27 | SMTPaccount *smtp = static_cast<SMTPaccount *>(it); | 20 | SMTPaccount *smtp = static_cast<SMTPaccount *>(it); |
28 | fromBox->insertItem( smtp->getMail() ); | 21 | fromBox->insertItem( smtp->getMail() ); |
29 | smtpAccounts.append( smtp ); | 22 | smtpAccounts.append( smtp ); |
30 | } | 23 | } |
31 | } | 24 | } |
32 | 25 | ||
33 | if ( smtpAccounts.count() > 0 ) { | 26 | if ( smtpAccounts.count() > 0 ) { |
34 | fillValues( fromBox->currentItem() ); | 27 | fillValues( fromBox->currentItem() ); |
35 | } else { | 28 | } else { |
36 | QMessageBox::information( this, tr( "Problem" ), | 29 | QMessageBox::information( this, tr( "Problem" ), |
37 | tr( "<p>Please create an SMTP account first.</p>" ), | 30 | tr( "<p>Please create an SMTP account first.</p>" ), |
diff --git a/noncore/net/mail/editaccounts.cpp b/noncore/net/mail/editaccounts.cpp index 7e2dd24..1c80adb 100644 --- a/noncore/net/mail/editaccounts.cpp +++ b/noncore/net/mail/editaccounts.cpp | |||
@@ -1,26 +1,25 @@ | |||
1 | #include <qt.h> | 1 | #include <qt.h> |
2 | #include <qtabwidget.h> | ||
3 | 2 | ||
4 | #include "defines.h" | 3 | #include "defines.h" |
5 | #include "editaccounts.h" | 4 | #include "editaccounts.h" |
6 | 5 | ||
7 | AccountListItem::AccountListItem( QListView *parent, Account *a) | 6 | AccountListItem::AccountListItem( QListView *parent, Account *a) |
8 | : QListViewItem( parent ) | 7 | : QListViewItem( parent ) |
9 | { | 8 | { |
10 | account = a; | 9 | account = a; |
11 | setText( 0, account->getAccountName() ); | 10 | setText( 0, account->getAccountName() ); |
12 | setText( 1, account->getType() ); | 11 | setText( 1, account->getType() ); |
13 | } | 12 | } |
14 | 13 | ||
15 | EditAccounts::EditAccounts( Settings *s, QWidget *parent, const char *name, bool modal, WFlags flags ) | 14 | EditAccounts::EditAccounts( Settings *s, QWidget *parent, const char *name, bool modal, WFlags flags ) |
16 | : EditAccountsUI( parent, name, modal, flags ) | 15 | : EditAccountsUI( parent, name, modal, flags ) |
17 | { | 16 | { |
18 | qDebug( "New Account Configuration Widget" ); | 17 | qDebug( "New Account Configuration Widget" ); |
19 | settings = s; | 18 | settings = s; |
20 | 19 | ||
21 | mailList->addColumn( tr( "Account" ) ); | 20 | mailList->addColumn( tr( "Account" ) ); |
22 | mailList->addColumn( tr( "Type" ) ); | 21 | mailList->addColumn( tr( "Type" ) ); |
23 | 22 | ||
24 | newsList->addColumn( tr( "Account" ) ); | 23 | newsList->addColumn( tr( "Account" ) ); |
25 | 24 | ||
26 | connect( newMail, SIGNAL( clicked() ), SLOT( slotNewMail() ) ); | 25 | connect( newMail, SIGNAL( clicked() ), SLOT( slotNewMail() ) ); |
diff --git a/noncore/net/mail/libmailwrapper/mailwrapper.cpp b/noncore/net/mail/libmailwrapper/mailwrapper.cpp index 13a3fd9..ea9e7b2 100644 --- a/noncore/net/mail/libmailwrapper/mailwrapper.cpp +++ b/noncore/net/mail/libmailwrapper/mailwrapper.cpp | |||
@@ -1,33 +1,31 @@ | |||
1 | #include <qfileinfo.h> | ||
2 | #include <stdlib.h> | 1 | #include <stdlib.h> |
3 | #include <sys/stat.h> | 2 | #include <sys/stat.h> |
4 | #include <sys/types.h> | 3 | #include <sys/types.h> |
5 | #include <unistd.h> | 4 | #include <unistd.h> |
6 | #include <fcntl.h> | 5 | #include <fcntl.h> |
7 | #include <string.h> | 6 | #include <string.h> |
8 | #include <qdir.h> | 7 | #include <qdir.h> |
9 | #include <qtextstream.h> | ||
10 | 8 | ||
11 | #include "mailwrapper.h" | 9 | #include "mailwrapper.h" |
12 | #include "logindialog.h" | 10 | #include "logindialog.h" |
13 | //#include "mail.h" | 11 | //#include "mail.h" |
14 | #include "defines.h" | 12 | #include "defines.h" |
15 | 13 | ||
16 | Attachment::Attachment( DocLnk lnk ) | 14 | Attachment::Attachment( DocLnk lnk ) |
17 | { | 15 | { |
18 | doc = lnk; | 16 | doc = lnk; |
19 | size = QFileInfo( doc.file() ).size(); | 17 | size = QFileInfo( doc.file() ).size(); |
20 | } | 18 | } |
21 | 19 | ||
22 | Folder::Folder(const QString&tmp_name ) | 20 | Folder::Folder(const QString&tmp_name ) |
23 | { | 21 | { |
24 | name = tmp_name; | 22 | name = tmp_name; |
25 | nameDisplay = name; | 23 | nameDisplay = name; |
26 | 24 | ||
27 | for ( int pos = nameDisplay.find( '&' ); pos != -1; | 25 | for ( int pos = nameDisplay.find( '&' ); pos != -1; |
28 | pos = nameDisplay.find( '&' ) ) { | 26 | pos = nameDisplay.find( '&' ) ) { |
29 | int end = nameDisplay.find( '-' ); | 27 | int end = nameDisplay.find( '-' ); |
30 | if ( end == -1 || end <= pos ) break; | 28 | if ( end == -1 || end <= pos ) break; |
31 | QString str64 = nameDisplay.mid( pos + 1, end - pos - 1 ); | 29 | QString str64 = nameDisplay.mid( pos + 1, end - pos - 1 ); |
32 | // TODO: do real base64 decoding here ! | 30 | // TODO: do real base64 decoding here ! |
33 | if ( str64.compare( "APw" ) == 0 ) { | 31 | if ( str64.compare( "APw" ) == 0 ) { |
diff --git a/noncore/net/mail/mailwrapper.cpp b/noncore/net/mail/mailwrapper.cpp index 13a3fd9..ea9e7b2 100644 --- a/noncore/net/mail/mailwrapper.cpp +++ b/noncore/net/mail/mailwrapper.cpp | |||
@@ -1,33 +1,31 @@ | |||
1 | #include <qfileinfo.h> | ||
2 | #include <stdlib.h> | 1 | #include <stdlib.h> |
3 | #include <sys/stat.h> | 2 | #include <sys/stat.h> |
4 | #include <sys/types.h> | 3 | #include <sys/types.h> |
5 | #include <unistd.h> | 4 | #include <unistd.h> |
6 | #include <fcntl.h> | 5 | #include <fcntl.h> |
7 | #include <string.h> | 6 | #include <string.h> |
8 | #include <qdir.h> | 7 | #include <qdir.h> |
9 | #include <qtextstream.h> | ||
10 | 8 | ||
11 | #include "mailwrapper.h" | 9 | #include "mailwrapper.h" |
12 | #include "logindialog.h" | 10 | #include "logindialog.h" |
13 | //#include "mail.h" | 11 | //#include "mail.h" |
14 | #include "defines.h" | 12 | #include "defines.h" |
15 | 13 | ||
16 | Attachment::Attachment( DocLnk lnk ) | 14 | Attachment::Attachment( DocLnk lnk ) |
17 | { | 15 | { |
18 | doc = lnk; | 16 | doc = lnk; |
19 | size = QFileInfo( doc.file() ).size(); | 17 | size = QFileInfo( doc.file() ).size(); |
20 | } | 18 | } |
21 | 19 | ||
22 | Folder::Folder(const QString&tmp_name ) | 20 | Folder::Folder(const QString&tmp_name ) |
23 | { | 21 | { |
24 | name = tmp_name; | 22 | name = tmp_name; |
25 | nameDisplay = name; | 23 | nameDisplay = name; |
26 | 24 | ||
27 | for ( int pos = nameDisplay.find( '&' ); pos != -1; | 25 | for ( int pos = nameDisplay.find( '&' ); pos != -1; |
28 | pos = nameDisplay.find( '&' ) ) { | 26 | pos = nameDisplay.find( '&' ) ) { |
29 | int end = nameDisplay.find( '-' ); | 27 | int end = nameDisplay.find( '-' ); |
30 | if ( end == -1 || end <= pos ) break; | 28 | if ( end == -1 || end <= pos ) break; |
31 | QString str64 = nameDisplay.mid( pos + 1, end - pos - 1 ); | 29 | QString str64 = nameDisplay.mid( pos + 1, end - pos - 1 ); |
32 | // TODO: do real base64 decoding here ! | 30 | // TODO: do real base64 decoding here ! |
33 | if ( str64.compare( "APw" ) == 0 ) { | 31 | if ( str64.compare( "APw" ) == 0 ) { |
diff --git a/noncore/net/mail/main.cpp b/noncore/net/mail/main.cpp index f97bea1..3bfcb4a 100644 --- a/noncore/net/mail/main.cpp +++ b/noncore/net/mail/main.cpp | |||
@@ -1,6 +1,5 @@ | |||
1 | #include <qpe/qpeapplication.h> | ||
2 | #include <opie/oapplicationfactory.h> | 1 | #include <opie/oapplicationfactory.h> |
3 | 2 | ||
4 | #include "opiemail.h" | 3 | #include "opiemail.h" |
5 | 4 | ||
6 | OPIE_EXPORT_APP( OApplicationFactory<OpieMail> ) | 5 | OPIE_EXPORT_APP( OApplicationFactory<OpieMail> ) |
diff --git a/noncore/net/mail/mainwindow.cpp b/noncore/net/mail/mainwindow.cpp index 28111d0..6f054cc 100644 --- a/noncore/net/mail/mainwindow.cpp +++ b/noncore/net/mail/mainwindow.cpp | |||
@@ -1,30 +1,29 @@ | |||
1 | #include <qlabel.h> | 1 | #include <qlabel.h> |
2 | #include <qvbox.h> | 2 | #include <qvbox.h> |
3 | #include <qheader.h> | 3 | #include <qheader.h> |
4 | #include <qtimer.h> | 4 | #include <qtimer.h> |
5 | 5 | ||
6 | #include <qpe/resource.h> | ||
7 | 6 | ||
8 | #include "defines.h" | 7 | #include "defines.h" |
9 | #include "mainwindow.h" | 8 | #include "mainwindow.h" |
10 | 9 | ||
11 | MainWindow::MainWindow( QWidget *parent, const char *name, WFlags flags ) | 10 | MainWindow::MainWindow( QWidget *parent, const char *name, WFlags flags ) |
12 | : QMainWindow( parent, name, flags ) | 11 | : QMainWindow( parent, name, flags ) |
13 | { | 12 | { |
14 | setCaption( tr( "Opie-Mail" ) ); | 13 | setCaption( tr( "Opie-Mail" ) ); |
15 | setToolBarsMovable( false ); | 14 | setToolBarsMovable( false ); |
16 | 15 | ||
17 | toolBar = new QToolBar( this ); | 16 | toolBar = new QToolBar( this ); |
18 | menuBar = new QMenuBar( toolBar ); | 17 | menuBar = new QMenuBar( toolBar ); |
19 | mailMenu = new QPopupMenu( menuBar ); | 18 | mailMenu = new QPopupMenu( menuBar ); |
20 | menuBar->insertItem( tr( "Mail" ), mailMenu ); | 19 | menuBar->insertItem( tr( "Mail" ), mailMenu ); |
21 | settingsMenu = new QPopupMenu( menuBar ); | 20 | settingsMenu = new QPopupMenu( menuBar ); |
22 | menuBar->insertItem( tr( "Settings" ), settingsMenu ); | 21 | menuBar->insertItem( tr( "Settings" ), settingsMenu ); |
23 | 22 | ||
24 | addToolBar( toolBar ); | 23 | addToolBar( toolBar ); |
25 | toolBar->setHorizontalStretchable( true ); | 24 | toolBar->setHorizontalStretchable( true ); |
26 | 25 | ||
27 | QLabel *spacer = new QLabel( toolBar ); | 26 | QLabel *spacer = new QLabel( toolBar ); |
28 | spacer->setBackgroundMode( QWidget::PaletteButton ); | 27 | spacer->setBackgroundMode( QWidget::PaletteButton ); |
29 | toolBar->setStretchableWidget( spacer ); | 28 | toolBar->setStretchableWidget( spacer ); |
30 | 29 | ||