summaryrefslogtreecommitdiffstats
path: root/konq-plugins/adblock/adblock.h
blob: dbb4549f0795ffff4c543f9cc471064c8654d613 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
// -*- mode: c++; c-basic-offset: 4 -*-
/*
  Copyright (C) 2006 Daniele Galdi <daniele.galdi@gmail.com>
  
  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.
  
  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  GNU General Public License for more details.
  
  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  
  02110-1301, USA.
*/

#ifndef KONTQ_ADBLOCK_H
#define KONTQ_ADBLOCK_H

#include <tqguardedptr.h>
#include <tqvaluelist.h>
#include <tdeparts/plugin.h>

class TDEHTMLPart;
class KURLLabel;
class TDEHTMLSettings;
class AdElement;
class KPopupMenu;

namespace KParts
{
    class StatusBarExtension;
}

namespace DOM
{
    class DOMString;
}

typedef TQValueList<AdElement> AdElementList;

class AdBlock : public KParts::Plugin
{
    Q_OBJECT
  
    
public:
    AdBlock(TQObject *parent, const char *name, const TQStringList &);
    ~AdBlock();
    
private:
    TQGuardedPtr<TDEHTMLPart> m_part;    
    KURLLabel *m_label;
    KPopupMenu *m_menu;
    
    void fillBlockableElements(AdElementList &elements);
    void fillWithImages(AdElementList &elements);
    void fillWithHtmlTag(AdElementList &elements, 
			 const DOM::DOMString &tagName, 
			 const DOM::DOMString &attrName,
			 const TQString &category);
    
private slots:
    void initLabel();
    void showDialogue();
    void addAdFilter(const TQString &url);
    void contextMenu();
    void showTDECModule();
};

// ----------------------------------------------------------------------------

class AdElement
{
private:
    TQString m_url;
    TQString m_category;
    TQString m_type;
    bool m_blocked;
    
public:
    AdElement();
    AdElement(const TQString &url, const TQString &category,
	      const TQString &type, bool blocked);

    AdElement &operator=(const AdElement &);
    bool operator==(const AdElement &e1);
    
    bool isBlocked() const;
    void setBlocked(bool blocked);
    const TQString &url() const;
    const TQString &category() const;
    const TQString &type() const;
};

#endif