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(vcl::Window* pParent, WinBits nBits ):
36 0 : SvTreeListBox(pParent, nBits)
37 : {
38 0 : bActiveFlag=false;
39 :
40 0 : vcl::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(bool bFlag)
57 : {
58 0 : bActiveFlag=bFlag;
59 0 : }
60 :
61 :
62 0 : void StructListBox::MouseButtonDown( const MouseEvent& rMEvt )
63 : {
64 0 : bActiveFlag=true;
65 0 : SvTreeListBox::MouseButtonDown(rMEvt);
66 0 : }
67 :
68 0 : void StructListBox::GetFocus()
69 : {
70 0 : bActiveFlag=true;
71 0 : SvTreeListBox::GetFocus();
72 0 : }
73 :
74 0 : void StructListBox::LoseFocus()
75 : {
76 0 : bActiveFlag=false;
77 0 : SvTreeListBox::LoseFocus();
78 0 : }
79 :
80 0 : extern "C" SAL_DLLPUBLIC_EXPORT vcl::Window* SAL_CALL makeStructListBox(vcl::Window *pParent, VclBuilder::stringmap &)
81 : {
82 0 : return new StructListBox(pParent, WB_BORDER);
83 : }
84 :
85 0 : StructPage::StructPage(vcl::Window* pParent):
86 : TabPage(pParent, "StructPage", "formula/ui/structpage.ui"),
87 : maImgEnd ( ModuleRes( BMP_STR_END ) ),
88 : maImgError ( ModuleRes( BMP_STR_ERROR ) ),
89 0 : pSelectedToken ( NULL )
90 : {
91 0 : get(m_pTlbStruct, "struct");
92 0 : Size aSize(LogicToPixel(Size(86, 162), MAP_APPFONT));
93 0 : m_pTlbStruct->set_height_request(aSize.Height());
94 0 : m_pTlbStruct->set_width_request(aSize.Width());
95 0 : m_pTlbStruct->SetStyle(m_pTlbStruct->GetStyle()|WB_HASLINES|WB_CLIPCHILDREN|
96 0 : WB_HASBUTTONS|WB_HSCROLL|WB_NOINITIALSELECTION);
97 :
98 0 : m_pTlbStruct->SetNodeDefaultImages();
99 0 : m_pTlbStruct->SetDefaultExpandedEntryBmp( Image( ModuleRes( BMP_STR_OPEN ) ) );
100 0 : m_pTlbStruct->SetDefaultCollapsedEntryBmp( Image( ModuleRes( BMP_STR_CLOSE ) ) );
101 :
102 :
103 0 : m_pTlbStruct->SetSelectHdl(LINK( this, StructPage, SelectHdl ) );
104 0 : }
105 :
106 0 : void StructPage::ClearStruct()
107 : {
108 0 : m_pTlbStruct->SetActiveFlag(false);
109 0 : m_pTlbStruct->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 : m_pTlbStruct->SetActiveFlag( false );
116 :
117 0 : SvTreeListEntry* pEntry = NULL;
118 0 : switch( nFlag )
119 : {
120 : case STRUCT_FOLDER:
121 0 : pEntry = m_pTlbStruct->InsertEntry( rText, pParent, false, nPos, pIFormulaToken );
122 0 : break;
123 : case STRUCT_END:
124 0 : pEntry = m_pTlbStruct->InsertStaticEntry( rText, maImgEnd, pParent, nPos, pIFormulaToken );
125 0 : break;
126 : case STRUCT_ERROR:
127 0 : pEntry = m_pTlbStruct->InsertStaticEntry( rText, maImgError, pParent, nPos, pIFormulaToken );
128 0 : break;
129 : }
130 :
131 0 : if( pEntry && pParent )
132 0 : m_pTlbStruct->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 = m_pTlbStruct->GetEntryText(pEntry);
141 0 : return aString;
142 : }
143 :
144 0 : SvTreeListEntry* StructPage::GetParent(SvTreeListEntry* pEntry) const
145 : {
146 0 : return m_pTlbStruct->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(m_pTlbStruct->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(m_pTlbStruct->GetActiveFlag())
171 : {
172 0 : if(pTlb==m_pTlbStruct)
173 : {
174 0 : SvTreeListEntry* pCurEntry=m_pTlbStruct->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 276 : } // formula
194 :
195 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|