On Wednesday 22 September 2004 23:00, Maurizio Colucci wrote:
> Jim Bublitz wrote:
> >It seems to be a problem with KDE 3.3 beta versions - there's a change in
> > the argument list for the constructor that's causing the undefined
> > symbol. What version of KDE do you have installed?
>
> Oh, sorry
Jim Bublitz wrote:
It seems to be a problem with KDE 3.3 beta versions - there's a change in the
argument list for the constructor that's causing the undefined symbol. What
version of KDE do you have installed?
Oh, sorry. I had forgotten. I have 3.3 final, but unofficial from the
apt reposito
On Thursday 23 September 2004 1:03 am, Bryan O'Sullivan wrote:
> On Thu, 2004-09-23 at 00:22 +0100, Phil Thompson wrote:
> > I suggest you have another look for breadcrumbs.
>
> I've tried quite hard, I assure you. I've uninstalled the Fedora
> versions of sip, sip-devel, PyQt and PyQt-devel and t
On Thu, 2004-09-23 at 00:22 +0100, Phil Thompson wrote:
> I suggest you have another look for breadcrumbs.
I've tried quite hard, I assure you. I've uninstalled the Fedora
versions of sip, sip-devel, PyQt and PyQt-devel and tried building sip
"cleanly". I never have any problems building sip it
On Wednesday 22 September 2004 9:38 pm, Bryan O'Sullivan wrote:
> I'm trying to configure PyQt 3.12 with SIP 4.1 on a Fedora Core 2
> system, and having no success.
>
> I have SIP built, configured, and installed in the normal way, without
> any problems (using configure.py -l qt-mt). Here's how I
Im executing with ROOT and already put chmod 777 in all files...
Em Qua 22 Set 2004 18:56, Jesús Roncero Franco escreveu:
> El 22/Sep/2004 a las 18:41:32, Douglas Soares de Andrade escribió:
> > Could not compile PyQT 3.13. The error i got is:
> >
> > Creating features file...
> > sh: ./mkfeatures
On Wednesday 22 September 2004 13:29, Maurizio Colucci wrote:
> Hello big guys,
>
> I am trying to add mimetype support to my program. When I do
>
>import kio
>
> I am getting the following error:
>
> Traceback (most recent call last):
> File "./one-finger.py", line 12, in ?
> import kio
El 22/Sep/2004 a las 18:41:32, Douglas Soares de Andrade escribió:
> Could not compile PyQT 3.13. The error i got is:
>
> Creating features file...
> sh: ./mkfeatures: Permission denied
Does mkfeatures have exec permission? Looks like it cannot exec mkfeatures
because of that.
--
temp: http://
Thorsten Kampe said the following on 09/22/04 06:56:
> So the different kdialog options refer to single PyKDE classes?
"--password" to KPassword? So, I think I'll stick with os.system().
If that is all you want, then it would be a good idea. I've used kdialog
for just a progressbar from a script
Could not compile PyQT 3.13. The error i got is:
This is the GPL version of PyQt 3.13 (licensed under the GNU General Public
License) for Python 2.3.4 on linux2.
Type 'L' to view the license.
Type 'yes' to accept the terms of the license.
Type 'no' to decline the terms of the license.
Do you acc
On Wed, 2004-09-22 at 15:46 -0500, Rex Dieter wrote:
> WORKSFORME (I just can't build PyKDE, but that's another story). You
> could try the just released PyQt-3.13 to see if that works any better.
As a matter of fact, I spotted the PyQt 3.13 release a few moments after
I sent this mail, got my
Bryan O'Sullivan wrote:
I'm trying to configure PyQt 3.12 with SIP 4.1 on a Fedora Core 2
system, and having no success.
I have SIP built, configured, and installed in the normal way, without
any problems (using configure.py -l qt-mt). Here's how I'm trying to
configure PyQt:
$ echo yes |
I'm trying to configure PyQt 3.12 with SIP 4.1 on a Fedora Core 2
system, and having no success.
I have SIP built, configured, and installed in the normal way, without
any problems (using configure.py -l qt-mt). Here's how I'm trying to
configure PyQt:
$ echo yes | python configure.py
Hello big guys,
I am trying to add mimetype support to my program. When I do
import kio
I am getting the following error:
Traceback (most recent call last):
File "./one-finger.py", line 12, in ?
import kio
ImportError: /usr/lib/python2.3/site-packages/kdecore.so: undefined
symbol: _ZN10KCata
On Wednesday 22 September 2004 10:20, arkar kyaw win wrote:
The undeclared symbols seem to be a new problem in the new sip versions. I
haven't had a chance to get to those yet, but will try to get to it today and
have an answer later today or tomorrow.
Jim
_
On Wednesday 22 September 2004 10:58, Rex Dieter wrote:
> Rex Dieter wrote:
> > Phil Thompson wrote:
> >> SIP v4.1 and v3.11 have been released and can be downloaded from the
> >> usual place.
> >
> > FYI, in my attempt to rebuild PyQt/PyKDE against sip-3.11, PyQt-3.12
> > rebuilt fine, PyKDE-3.11.
I heard Phil Thompson said:
> I have a policy of not (if at all possible) changing or "enhancing"
> the API.
C++ Qt:
SomeWidget::SomeWidget () {
// ...
connect (this, SIGNAL("whatever()"),// <-- look!
otherWidget, SLOT("blah()"));
// ...
}
Current PyQt:
class
Rex Dieter wrote:
Phil Thompson wrote:
SIP v4.1 and v3.11 have been released and can be downloaded from the
usual place.
FYI, in my attempt to rebuild PyQt/PyKDE against sip-3.11, PyQt-3.12
rebuilt fine, PyKDE-3.11.3 build fails. Failed build log attached.
For the record, PyKDE-3.11.3 also fail
Hi,
I have recently started learning Qt/PyQt, so please bare with my
questions.
I am attempting to make a QListView or QTable that has 2 rows of
column headers. The first row will be the parent headers, which may span
multiple columns. The second row will be the "sub headers" which are the
regular
I have scripts that use Qt Properties (in KJSEmbed –
KJSEmbed magically handles properties) and it seems like they all need to be
converted to the get/set methods. I just want to verify this before I go
through and change a dozen scripts.
Has anyone thought of a wrapper that overrides a
On Wednesday 22 September 2004 6:10 pm, Sundance wrote:
> Hello,
>
> It occured to me, while I was code-doodling today, that as it currently
> stands, the connect syntax in Python is just a tiny little bit more
> awkward than necessary.
>
> See:
>
> class MyNiftyLittleWidget(QSomeWidget):
>
> def
Hello,
It occured to me, while I was code-doodling today, that as it currently
stands, the connect syntax in Python is just a tiny little bit more
awkward than necessary.
See:
class MyNiftyLittleWidget(QSomeWidget):
def __init__(self, otherWidget):
# ...
# Blah
# ...
self.c
PyQt v3.13 has been released and is available for download at the usual place.
This version includes support for the QUuid, QMetaObject and QMetaProperty
classes. A few more operators have also been added.
Phil
___
PyKDE mailing list[EMAIL PROTECT
On Wednesday 22 September 2004 00:37, arkar kyaw win wrote:
> Hi
>My name is arkar and I am trying to install PyKDE .I had sucess
> with sip and PyQT but when I intall PyKDE it show this error that
> PyKDE need libqt-mt to install .PyKDE configure script can find my
> sip and PyQT and QTDIR but
dunk wrote:
i have generated a file with pyuic and its all great. the main content
of the window is open gl. before the opengl widget works perfectly
outside the form i have generated. the trouble is that running inside
the form it only receives mouse movement events when a button is
pressed! no go
* Jim Bublitz (2004-09-21 21:45 +0200)
> On Tuesday 21 September 2004 12:10, Thorsten Kampe wrote:
>> I want to integrate some simple message boxes in a Python script. Of
>> course I could use EasyGUI (www.ferg.org) but the native KDE look is
>> much nicer.
>
>> So I installed PyKDE but I couldn't
hello,
i have generated a file with pyuic and its all great. the main content
of the window is open gl. before the opengl widget works perfectly
outside the form i have generated. the trouble is that running inside
the form it only receives mouse movement events when a button is
pressed! no good :
Hi
My name is arkar and I am trying to install PyKDE .I had sucess
with sip and PyQT but when I intall PyKDE it show this error that
PyKDE need libqt-mt to install .PyKDE configure script can find my
sip and PyQT and QTDIR but it fail to find the libqt-mt .When I check
the QT folder ,I can find
28 matches
Mail list logo