diff options
author | Timothy Pearson <[email protected]> | 2013-01-26 13:14:34 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-26 13:14:34 -0600 |
commit | 57e2ced52bf3ba886bb7710212167a86e20305e6 (patch) | |
tree | e08b1e82e83f5afa861dc9eeb833dc4bd593900b /sip/tdehtml/tdehtmlview.sip | |
parent | ccad7a42d96879251c4971e51aac269f61a0ccf8 (diff) | |
download | pytde-57e2ced52bf3ba886bb7710212167a86e20305e6.tar.gz pytde-57e2ced52bf3ba886bb7710212167a86e20305e6.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'sip/tdehtml/tdehtmlview.sip')
-rw-r--r-- | sip/tdehtml/tdehtmlview.sip | 144 |
1 files changed, 144 insertions, 0 deletions
diff --git a/sip/tdehtml/tdehtmlview.sip b/sip/tdehtml/tdehtmlview.sip new file mode 100644 index 0000000..a03102a --- /dev/null +++ b/sip/tdehtml/tdehtmlview.sip @@ -0,0 +1,144 @@ +// +// Copyright 2006 Jim Bublitz <[email protected]> +// Earlier copyrights 1998 - 2005 Jim Bublitz and/or Phil Thompson +// may also apply + + +// Generated by preSip +// module tdehtml version KDE 3.5.3 + + +// This software 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 software 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 library; see the file COPYING. +// If not, write to the Free Software Foundation, Inc., +// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +//ig namespace tdehtml; + + +class KHTMLView : TQScrollView +{ +%TypeHeaderCode +#include <tdehtmlview.h> +%End + + +public: + KHTMLView (KHTMLPart*, TQWidget* /TransferThis/, const char* = 0); + KHTMLPart* part () const; + int frameWidth () const; + void setMarginWidth (int); + int marginWidth () const; + void setMarginHeight (int); + int marginHeight (); + virtual void setVScrollBarMode (ScrollBarMode); + virtual void setHScrollBarMode (ScrollBarMode); + void print () /PyName=print_/; + +%If ( KDE_3_2_0 - ) + void print (bool); +%End + + void layout (); + +%If ( KDE_3_3_0 - ) + void displayAccessKeys (); +%End + + +signals: + +%If ( KDE_3_3_0 - ) + void finishedLayout (); +%End + + void cleared (); + +%If ( KDE_3_1_0 - ) + void zoomView (int); + +%If ( KDE_3_3_0 - ) + void hideAccessKeys (); + void repaintAccessKeys (); + +%If ( KDE_3_5_0 - ) + void findAheadActive (bool); +%End + +%End + +%End + + +protected: + void clear (); + virtual void resizeEvent (TQResizeEvent*); + virtual void showEvent (TQShowEvent*); + virtual void hideEvent (TQHideEvent*); + virtual bool focusNextPrevChild (bool); + virtual void drawContents (TQPainter*, int, int, int, int); + virtual void drawContents (TQPainter*); + virtual void viewportMousePressEvent (TQMouseEvent*); + +%If ( KDE_3_2_0 - ) + virtual void focusInEvent (TQFocusEvent*); +%End + + virtual void focusOutEvent (TQFocusEvent*); + virtual void viewportMouseDoubleClickEvent (TQMouseEvent*); + virtual void viewportMouseMoveEvent (TQMouseEvent*); + virtual void viewportMouseReleaseEvent (TQMouseEvent*); + +%If ( KDE_3_1_0 - ) + virtual void viewportResizeEvent (TQResizeEvent*); +%End + + virtual void viewportWheelEvent (TQWheelEvent*); + virtual void dragEnterEvent (TQDragEnterEvent*); + virtual void dropEvent (TQDropEvent*); + +%If ( KDE_3_1_0 - ) + virtual void closeEvent (TQCloseEvent*); + +%If ( KDE_3_2_0 - ) + virtual bool eventFilter (TQObject*, TQEvent*); +%End + +%End + + void keyPressEvent (TQKeyEvent*); + void keyReleaseEvent (TQKeyEvent*); + void contentsContextMenuEvent (TQContextMenuEvent*); + void doAutoScroll (); + void timerEvent (TQTimerEvent*); + +protected slots: + void slotPaletteChanged (); + void slotScrollBarMoved (); + +//force +%ConvertToSubClassCode + // The table of Python class objects indexed by their names. The table + // must be sorted by name. + + static sipStringTypeClassMap map[] = { + {sipName_KHTMLView, &sipClass_KHTMLView}, + {sipName_KHTMLPart, &sipClass_KHTMLPart}, + }; + + sipClass = sipMapStringToClass(sipCpp -> className(),map,sizeof (map)/sizeof (map[0])); +%End +//end + +}; // class KHTMLView + |