]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/wx/lib/rightalign.py
reSWIGged
[wxWidgets.git] / wxPython / wx / lib / rightalign.py
... / ...
CommitLineData
1# -*- coding: iso-8859-1 -*-
2#----------------------------------------------------------------------
3# Name: wxPython.lib.rightalign
4# Purpose: A class derived from wxTextCtrl that aligns the text
5# on the right side of the control, (except when editing.)
6#
7# Author: Josu Oyanguren
8#
9# Created: 19-October-2001
10# RCS-ID: $Id$
11# Copyright: (c) 2001 by Total Control Software
12# Licence: wxWindows license
13#----------------------------------------------------------------------
14# 12/11/2003 - Jeff Grimmett (grimmtooth@softhome.net)
15#
16# o 2.5 compatability update.
17# o Added deprecation warning.
18#
19
20"""
21Some time ago, I asked about how to right-align
22wxTextCtrls. Answer was that it is not supported. I forgot it.
23
24Just a week ago, one of my clients asked me to have numbers right
25aligned. (Indeed it was that numbers MUST be right aligned).
26
27So the game begun. Hacking, hacking, ...
28
29At last, i succeed. Here is some code that someone may find
30useful. ubRightTextCtrl is right-aligned when you are not editing, but
31left-aligned if it has focus.
32
33Hope this can help someone, as much as this list helps me.
34
35Josu Oyanguren
36