~neon/pykde4/master

« back to all changes in this revision

Viewing changes to sip/khtml/html_image.sip

  • Committer: Simon Edwards
  • Date: 2007-09-02 19:43:19 UTC
  • Revision ID: git-v1:6b8df0c7009f6b218f54589a9bc313cd8c4f82b9

Initial drop of PyKDE4 - Python bindings for the KDE API. See the README file
for more info about the current state of PyKDE4.


svn path=/trunk/KDE/kdebindings/python/pykde4/; revision=707731

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
//     Copyright 2007 Jim Bublitz <jbublitz@nwinternet.com>
 
3
//     Earlier copyrights 1998 - 2006 Jim Bublitz also apply
 
4
 
 
5
 
 
6
//                 Generated by preSip
 
7
//            PyKDE4 module khtml  version KDE 3.92.0
 
8
 
 
9
 
 
10
// This file is part of PyKDE4.
 
11
 
 
12
// PyKDE4 is free software; you can redistribute it and/or modify
 
13
// it under the terms of the GNU Lesser General Public License as
 
14
// published by the Free Software Foundation; either version 2.1 of
 
15
// the License, or (at your option) any later version.
 
16
 
 
17
// PyKDE4 is distributed in the hope that it will be useful,
 
18
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
19
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
20
// GNU General Public License for more details.
 
21
 
 
22
// You should have received a copy of the GNU General Public License
 
23
// along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
24
 
 
25
namespace DOM
 
26
{
 
27
 
 
28
class HTMLAreaElement : DOM::HTMLElement
 
29
{
 
30
%TypeHeaderCode
 
31
#include <html_image.h>
 
32
%End
 
33
 
 
34
 
 
35
public:
 
36
                         HTMLAreaElement ();
 
37
                         HTMLAreaElement (const DOM::HTMLAreaElement&);
 
38
                         HTMLAreaElement (const DOM::Node&);
 
39
 
 
40
protected:
 
41
//ig                          HTMLAreaElement (HTMLAreaElementImpl*);
 
42
 
 
43
public:
 
44
    DOM::DOMString       accessKey () const;
 
45
    void                 setAccessKey (const DOM::DOMString&);
 
46
    DOM::DOMString       alt () const;
 
47
    void                 setAlt (const DOM::DOMString&);
 
48
    DOM::DOMString       coords () const;
 
49
    void                 setCoords (const DOM::DOMString&);
 
50
    DOM::DOMString       href () const;
 
51
    void                 setHref (const DOM::DOMString&);
 
52
    bool                 noHref () const;
 
53
    void                 setNoHref (bool);
 
54
    DOM::DOMString       shape () const;
 
55
    void                 setShape (const DOM::DOMString&);
 
56
    long                 tabIndex () const;
 
57
    void                 setTabIndex (long);
 
58
    DOM::DOMString       target () const;
 
59
    void                 setTarget (const DOM::DOMString&);
 
60
 
 
61
};  // class HTMLAreaElement
 
62
 
 
63
 
 
64
class HTMLImageElement : DOM::HTMLElement
 
65
{
 
66
%TypeHeaderCode
 
67
#include <html_image.h>
 
68
%End
 
69
 
 
70
 
 
71
public:
 
72
                         HTMLImageElement ();
 
73
                         HTMLImageElement (const DOM::HTMLImageElement&);
 
74
                         HTMLImageElement (const DOM::Node&);
 
75
 
 
76
protected:
 
77
//ig                          HTMLImageElement (HTMLImageElementImpl*);
 
78
 
 
79
public:
 
80
    DOM::DOMString       name () const;
 
81
    void                 setName (const DOM::DOMString&);
 
82
    DOM::DOMString       align () const;
 
83
    void                 setAlign (const DOM::DOMString&);
 
84
    DOM::DOMString       alt () const;
 
85
    void                 setAlt (const DOM::DOMString&);
 
86
    DOM::DOMString       getBorder () const;
 
87
    void                 setBorder (const DOM::DOMString&);
 
88
    long                 border () const;
 
89
    void                 setBorder (long);
 
90
    long                 height () const;
 
91
    void                 setHeight (long);
 
92
    long                 hspace () const;
 
93
    void                 setHspace (long);
 
94
    bool                 isMap () const;
 
95
    void                 setIsMap (bool);
 
96
    DOM::DOMString       longDesc () const;
 
97
    void                 setLongDesc (const DOM::DOMString&);
 
98
    DOM::DOMString       src () const;
 
99
    void                 setSrc (const DOM::DOMString&);
 
100
    DOM::DOMString       useMap () const;
 
101
    void                 setUseMap (const DOM::DOMString&);
 
102
    long                 vspace () const;
 
103
    void                 setVspace (long);
 
104
    long                 width () const;
 
105
    void                 setWidth (long);
 
106
    long                 x () const;
 
107
    long                 y () const;
 
108
 
 
109
};  // class HTMLImageElement
 
110
 
 
111
 
 
112
class HTMLMapElement : DOM::HTMLElement
 
113
{
 
114
%TypeHeaderCode
 
115
#include <html_image.h>
 
116
%End
 
117
 
 
118
 
 
119
public:
 
120
                         HTMLMapElement ();
 
121
                         HTMLMapElement (const DOM::HTMLMapElement&);
 
122
                         HTMLMapElement (const DOM::Node&);
 
123
 
 
124
protected:
 
125
//ig                          HTMLMapElement (HTMLMapElementImpl*);
 
126
 
 
127
public:
 
128
    DOM::HTMLCollection  areas () const;
 
129
    DOM::DOMString       name () const;
 
130
    void                 setName (const DOM::DOMString&);
 
131
 
 
132
};  // class HTMLMapElement
 
133
 
 
134
};  // namespace DOM
 
135