Patxi R.Y. | 1 Jan 2009 20:46
Picon

Eric4 tutorial

Hi people,

Anyone knows a god tutorial or how-to for Eric4 IDE?

Something about configuring a new project, etc.

Thank you very much!!

Filip Gruszczyński | 1 Jan 2009 21:08
Picon

Re: Ctrl+Y on document editor application

On Gnome.

Shift+Ctrl+Z it is. Strange, because both qt and PyQt4 docs say it's
Ctrl+Y. And it's the only shortcut I have met until know (or at least
the only I have used). For example now editing this message.

Thanks.

2008/12/31 piotr maliński <riklaunim <at> gmail.com>:
> On KDE?
>
> Redo can be:  Ctrl+Y, Shift+Ctrl+Z, Alt+Shift+Backspace  Ctrl+Shift+Z,
> Ctrl+Y  Ctrl+Shift+Z  Ctrl+Shift+Z
>
> It depends on the OS or Window Manager :)
>
> 2008/12/31, Filip Gruszczyński <gruszczy <at> gmail.com>:
>> I go to the /usr/share/doc/PyQt4-4.4.4-r1/examples/mainwindows/application
>>
>>  I run python application.py, a window is shown.
>>
>>  I type: application, press ctrl+z - the text is undone.
>>  I press ctrl+y, nothing appears. Am i doing something wrong, so the
>>  redo action doesn't work?
>>
>>  I am using, as you can see PyQt 4.4.4 and python 2.5.2. Upgrading
>>  isn't that easy (on Gentoo I have to upgrade also portage and umask a
>>  few packages), so I would like to first know, if that might be problem
>>  and whether I should upgrade.
>>
(Continue reading)

Detlev Offenbach | 2 Jan 2009 11:37
Picon
Favicon

Re: Eric4 tutorial

On Donnerstag, 1. Januar 2009, Patxi R.Y. wrote:
> Hi people,
>
> Anyone knows a god tutorial or how-to for Eric4 IDE?
>
> Something about configuring a new project, etc.
>
> Thank you very much!!
>
> _______________________________________________
> PyQt mailing list    PyQt <at> riverbankcomputing.com
> http://www.riverbankcomputing.com/mailman/listinfo/pyqt

There is one available via the eric web site. Just follow the link on the left 
to the tutorial section.

Regards,
Detlev
--

-- 
Detlev Offenbach
detlev <at> die-offenbachs.de
Patxi R.Y. | 2 Jan 2009 20:03
Picon

Re: Eric4 tutorial

Oh thanks.

I'm really blind :)

El Friday 02 January 2009 11:37:29 Detlev Offenbach escribió:
> On Donnerstag, 1. Januar 2009, Patxi R.Y. wrote:
> > Hi people,
> >
> > Anyone knows a god tutorial or how-to for Eric4 IDE?
> >
> > Something about configuring a new project, etc.
> >
> > Thank you very much!!
> >
> > _______________________________________________
> > PyQt mailing list    PyQt <at> riverbankcomputing.com
> > http://www.riverbankcomputing.com/mailman/listinfo/pyqt
>
> There is one available via the eric web site. Just follow the link on the
> left to the tutorial section.
>
> Regards,
> Detlev

Ville M. Vainio | 2 Jan 2009 22:23
Picon
Gravatar

Re: Introducing PyDingo

2008/12/18 piotr maliński <riklaunim <at> gmail.com>:

> For the next "release" the main feature will be adding basic file management
> features to the file browser, context menus, main menu, and some other
> smaller fixes and enchantments :)

You may want to priorize keyboard handling as well. PgUp doesn't go to
scintilla (PgDown does), and you can't move around the file manager
with cursor keys (svn r35).

--

-- 
Ville M. Vainio
http://tinyurl.com/vainio

piotr maliński | 2 Jan 2009 22:38
Picon

Re: Introducing PyDingo

