summaryrefslogtreecommitdiff
path: root/embeddedobj/test/Container1/PaintThread.java
blob: 7f4f871ffd71562f35cc7c7df4be6c41c3aba0bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
package embeddedobj.test;

import java.awt.*;
import java.applet.*;
import java.awt.event.*;
import java.net.*;
import java.io.*;
import java.lang.Thread;

import com.sun.star.awt.XBitmap;
import com.sun.star.awt.XDevice;
import com.sun.star.awt.XDisplayBitmap;
import com.sun.star.awt.XGraphics;
import com.sun.star.awt.XWindow;
import com.sun.star.awt.XWindowPeer;
import com.sun.star.awt.XToolkit;
import com.sun.star.awt.XSystemChildFactory;
import com.sun.star.awt.WindowDescriptor;
import com.sun.star.awt.WindowClass;
import com.sun.star.awt.WindowAttribute;

import com.sun.star.uno.UnoRuntime;
import com.sun.star.lang.XMultiServiceFactory;

class PaintThread extends java.lang.Thread
{
    private XWindow m_xWindow;
    private XBitmap m_xBitmap;
    private com.sun.star.awt.Rectangle m_aRect;

    private Object m_oRequestsLock;
    private boolean m_bToPaint = false;

    private boolean m_bDisposed = false;

    public static boolean interceptedRects( com.sun.star.awt.Rectangle aRect1, com.sun.star.awt.Rectangle aRect2 )
    {
        return ( ( aRect1.X <= aRect2.X && aRect2.X <= aRect1.X + aRect1.Width
                || aRect1.X <= aRect2.X + aRect2.Width && aRect2.X + aRect2.Width <= aRect1.X + aRect1.Width
                || aRect2.X <= aRect1.X && aRect1.X <= aRect2.X + aRect2.Width
                || aRect2.X <= aRect1.X + aRect1.Width && aRect1.X + aRect1.Width <= aRect2.X + aRect2.Width )
              && ( aRect1.Y <= aRect2.Y && aRect2.Y <= aRect1.Y + aRect1.Height
                || aRect1.Y <= aRect2.Y + aRect2.Height && aRect2.Y + aRect2.Height <= aRect1.Y + aRect1.Height
                || aRect2.Y <= aRect1.Y && aRect1.Y <= aRect2.Y + aRect2.Height
                || aRect2.Y <= aRect1.Y + aRect1.Height && aRect1.Y + aRect1.Height <= aRect2.Y + aRect2.Height ) );
    }

    public PaintThread( XWindow xWindow )
    {
        m_oRequestsLock = new Object();
        m_xWindow = xWindow;
    }

    public void setPaintRequest( XBitmap xBitmap, com.sun.star.awt.Rectangle aRect, com.sun.star.awt.Rectangle aClip )
    {
        synchronized( m_oRequestsLock )
        {
        /*
            System.out.println( "Paint request Pos( "
                                                    + aRect.X + ", "
                                                    + aRect.Y + ", "
                                                    + aRect.Width + ", "
                                                    + aRect.Height + " ), Clip ( "
                                                    + aClip.X + ", "
                                                    + aClip.Y + ", "
                                                    + aClip.Width + ", "
                                                    + aClip.Height + " )" );
        */

            if ( PaintThread.interceptedRects( aRect, aClip ) )
            {
                m_xBitmap = xBitmap;
                m_aRect = aRect;
                m_bToPaint = true;
            }
        }

        // System.out.println( "Paint request to paint thread is done! xBitmap = " + xBitmap );
    }

    public void disposeThread()
    {
        m_bDisposed = true;
    }

    public void run()
    {
        while( !m_bDisposed )
        {
            try {
                Thread.sleep( 200 );
            } catch( Exception e ) {}

            XBitmap xBitmap = null;
            com.sun.star.awt.Rectangle aRect = null;
            boolean bPaint = false;

            synchronized( m_oRequestsLock )
            {
                if ( m_bToPaint )
                {
                    xBitmap = m_xBitmap;
                    aRect = m_aRect;
                    m_bToPaint = false;
                    bPaint = true;
                }
            }

            if ( bPaint )
            {
                // System.out.println( "The bitmap is going to be painted!" );
                XDevice xDevice = (XDevice)UnoRuntime.queryInterface( XDevice.class, m_xWindow );
                if ( xDevice != null )
                {
                     // System.out.println( "Step1" );
                    XGraphics xGraphics = xDevice.createGraphics();
                    if ( xBitmap != null )
                    {
                        // System.out.println( "Step2" );
                        XDisplayBitmap xDisplayBitmap = xDevice.createDisplayBitmap( xBitmap );

                        com.sun.star.awt.Size aSize = xBitmap.getSize();
                        xGraphics.draw( xDisplayBitmap, 0, 0, aSize.Width, aSize.Height,
                                                    aRect.X, aRect.Y, aRect.Width, aRect.Height );
                    }

                    // System.out.println( "Step3" );
                    // xGraphics.drawRect( aRect.X - 1, aRect.Y - 1, aRect.Width + 2, aRect.Height + 2 );
                    xGraphics.drawLine( aRect.X - 1, aRect.Y - 1,
                                        aRect.X + aRect.Width + 1, aRect.Y - 1 );
                    xGraphics.drawLine( aRect.X + aRect.Width + 1, aRect.Y - 1,
                                        aRect.X + aRect.Width + 1, aRect.Y + aRect.Height + 1 );
                    xGraphics.drawLine( aRect.X + aRect.Width + 1, aRect.Y + aRect.Height + 1,
                                        aRect.X - 1, aRect.Y + aRect.Height + 1 );
                    xGraphics.drawLine( aRect.X - 1, aRect.Y + aRect.Height + 1,
                                        aRect.X - 1, aRect.Y - 1 );

                    // draw resize squares
                    // System.out.println( "Step4" );
                    // xGraphics.drawRect( aRect.X - 2, aRect.Y - 2, 4, 4 );
                    // xGraphics.drawRect( aRect.X + aRect.Width - 2, aRect.Y - 2, 4, 4 );
                    // xGraphics.drawRect( aRect.X - 2, aRect.Y + aRect.Height - 2, 4, 4 );
                    // xGraphics.drawRect( aRect.X + aRect.Width - 2, aRect.Y + aRect.Height - 2, 4, 4 );

                    // System.out.println( "Step5" );

                    // System.out.println( "The bitmap is painted by paint thread!" );
                }
            }
        }
    }
};