1*50e6b072SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*50e6b072SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*50e6b072SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*50e6b072SAndrew Rist  * distributed with this work for additional information
6*50e6b072SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*50e6b072SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*50e6b072SAndrew Rist  * "License"); you may not use this file except in compliance
9*50e6b072SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*50e6b072SAndrew Rist  *
11*50e6b072SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*50e6b072SAndrew Rist  *
13*50e6b072SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*50e6b072SAndrew Rist  * software distributed under the License is distributed on an
15*50e6b072SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*50e6b072SAndrew Rist  * KIND, either express or implied.  See the License for the
17*50e6b072SAndrew Rist  * specific language governing permissions and limitations
18*50e6b072SAndrew Rist  * under the License.
19*50e6b072SAndrew Rist  *
20*50e6b072SAndrew Rist  *************************************************************/
21*50e6b072SAndrew Rist 
22*50e6b072SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef LAYOUT_CORE_LOCALIZED_STRING_HXX
25cdf0e10cSrcweir #define LAYOUT_CORE_LOCALIZED_STRING_HXX
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #include <com/sun/star/awt/XFixedText.hpp>
28cdf0e10cSrcweir #include <toolkit/awt/vclxwindow.hxx>
29cdf0e10cSrcweir 
30cdf0e10cSrcweir namespace layoutimpl
31cdf0e10cSrcweir {
32cdf0e10cSrcweir namespace css = ::com::sun::star;
33cdf0e10cSrcweir 
34cdf0e10cSrcweir // FIXME: misuse XFixedText interface for simple string
35cdf0e10cSrcweir class LocalizedString :	public css::awt::XFixedText
36cdf0e10cSrcweir                       , public VCLXWindow
37cdf0e10cSrcweir {
38cdf0e10cSrcweir public:
39cdf0e10cSrcweir     LocalizedString();
40cdf0e10cSrcweir 
41cdf0e10cSrcweir 	// css::uno::XInterface
42cdf0e10cSrcweir     css::uno::Any SAL_CALL queryInterface( css::uno::Type const& rType )
43cdf0e10cSrcweir         throw(css::uno::RuntimeException);
acquire()44cdf0e10cSrcweir     void SAL_CALL acquire() throw() { OWeakObject::acquire(); }
release()45cdf0e10cSrcweir     void SAL_CALL release() throw() { OWeakObject::release(); }
46cdf0e10cSrcweir 
47cdf0e10cSrcweir     // css::awt::XFixedText
48cdf0e10cSrcweir     void SAL_CALL setText( ::rtl::OUString const& s )
49cdf0e10cSrcweir         throw(css::uno::RuntimeException);
50cdf0e10cSrcweir     ::rtl::OUString SAL_CALL getText()
51cdf0e10cSrcweir         throw(css::uno::RuntimeException);
setAlignment(sal_Int16)52cdf0e10cSrcweir     void SAL_CALL setAlignment( sal_Int16 )
53cdf0e10cSrcweir         throw(css::uno::RuntimeException) { }
getAlignment()54cdf0e10cSrcweir     sal_Int16 SAL_CALL getAlignment()
55cdf0e10cSrcweir         throw(css::uno::RuntimeException) { return 0; }
56cdf0e10cSrcweir 
57cdf0e10cSrcweir     // css::awt::XLayoutConstrains
getMinimumSize()58cdf0e10cSrcweir     virtual css::awt::Size SAL_CALL getMinimumSize()
59cdf0e10cSrcweir         throw(css::uno::RuntimeException) { return css::awt::Size( 0, 0 ); }
getPreferredSize()60cdf0e10cSrcweir     css::awt::Size SAL_CALL getPreferredSize()
61cdf0e10cSrcweir         throw(css::uno::RuntimeException) { return getMinimumSize(); }
calcAdjustedSize(css::awt::Size const & size)62cdf0e10cSrcweir     css::awt::Size SAL_CALL calcAdjustedSize( css::awt::Size const& size )
63cdf0e10cSrcweir         throw(css::uno::RuntimeException) { return size; }
64cdf0e10cSrcweir 
65cdf0e10cSrcweir     static void ImplGetPropertyIds( std::list< sal_uInt16 > &ids );
GetPropertyIds(std::list<sal_uInt16> & ids)66cdf0e10cSrcweir     virtual void GetPropertyIds( std::list< sal_uInt16 > &ids )
67cdf0e10cSrcweir     { return ImplGetPropertyIds( ids ); }
68cdf0e10cSrcweir };
69cdf0e10cSrcweir 
70cdf0e10cSrcweir } // namespace layoutimpl
71cdf0e10cSrcweir 
72cdf0e10cSrcweir #endif /* LAYOUT_CORE_LOCALIZED_STRING_HXX */
73