1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 
28 #ifndef _CONTROLCOMMANDRESULT_HXX_
29 #define _CONTROLCOMMANDRESULT_HXX_
30 
31 //------------------------------------------------------------------------
32 // includes
33 //------------------------------------------------------------------------
34 
35 #include <sal/types.h>
36 #include <com/sun/star/uno/Any.hxx>
37 #include <rtl/ustring.hxx>
38 
39 //---------------------------------------------
40 // declaration
41 //---------------------------------------------
42 
43 class CControlCommandResult
44 {
45 public:
46     CControlCommandResult( sal_Bool bResult = sal_False ) :
47         m_bResult( bResult )
48     {
49     }
50 
51     virtual ~CControlCommandResult( )
52     {
53     }
54 
55     sal_Bool SAL_CALL hasResult( ) const
56     {
57         return m_bResult;
58     }
59 
60 private:
61     sal_Bool m_bResult;
62 };
63 
64 //---------------------------------------------
65 //
66 //---------------------------------------------
67 
68 class CValueCommandResult : public CControlCommandResult
69 {
70 public:
71     CValueCommandResult( sal_Bool bResult, const ::com::sun::star::uno::Any& aValue ) :
72         CControlCommandResult( bResult ),
73         m_aValue( aValue )
74     {
75     }
76 
77     ::com::sun::star::uno::Any SAL_CALL getValue( ) const
78     {
79         return m_aValue;
80     }
81 
82 private:
83     ::com::sun::star::uno::Any m_aValue;
84 };
85 
86 //---------------------------------------------
87 //
88 //---------------------------------------------
89 
90 class CLabelCommandResult : public CControlCommandResult
91 {
92 public:
93     CLabelCommandResult( sal_Bool bResult, const rtl::OUString& aLabel ) :
94         CControlCommandResult( bResult ),
95         m_aLabel( aLabel )
96     {
97     }
98 
99     rtl::OUString SAL_CALL getLabel( ) const
100     {
101         return m_aLabel;
102     }
103 
104 private:
105     rtl::OUString m_aLabel;
106 };
107 
108 #endif
109