| scuitphfedit.cxx (b3f79822) | scuitphfedit.cxx (0deba7fb) |
|---|---|
| 1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance --- 152 unchanged lines hidden (view full) --- 161 pt2 = aFtRight.GetPosPixel(); 162 aFtLeft.SetPosPixel(pt2); 163 aFtRight.SetPosPixel(pt1); 164 } 165 aWndLeft. SetFont( aPatAttr ); 166 aWndCenter. SetFont( aPatAttr ); 167 aWndRight. SetFont( aPatAttr ); 168 | 1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance --- 152 unchanged lines hidden (view full) --- 161 pt2 = aFtRight.GetPosPixel(); 162 aFtLeft.SetPosPixel(pt2); 163 aFtRight.SetPosPixel(pt1); 164 } 165 aWndLeft. SetFont( aPatAttr ); 166 aWndCenter. SetFont( aPatAttr ); 167 aWndRight. SetFont( aPatAttr ); 168 |
| 169 //IAccessibility2 Implementation 2009----- 170 aWndLeft.SetObjectSelectHdl( LINK(this,ScHFEditPage,ObjectSelectHdl) ); 171 aWndCenter.SetObjectSelectHdl( LINK(this,ScHFEditPage,ObjectSelectHdl) ); 172 aWndRight.SetObjectSelectHdl( LINK(this,ScHFEditPage,ObjectSelectHdl) ); 173 aBtnText.SetAccessibleRelationMemberOf( &maFtCustomHF ); 174 aBtnFile.SetAccessibleRelationMemberOf( &maFtCustomHF ); 175 aBtnTable.SetAccessibleRelationMemberOf( &maFtCustomHF ); 176 aBtnPage.SetAccessibleRelationMemberOf( &maFtCustomHF ); 177 aBtnLastPage.SetAccessibleRelationMemberOf( &maFtCustomHF ); 178 aBtnDate.SetAccessibleRelationMemberOf( &maFtCustomHF ); 179 aBtnTime.SetAccessibleRelationMemberOf( &maFtCustomHF ); 180 //-----IAccessibility2 Implementation 2009 |
|
| 169 FillCmdArr(); 170 171 aWndLeft.GrabFocus(); 172 173 InitPreDefinedList(); 174 175 FreeResource(); 176} | 181 FillCmdArr(); 182 183 aWndLeft.GrabFocus(); 184 185 InitPreDefinedList(); 186 187 FreeResource(); 188} |
| 189 //IAccessibility2 Implementation 2009----- 190 IMPL_LINK( ScHFEditPage, ObjectSelectHdl, ScEditWindow*, pEdit ) 191 { 192 (void)pEdit; 193 aBtnText.GrabFocus(); 194 return NULL; 195 } 196 //-----IAccessibility2 Implementation 2009 |
|
| 177 178// ----------------------------------------------------------------------- 179 180__EXPORT ScHFEditPage::~ScHFEditPage() 181{ 182} 183 184void ScHFEditPage::SetNumType(SvxNumType eNumType) --- 813 unchanged lines hidden --- | 197 198// ----------------------------------------------------------------------- 199 200__EXPORT ScHFEditPage::~ScHFEditPage() 201{ 202} 203 204void ScHFEditPage::SetNumType(SvxNumType eNumType) --- 813 unchanged lines hidden --- |