summaryrefslogtreecommitdiff
path: root/noncore/unsupported/mailit/editaccount.cpp
Side-by-side diff
Diffstat (limited to 'noncore/unsupported/mailit/editaccount.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/mailit/editaccount.cpp27
1 files changed, 20 insertions, 7 deletions
diff --git a/noncore/unsupported/mailit/editaccount.cpp b/noncore/unsupported/mailit/editaccount.cpp
index c4f95ea..c0afbb2 100644
--- a/noncore/unsupported/mailit/editaccount.cpp
+++ b/noncore/unsupported/mailit/editaccount.cpp
@@ -20,2 +20,3 @@
+#include <qhbox.h>
#include "editaccount.h"
@@ -42,2 +43,3 @@ void EditAccount::setAccount(MailAccount *in, bool newOne)
syncCheckBox->setChecked(TRUE);
+ syncLimitInput->setValue(2);
@@ -53,2 +55,3 @@ void EditAccount::setAccount(MailAccount *in, bool newOne)
syncCheckBox->setChecked(account->synchronize);
+ syncLimitInput->setValue(account->syncLimit/1000);
}
@@ -72,3 +75,3 @@ void EditAccount::init()
- emailInputLabel = new QLabel("Email", this);
+ emailInputLabel = new QLabel(tr("Email"), this);
grid->addWidget(emailInputLabel, 2, 0 );
@@ -77,3 +80,3 @@ void EditAccount::init()
- popUserInputLabel = new QLabel("POP username", this);
+ popUserInputLabel = new QLabel(tr("POP username"), this);
grid->addWidget( popUserInputLabel, 3, 0 );
@@ -82,3 +85,3 @@ void EditAccount::init()
- popPasswInputLabel = new QLabel( "POP password", this);
+ popPasswInputLabel = new QLabel( tr("POP password"), this);
grid->addWidget( popPasswInputLabel, 4, 0 );
@@ -87,3 +90,3 @@ void EditAccount::init()
- popServerInputLabel = new QLabel("POP server", this);
+ popServerInputLabel = new QLabel(tr("POP server"), this);
grid->addWidget( popServerInputLabel, 5, 0 );
@@ -92,3 +95,3 @@ void EditAccount::init()
- smtpServerInputLabel = new QLabel("SMTP server", this );
+ smtpServerInputLabel = new QLabel(tr("SMTP server"), this );
grid->addWidget( smtpServerInputLabel, 6, 0 );
@@ -97,5 +100,14 @@ void EditAccount::init()
- syncCheckBox = new QCheckBox( tr( "Synchronize with server" ), this);
+ QHBox* syncBox=new QHBox(this);
+ grid->addWidget( syncBox, 7, 1 );
+
+ syncCheckBox = new QCheckBox( tr( "Synchronize" ), this);
syncCheckBox->setChecked( TRUE );
- grid->addMultiCellWidget( syncCheckBox, 7, 7, 0, 1 );
+ grid->addWidget( syncCheckBox,7,0);
+
+ syncLimitInputLabel = new QLabel(tr("Mail Size (k)"), syncBox);
+ //syncBox->addWidget( syncLimitInputLabel);
+ syncLimitInput = new QSpinBox( syncBox, "syncSize" );
+ //syncBox->addWidget(syncLimitInput);
+
}
@@ -113,2 +125,3 @@ void EditAccount::accept()
account->synchronize = syncCheckBox->isChecked();
+ account->syncLimit = syncLimitInput->value()*1000; //Display in kB