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

« back to all changes in this revision

Viewing changes to include/wx/dfb/wrapdfb.h

  • 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:
3
3
// Purpose:     wx wrappers for DirectFB interfaces
4
4
// Author:      Vaclav Slavik
5
5
// Created:     2006-08-23
6
 
// RCS-ID:      $Id: wrapdfb.h 43729 2006-12-01 13:02:20Z VS $
 
6
// RCS-ID:      $Id: wrapdfb.h 53110 2008-04-10 17:58:44Z VS $
7
7
// Copyright:   (c) 2006 REA Elektronik GmbH
8
8
// Licence:     wxWindows licence
9
9
/////////////////////////////////////////////////////////////////////////////
208
208
    bool SetClip(const DFBRegion *clip)
209
209
        { return Check(m_ptr->SetClip(m_ptr, clip)); }
210
210
 
211
 
    bool SetColor(__u8 r, __u8 g, __u8 b, __u8 a)
 
211
    bool SetColor(u8 r, u8 g, u8 b, u8 a)
212
212
        { return Check(m_ptr->SetColor(m_ptr, r, g, b, a)); }
213
213
 
214
 
    bool Clear(__u8 r, __u8 g, __u8 b, __u8 a)
 
214
    bool Clear(u8 r, u8 g, u8 b, u8 a)
215
215
        { return Check(m_ptr->Clear(m_ptr, r, g, b, a)); }
216
216
 
217
217
    bool DrawLine(int x1, int y1, int x2, int y2)
387
387
    bool Resize(int w, int h)
388
388
        { return Check(m_ptr->Resize(m_ptr, w, h)); }
389
389
 
390
 
    bool SetOpacity(__u8 opacity)
 
390
    bool SetOpacity(u8 opacity)
391
391
        { return Check(m_ptr->SetOpacity(m_ptr, opacity)); }
392
392
 
393
393
    bool SetStackingClass(DFBWindowStackingClass klass)