1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir #ifndef LAYOUT_VCL_WRAPPER_HXX
29*cdf0e10cSrcweir #define LAYOUT_VCL_WRAPPER_HXX
30*cdf0e10cSrcweir 
31*cdf0e10cSrcweir #include <layout/layout.hxx>
32*cdf0e10cSrcweir #include <com/sun/star/uno/Reference.hxx>
33*cdf0e10cSrcweir #include <com/sun/star/awt/XDialog2.hpp>
34*cdf0e10cSrcweir #include <com/sun/star/awt/XFocusListener.hpp>
35*cdf0e10cSrcweir #include <com/sun/star/awt/XWindow.hpp>
36*cdf0e10cSrcweir #include <com/sun/star/awt/XVclWindowPeer.hpp>
37*cdf0e10cSrcweir #include <cppuhelper/implbase1.hxx>
38*cdf0e10cSrcweir 
39*cdf0e10cSrcweir #include <cstring>
40*cdf0e10cSrcweir 
41*cdf0e10cSrcweir namespace layout
42*cdf0e10cSrcweir {
43*cdf0e10cSrcweir 
44*cdf0e10cSrcweir namespace css = com::sun::star;
45*cdf0e10cSrcweir 
46*cdf0e10cSrcweir class WindowImpl
47*cdf0e10cSrcweir {
48*cdf0e10cSrcweir public:
49*cdf0e10cSrcweir     Window *mpWindow;
50*cdf0e10cSrcweir     Context *mpCtx;
51*cdf0e10cSrcweir     css::uno::Reference< css::awt::XWindow > mxWindow;
52*cdf0e10cSrcweir     css::uno::Reference< css::awt::XVclWindowPeer > mxVclPeer;
53*cdf0e10cSrcweir     ::Window *mvclWindow;
54*cdf0e10cSrcweir     bool bFirstTimeVisible;
55*cdf0e10cSrcweir 
56*cdf0e10cSrcweir     WindowImpl (Context *context, PeerHandle const &peer, Window *window);
57*cdf0e10cSrcweir     virtual ~WindowImpl ();
58*cdf0e10cSrcweir 
59*cdf0e10cSrcweir     void wrapperGone();
60*cdf0e10cSrcweir     css::uno::Any getProperty (char const *name);
61*cdf0e10cSrcweir     void setProperty (char const *name, css::uno::Any any);
62*cdf0e10cSrcweir     void redraw (bool resize=false);
63*cdf0e10cSrcweir 
64*cdf0e10cSrcweir     // XFocusListener
65*cdf0e10cSrcweir     virtual void SAL_CALL disposing (css::lang::EventObject const&) throw (css::uno::RuntimeException);
66*cdf0e10cSrcweir };
67*cdf0e10cSrcweir 
68*cdf0e10cSrcweir class ControlImpl : public WindowImpl
69*cdf0e10cSrcweir                   , public ::cppu::WeakImplHelper1 <css::awt::XFocusListener>
70*cdf0e10cSrcweir {
71*cdf0e10cSrcweir public:
72*cdf0e10cSrcweir     Link mGetFocusHdl;
73*cdf0e10cSrcweir     Link mLoseFocusHdl;
74*cdf0e10cSrcweir 
75*cdf0e10cSrcweir     ControlImpl( Context *context, PeerHandle const& peer, Window *window );
76*cdf0e10cSrcweir     ~ControlImpl ();
77*cdf0e10cSrcweir 
78*cdf0e10cSrcweir     virtual void SetGetFocusHdl (Link const& link);
79*cdf0e10cSrcweir     Link& GetGetFocusHdl ();
80*cdf0e10cSrcweir     virtual void SetLoseFocusHdl (Link const& link);
81*cdf0e10cSrcweir     Link& GetLoseFocusHdl ();
82*cdf0e10cSrcweir     virtual void UpdateListening (Link const& link);
83*cdf0e10cSrcweir 
84*cdf0e10cSrcweir     // XFocusListener
85*cdf0e10cSrcweir     virtual void SAL_CALL disposing (css::lang::EventObject const&) throw (css::uno::RuntimeException);
86*cdf0e10cSrcweir     void SAL_CALL focusGained (css::awt::FocusEvent const& e) throw (css::uno::RuntimeException);
87*cdf0e10cSrcweir     void SAL_CALL focusLost (css::awt::FocusEvent const& e) throw (css::uno::RuntimeException);
88*cdf0e10cSrcweir };
89*cdf0e10cSrcweir 
90*cdf0e10cSrcweir inline WindowImpl &Window::getImpl() const{ return *(static_cast< WindowImpl * >( mpImpl )); }
91*cdf0e10cSrcweir 
92*cdf0e10cSrcweir // Helpers for defining boiler-plate constructors ...
93*cdf0e10cSrcweir // Could in-line in top-level but not with safe static_casts.
94*cdf0e10cSrcweir #define IMPL_GET_IMPL(t) \
95*cdf0e10cSrcweir     inline t##Impl &t::getImpl() const \
96*cdf0e10cSrcweir     { \
97*cdf0e10cSrcweir         return *(static_cast<t##Impl *>(mpImpl)); \
98*cdf0e10cSrcweir     }
99*cdf0e10cSrcweir #define IMPL_CONSTRUCTORS_BODY(t,par,unoName,body) \
100*cdf0e10cSrcweir     t::t( Context *context, const char *pId, sal_uInt32 nId ) \
101*cdf0e10cSrcweir         : par( new t##Impl( context, context->GetPeerHandle( pId, nId ), this ) ) \
102*cdf0e10cSrcweir     { \
103*cdf0e10cSrcweir         Window *parent = dynamic_cast<Window*> (context);\
104*cdf0e10cSrcweir         body;\
105*cdf0e10cSrcweir         if (parent)\
106*cdf0e10cSrcweir             SetParent (parent);\
107*cdf0e10cSrcweir     } \
108*cdf0e10cSrcweir     t::t( Window *parent, WinBits bits) \
109*cdf0e10cSrcweir         : par( new t##Impl( parent->getContext(), Window::CreatePeer( parent, bits, unoName ), this ) ) \
110*cdf0e10cSrcweir     { \
111*cdf0e10cSrcweir         body;\
112*cdf0e10cSrcweir         if ( parent )\
113*cdf0e10cSrcweir             SetParent (parent);\
114*cdf0e10cSrcweir     } \
115*cdf0e10cSrcweir     t::t( Window *parent, ResId const& res) \
116*cdf0e10cSrcweir         : par( new t##Impl( parent->getContext(), Window::CreatePeer( parent, 0, unoName ), this ) ) \
117*cdf0e10cSrcweir     { \
118*cdf0e10cSrcweir         body;\
119*cdf0e10cSrcweir         setRes (res);\
120*cdf0e10cSrcweir         if (parent)\
121*cdf0e10cSrcweir             SetParent (parent);\
122*cdf0e10cSrcweir     }
123*cdf0e10cSrcweir #define IMPL_CONSTRUCTORS(t,par,unoName) IMPL_CONSTRUCTORS_BODY(t, par, unoName, )
124*cdf0e10cSrcweir #define IMPL_CONSTRUCTORS_2(t,win_par,other_par,unoName) \
125*cdf0e10cSrcweir     t::t( Context *context, const char *pId, sal_uInt32 nId ) \
126*cdf0e10cSrcweir         : win_par( new t##Impl( context, context->GetPeerHandle( pId, nId ), this ) ) \
127*cdf0e10cSrcweir         , other_par( new other_par##Impl( Window::GetPeer() ) ) \
128*cdf0e10cSrcweir     { \
129*cdf0e10cSrcweir     } \
130*cdf0e10cSrcweir     t::t( Window *parent, WinBits bits) \
131*cdf0e10cSrcweir         : win_par( new t##Impl( parent->getContext(), Window::CreatePeer( parent, bits, unoName ), this ) ) \
132*cdf0e10cSrcweir         , other_par( new other_par##Impl( Window::GetPeer() ) ) \
133*cdf0e10cSrcweir     { \
134*cdf0e10cSrcweir     }
135*cdf0e10cSrcweir 
136*cdf0e10cSrcweir #define IMPL_IMPL(t, parent) \
137*cdf0e10cSrcweir     class t##Impl : public parent##Impl \
138*cdf0e10cSrcweir     { \
139*cdf0e10cSrcweir     public: \
140*cdf0e10cSrcweir         t##Impl( Context *context, PeerHandle const& peer, Window *window ) \
141*cdf0e10cSrcweir             : parent##Impl( context, peer, window ) \
142*cdf0e10cSrcweir         { \
143*cdf0e10cSrcweir         } \
144*cdf0e10cSrcweir     };
145*cdf0e10cSrcweir 
146*cdf0e10cSrcweir 
147*cdf0e10cSrcweir } // namespace layout
148*cdf0e10cSrcweir 
149*cdf0e10cSrcweir #endif /* LAYOUT_VCL_WRAPPER_HXX */
150