summaryrefslogtreecommitdiff
path: root/noncore/apps/checkbook/checkbook.cpp
Unidiff
Diffstat (limited to 'noncore/apps/checkbook/checkbook.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/checkbook/checkbook.cpp96
1 files changed, 75 insertions, 21 deletions
diff --git a/noncore/apps/checkbook/checkbook.cpp b/noncore/apps/checkbook/checkbook.cpp
index 09b0b46..5a6d607 100644
--- a/noncore/apps/checkbook/checkbook.cpp
+++ b/noncore/apps/checkbook/checkbook.cpp
@@ -32,2 +32,3 @@
32#include "graphinfo.h" 32#include "graphinfo.h"
33#include "password.h"
33 34
@@ -39,2 +40,3 @@
39 40
41#include <qcheckbox.h>
40#include <qcombobox.h> 42#include <qcombobox.h>
@@ -50,3 +52,3 @@
50 52
51Checkbook::Checkbook( QWidget *parent, const QString &n, const QString &fd, char symbol ) 53Checkbook::Checkbook( QWidget *parent, const QString &n, const QString &fd, const QString &symbol )
52 : QDialog( parent, 0, TRUE, WStyle_ContextHelp ) 54 : QDialog( parent, 0, TRUE, WStyle_ContextHelp )
@@ -118,2 +120,8 @@ QWidget *Checkbook::initInfo()
118 120
121 // Password protection
122 passwordCB = new QCheckBox( tr( "Password protect" ), container );
123 QWhatsThis::add( passwordCB, tr( "Click here to enable/disable password protection of this checkbook." ) );
124 connect( passwordCB, SIGNAL( clicked() ), this, SLOT( slotPasswordClicked() ) );
125 layout->addMultiCellWidget( passwordCB, 0, 0, 0, 1 );
126
119 // Account name 127 // Account name
@@ -121,3 +129,3 @@ QWidget *Checkbook::initInfo()
121 QWhatsThis::add( label, tr( "Enter name of checkbook here." ) ); 129 QWhatsThis::add( label, tr( "Enter name of checkbook here." ) );
122 layout->addWidget( label, 0, 0 ); 130 layout->addWidget( label, 1, 0 );
123 nameEdit = new QLineEdit( container ); 131 nameEdit = new QLineEdit( container );
@@ -126,3 +134,3 @@ QWidget *Checkbook::initInfo()
126 this, SLOT( slotNameChanged( const QString & ) ) ); 134 this, SLOT( slotNameChanged( const QString & ) ) );
127 layout->addWidget( nameEdit, 0, 1 ); 135 layout->addWidget( nameEdit, 1, 1 );
128 136
@@ -131,3 +139,3 @@ QWidget *Checkbook::initInfo()
131 QWhatsThis::add( label, tr( "Select type of checkbook here." ) ); 139 QWhatsThis::add( label, tr( "Select type of checkbook here." ) );
132 layout->addWidget( label, 1, 0 ); 140 layout->addWidget( label, 2, 0 );
133 typeList = new QComboBox( container ); 141 typeList = new QComboBox( container );
@@ -140,3 +148,3 @@ QWidget *Checkbook::initInfo()
140 typeList->insertItem( tr( "Other" ) ); // 5 148 typeList->insertItem( tr( "Other" ) ); // 5
141 layout->addWidget( typeList, 1, 1 ); 149 layout->addWidget( typeList, 2, 1 );
142 150
@@ -145,6 +153,6 @@ QWidget *Checkbook::initInfo()
145 QWhatsThis::add( label, tr( "Enter name of the bank for this checkbook here." ) ); 153 QWhatsThis::add( label, tr( "Enter name of the bank for this checkbook here." ) );
146 layout->addWidget( label, 2, 0 ); 154 layout->addWidget( label, 3, 0 );
147 bankEdit = new QLineEdit( container ); 155 bankEdit = new QLineEdit( container );
148 QWhatsThis::add( bankEdit, tr( "Enter name of the bank for this checkbook here." ) ); 156 QWhatsThis::add( bankEdit, tr( "Enter name of the bank for this checkbook here." ) );
149 layout->addWidget( bankEdit, 2, 1 ); 157 layout->addWidget( bankEdit, 3, 1 );
150 158
@@ -153,6 +161,6 @@ QWidget *Checkbook::initInfo()
153 QWhatsThis::add( label, tr( "Enter account number for this checkbook here." ) ); 161 QWhatsThis::add( label, tr( "Enter account number for this checkbook here." ) );
154 layout->addWidget( label, 3, 0 ); 162 layout->addWidget( label, 4, 0 );
155 acctNumEdit = new QLineEdit( container ); 163 acctNumEdit = new QLineEdit( container );
156 QWhatsThis::add( acctNumEdit, tr( "Enter account number for this checkbook here." ) ); 164 QWhatsThis::add( acctNumEdit, tr( "Enter account number for this checkbook here." ) );
157 layout->addWidget( acctNumEdit, 3, 1 ); 165 layout->addWidget( acctNumEdit, 4, 1 );
158 166
@@ -161,6 +169,6 @@ QWidget *Checkbook::initInfo()
161 QWhatsThis::add( label, tr( "Enter PIN number for this checkbook here." ) ); 169 QWhatsThis::add( label, tr( "Enter PIN number for this checkbook here." ) );
162 layout->addWidget( label, 4, 0 ); 170 layout->addWidget( label, 5, 0 );
163 pinNumEdit = new QLineEdit( container ); 171 pinNumEdit = new QLineEdit( container );
164 QWhatsThis::add( pinNumEdit, tr( "Enter PIN number for this checkbook here." ) ); 172 QWhatsThis::add( pinNumEdit, tr( "Enter PIN number for this checkbook here." ) );
165 layout->addWidget( pinNumEdit, 4, 1 ); 173 layout->addWidget( pinNumEdit, 5, 1 );
166 174
@@ -169,3 +177,3 @@ QWidget *Checkbook::initInfo()
169 QWhatsThis::add( label, tr( "Enter the initial balance for this checkbook here." ) ); 177 QWhatsThis::add( label, tr( "Enter the initial balance for this checkbook here." ) );
170 layout->addWidget( label, 5, 0 ); 178 layout->addWidget( label, 6, 0 );
171 balanceEdit = new QLineEdit( container ); 179 balanceEdit = new QLineEdit( container );
@@ -174,3 +182,3 @@ QWidget *Checkbook::initInfo()
174 this, SLOT( slotStartingBalanceChanged( const QString & ) ) ); 182 this, SLOT( slotStartingBalanceChanged( const QString & ) ) );
175 layout->addWidget( balanceEdit, 5, 1 ); 183 layout->addWidget( balanceEdit, 6, 1 );
176 184
@@ -179,7 +187,8 @@ QWidget *Checkbook::initInfo()
179 QWhatsThis::add( label, tr( "Enter any additional information for this checkbook here." ) ); 187 QWhatsThis::add( label, tr( "Enter any additional information for this checkbook here." ) );
180 layout->addWidget( label, 6, 0 ); 188 layout->addWidget( label, 7, 0 );
181 notesEdit = new QMultiLineEdit( container ); 189 notesEdit = new QMultiLineEdit( container );
182 QWhatsThis::add( notesEdit, tr( "Enter any additional information for this checkbook here." ) ); 190 QWhatsThis::add( notesEdit, tr( "Enter any additional information for this checkbook here." ) );
183 notesEdit->setMaximumHeight( 85 ); 191 notesEdit->setMinimumHeight( 25 );
184 layout->addMultiCellWidget( notesEdit, 7, 7, 0, 1 ); 192 notesEdit->setMaximumHeight( 65 );
193 layout->addMultiCellWidget( notesEdit, 8, 8, 0, 1 );
185 194
@@ -268,3 +277,3 @@ void Checkbook::loadCheckbook()
268 277
269 Config config(filename, Config::File); 278 Config config( filename, Config::File );
270 279
@@ -272,2 +281,5 @@ void Checkbook::loadCheckbook()
272 config.setGroup( "Account" ); 281 config.setGroup( "Account" );
282
283 password = config.readEntryCrypt( "Password", "" );
284 passwordCB->setChecked( password != "" );
273 nameEdit->setText( name ); 285 nameEdit->setText( name );
@@ -312,3 +324,3 @@ void Checkbook::loadCheckbook()
312 currBalance += amount; 324 currBalance += amount;
313 stramount.sprintf( "%c%.2f", currencySymbol, amount ); 325 stramount.sprintf( "%s%.2f", currencySymbol.latin1(), amount );
314 326
@@ -362,2 +374,3 @@ void Checkbook::accept()
362 config->setGroup( "Account" ); 374 config->setGroup( "Account" );
375 config->writeEntryCrypt( "Password", password );
363 config->writeEntry( "Type", typeList->currentText() ); 376 config->writeEntry( "Type", typeList->currentText() );
@@ -381,2 +394,44 @@ void Checkbook::accept()
381 394
395void Checkbook::slotPasswordClicked()
396{
397 if ( password == "" && passwordCB->isChecked() )
398 {
399 Password *pw = new Password( this, tr( "Enter password" ), tr( "Please enter your password:" ) );
400 if ( pw->exec() != QDialog::Accepted )
401 {
402 passwordCB->setChecked( FALSE );
403 delete pw;
404 return;
405 }
406 password = pw->password;
407 delete pw;
408
409 pw = new Password( this, tr( "Confirm password" ), tr( "Please confirm your password:" ) );
410 if ( pw->exec() != QDialog::Accepted || pw->password != password )
411 {
412 passwordCB->setChecked( FALSE );
413 password = "";
414 }
415
416 delete pw;
417 }
418 else if ( password != "" && !passwordCB->isChecked() )
419 {
420 Password *pw = new Password( this, tr( "Enter password" ),
421 tr( "Please enter your password to confirm removal of password protection:" ) );
422 if ( pw->exec() == QDialog::Accepted && pw->password == password )
423 {
424 password = "";
425 delete pw;
426 return;
427 }
428 else
429 {
430 passwordCB->setChecked( TRUE );
431 }
432
433 delete pw;
434 }
435}
436
382void Checkbook::slotNameChanged( const QString &newname ) 437void Checkbook::slotNameChanged( const QString &newname )
@@ -418,3 +473,3 @@ void Checkbook::slotNewTran()
418 QString stramount; 473 QString stramount;
419 stramount.sprintf( "%c%.2f", currencySymbol, amount ); 474 stramount.sprintf( "%s%.2f", currencySymbol.latin1(), amount );
420 475
@@ -438,3 +493,2 @@ void Checkbook::slotEditTran()
438{ 493{
439 bool ok;
440 QListViewItem *curritem = tranTable->currentItem(); 494 QListViewItem *curritem = tranTable->currentItem();
@@ -470,3 +524,3 @@ void Checkbook::slotEditTran()
470 QString stramount; 524 QString stramount;
471 stramount.sprintf( "%c%.2f", currencySymbol, amount ); 525 stramount.sprintf( "%s%.2f", currencySymbol.latin1(), amount );
472 curritem->setText( 3, stramount ); 526 curritem->setText( 3, stramount );