]> ruin.nu Git - adress.git/blob - mainwindow.h
Added the files needed for searching..
[adress.git] / mainwindow.h
1 #ifndef MAINWINDOW_H
2 #define MAINWINDOW_H
3 #include "ui/mainwindowbase.h"
4 #include <qfile.h>
5 #include <qfiledialog.h>
6 #include <qtextstream.h>
7 #include <qstring.h>
8 #include <qlistview.h>
9 #include <qcombobox.h>
10 #include "contact.h"
11
12 class MainWindow : public CMainWindowBase
13
14     Q_OBJECT
15
16 public:
17     MainWindow( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
18     ~MainWindow();
19
20 public slots:
21     void slotSave();
22     void slotAdd();
23     void slotDel();
24     void slotLoad();
25     void slotSearch();
26                 void slotModify(QListViewItem* lvi);
27                 void slotModify();
28 protected:
29                 void updateView();
30
31                 QString filename;
32 };
33
34 #endif // MAINWINDOW_H