1 /**************************************************************************
2 * Otter Browser: Web browser controlled by the user, not vice-versa.
3 * Copyright (C) 2014 Piotr Wójcik <chocimier@tlen.pl>
4 * Copyright (C) 2014 - 2018 Michal Dutkiewicz aka Emdek <michal@emdek.pl>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 *
19 **************************************************************************/
20 
21 #ifndef OTTER_BOOKMARKSIMPORTER_H
22 #define OTTER_BOOKMARKSIMPORTER_H
23 
24 #include "BookmarksModel.h"
25 #include "Importer.h"
26 
27 namespace Otter
28 {
29 
30 class BookmarksImporter : public Importer
31 {
32 	Q_OBJECT
33 
34 public:
35 	explicit BookmarksImporter(QObject *parent = nullptr);
36 
37 	ImportType getImportType() const override;
38 
39 protected:
40 	void goToParent();
41 	void removeAllBookmarks();
42 	void setAllowDuplicates(bool allow);
43 	void setCurrentFolder(BookmarksModel::Bookmark *folder);
44 	void setImportFolder(BookmarksModel::Bookmark *folder);
45 	BookmarksModel::Bookmark* getCurrentFolder() const;
46 	BookmarksModel::Bookmark* getImportFolder() const;
47 	bool areDuplicatesAllowed() const;
48 
49 private:
50 	BookmarksModel::Bookmark *m_currentFolder;
51 	BookmarksModel::Bookmark *m_importFolder;
52 	bool m_areDuplicatesAllowed;
53 };
54 
55 }
56 
57 #endif
58