summaryrefslogtreecommitdiffstats
path: root/examples/pyTDEHTMLPart.py
blob: 333247dd3b212787044beb0a7973a7be3d227505 (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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
#
#  pyParts.py (C) 2002 Jim Bublitz <jbublitz@nwinternet.com>
#

"""

This is an extemely simple and crude example of using
a TDEHTMLPart - I put it together mostly to make sure
the openURL method worked correctly after some modifications
done in KParts::ReadOnlyPart. It took exactly four lines
added to a basic PyTDE app framework to display a URL
via the 'net:

    self.w  = TDEHTMLPart (self, "HTMLPart", self);
    self.w.openURL (KURL ("http://www.kde.org"));
    self.w.view ().setGeometry (30, 55, 500, 400);
    self.w.show ();

(Actually 5 lines if you count the 'import' line)

You can play around with the commented out lines or add
additional code to make this do something useful. The
.rc for khtnmlpart (sorry, I never looked it up), doesn't
seem to provide much help. Also, to follow links, you
probably need to connect some signals to slots. I
haven't tried it, but this should work with a plain
TDEMainWindow or other widget too.

The TDE website also incorporates gifs, jpegs, and
I believe CSS too. Playing around with some other
sites, it appears the font defaults could use some
improvement.

NOTE!!! For this to work, you (obviously) need to have
a route to the internet established or specify a local
URL - PyTDE/TDE will take care of everything else.

Perceptive users will notice the TDEHTMLPart code is
lifted from the TDE classref.

"""

# If you import more classes, don't forget to add them here (some of these
# are extras/not used)

from PyTQt.qt import  TQString, TQStringList
from tdecore import TDECmdLineArgs, KURL, TDEApplication, i18n, TDEAboutData, BarIcon, KLibLoader
from tdeui import TDEMainWindow, KMessageBox, TDEAction, KStdAction, KKeyDialog, KEditToolbar
from tdeio import TDETrader
from tdehtml import TDEHTMLPart, TDEHTMLView

# Importing the KParts namespace gets us all of the KParts:: classes
from tdeparts import KParts, createReadOnlyPart, createReadWritePart

import sys, os

TOOLBAR_EXIT = 0
TOOLBAR_OPEN = 1

# Note that we use KParts.MainWindow, not TDEMainWindow as the superclass
# (KParts.MainWindow subclasses TDEMainWindow).
class pyPartsMW (KParts.MainWindow):
        def __init__ (self, *args):
                KParts.MainWindow.__init__(self, *args)

                # Create the actions for our menu/toolbar to use
                # Keep in mind that the part loaded will provide its
                # own menu/toolbar entries

                # check out KParts.MainWindow's ancestry to see where
                # some of this and later stuff (like self.actionCollection () )
                # comes from

                quitAction    = KStdAction.quit (self.close, self.actionCollection ())

                self.m_toolbarAction = KStdAction.showToolbar(self.optionsShowToolbar, self.actionCollection());
                self.m_statusbarAction = KStdAction.showStatusbar(self.optionsShowStatusbar, self.actionCollection());

                KStdAction.keyBindings(self.optionsConfigureKeys, self.actionCollection());
                KStdAction.configureToolbars(self.optionsConfigureToolbars, self.actionCollection());

                self.path = os.getcwd () + '/'
                self.setGeometry (0, 0, 1024, 768)

                # point to our XML file
                self.setXMLFile (self.path + "pyParts.rc", False)

                # The next few lines are all that's necessary to
                # create a web browser (of course you have to edit
                # this file to change url's)

                self.w   = TDEHTMLPart (self, "HTMLPart", self);
                self.w.openURL (KURL ("http://www.trinitydesktop.org"));

                self.w.view ().setGeometry (30, 30, 1024-60, 768-60);


#                self.v = TDEHTMLView (self.w, self)

#                self.setCentralWidget (self.v)

#                self.createGUI (self.w)

                self.w.show ();




        # slots for our actions
        def optionsShowToolbar (self):
                if self.m_toolbarAction.isChecked():
                        self.toolBar().show()
                else:
                        self.toolBar().hide()

        def optionsShowStatusbar (self):
                if self.m_statusbarAction.isChecked ():
                        self.statusBar().show()
                else:
                        self.statusBar().hide()


        def optionsConfigureKeys (self):
                KKeyDialog.configureActionKeys (self.actionCollection(), self.xmlFile ())


        def optionsConfigureToolbars (self):
                dlg = KEditToolbar (self.actionCollection(), self.xmlFile ())
                if dlg.exec_loop ():
                        self.createGUI(self);


        # some boilerplate left over from pyKLess/KLess
        def queryClose(self):
                res = KMessageBox.warningYesNoCancel(self,\
                        i18n("<qt>Save changes to Document?<br/>(Does not make sense, we know, but it is just a programming example :-)</qt>"))
                if res == KMessageBox.Yes:
	        #// save document here. If saving fails, return False
	                return True

                elif res == KMessageBox.No:
                        return True

                else: #// cancel
	                return False

        def queryExit(self):
                #// this slot is invoked in addition when the *last* window is going
                #// to be closed. We could do some final cleanup here.
                return True #// accept

        # I'm not sure the session mgmt stuff here works

        # Session management: save data
        def saveProperties(self, config):
        # This is provided just as an example.
        # It is generally not so good to save the raw contents of an application
        # in its configuration file (as this example does).
        # It is preferable to save the contents in a file on the application's
        # data zone and save an URL to it in the configuration resource.
                config.writeEntry("text", self.edit.text())


        # Session management: read data again
        def readProperties(self, config):
        # See above
                self.edit.setText(config.readEntry("text"))



#------------- main ----------------------------

# A Human readable description of your program
description = b"TDEHTMLPart - simple example"
# The version
version = b"0.1"

# stuff for the "About" menu
aboutData = TDEAboutData (b"pyTDEHTMLPart", b"pyHTMLPart",\
    version, description, TDEAboutData.License_GPL,\
    b"(c) 2002, Jim Bublitz")

aboutData.addAuthor (b"Jim Bublitz", b"Example for PyTDE", b"jbublitz@nwinternet.com")

# This MUST go here (before TDEApplication () is called)
TDECmdLineArgs.init (sys.argv, aboutData)

app = TDEApplication ()

if (app.isRestored()):
        RESTORE(KLess)
else:
        # no session management: just create one window
        # this is our KParts::MainWindow derived class
        parts = pyPartsMW (None, "pyParts")
        if len(sys.argv) > 1:
        # read tdecmdlineargs.h for the full unabridged instructions
        # on using TDECmdLineArgs, it's pretty confusing at first, but it works
        # This is pretty useless in this program - you might want to
        # expand this in your app (to load a file, etc)
                args = TDECmdLineArgs.parsedArgs()

parts.show()
app.exec_loop()