~ubuntu-branches/ubuntu/maverick/wxwidgets2.8/maverick-proposed

« back to all changes in this revision

Viewing changes to wxPython/src/gtk/_windows.py

  • Committer: Bazaar Package Importer
  • Author(s): Devid Filoni
  • Date: 2008-06-30 22:02:17 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20080630220217-vag3tkfp91t0453d
Tags: 2.8.8.0-0ubuntu1
* New upstream version, based on the upstream tarball
  wxPython-src-2.8.8.0.tar.bz2, remove upstream debian dir (LP: #244355).
* Add debian/watch file, LP: #242164.
* Edit get-orig-source target to provide a .orig.tar.gz with the same md5 for
  each .orig.tar.gz generated.
* debian/rules: remove get-orig-source from .PHONY target.
* debian/control.in: add python-wxtools in python-wxgtk=V=U Suggests field.
* Do not apply fix_from_upstream_svn_r52465 patch, not needed.
* Regenerate octave_oct, tcl_tk_tcl patches for the new version.
* Fix spelling-error-in-description lintian warning.
* Fix depends-on-obsolete-package lintian error.
* Fix executable-not-elf-or-script lintian warnings.
* Fix script-not-executable lintian warnings.
* Fix missing-dependency-on-libc lintian error.
* Fix dbg-package-missing-depends lintian warnings.
* Fix package-contains-empty-directory lintian warnings.
* Fix manpage-has-errors-from-man lintian warning.
* Fix image-file-in-usr-lib lintian warnings:
  - add editra_pixmaps patch
  - add xrced_bitmaps patch
* Fix unused-override lintian info.
* Fix malformed-override lintian errors.
* Fix extra-license-file lintian warnings.
* Install upstream wx.pth instead of generated file links (LP: #211553).
* Add editra.png, pyshell.png (encoded using uuencode) icons, LP: #236876:
  - debian/rules: use uudecode to decode .png icons.
* Add a new pyshell.xpm icon.
* Fix doc-base-file-references-missing-file lintian error.
* Fix doc-base-unknown-section lintian warning.
* Fix ruby-script-but-no-ruby-dep lintian errors.
* Fix wish-script-but-no-wish-dep lintian errors.
* Fix missing-dep-for-interpreter errors.
* Bump Standards-Version to 3.8.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
425
425
        """MacGetUnifiedAppearance(self) -> bool"""
426
426
        return _windows_.TopLevelWindow_MacGetUnifiedAppearance(*args, **kwargs)
427
427
 
 
428
    def MacGetTopLevelWindowRef(*args, **kwargs):
 
429
        """MacGetTopLevelWindowRef(self) -> long"""
 
430
        return _windows_.TopLevelWindow_MacGetTopLevelWindowRef(*args, **kwargs)
 
431
 
428
432
    def CenterOnScreen(*args, **kwargs):
429
433
        """
430
434
        CenterOnScreen(self, int dir=BOTH)
783
787
SPLASH_CENTRE_ON_PARENT = _windows_.SPLASH_CENTRE_ON_PARENT
784
788
SPLASH_CENTRE_ON_SCREEN = _windows_.SPLASH_CENTRE_ON_SCREEN
785
789
SPLASH_NO_CENTRE = _windows_.SPLASH_NO_CENTRE
 
790
SPLASH_CENTER_ON_PARENT = _windows_.SPLASH_CENTER_ON_PARENT
 
791
SPLASH_CENTER_ON_SCREEN = _windows_.SPLASH_CENTER_ON_SCREEN
 
792
SPLASH_NO_CENTER = _windows_.SPLASH_NO_CENTER
786
793
SPLASH_TIMEOUT = _windows_.SPLASH_TIMEOUT
787
794
SPLASH_NO_TIMEOUT = _windows_.SPLASH_NO_TIMEOUT
788
795
class SplashScreenWindow(_core.Window):
1426
1433
        """SetSashBorder(self, int edge, bool border)"""
1427
1434
        return _windows_.SashWindow_SetSashBorder(*args, **kwargs)
1428
1435
 
 
1436
    SetSashBorder = wx._deprecated(SetSashBorder) 
1429
1437
    def HasBorder(*args, **kwargs):
1430
1438
        """HasBorder(self, int edge) -> bool"""
1431
1439
        return _windows_.SashWindow_HasBorder(*args, **kwargs)
1432
1440
 
 
1441
    HasBorder = wx._deprecated(HasBorder) 
1433
1442
    def GetEdgeMargin(*args, **kwargs):
1434
1443
        """GetEdgeMargin(self, int edge) -> int"""
1435
1444
        return _windows_.SashWindow_GetEdgeMargin(*args, **kwargs)
2107
2116
        """
2108
2117
        return _windows_.SimpleHtmlListBox_Create(*args, **kwargs)
2109
2118
 
 
2119
    def _Clear(*args, **kwargs):
 
2120
        """_Clear(self)"""
 
2121
        return _windows_.SimpleHtmlListBox__Clear(*args, **kwargs)
 
2122
 
 
2123
    Clear = _Clear 
2110
2124
_windows_.SimpleHtmlListBox_swigregister(SimpleHtmlListBox)
2111
2125
SimpleHtmlListBoxNameStr = cvar.SimpleHtmlListBoxNameStr
2112
2126
 
2905
2919
PD_REMAINING_TIME = _windows_.PD_REMAINING_TIME
2906
2920
PD_SMOOTH = _windows_.PD_SMOOTH
2907
2921
PD_CAN_SKIP = _windows_.PD_CAN_SKIP
2908
 
class ProgressDialog(Frame):
 
2922
class ProgressDialog(Dialog):
2909
2923
    """
2910
2924
    A dialog that shows a short message and a progress bar. Optionally, it
2911
2925
    can display an ABORT button.