wxPython text alignment again

2009-03-09 Thread alejandro
I managed to align the text to the right but when I change it with a function it gets messy What is wrong now? class OpcijeFolija(wx.Dialog): def __init__(self, parent, id, title): wx.Dialog.__init__(self,parent, id, title, size=(300,300)) foli=cPickle.load(file("folije.d

Re: Problem with text alignment

2009-03-04 Thread alejandro
>> self.sirina = wx.StaticText(self,-1,'Some text that\n will be alignet >> \nat the right',(200,50),style=wx.ALIGN_RIGHT) #- this would be an example, the reason I didnt understand is that I used just one line of text I understand now. Can I align it on the right withot usi

Re: Problem with text alignment

2009-03-04 Thread Gabriel Genellina
En Wed, 04 Mar 2009 06:14:41 -0200, alejandro escribió: I can't align the text on the right in my wxDialog. Everything else works fine self.sirina = wx.StaticText(self,-1,'',(200,50),style=wx.ALIGN_RIGHT) In case there is a misunderstanding, ALIGN_RIGHT means that the text itself is rig

Problem with text alignment

2009-03-04 Thread alejandro
I can't align the text on the right in my wxDialog. Everything else works fine self.sirina = wx.StaticText(self,-1,'',(200,50),style=wx.ALIGN_RIGHT) -- http://mail.python.org/mailman/listinfo/python-list

Re: Problem with text alignment

2009-03-04 Thread alejandro
Here is the whole dialog: class OpcijeFolija(wx.Dialog): def __init__(self, parent, id, title): wx.Dialog.__init__(self,parent, id, title, size=(300,300)) foli=cPickle.load(file("folije.data")) #-- dropdown self.combo = wx.ComboBox(self,

Re: text alignment

2008-06-17 Thread Gandalf
On Jun 17, 8:43 pm, Mike Driscoll <[EMAIL PROTECTED]> wrote: > On Jun 17, 1:20 pm, Gandalf <[EMAIL PROTECTED]> wrote: > > > since you brought up this issue, please tell me where can I fine > > menual for this library? > > You want the manual for wxPython? Go to the download page on the > Official w

Re: text alignment

2008-06-17 Thread Mike Driscoll
On Jun 17, 1:20 pm, Gandalf <[EMAIL PROTECTED]> wrote: > since you brought up this issue, please tell me where can I fine > menual for this library? You want the manual for wxPython? Go to the download page on the Official wxPython page and get the Docs & Demos package: http://wxpython.org/downloa

Re: text alignment

2008-06-17 Thread Mike Driscoll
On Jun 17, 12:59 pm, Gandalf <[EMAIL PROTECTED]> wrote: > On Jun 17, 7:49 pm, Mike Driscoll <[EMAIL PROTECTED]> wrote: > > > > > On Jun 17, 11:45 am, Gandalf <[EMAIL PROTECTED]> wrote: > > > > On Jun 17, 6:43 pm, Gandalf <[EMAIL PROTECTED]> wrote: > > > > > Hi every one. What is the similar python

Re: text alignment

2008-06-17 Thread Gandalf
since you brought up this issue, please tell me where can I fine menual for this library? can i generate dynamic GUI from it? If not, Is there any way to generate dynamic GUI (one that can change according to the user input) with HTML-CSS- javascript similar environment? -- http://mail.python.org/m

Re: text alignment

2008-06-17 Thread Gandalf
On Jun 17, 7:49 pm, Mike Driscoll <[EMAIL PROTECTED]> wrote: > On Jun 17, 11:45 am, Gandalf <[EMAIL PROTECTED]> wrote: > > > On Jun 17, 6:43 pm, Gandalf <[EMAIL PROTECTED]> wrote: > > > > Hi every one. What is the similar python WX style property for CSS > > >text-align? > > > > I need this item te

Re: text alignment

2008-06-17 Thread Mike Driscoll
On Jun 17, 11:45 am, Gandalf <[EMAIL PROTECTED]> wrote: > On Jun 17, 6:43 pm, Gandalf <[EMAIL PROTECTED]> wrote: > > > Hi every one. What is the similar python WX style property for CSS > > text-align? > > > I need this item text to start from the right direction: > > > aaa= html.HtmlWindow(self, -

Re: text alignment

2008-06-17 Thread Gandalf
On Jun 17, 6:43 pm, Gandalf <[EMAIL PROTECTED]> wrote: > Hi every one. What is the similar python WX style property for CSS > text-align? > > I need this item text to start from the right direction: > > aaa= html.HtmlWindow(self, -1, style=wx.SIMPLE_BORDER, size=(250, 60)) >         aaa.LoadPage('.

text alignment

2008-06-17 Thread Gandalf
Hi every one. What is the similar python WX style property for CSS text-align? I need this item text to start from the right direction: aaa= html.HtmlWindow(self, -1, style=wx.SIMPLE_BORDER, size=(250, 60)) aaa.LoadPage('../../aa.html') Thanks! -- http://mail.python.org/mailman/listinfo