wxStyledTextCtrl

Hi all, this is my first post :slight_smile:

i'm really new to wxPython but i have seen its potentials browsing the great demo.py.

I have seen that there is not so much documentation about it , i have only found wiki.wxpython.org .... so right now, copying and pasting pieces of code taken from examples, i have created something but i can't exactly understand what i have done :frowning:

can someone suggest me some well commented examples or tutorials ?

thanks, PIetro.

mmmm, bad start :)) wrong title for my post.... sorry

i have started this post with the idea of asking something about wxStyledTextCtrl, but while writing i have understand that is better to start from a lower level

Pietro Cottafavi wrote:

路路路

Hi all, this is my first post :slight_smile:

i'm really new to wxPython but i have seen its potentials browsing the great demo.py.

I have seen that there is not so much documentation about it , i have only found wiki.wxpython.org .... so right now, copying and pasting pieces of code taken from examples, i have created something but i can't exactly understand what i have done :frowning:

can someone suggest me some well commented examples or tutorials ?

thanks, PIetro.

---------------------------------------------------------------------
To unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwidgets.org
For additional commands, e-mail: wxPython-users-help@lists.wxwidgets.org

Pietro Cottafavi wrote:

I have seen that there is not so much documentation about it , i have only found wiki.wxpython.org .... so right now, copying and pasting pieces of code taken from examples, i have created something but i can't exactly understand what i have done :frowning:

Here are some other wxSTC docs:

http://www.yellowbrain.com/stc/index.html

路路路

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!

yes i have seen it .... not really useful for a newbie.

thanks anyway Robin :slight_smile:

Robin Dunn wrote:

路路路

Pietro Cottafavi wrote:

I have seen that there is not so much documentation about it , i have only found wiki.wxpython.org .... so right now, copying and pasting pieces of code taken from examples, i have created something but i can't exactly understand what i have done :frowning:

Here are some other wxSTC docs:

http://www.yellowbrain.com/stc/index.html

Hi Pietro!
Even if i'm a python newbie too, i suggest you first to read more and more
about python before begin with wxPython.

was a great start for me.

Ciao :wink:

P.S. Vedo che ha preso pure te python :wink:

路路路

yes i have seen it .... not really useful for a newbie.

thanks anyway Robin :slight_smile:

Robin Dunn wrote:

Pietro Cottafavi wrote:

I have seen that there is not so much documentation about it , i have
only found wiki.wxpython.org .... so right now, copying and pasting
pieces of code taken from examples, i have created something but i
can't exactly understand what i have done :frowning:

Here are some other wxSTC docs:

http://www.yellowbrain.com/stc/index.html

--------------------------------------------------------------------- To
unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwidgets.org For
additional commands, e-mail: wxPython-users-help@lists.wxwidgets.org

hi Alessandro !

yes i have already buy this book, but looking SE|PY and demo.py i was really anxious to start creating something with wxPython :), but you are right is better that first i study a little more python to understand it a little more in depth.

ciao :wink:

wishmaster@sephiroth.it wrote:

路路路

Hi Pietro!
Even if i'm a python newbie too, i suggest you first to read more and more
about python before begin with wxPython.
Amazon.com: Programming Python: Object-Oriented Scripting: 9780596000851: Lutz, Mark: Books
was a great start for me.

Ciao :wink:

P.S. Vedo che ha preso pure te python :wink:

yes i have seen it .... not really useful for a newbie.

thanks anyway Robin :slight_smile:

Robin Dunn wrote:

Pietro Cottafavi wrote:

I have seen that there is not so much documentation about it , i have
only found wiki.wxpython.org .... so right now, copying and pasting
pieces of code taken from examples, i have created something but i
can't exactly understand what i have done :frowning:
       

Here are some other wxSTC docs:

http://www.yellowbrain.com/stc/index.html

--------------------------------------------------------------------- To
unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwidgets.org For
additional commands, e-mail: wxPython-users-help@lists.wxwidgets.org
   
---------------------------------------------------------------------
To unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwidgets.org
For additional commands, e-mail: wxPython-users-help@lists.wxwidgets.org

2 links for python

http://ibiblio.org/obp/thinkCS/python.php
and
http://www.hetland.org/python/instant-hacking.php
if the above link doesn't work (site might be down) try the internet archive:
http://web.archive.org/web/20030601215522/http://www.hetland.org/python/instant-hacking.php
this one works for sure :wink:

for wxPython... "Use the source Luke, use the source"
you should have 3 things allways available to you (open) the wxpython Demo, the wx documentation and an interpreter shell. The demo to get started (look at the code), the wx docs to see what else is in store for a specific class and the shell to test some of the things (an autocomplition shell like PyShell is a very nice thing to have at hand)

the order of things you need to learn is in my oppinion this:
how to init-start a wx app
how to lay components on a panel/window (the layout mechanism)
how to react to events (the event handler mechanism)
past this all reduces to "get to know the components" (how they look and what events they generate)

one last thing to rememeber:
wxPython was created for python not the other way around so if something can be accomplished in python do it in pure python, trying to learn the wx way might constitute a waste of time.

路路路

On Tue, 20 Apr 2004 11:31:39 +0200, Pietro Cottafavi <pietro.cottafavi@fastwebnet.it> wrote:

hi Alessandro !

yes i have already buy this book, but looking SE|PY and demo.py i was really anxious to start creating something with wxPython :), but you are right is better that first i study a little more python to understand it a little more in depth.

ciao :wink:

--
Peter Damoc
Hacker Wannabe
http://www.sigmacore.net/about.html

thanks for the hints Peter :wink:

Peter Damoc wrote:

路路路

On Tue, 20 Apr 2004 11:31:39 +0200, Pietro Cottafavi > <pietro.cottafavi@fastwebnet.it> wrote:

hi Alessandro !

yes i have already buy this book, but looking SE|PY and demo.py i was really anxious to start creating something with wxPython :), but you are right is better that first i study a little more python to understand it a little more in depth.

ciao :wink:

2 links for python

http://ibiblio.org/obp/thinkCS/python.php
and
http://www.hetland.org/python/instant-hacking.php
if the above link doesn't work (site might be down) try the internet archive:
Instant Hacking : Learn how to program with Python

this one works for sure :wink:

for wxPython... "Use the source Luke, use the source"
you should have 3 things allways available to you (open) the wxpython Demo, the wx documentation and an interpreter shell. The demo to get started (look at the code), the wx docs to see what else is in store for a specific class and the shell to test some of the things (an autocomplition shell like PyShell is a very nice thing to have at hand)

the order of things you need to learn is in my oppinion this:
how to init-start a wx app
how to lay components on a panel/window (the layout mechanism)
how to react to events (the event handler mechanism)
past this all reduces to "get to know the components" (how they look and what events they generate)

one last thing to rememeber:
wxPython was created for python not the other way around so if something can be accomplished in python do it in pure python, trying to learn the wx way might constitute a waste of time.