summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-gutenbrowser/LibraryDialog.h
blob: 95226b24ccb6b6a69abc3aa17c4037834c379eec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/***************************************************************************
                          LibraryDialog.h  -  description
                             -------------------
    begin                : Sat Aug 19 2000
    copyright            : (C) 2000 -2004 by llornkcor
    email                : ljp@llornkcor.com
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 ***************************************************************************/
#ifndef LIBRARYDIALOG_H
#define LIBRARYDIALOG_H

#include <qpe/config.h>

#include "SearchDialog.h"
#include "NetworkDialog.h"
#include <qstringlist.h>
#include <qdialog.h>
#include <qcheckbox.h>
#include <qdatetime.h>
#include <qfile.h>
#include <qheader.h>
#include <qlistview.h>
#include <qmessagebox.h>
#include <qregexp.h>
#include <qstring.h>
#include <qtextstream.h>
#include <qlabel.h>
#include <stdlib.h>
#include <qtabwidget.h>
#include <qvaluelist.h>

class QVBoxLayout;
class QHBoxLayout; 
class QGridLayout; 
class QListView;
class QListViewItem;
class QPushButton;
//class QTabWidget;
class QWidget;
//class Gutenbrowser;

typedef struct {
   QString title;
   QString author;
   QString year;
   QString file;
} etext;
   

class LibraryDialog : public QDialog { 
    Q_OBJECT

public:
    LibraryDialog( QWidget* parent = 0, const char* name = 0 , bool modal = TRUE, WFlags fl = 0 );
    ~LibraryDialog();

    QTabWidget *tabWidget;
    QListView *ListView1,*ListView2,*ListView3,*ListView4,*ListView5;
    QWidget *widget_1,*widget_2,*widget_3,*widget_4,*widget_5,*widget_6;
    QString ftp_host,ftp_base_dir;
    QLabel *statusLabel;
    QListViewItem *QList_Item1,*QList_Item2,*QList_Item3,*QList_Item4,*QList_Item5;
    QStringList list,ItemStrlist,Searchlist,resultLs;
//    QStringList list1,list2,list3,list4;

    QPushButton *buttonSearch,*buttonCancel,*buttonDownload,*buttonLibrary,*buttonNewList,*moreInfoButton;
    QString new_index,old_index;
    QFile newindexLib,indexLib;

    int checked;
    int i_binary;
    bool useSmallInterface;
bool indexLoaded;
    QPushButton *cancel,*DownloadAll;     
    QCheckBox *checkBox,*httpBox,*authBox;    
//    QCheckBox * httpBox;    
    
    QString filename;
    QString downDir;
    int ftpNumb;
    int i;
    QString year,title,number,file,author;   
    QString DlglistItemNumber,DlglistItemFile,DlglistItemYear,DlglistItemTitle,NewlistItemFile;
    QString m_getFilePath;        
    QString Edir;     
            
    QString index;
    QString IDontKnowWhy;
    QString local_library;
    QString local_index;
    QString File_Name;
    QString proxy_http;
    int doitAll;      
    QString texter;
//    CConfigFile *config;
    void parseSearchResults( QString resultStr);

public slots:
    bool getItem(QListViewItem* );
    void doListView();
    void FindLibrary();
    void newList();
    void Newlibrary();
    void Library();
    bool getAuthor();
    void select_title(QListViewItem*);
    void cancelIt();
    void sortLists(int);
    bool moreInfo();
//    void DownloadEmAll();
    bool httpDownload();
    bool setTitle();
    void saveConfig();
    bool download_Etext();
		bool download_newEtext();
		
    void onButtonSearch();
    bool onButtonDownload();

//    bool UnzipIt( QString fileName);
   void comboSelect(int index);        
protected slots:
    
    
protected:

  QValueList<etext> etextLibrary;

 void initDialog();
 QHBoxLayout *hbox,*hbox1,*hbox2;
 QVBoxLayout *vbox;
// void search_slot();
private:
 void addItems();
 void clearItems();
 void cleanStrings();
 bool getEtext(const QStringList &);
private slots:
  void authBoxClicked();

};

#endif // LIBRARYDIALOG_H