You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.3 KiB
43 lines
1.3 KiB
/***************************************************************************
|
|
* 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
|