summaryrefslogtreecommitdiffstats
path: root/buildtools/custommakefiles/custommanagerwidget.h
blob: 4f15f15693118df71aaf35c3247512b2d0544218 (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
/***************************************************************************
 *   Copyright (C) 2007 by Andreas Pakulat                                 *
 *   apaku@gmx.de                                                          *
 *                                                                         *
 *   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 CUSTOMMANAGERWIDGET_H
#define CUSTOMMANAGERWIDGET_H

#include "custommanagerwidgetbase.h"


#include <qdom.h>

class CustomProjectPart;
class KEditListBox;

class CustomManagerWidget : public CustomManagerWidgetBase
{
Q_OBJECT

public:
    CustomManagerWidget( CustomProjectPart* part, QWidget* parent );
    ~CustomManagerWidget();
public slots:
    void checkUrl(const QString& url);
    void accept();
private:
    CustomProjectPart* m_part;
    QDomDocument& m_dom;
    KEditListBox* m_blacklistBox;
};

#endif

// kate: space-indent on; indent-width 4; tab-width 4; replace-tabs on