02-01-09, Ville M. Vainio <vivainio <at> gmail.com> napisał(a):
> 2008/12/18 piotr maliński <riklaunim <at> gmail.com>:
>
>
>  > For the next "release" the main feature will be adding basic file management
>  > features to the file browser, context menus, main menu, and some other
>  > smaller fixes and enchantments :)
>
>
> You may want to priorize keyboard handling as well. PgUp doesn't go to
>  scintilla (PgDown does), and you can't move around the file manager
>  with cursor keys (svn r35).
>
>
>  --
>  Ville M. Vainio
>  http://tinyurl.com/vainio
>

There is some keyboard shortcuts support right now - in the scintilla
editor for find/redo/undo etc, and for basic PyDingo actions like new
tab, go up, close.

Filip Gruszczyński | 4 Jan 2009 23:08
Picon

Making application look more sexy

I guess many of us know the term 'programmers art'. I am well aware of
it, so I am avoiding as much as it's possible touch stylesheets and
trying to work on them myself. I would like, however, to make my
application look better. Maybe you know some simple tricks or know
some good style plugins, that I could use?

--

-- 
Filip Gruszczyński

piotr maliński | 5 Jan 2009 00:34
Picon

Re: Making application look more sexy

Qt applications look as other applications on user desktop - they use
user choosen themes and colors. On GNOME with qgtkstyle they can use
GTK+ style and look like any other GNOME app. You should avoid forcing
application look, as user may want to use different set of colors or
theme :)

However for the screenshots you can use some nice WM themes to
impress, and make the "wow" factor in new users... for example
http://blog.kde.org.pl/archiwum/125/Fluffy_enjoy_the_pink_bunny... :D
or http://kde-look.org/content/show.php/sketchy+for+deKorator?content=34150
:)
Doug Hackworth | 5 Jan 2009 02:30
Picon
Favicon

QCheckBox problem


Greetings.  This should be an easy one for someone to answer.

Simple situation:  I have a QCheckBox on a main window along with other widgets, 
but mysteriously it won't do anything.  Since all my other widgets (buttons, 
mainly) do what they're supposed to, I suspect I am using the QCheckBox 
incorrectly.  It's the first time I've tried using one.

I am attempting to connect the checkbox's "toggled()" signal to a slot with this 
line:

<code>
QtCore.QObject.connect(self.ui.checkMyCheckbox, QtCore.SIGNAL("toggled()"), 
self.MyCheckboxSlotFunction)
</code>

Here is the slot I have defined for it:

<code>
def CheckMultiMask(self):
         sys.stdout.write("checkbox toggleded\n")
         if (self.ui.checkMyCheckbox.isChecked()):
             sys.stdout.write("it's checked\n")
</code>

When the window loads, however, I can click on the QCheckBox all I want, to no 
avail.  Also, the application object doesn't complain when it loads, and I know 
it's getting to the connect() invocation quoted above...  I just don't know why 
the slot function doesn't seem to ever be invoked.  And again, my other widgets 
with signals/slots connected by me (in a manner like that above) are behaving as 
(Continue reading)

Jim Bublitz | 5 Jan 2009 04:43

Re: QCheckBox problem

On Sunday 04 January 2009 17:30:41 pm Doug Hackworth wrote:
> Greetings.  This should be an easy one for someone to answer.
>
> Simple situation:  I have a QCheckBox on a main window along with
> other widgets, but mysteriously it won't do anything.  Since all my
> other widgets (buttons, mainly) do what they're supposed to, I
> suspect I am using the QCheckBox incorrectly.  It's the first time
> I've tried using one.
>
> I am attempting to connect the checkbox's "toggled()" signal to a
> slot with this line:
>
> <code>
> QtCore.QObject.connect(self.ui.checkMyCheckbox,
> QtCore.SIGNAL("toggled()"), self.MyCheckboxSlotFunction)
> </code>
>
> Here is the slot I have defined for it:
>
> <code>
> def CheckMultiMask(self):
>          sys.stdout.write("checkbox toggleded\n")
>          if (self.ui.checkMyCheckbox.isChecked()):
>              sys.stdout.write("it's checked\n")
> </code>
>
> When the window loads, however, I can click on the QCheckBox all I
> want, to no avail.  Also, the application object doesn't complain
> when it loads, and I know it's getting to the connect() invocation
> quoted above...  I just don't know why the slot function doesn't seem
(Continue reading)


Gmane