tizen beta release
[profile/ivi/webkit-efl.git] / Source / WebCore / platform / wx / LocalDC.h
1 /*
2  * Copyright (C) 2011 Kevin Ollivier <kevino@theolliviers.com>
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
24  */
25
26 #include "IntRect.h"
27
28 #include <wtf/Assertions.h>
29
30 #include <wx/defs.h>
31
32 #include <wx/dc.h>
33 #include <wx/dcmemory.h>
34 #include <wx/rawbmp.h>
35
36 namespace WebCore {
37
38 wxBitmap* transparentBitmap(int width, int height);
39
40 class LocalDC {
41
42 public:
43     LocalDC(wxDC* host, const IntRect& r)
44     {
45 #ifndef __WXMAC__
46         m_host = host;
47         int width = r.width();
48         int height = r.height();
49         m_bitmap = new wxBitmap(width, height, 32);
50         // we scope this to make sure that wxAlphaPixelData isn't holding a ref
51         // to m_bitmap when we create the wxMemoryDC, as this will invoke a copy op.
52         {
53             wxAlphaPixelData pixData(*m_bitmap, wxPoint(0,0), wxSize(width, height));
54             ASSERT(pixData);
55             if (pixData) {
56                 wxAlphaPixelData::Iterator p(pixData);
57                 for (int y=0; y<height; y++) {
58                     wxAlphaPixelData::Iterator rowStart = p;
59                     for (int x=0; x<width; x++) {
60                         p.Alpha() = 0;
61                         ++p; 
62                     }
63                     p = rowStart;
64                     p.OffsetY(pixData, 1);
65                 }
66             }
67         }
68
69         m_context = new wxMemoryDC(*m_bitmap);
70         m_context->SetDeviceOrigin(-r.x(), -r.y());
71         m_rect = r;
72 #else
73         m_context = host;
74 #endif
75     }
76
77     wxDC* context() { return m_context; }
78
79     ~LocalDC()
80     {
81 #ifndef __WXMAC__
82         delete m_context;
83         m_host->DrawBitmap(*m_bitmap, m_rect.x(), m_rect.y());
84         delete m_bitmap;
85 #endif
86     }
87
88 private:
89     wxDC* m_host;
90     wxDC* m_context;
91     wxBitmap* m_bitmap;
92     IntRect m_rect;
93             
94 };
95
96 }
97