blob: c22a48bc8b2681b535a3bd7b0bedea32056990a4 (
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
|
//
// C++ Interface: importdialog
//
// Description:
//
//
// Author: Christoph Thielecke <u15119@hs-harz.de>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef IMPORTDIALOG_H
#define IMPORTDIALOG_H
#include <kdialogbase.h>
#include <list>
#include "kbsiteinfo.h"
#include "Q_importdialog.h"
/**
@author Christoph Thielecke
*/
class ImportDialog : public KDialogBase
{
public:
ImportDialog(TQWidget *parent=0, const char *name=0);
~ImportDialog();
list<KbSiteInfo>* Bookmarks() { return &m_bookmarks; };
private:
list<KbSiteInfo> m_bookmarks;
int m_lines;
KasablancaImportDialog *mp_dialog;
void slotOk();
void importGftpBookmarks(TQString fileName);
};
#endif
|