User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T06:45:35Zhttp://stackoverflow.com/feeds/user/129975http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1779004/is-pygtk-or-pyqt-preferred-for-making-gtk-native-python-apps/1901957#19019570Answer by aidave for Is PyGTK or PyQT preferred for making GTK-native Python apps?aidave2009-12-14T16:34:04Z2009-12-14T16:34:04Z<p>In my experience, having made both PyGTK and PyQT apps, there is little difference on the underlying programming side of things. PyQT seems more consistent across different flavors of Linux, where GTK is constantly changing and breaking on older distributions.</p>
<p>PyQT has QTCreator, which is a great GUI designer. PyGTK has Glade3, which is getting better, but not as good. Until recently Glade was a bad joke. If you need to draw GUIs in an editor, PyQT is probably the better choice. Otherwise, I'd go with PyGTK for coding because the online PyGTK documentation is excellent.</p>
<p>One bizarre thing I've found is PyQT has poor support for dynamic menu item callbacks. Maybe I just didnt use it right, but PyGTK is a bit more flexible in comparison. </p>
<p>It's a tough choice, really. But if you design your application right, the interface should be irrelevant; you could design your app with multiple interfaces...</p>
http://stackoverflow.com/questions/1885552/need-example-help-with-gtktextbuffer-of-gtktextview-serialize-deserialize1Need example/help with GtkTextBuffer (of GtkTextView) serialize/deserializeaidave2009-12-11T03:02:02Z2009-12-14T15:13:55Z
<p>I am trying to save user's bold/italic/font/etc tags in a GtkTextView.
Using GtkTextBuffer.get_text() does not return the tags.</p>
<p>The best documentation I have found on this is:
<a href="http://www.pygtk.org/docs/pygtk/class-gtktextbuffer.html#method-gtktextbuffer--register-serialize-format" rel="nofollow">http://www.pygtk.org/docs/pygtk/class-gtktextbuffer.html#method-gtktextbuffer--register-serialize-format</a></p>
<p>However, I do not understand the function arguments.
It would be infinitely handy to have an example of how these are used to save/load a textview with tags in it.</p>
<p>Edit: I would like to clarify what I am trying to accomplish. Basically I want to save/load the textview's text+tags. I have no desire to do anything more complicated than that. I am using pickle as the file format, so I dont need any help here on how to save it or in what format. Just need a way to pull/push the data so that the user loses nothing that he/she sees on screen. Thank you.</p>
http://stackoverflow.com/questions/1772977/how-to-find-gtk-version-in-php-gtk2/1773217#17732170Answer by aidave for How to find GTK version in PHP-GTK2?aidave2009-11-20T21:02:11Z2009-11-20T21:10:09Z<p>Found a code example:</p>
<pre><code>static public function GetGtkVersion()
{
$sVersion = Gtk::get_version() ;
$sVersion = str_replace('Gtk','',$sVersion) ;
$sVersion = str_replace('GTK','',$sVersion) ;
$sVersion = trim($sVersion) ;
list($nPriVer,$nSecVer,$nThdVer) = explode('.',$sVersion) ;
$aVersion = array($nPriVer,$nSecVer,$nThdVer) ;
return $aVersion ;
}
</code></pre>
<p>From:
<a href="http://www.google.com/codesearch/p?hl=en&sa=N&cd=1&ct=rc#84rrsv6GVmw/trunk/Framework/Lib.php/MVC/MVC.Gtk/class.JCAT%5FGtk.php&q=gtk%20get%5Fversion%20lang%3Aphp" rel="nofollow">http://www.google.com/codesearch/p?hl=en&sa=N&cd=1&ct=rc#84rrsv6GVmw/trunk/Framework/Lib.php/MVC/MVC.Gtk/class.JCAT%5FGtk.php&q=gtk%20get%5Fversion%20lang%3Aphp</a></p>
http://stackoverflow.com/questions/1772977/how-to-find-gtk-version-in-php-gtk20How to find GTK version in PHP-GTK2?aidave2009-11-20T20:14:51Z2009-11-20T21:10:09Z
<p>This one is driving me nuts. According to GTK's site, there exists GTK_MAJOR_VERSION, GTK_MINOR_VERSION, and GTK_MICRO_VERSION constants. However, none of these work:</p>
<p>echo GTK_MAJOR_VERSION;
echo GtK::MAJOR_VERISON;
echo Gtk::GTK_MAJOR_VERSION;
etc</p>
<p>Also, Gtk::check_version(2,12,0) always fails even though I have a higher version.</p>
<p>I'd like to simply get the actual version number and not rely on check_version, which seems unreliable.</p>
<p>How can I do this?
I need to do it within PHP, platform independent.</p>
http://stackoverflow.com/questions/1665288/are-there-any-examples-of-a-python-pygtk-pango-editor-toolbar1Are there any examples of a Python PyGTK Pango editor toolbar?aidave2009-11-03T04:40:39Z2009-11-20T20:16:28Z
<p>I am looking for an example application written in Python and PyGTK.</p>
<p>There should be an editor out there somewhere that already does this.</p>
<p>Some app with a text editor row of buttons:
- Font
- Bold/italic/underline
- etc</p>
<p>I am hoping to avoid reinventing the wheel on this one!
thanks</p>
http://stackoverflow.com/questions/1665288/are-there-any-examples-of-a-python-pygtk-pango-editor-toolbar/1772990#17729900Answer by aidave for Are there any examples of a Python PyGTK Pango editor toolbar?aidave2009-11-20T20:16:28Z2009-11-20T20:16:28Z<p>I found some related examples: KeepNote, which has a custom rich edit, and Rednotebook which implements KeepNote's richedit.</p>
http://stackoverflow.com/questions/1250566/how-do-you-enable-auto-scrolling-on-gtksourceview2/1301796#13017960Answer by aidave for How do you enable auto-scrolling on GtkSourceView2? aidave2009-08-19T18:29:32Z2009-08-19T18:29:32Z<p>Ok I just figured this out.</p>
<p>I was adding the GtkSourceView2 into a GtkScrolledWindow.
Only, it was adding a ViewPort first via ScrolledWindow.add_with_viewport().
This disables part of the scrolling behavior via keyboard.
Instead, use ScrolledWindow.add(), and the ViewPort is skipped and the GtkAdjustments take care of the scrolling!</p>
http://stackoverflow.com/questions/1250566/how-do-you-enable-auto-scrolling-on-gtksourceview20How do you enable auto-scrolling on GtkSourceView2? aidave2009-08-09T04:02:11Z2009-08-19T18:29:32Z
<p>I am having a problem with GtkSourceView used from Python.</p>
<p>Two major problems:
1) When a user types text into the GtkSourceView, and types past the bottom of the visible text, the GtkSourceView does not autoscroll to the users cursor.
This wouldnt be so bad, except:
2) The arrow keys, page up and page down keys, do not cause the GtkSourceView to scroll either.</p>
<p>The mouse scrollbar does work on the GtkSourceView.</p>
<p>Does anyone have knowledge/experience of this?</p>
<p>My code is here <a href="http://launchpad.net/kabikaboo" rel="nofollow">http://launchpad.net/kabikaboo</a></p>
http://stackoverflow.com/questions/1080669/in-python-how-do-you-change-an-instantiated-object-after-a-reload3In Python, how do you change an instantiated object after a reload?aidave2009-07-03T20:03:07Z2009-07-04T01:38:04Z
<p>Let's say you have an object that was instantiated from a class inside a module.
Now, you reload that module.
The next thing you'd like to do is make that reload affect that class.</p>
<pre><code>mymodule.py
---
class ClassChange():
def run(self):
print 'one'
myexperiment.py
---
import mymodule
from mymodule import ClassChange # why is this necessary?
myObject = ClassChange()
myObject.run()
>>> one
### later, i changed this file, so that it says print 'two'
reload(mymodule)
# trick to change myObject needed here
myObject.run()
>>> two
</code></pre>
<p>Do you have to make a new ClassChange object, copy myObject into that, and delete the old myObject? Or is there a simpler way?</p>
<p>Edit: The run() method seems like a static class style method but that was only for the sake of brevity. I'd like the run() method to operate on data inside the object, so a static module function wouldn't do...</p>
http://stackoverflow.com/questions/1080521/how-to-reload-a-python-module-that-was-imported-in-another-file1How to reload a Python module that was imported in another file?aidave2009-07-03T19:13:42Z2009-07-03T19:24:48Z
<p>I am trying to learn how Python reloads modules, but have hit a roadblock.
Let's say I have:</p>
<p><code>dir1\file1.py</code>:</p>
<pre><code>from dir2.file2 import ClassOne
myObject = ClassOne()
</code></pre>
<p><code>dir1\dir2\file2.py</code>:</p>
<pre><code>class ClassOne():
def reload_module():
reload(file2)
</code></pre>
<p>The reload call fails to find module "file2".</p>
<p>My question is, how do I do this properly, without having to keep everything in one file?</p>
<p>A related question: When the reload does work, will myObject use the new code?</p>
<p>thank you</p>
http://stackoverflow.com/questions/1054271/how-to-import-a-python-class-that-is-in-a-directory-above1How to import a Python class that is in a directory above?aidave2009-06-28T04:56:25Z2009-06-28T05:07:37Z
<p>For example, I want to inherit from a class in a file that lies in a directory above the current one.</p>
<p>Is it possible to relatively import that file?</p>
<p>thanks!</p>
http://stackoverflow.com/questions/1885552/need-example-help-with-gtktextbuffer-of-gtktextview-serialize-deserialize/1900263#1900263Comment by on Need example/help with GtkTextBuffer (of GtkTextView) serialize/deserialize2009-12-14T15:11:41Z2009-12-14T15:11:41ZI am primarily interested in saving/loading the users text+tags. I am using pickle as a file format. See launchpad.net/kabikaboohttp://stackoverflow.com/questions/1885552/need-example-help-with-gtktextbuffer-of-gtktextview-serialize-deserialize/1899472#1899472Comment by on Need example/help with GtkTextBuffer (of GtkTextView) serialize/deserialize2009-12-14T15:10:20Z2009-12-14T15:10:20ZThank you for this information. I am still a little confused. Would I call this function once? Then would I call something else to get the data, and what do I call to put the data back into a TextView? ie:
textview.register_serialize_target(),
data = textview.get_serialized_data(),
textview.set_serialized_data(data)http://stackoverflow.com/questions/1250566/how-do-you-enable-auto-scrolling-on-gtksourceview2Comment by on How do you enable auto-scrolling on GtkSourceView2? 2009-08-19T18:06:55Z2009-08-19T18:06:55ZI tried calling place_cursor_onscreen() from the keypress, but GtkSourceView2 does not honor it.http://stackoverflow.com/questions/1250566/how-do-you-enable-auto-scrolling-on-gtksourceview2Comment by on How do you enable auto-scrolling on GtkSourceView2? 2009-08-19T18:03:50Z2009-08-19T18:03:50ZOk, scratch that. How do you hook into the keypress to enable scrolling? Up, Down, PgUp, and PgDown keys need to work on this widget or it becomes frustrating.http://stackoverflow.com/questions/1080669/in-python-how-do-you-change-an-instantiated-object-after-a-reload/1080984#1080984Comment by on In Python, how do you change an instantiated object after a reload?2009-07-06T18:09:50Z2009-07-06T18:09:50ZThis is an excellent idea Alex. Thank you. I am keeping track of my objects already, that is not a problem. In fact, this is more flexible, because then the user can choose to reload all objects, just one, some, or none and have future objects use the new code. I will be giving your solution a shot this week and report back here. Thanks again!http://stackoverflow.com/questions/1080521/how-to-reload-a-python-module-that-was-imported-in-another-fileComment by on How to reload a Python module that was imported in another file?2009-07-03T21:07:44Z2009-07-03T21:07:44ZFollow up question:
<a href="http://stackoverflow.com/questions/1080669/in-python-how-do-you-change-an-instantiated-object-after-a-reload" rel="nofollow" title="in python how do you change an instantiated object after a reload">stackoverflow.com/questions/1080669/…</a>http://stackoverflow.com/questions/1080669/in-python-how-do-you-change-an-instantiated-object-after-a-reload/1080729#1080729Comment by on In Python, how do you change an instantiated object after a reload?2009-07-03T21:04:06Z2009-07-03T21:04:06Z"Can you be a bit more clear on what you are confused about?" haha, of course not, or i wouldnt be confused! ;) I am just wondering how to be a bit more elegant because the user would always be saying "ok all i need to do is change the code in function run()", but I wouldnt expect them to add a new function, etc. But basically I could add some kind of management structure to replace the run() pointer without the user knowing.http://stackoverflow.com/questions/1080521/how-to-reload-a-python-module-that-was-imported-in-another-file/1080534#1080534Comment by on How to reload a Python module that was imported in another file?2009-07-03T20:57:22Z2009-07-03T20:57:22ZOk I accepted. Took a moment to realize the checkmark button is what I had to click on! lol. If you are interested what I am trying to achieve with Python please take a look here, its opensource: <a href="https://launchpad.net/bloom" rel="nofollow">launchpad.net/bloom</a>http://stackoverflow.com/questions/1080669/in-python-how-do-you-change-an-instantiated-object-after-a-reload/1080676#1080676Comment by on In Python, how do you change an instantiated object after a reload?2009-07-03T20:53:26Z2009-07-03T20:53:26ZThanks for the answer, albeit a gloomy one. I want the user to be able to rewrite code for an object, and have that code be put into affect. So for example, you have a planet object, and creatures on the planet. You want to change the planet code, so the weather on the planet changes behavior. All the creatures have pointers to that planet, and the planet data is huge, so deleting/creating it would be painful. Maybe reload isn't appropriate for this scenario...http://stackoverflow.com/questions/1080669/in-python-how-do-you-change-an-instantiated-object-after-a-reloadComment by on In Python, how do you change an instantiated object after a reload?2009-07-03T20:50:35Z2009-07-03T20:50:35ZAll of these answers are great food for thought for me. I dont yet know which answer is the right one so I will do some playing with the solutions before selecting. thanks! :)http://stackoverflow.com/questions/1080669/in-python-how-do-you-change-an-instantiated-object-after-a-reload/1080729#1080729Comment by on In Python, how do you change an instantiated object after a reload?2009-07-03T20:49:06Z2009-07-03T20:49:06ZThat seems like it would work, but... I would have to keep adding new functions, as the user keeps changing the code. Let say the user can write the code in behavior, it would change frequently, I am not sure how to manage that, but with Python anything is possible...http://stackoverflow.com/questions/1080669/in-python-how-do-you-change-an-instantiated-object-after-a-reloadComment by on In Python, how do you change an instantiated object after a reload?2009-07-03T20:41:19Z2009-07-03T20:41:19ZThanks balpha, I've been wondering that for a while :)http://stackoverflow.com/questions/1080669/in-python-how-do-you-change-an-instantiated-object-after-a-reload/1080724#1080724Comment by on In Python, how do you change an instantiated object after a reload?2009-07-03T20:38:51Z2009-07-03T20:38:51ZInteresting. That may actually work for what I had in mind, but is a totally different approach to what I had envisioned!http://stackoverflow.com/questions/1080669/in-python-how-do-you-change-an-instantiated-object-after-a-reload/1080729#1080729Comment by on In Python, how do you change an instantiated object after a reload?2009-07-03T20:37:42Z2009-07-03T20:37:42ZThanks for the response, but what happens when you need more than static behavior across the class? I should have been more specific. The function will need to utilize data specific to that instantiation.http://stackoverflow.com/questions/1080521/how-to-reload-a-python-module-that-was-imported-in-another-fileComment by on How to reload a Python module that was imported in another file?2009-07-03T19:30:48Z2009-07-03T19:30:48ZBasically what I want to do is have objects running code in edit windows, which the user can change while the system is running. The objects would have a regular "step()" function being called, where the user should change the code. This will alter the behavior of the objects as the program runs.