Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include <svl/zforlist.hxx>
21 : #include <svl/stritem.hxx>
22 : #include "svtools/treelistentry.hxx"
23 :
24 : #include "structpg.hxx"
25 : #include "formdlgs.hrc"
26 : #include "formula/formdata.hxx"
27 : #include "formula/formula.hxx"
28 : #include "ModuleHelper.hxx"
29 : #include "formula/IFunctionDescription.hxx"
30 : #include "ForResId.hrc"
31 :
32 :
33 : namespace formula
34 : {
35 0 : StructListBox::StructListBox(Window* pParent, const ResId& rResId ):
36 0 : SvTreeListBox(pParent,rResId )
37 : {
38 0 : bActiveFlag=sal_False;
39 :
40 0 : Font aFont( GetFont() );
41 0 : Size aSize = aFont.GetSize();
42 0 : aSize.Height() -= 2;
43 0 : aFont.SetSize( aSize );
44 0 : SetFont( aFont );
45 0 : }
46 :
47 0 : SvTreeListEntry* StructListBox::InsertStaticEntry(
48 : const OUString& rText,
49 : const Image& rEntryImg,
50 : SvTreeListEntry* pParent, sal_uLong nPos, IFormulaToken* pToken )
51 : {
52 0 : SvTreeListEntry* pEntry = InsertEntry( rText, rEntryImg, rEntryImg, pParent, false, nPos, pToken );
53 0 : return pEntry;
54 : }
55 :
56 0 : void StructListBox::SetActiveFlag(sal_Bool bFlag)
57 : {
58 0 : bActiveFlag=bFlag;
59 0 : }
60 :
61 0 : sal_Bool StructListBox::GetActiveFlag()
62 : {
63 0 : return bActiveFlag;
64 : }
65 :
66 0 : void StructListBox::MouseButtonDown( const MouseEvent& rMEvt )
67 : {
68 0 : bActiveFlag=sal_True;
69 0 : SvTreeListBox::MouseButtonDown(rMEvt);
70 0 : }
71 :
72 0 : void StructListBox::GetFocus()
73 : {
74 0 : bActiveFlag=sal_True;
75 0 : SvTreeListBox::GetFocus();
76 0 : }
77 :
78 0 : void StructListBox::LoseFocus()
79 : {
80 0 : bActiveFlag=sal_False;
81 0 : SvTreeListBox::LoseFocus();
82 0 : }
83 :
84 :
85 :
86 0 : StructPage::StructPage(Window* pParent):
87 : TabPage(pParent,ModuleRes(RID_FORMULATAB_STRUCT)),
88 : aFtStruct ( this, ModuleRes( FT_STRUCT ) ),
89 : aTlbStruct ( this, ModuleRes( TLB_STRUCT ) ),
90 : maImgEnd ( ModuleRes( BMP_STR_END ) ),
91 : maImgError ( ModuleRes( BMP_STR_ERROR ) ),
92 0 : pSelectedToken ( NULL )
93 : {
94 0 : aTlbStruct.SetStyle(aTlbStruct.GetStyle()|WB_HASLINES|WB_CLIPCHILDREN|
95 0 : WB_HASBUTTONS|WB_HSCROLL|WB_NOINITIALSELECTION);
96 :
97 0 : aTlbStruct.SetNodeDefaultImages();
98 0 : aTlbStruct.SetDefaultExpandedEntryBmp( Image( ModuleRes( BMP_STR_OPEN ) ) );
99 0 : aTlbStruct.SetDefaultCollapsedEntryBmp( Image( ModuleRes( BMP_STR_CLOSE ) ) );
100 :
101 0 : FreeResource();
102 :
103 0 : aTlbStruct.SetSelectHdl(LINK( this, StructPage, SelectHdl ) );
104 0 : }
105 :
106 0 : void StructPage::ClearStruct()
107 : {
108 0 : aTlbStruct.SetActiveFlag(sal_False);
109 0 : aTlbStruct.Clear();
110 0 : }
111 :
112 0 : SvTreeListEntry* StructPage::InsertEntry( const OUString& rText, SvTreeListEntry* pParent,
113 : sal_uInt16 nFlag,sal_uLong nPos,IFormulaToken* pIFormulaToken)
114 : {
115 0 : aTlbStruct.SetActiveFlag( sal_False );
116 :
117 0 : SvTreeListEntry* pEntry = NULL;
118 0 : switch( nFlag )
119 : {
120 : case STRUCT_FOLDER:
121 0 : pEntry = aTlbStruct.InsertEntry( rText, pParent, false, nPos, pIFormulaToken );
122 0 : break;
123 : case STRUCT_END:
124 0 : pEntry = aTlbStruct.InsertStaticEntry( rText, maImgEnd, pParent, nPos, pIFormulaToken );
125 0 : break;
126 : case STRUCT_ERROR:
127 0 : pEntry = aTlbStruct.InsertStaticEntry( rText, maImgError, pParent, nPos, pIFormulaToken );
128 0 : break;
129 : }
130 :
131 0 : if( pEntry && pParent )
132 0 : aTlbStruct.Expand( pParent );
133 0 : return pEntry;
134 : }
135 :
136 0 : OUString StructPage::GetEntryText(SvTreeListEntry* pEntry) const
137 : {
138 0 : OUString aString;
139 0 : if(pEntry!=NULL)
140 0 : aString = aTlbStruct.GetEntryText(pEntry);
141 0 : return aString;
142 : }
143 :
144 0 : SvTreeListEntry* StructPage::GetParent(SvTreeListEntry* pEntry) const
145 : {
146 0 : return aTlbStruct.GetParent(pEntry);
147 : }
148 0 : IFormulaToken* StructPage::GetFunctionEntry(SvTreeListEntry* pEntry)
149 : {
150 0 : if(pEntry!=NULL)
151 : {
152 0 : IFormulaToken * pToken=(IFormulaToken *)pEntry->GetUserData();
153 0 : if(pToken!=NULL)
154 : {
155 0 : if ( !(pToken->isFunction() || pToken->getArgumentCount() > 1 ) )
156 : {
157 0 : return GetFunctionEntry(aTlbStruct.GetParent(pEntry));
158 : }
159 : else
160 : {
161 0 : return pToken;
162 : }
163 : }
164 : }
165 0 : return NULL;
166 : }
167 :
168 0 : IMPL_LINK( StructPage, SelectHdl, SvTreeListBox*, pTlb )
169 : {
170 0 : if(aTlbStruct.GetActiveFlag())
171 : {
172 0 : if(pTlb==&aTlbStruct)
173 : {
174 0 : SvTreeListEntry* pCurEntry=aTlbStruct.GetCurEntry();
175 0 : if(pCurEntry!=NULL)
176 : {
177 0 : pSelectedToken=(IFormulaToken *)pCurEntry->GetUserData();
178 0 : if(pSelectedToken!=NULL)
179 : {
180 0 : if ( !(pSelectedToken->isFunction() || pSelectedToken->getArgumentCount() > 1) )
181 : {
182 0 : pSelectedToken = GetFunctionEntry(pCurEntry);
183 : }
184 : }
185 : }
186 : }
187 :
188 0 : aSelLink.Call(this);
189 : }
190 0 : return 0;
191 : }
192 :
193 : } // formula
194 :
195 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|