1 Jan 2009 20:46
1 Jan 2009 21:08
Re: Ctrl+Y on document editor application
Filip Gruszczyński <gruszczy <at> gmail.com>
2009-01-01 20:08:21 GMT
2009-01-01 20:08:21 GMT
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)
2 Jan 2009 11:37
Re: Eric4 tutorial
Detlev Offenbach <detlev <at> die-offenbachs.de>
2009-01-02 10:37:29 GMT
2009-01-02 10:37:29 GMT
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
2 Jan 2009 20:03
Re: Eric4 tutorial
Patxi R.Y. <patxiry <at> gmail.com>
2009-01-02 19:03:53 GMT
2009-01-02 19:03:53 GMT
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
2 Jan 2009 22:23
Re: Introducing PyDingo
Ville M. Vainio <vivainio <at> gmail.com>
2009-01-02 21:23:04 GMT
2009-01-02 21:23:04 GMT
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
2 Jan 2009 22:38
Re: Introducing PyDingo
piotr maliński <riklaunim <at> gmail.com>
2009-01-02 21:38:43 GMT
2009-01-02 21:38:43 GMT
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.
4 Jan 2009 23:08
Making application look more sexy
Filip Gruszczyński <gruszczy <at> gmail.com>
2009-01-04 22:08:54 GMT
2009-01-04 22:08:54 GMT
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
5 Jan 2009 00:34
Re: Making application look more sexy
piotr maliński <riklaunim <at> gmail.com>
2009-01-04 23:34:56 GMT
2009-01-04 23:34:56 GMT
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 :)
5 Jan 2009 02:30
QCheckBox problem
Doug Hackworth <doug.hackworth <at> vanderbilt.edu>
2009-01-05 01:30:41 GMT
2009-01-05 01:30:41 GMT
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)
5 Jan 2009 04:43
Re: QCheckBox problem
Jim Bublitz <jbublitz <at> nwinternet.com>
2009-01-05 03:43:24 GMT
2009-01-05 03:43:24 GMT
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)
RSS Feed