aboutsummaryrefslogtreecommitdiff
path: root/lumina-fm/BMMDialog.h
blob: d421446c268ed7706c2b5860a1a89394fdff23e8 (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
//===========================================
//  Lumina-DE source code
//  Copyright (c) 2014, Ken Moore
//  Available under the 3-clause BSD license
//  See the LICENSE file for full details
//===========================================
//  This is the dialog for managing bookmarks (BookMark Manager)
//===========================================
#ifndef _LUMINA_FILE_MANAGER_BOOKMARK_MANAGER_DIALOG_H
#define _LUMINA_FILE_MANAGER_BOOKMARK_MANAGER_DIALOG_H

// Qt includes
#include <QDialog>
#include <QInputDialog>
#include <QStringList>
#include <QSettings>
#include <QTimer>
#include <QMessageBox>

// libLumina includes
#include <LuminaXDG.h>

namespace Ui{
	class BMMDialog;
};

class BMMDialog : public QDialog{
	Q_OBJECT
public:
	BMMDialog(QWidget *parent = 0);
	~BMMDialog();

	void loadSettings(QSettings *);

private:
	Ui::BMMDialog *ui;
	QSettings *settings;

private slots:
	void RemoveItem();
	void RenameItem();
};

#endif
bgstack15