]> ruin.nu Git - adress.git/commitdiff
Have fixed the saving..
authorMichael Andreen <harv@ruin.nu>
Fri, 1 Dec 2000 21:20:04 +0000 (21:20 +0000)
committerMichael Andreen <harv@ruin.nu>
Fri, 1 Dec 2000 21:20:04 +0000 (21:20 +0000)
Hopefully this will work..

file.cpp [deleted file]
mainwindow.cpp
mainwindow.h

diff --git a/file.cpp b/file.cpp
deleted file mode 100644 (file)
index 86e57d1..0000000
--- a/file.cpp
+++ /dev/null
@@ -1,44 +0,0 @@
-#include <fstream>
-#include <string>
-#include "functions.h"
-#include <iostream>
-
-void load()
-{
-       ifstream in("/root/.adress");
-       
-       while (!in.eof())
-       {
-               string fname;
-               string lname;
-               string adr;
-               string pn;
-               getline(in, fname);
-//             cout << "Skapar " << fname << "\n";
-//             cin.get();
-               getline(in, lname);
-               getline(in, adr);
-               getline(in, pn);
-               if (fname == "" && lname == "" && lname == "" && pn == "")
-                       continue;
-               (void) new CContact(fname, lname, adr, pn);
-       }
-}
-
-void save()
-{
-       ofstream out;
-       out.open("/root/.adress");
-
-       CContact* contact = CContact::getFirst();
-
-       while ( contact != '\0')
-       {
-               out << contact->firstname() << "\n";
-               out << contact->lastname() << "\n";
-               out << contact->adress() << "\n";
-               out << contact->phoneNumber() << "\n";
-               contact=contact->getNext();
-       }
-       out.close();
-}
index 97c8a71dc1c2ef56f02dbd2b96236056d7065318..68afb4353941166251e07141d5a7e1ec3d0c1127 100644 (file)
@@ -14,7 +14,7 @@
 MainWindow::MainWindow( QWidget* parent,  const char* name, WFlags fl )
     : CMainWindowBase( parent, name, fl )
 {
-       //connect(LoadButton, SIGNAL(clicked()), SLOT(slotLoad()));
+       slotLoad();
 }
 
 /*  
@@ -30,7 +30,27 @@ MainWindow::~MainWindow()
  */
 void MainWindow::slotSave()
 {
-    qWarning( "MainWindow::slotSave() not yet implemented!" ); 
+       if (filename == "")
+               return;
+
+       QFile f(filename);
+
+       if ( !f.open( IO_WriteOnly ) )
+                   return false;
+             
+       QTextStream t(&f);
+       QString s;
+       CContact* contact = CContact::getFirst();
+
+       while ( contact != '\0')
+       {
+               t << contact->firstname() << "\n";
+               t << contact->lastname() << "\n";
+               t << contact->adress() << "\n";
+               t << contact->phoneNumber() << "\n";
+               contact=contact->getNext();
+       }
+       f.close();
 }
 /* 
  * public slot
@@ -51,12 +71,14 @@ void MainWindow::slotDel()
  */
 void MainWindow::slotLoad()
 {
-       QString filename(QFileDialog::getOpenFileName(0, "Adressfiler (*.adr)", this)); 
-       cout << "Funkar";
+       slotSave();
        QFile f(filename);
-       if ( !f.open( IO_ReadOnly ) )
-                   return;
-       
+       do
+       {
+               filename(QFileDialog::getOpenFileName(0, "Adressfiler (*.adr)", this)); 
+       }
+       while ( !f.open( IO_ReadOnly ) );
+                       
        QTextStream t(&f);
 
        while (!t.eof())
@@ -79,7 +101,10 @@ void MainWindow::slotSearch()
     qWarning( "MainWindow::slotSearch() not yet implemented!" ); 
 }
 
-
+void slotModify(QListViewItem* lvi)
+{
+    qWarning( "MainWindow::slotModif(QListViewItem*) not yet implemented!" ); 
+}
 /*
  * This funtion puts all contacts in the listview
  */
index 4bb69de3d95cbc01310295d5d22390d6baf4a3b2..8eca343e4b573d22c878f687149922688d39d312 100644 (file)
@@ -16,9 +16,11 @@ public slots:
     void slotDel();
     void slotLoad();
     void slotSearch();
-
+               void slotModify(QListViewItem* lvi);
 protected:
                void updateView();
+
+               QString filename;
 };
 
 #endif // MAINWINDOW_H