blob: 657bae9f2b7191f7972478cf31a2325137cfc4bb (
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
|
/***************************************************************************
* 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 <tqdom.h>
class CustomProjectPart;
class KEditListBox;
class CustomManagerWidget : public CustomManagerWidgetBase
{
Q_OBJECT
public:
CustomManagerWidget( CustomProjectPart* part, TQWidget* parent );
~CustomManagerWidget();
public slots:
void checkUrl(const TQString& url);
void accept();
private:
CustomProjectPart* m_part;
TQDomDocument& m_dom;
KEditListBox* m_blacklistBox;
};
#endif
// kate: space-indent on; indent-width 4; tab-width 4; replace-tabs on
|