Disable clipboardsharing in view only mode.
[kdenetwork.git] / kget / conf / dlgdirectories.h
blob63f2f55a15bf118252b112b7c9752f8ab54598b4
1 /* This file is part of the KDE project
3 Copyright (C) 2007 Urs Wolfer <uwolfer @ kde.org>
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
9 */
11 #ifndef DLGDIRECTORIES_H
12 #define DLGDIRECTORIES_H
14 #include <QWidget>
16 #include "ui_dlgdirectories.h"
18 class QItemSelection;
20 class DlgDirectories : public QWidget, public Ui::DlgDirectories
22 Q_OBJECT
24 public:
25 DlgDirectories(QWidget *parent = 0);
26 ~DlgDirectories();
28 private Q_SLOTS:
29 void readConfig();
30 void saveSettings();
31 void addButtonClicked();
32 void removeButtonClicked();
33 void changeButtonClicked();
34 void listItemClicked(const QItemSelection &selected, const QItemSelection &deselected);
35 void addFolderForExtensionItem(const QString &extension, const QString &folder);
36 void slotExtensionDataChanged(int row, int column);
39 #endif