Kaydet (Commit) aecda33a authored tarafından gt's avatar gt

#90370# Attribute Display uses FixedText instead of MultiLineEdit

üst ade36101
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* *
* $RCSfile: srchdlg.cxx,v $ * $RCSfile: srchdlg.cxx,v $
* *
* $Revision: 1.19 $ * $Revision: 1.20 $
* *
* last change: $Author: thb $ $Date: 2001-08-16 15:41:29 $ * last change: $Author: gt $ $Date: 2001-09-04 11:11:11 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
...@@ -171,14 +171,23 @@ SV_IMPL_VARARR(SrchAttrItemList, SearchAttrItem); ...@@ -171,14 +171,23 @@ SV_IMPL_VARARR(SrchAttrItemList, SearchAttrItem);
struct SearchDlg_Impl struct SearchDlg_Impl
{ {
FixedText aSearchFormats;
FixedText aReplaceFormats;
BOOL bMultiLineEdit : 1, BOOL bMultiLineEdit : 1,
bSaveToModule : 1, bSaveToModule : 1,
bFocusOnSearch : 1; bFocusOnSearch : 1;
USHORT* pRanges; USHORT* pRanges;
Timer aSelectionTimer; Timer aSelectionTimer;
SearchDlg_Impl() : SearchDlg_Impl( Window* pParent ) :
bMultiLineEdit( FALSE ), bSaveToModule( TRUE ), bFocusOnSearch( TRUE ), pRanges( NULL ) {} aSearchFormats( pParent, ResId( FT_SEARCH_FORMATS ) ),
aReplaceFormats( pParent, ResId( FT_REPLACE_FORMATS ) ),
bMultiLineEdit( FALSE ),
bSaveToModule( TRUE ),
bFocusOnSearch( TRUE ),
pRanges( NULL )
{}
~SearchDlg_Impl() { delete pRanges; } ~SearchDlg_Impl() { delete pRanges; }
}; };
...@@ -364,13 +373,17 @@ SvxSearchDialog::SvxSearchDialog( Window* pParent, SfxBindings& rBind ) : ...@@ -364,13 +373,17 @@ SvxSearchDialog::SvxSearchDialog( Window* pParent, SfxBindings& rBind ) :
aSearchLB ( this, ResId( ED_SEARCH ) ), aSearchLB ( this, ResId( ED_SEARCH ) ),
aSearchTmplLB ( this, ResId( LB_SEARCH ) ), aSearchTmplLB ( this, ResId( LB_SEARCH ) ),
aSearchAttrText ( this, ResId( FT_SEARCH_ATTR ) ), aSearchAttrText ( this, ResId( FT_SEARCH_ATTR ) ),
#if SUPD < 641 || defined( GT_DEBUG )
aSearchFormatsED( this, ResId( ED_SEARCH_FORMATS ) ), aSearchFormatsED( this, ResId( ED_SEARCH_FORMATS ) ),
#endif
aReplaceText ( this, ResId( FT_REPLACE ) ), aReplaceText ( this, ResId( FT_REPLACE ) ),
aReplaceLB ( this, ResId( ED_REPLACE ) ), aReplaceLB ( this, ResId( ED_REPLACE ) ),
aReplaceTmplLB ( this, ResId( LB_REPLACE ) ), aReplaceTmplLB ( this, ResId( LB_REPLACE ) ),
aReplaceAttrText( this, ResId( FT_REPLACE_ATTR ) ), aReplaceAttrText( this, ResId( FT_REPLACE_ATTR ) ),
#if SUPD < 641 || defined( GT_DEBUG )
aReplaceFormatsED( this, ResId( ED_REPLACE_FORMATS ) ), aReplaceFormatsED( this, ResId( ED_REPLACE_FORMATS ) ),
#endif
aSearchAllBtn ( this, ResId( BTN_SEARCH_ALL ) ), aSearchAllBtn ( this, ResId( BTN_SEARCH_ALL ) ),
aSearchBtn ( this, ResId( BTN_SEARCH ) ), aSearchBtn ( this, ResId( BTN_SEARCH ) ),
...@@ -435,6 +448,11 @@ SvxSearchDialog::SvxSearchDialog( Window* pParent, SfxBindings& rBind ) : ...@@ -435,6 +448,11 @@ SvxSearchDialog::SvxSearchDialog( Window* pParent, SfxBindings& rBind ) :
nTransliterationFlags ( 0x00000000 ) nTransliterationFlags ( 0x00000000 )
{ {
// temporary to avoid incompatibility
#if SUPD < 641 || defined( GT_DEBUG )
aSearchFormatsED.Hide();
aReplaceFormatsED.Hide();
Wallpaper aBackground = GetBackground(); Wallpaper aBackground = GetBackground();
aSearchFormatsED.SetBackground( aBackground ); aSearchFormatsED.SetBackground( aBackground );
aReplaceFormatsED.SetBackground( aBackground ); aReplaceFormatsED.SetBackground( aBackground );
...@@ -442,7 +460,8 @@ SvxSearchDialog::SvxSearchDialog( Window* pParent, SfxBindings& rBind ) : ...@@ -442,7 +460,8 @@ SvxSearchDialog::SvxSearchDialog( Window* pParent, SfxBindings& rBind ) :
aSearchFormatsED.SetFont( pInfo->GetFont() ); aSearchFormatsED.SetFont( pInfo->GetFont() );
aReplaceFormatsED.SetFont( pInfo->GetFont() ); aReplaceFormatsED.SetFont( pInfo->GetFont() );
delete pInfo; delete pInfo;
pImpl = new SearchDlg_Impl; #endif
pImpl = new SearchDlg_Impl( this );
pImpl->aSelectionTimer.SetTimeout( 500 ); pImpl->aSelectionTimer.SetTimeout( 500 );
pImpl->aSelectionTimer.SetTimeoutHdl( pImpl->aSelectionTimer.SetTimeoutHdl(
LINK( this, SvxSearchDialog, TimeoutHdl_Impl ) ); LINK( this, SvxSearchDialog, TimeoutHdl_Impl ) );
...@@ -450,9 +469,13 @@ SvxSearchDialog::SvxSearchDialog( Window* pParent, SfxBindings& rBind ) : ...@@ -450,9 +469,13 @@ SvxSearchDialog::SvxSearchDialog( Window* pParent, SfxBindings& rBind ) :
EnableControls_Impl( 0 ); EnableControls_Impl( 0 );
#ifdef OS2 #ifdef OS2
#if SUPD < 641 || defined( GT_DEBUG )
aSearchFormatsED.Hide(); aSearchFormatsED.Hide();
#endif
aSearchAttrText.Show(); aSearchAttrText.Show();
#if SUPD < 641 || defined( GT_DEBUG )
aReplaceFormatsED.Hide(); aReplaceFormatsED.Hide();
#endif
aReplaceAttrText.Show(); aReplaceAttrText.Show();
#endif #endif
// alten Text des aWordBtn's merken // alten Text des aWordBtn's merken
...@@ -623,9 +646,10 @@ void SvxSearchDialog::InitControls_Impl() ...@@ -623,9 +646,10 @@ void SvxSearchDialog::InitControls_Impl()
Link aLink = LINK( this, SvxSearchDialog, FocusHdl_Impl ); Link aLink = LINK( this, SvxSearchDialog, FocusHdl_Impl );
aSearchLB.SetGetFocusHdl( aLink ); aSearchLB.SetGetFocusHdl( aLink );
aSearchFormatsED.SetGetFocusHdl( aLink ); pImpl->aSearchFormats.SetGetFocusHdl( aLink );
aReplaceLB.SetGetFocusHdl( aLink ); aReplaceLB.SetGetFocusHdl( aLink );
aReplaceFormatsED.SetGetFocusHdl( aLink ); pImpl->aReplaceFormats.SetGetFocusHdl( aLink );
aLink = LINK( this, SvxSearchDialog, LoseFocusHdl_Impl ); aLink = LINK( this, SvxSearchDialog, LoseFocusHdl_Impl );
aSearchLB.SetLoseFocusHdl( aLink ); aSearchLB.SetLoseFocusHdl( aLink );
...@@ -673,9 +697,9 @@ void SvxSearchDialog::Init_Impl( int bSearchPattern ) ...@@ -673,9 +697,9 @@ void SvxSearchDialog::Init_Impl( int bSearchPattern )
if ( !pImpl->bMultiLineEdit ) if ( !pImpl->bMultiLineEdit )
{ {
aSearchFormatsED.Hide(); pImpl->aSearchFormats.Hide();
aSearchAttrText.Show(); aSearchAttrText.Show();
aReplaceFormatsED.Hide(); pImpl->aReplaceFormats.Hide();
aReplaceAttrText.Show(); aReplaceAttrText.Show();
} }
else else
...@@ -684,14 +708,14 @@ void SvxSearchDialog::Init_Impl( int bSearchPattern ) ...@@ -684,14 +708,14 @@ void SvxSearchDialog::Init_Impl( int bSearchPattern )
aSearchAttrText.Hide(); aSearchAttrText.Hide();
if ( aText.Len() ) if ( aText.Len() )
aSearchFormatsED.SetText( aText ); pImpl->aSearchFormats.SetText( aText );
aSearchFormatsED.Show(); pImpl->aSearchFormats.Show();
aText = aReplaceAttrText.GetText(); aText = aReplaceAttrText.GetText();
aReplaceAttrText.Hide(); aReplaceAttrText.Hide();
if ( aText.Len() ) if ( aText.Len() )
aReplaceFormatsED.SetText( aText ); pImpl->aReplaceFormats.SetText( aText );
aReplaceFormatsED.Show(); pImpl->aReplaceFormats.Show();
} }
#endif #endif
...@@ -930,7 +954,7 @@ void SvxSearchDialog::Init_Impl( int bSearchPattern ) ...@@ -930,7 +954,7 @@ void SvxSearchDialog::Init_Impl( int bSearchPattern )
String aSrchAttrTxt; String aSrchAttrTxt;
if ( pImpl->bMultiLineEdit ) if ( pImpl->bMultiLineEdit )
aSrchAttrTxt = aSearchFormatsED.GetText(); aSrchAttrTxt = pImpl->aSearchFormats.GetText();
else else
aSrchAttrTxt = aSearchAttrText.GetText(); aSrchAttrTxt = aSearchAttrText.GetText();
...@@ -954,7 +978,7 @@ void SvxSearchDialog::Init_Impl( int bSearchPattern ) ...@@ -954,7 +978,7 @@ void SvxSearchDialog::Init_Impl( int bSearchPattern )
} }
if ( ( !pImpl->bMultiLineEdit && aSearchAttrText.GetText().Len() ) || if ( ( !pImpl->bMultiLineEdit && aSearchAttrText.GetText().Len() ) ||
( pImpl->bMultiLineEdit && aSearchFormatsED.GetText().Len() ) ) ( pImpl->bMultiLineEdit && pImpl->aSearchFormats.GetText().Len() ) )
EnableControl_Impl( &aNoFormatBtn ); EnableControl_Impl( &aNoFormatBtn );
else else
aNoFormatBtn.Disable(); aNoFormatBtn.Disable();
...@@ -1012,7 +1036,7 @@ void SvxSearchDialog::InitAttrList_Impl( const SfxItemSet* pSSet, ...@@ -1012,7 +1036,7 @@ void SvxSearchDialog::InitAttrList_Impl( const SfxItemSet* pSSet,
if ( !pImpl->bMultiLineEdit ) if ( !pImpl->bMultiLineEdit )
aSearchAttrText.SetText( BuildAttrText_Impl( aDesc, TRUE ) ); aSearchAttrText.SetText( BuildAttrText_Impl( aDesc, TRUE ) );
else else
aSearchFormatsED.SetText( BuildAttrText_Impl( aDesc, TRUE ) ); pImpl->aSearchFormats.SetText( BuildAttrText_Impl( aDesc, TRUE ) );
if ( aDesc.Len() ) if ( aDesc.Len() )
bFormat |= TRUE; bFormat |= TRUE;
...@@ -1031,7 +1055,7 @@ void SvxSearchDialog::InitAttrList_Impl( const SfxItemSet* pSSet, ...@@ -1031,7 +1055,7 @@ void SvxSearchDialog::InitAttrList_Impl( const SfxItemSet* pSSet,
if ( !pImpl->bMultiLineEdit ) if ( !pImpl->bMultiLineEdit )
aReplaceAttrText.SetText( BuildAttrText_Impl( aDesc, FALSE ) ); aReplaceAttrText.SetText( BuildAttrText_Impl( aDesc, FALSE ) );
else else
aReplaceFormatsED.SetText( BuildAttrText_Impl( aDesc, FALSE ) ); pImpl->aReplaceFormats.SetText( BuildAttrText_Impl( aDesc, FALSE ) );
if ( aDesc.Len() ) if ( aDesc.Len() )
bFormat |= TRUE; bFormat |= TRUE;
...@@ -1301,7 +1325,7 @@ IMPL_LINK( SvxSearchDialog, ModifyHdl_Impl, ComboBox *, pEd ) ...@@ -1301,7 +1325,7 @@ IMPL_LINK( SvxSearchDialog, ModifyHdl_Impl, ComboBox *, pEd )
if ( !pImpl->bMultiLineEdit ) if ( !pImpl->bMultiLineEdit )
nTxtLen = aSearchAttrText.GetText().Len(); nTxtLen = aSearchAttrText.GetText().Len();
else else
nTxtLen = aSearchFormatsED.GetText().Len(); nTxtLen = pImpl->aSearchFormats.GetText().Len();
if ( nLBTxtLen || nTxtLen ) if ( nLBTxtLen || nTxtLen )
{ {
...@@ -1379,8 +1403,8 @@ IMPL_LINK( SvxSearchDialog, TemplateHdl_Impl, Button *, EMPTYARG ) ...@@ -1379,8 +1403,8 @@ IMPL_LINK( SvxSearchDialog, TemplateHdl_Impl, Button *, EMPTYARG )
} }
else else
{ {
aSearchFormatsED.SetText( sDesc ); pImpl->aSearchFormats.SetText( sDesc );
aReplaceFormatsED.SetText( sDesc ); pImpl->aReplaceFormats.SetText( sDesc );
} }
} }
aFormatBtn.Disable(); aFormatBtn.Disable();
...@@ -1408,8 +1432,8 @@ IMPL_LINK( SvxSearchDialog, TemplateHdl_Impl, Button *, EMPTYARG ) ...@@ -1408,8 +1432,8 @@ IMPL_LINK( SvxSearchDialog, TemplateHdl_Impl, Button *, EMPTYARG )
} }
else else
{ {
aSearchFormatsED.SetText( BuildAttrText_Impl( sDesc, TRUE ) ); pImpl->aSearchFormats.SetText( BuildAttrText_Impl( sDesc, TRUE ) );
aReplaceFormatsED.SetText( BuildAttrText_Impl( sDesc, FALSE ) ); pImpl->aReplaceFormats.SetText( BuildAttrText_Impl( sDesc, FALSE ) );
} }
EnableControl_Impl( &aFormatBtn ); EnableControl_Impl( &aFormatBtn );
...@@ -1729,9 +1753,9 @@ IMPL_LINK( SvxSearchDialog, FocusHdl_Impl, Control *, pCtrl ) ...@@ -1729,9 +1753,9 @@ IMPL_LINK( SvxSearchDialog, FocusHdl_Impl, Control *, pCtrl )
if ( !pImpl->bMultiLineEdit ) if ( !pImpl->bMultiLineEdit )
nTxtLen = aSearchAttrText.GetText().Len(); nTxtLen = aSearchAttrText.GetText().Len();
else else
nTxtLen = aSearchFormatsED.GetText().Len(); nTxtLen = pImpl->aSearchFormats.GetText().Len();
if ( pCtrl == &aSearchLB || pCtrl == &aSearchFormatsED ) if ( pCtrl == &aSearchLB || pCtrl == &pImpl->aSearchFormats )
{ {
if ( pCtrl->HasChildPathFocus() ) if ( pCtrl->HasChildPathFocus() )
pImpl->bFocusOnSearch = TRUE; pImpl->bFocusOnSearch = TRUE;
...@@ -1751,7 +1775,7 @@ IMPL_LINK( SvxSearchDialog, FocusHdl_Impl, Control *, pCtrl ) ...@@ -1751,7 +1775,7 @@ IMPL_LINK( SvxSearchDialog, FocusHdl_Impl, Control *, pCtrl )
bSearch = FALSE; bSearch = FALSE;
if ( ( !pImpl->bMultiLineEdit && aReplaceAttrText.GetText().Len() ) || if ( ( !pImpl->bMultiLineEdit && aReplaceAttrText.GetText().Len() ) ||
( pImpl->bMultiLineEdit && aReplaceFormatsED.GetText().Len() ) ) ( pImpl->bMultiLineEdit && pImpl->aReplaceFormats.GetText().Len() ) )
EnableControl_Impl( &aNoFormatBtn ); EnableControl_Impl( &aNoFormatBtn );
else else
aNoFormatBtn.Disable(); aNoFormatBtn.Disable();
...@@ -1875,7 +1899,7 @@ IMPL_LINK( SvxSearchDialog, NoFormatHdl_Impl, Button *, EMPTYARG ) ...@@ -1875,7 +1899,7 @@ IMPL_LINK( SvxSearchDialog, NoFormatHdl_Impl, Button *, EMPTYARG )
if ( !pImpl->bMultiLineEdit ) if ( !pImpl->bMultiLineEdit )
aSearchAttrText.SetText( String() ); aSearchAttrText.SetText( String() );
else else
aSearchFormatsED.SetText( String() ); pImpl->aSearchFormats.SetText( String() );
pSearchList->Clear(); pSearchList->Clear();
} }
else else
...@@ -1883,7 +1907,7 @@ IMPL_LINK( SvxSearchDialog, NoFormatHdl_Impl, Button *, EMPTYARG ) ...@@ -1883,7 +1907,7 @@ IMPL_LINK( SvxSearchDialog, NoFormatHdl_Impl, Button *, EMPTYARG )
if ( !pImpl->bMultiLineEdit ) if ( !pImpl->bMultiLineEdit )
aReplaceAttrText.SetText( String() ); aReplaceAttrText.SetText( String() );
else else
aReplaceFormatsED.SetText( String() ); pImpl->aReplaceFormats.SetText( String() );
pReplaceList->Clear(); pReplaceList->Clear();
} }
pImpl->bSaveToModule = FALSE; pImpl->bSaveToModule = FALSE;
...@@ -1937,7 +1961,7 @@ void SvxSearchDialog::GetSearchItems( SfxItemSet& rSet ) ...@@ -1937,7 +1961,7 @@ void SvxSearchDialog::GetSearchItems( SfxItemSet& rSet )
if ( !pImpl->bMultiLineEdit ) if ( !pImpl->bMultiLineEdit )
nLen = aSearchAttrText.GetText().Len(); nLen = aSearchAttrText.GetText().Len();
else else
nLen = aSearchFormatsED.GetText().Len(); nLen = pImpl->aSearchFormats.GetText().Len();
if ( nLen && pSearchList ) if ( nLen && pSearchList )
pSearchList->Get( rSet ); pSearchList->Get( rSet );
...@@ -1952,7 +1976,7 @@ void SvxSearchDialog::GetReplaceItems( SfxItemSet& rSet ) ...@@ -1952,7 +1976,7 @@ void SvxSearchDialog::GetReplaceItems( SfxItemSet& rSet )
if ( !pImpl->bMultiLineEdit ) if ( !pImpl->bMultiLineEdit )
nLen = aReplaceAttrText.GetText().Len(); nLen = aReplaceAttrText.GetText().Len();
else else
nLen = aReplaceFormatsED.GetText().Len(); nLen = pImpl->aReplaceFormats.GetText().Len();
if ( nLen && pReplaceList ) if ( nLen && pReplaceList )
pReplaceList->Get( rSet ); pReplaceList->Get( rSet );
...@@ -2039,7 +2063,7 @@ void SvxSearchDialog::PaintAttrText_Impl() ...@@ -2039,7 +2063,7 @@ void SvxSearchDialog::PaintAttrText_Impl()
if ( !pImpl->bMultiLineEdit ) if ( !pImpl->bMultiLineEdit )
aSearchAttrText.SetText( aDesc ); aSearchAttrText.SetText( aDesc );
else else
aSearchFormatsED.SetText( aDesc ); pImpl->aSearchFormats.SetText( aDesc );
FocusHdl_Impl( &aSearchLB ); FocusHdl_Impl( &aSearchLB );
} }
else else
...@@ -2047,7 +2071,7 @@ void SvxSearchDialog::PaintAttrText_Impl() ...@@ -2047,7 +2071,7 @@ void SvxSearchDialog::PaintAttrText_Impl()
if ( !pImpl->bMultiLineEdit ) if ( !pImpl->bMultiLineEdit )
aReplaceAttrText.SetText( aDesc ); aReplaceAttrText.SetText( aDesc );
else else
aReplaceFormatsED.SetText( aDesc ); pImpl->aReplaceFormats.SetText( aDesc );
FocusHdl_Impl( &aReplaceLB ); FocusHdl_Impl( &aReplaceLB );
} }
} }
......
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* *
* $RCSfile: srchdlg.hrc,v $ * $RCSfile: srchdlg.hrc,v $
* *
* $Revision: 1.4 $ * $Revision: 1.5 $
* *
* last change: $Author: fme $ $Date: 2001-05-15 11:46:06 $ * last change: $Author: gt $ $Date: 2001-09-04 11:11:11 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
...@@ -113,6 +113,8 @@ ...@@ -113,6 +113,8 @@
#define ED_SEARCH_FORMATS 60 #define ED_SEARCH_FORMATS 60
#define ED_REPLACE_FORMATS 61 #define ED_REPLACE_FORMATS 61
#define FT_SEARCH_FORMATS 62
#define FT_REPLACE_FORMATS 63
#endif #endif
......
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* *
* $RCSfile: srchdlg.src,v $ * $RCSfile: srchdlg.src,v $
* *
* $Revision: 1.33 $ * $Revision: 1.34 $
* *
* last change: $Author: kz $ $Date: 2001-07-14 03:35:51 $ * last change: $Author: gt $ $Date: 2001-09-04 11:11:11 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
...@@ -234,6 +234,7 @@ ModelessDialog RID_SVXDLG_SEARCH ...@@ -234,6 +234,7 @@ ModelessDialog RID_SVXDLG_SEARCH
WordBreak = TRUE ; WordBreak = TRUE ;
Hide = TRUE ; Hide = TRUE ;
}; };
#if SUPD < 641 || defined( GT_DEBUG )
MultiLineEdit ED_SEARCH_FORMATS MultiLineEdit ED_SEARCH_FORMATS
{ {
Pos = MAP_APPFONT ( 10 , 24 ) ; Pos = MAP_APPFONT ( 10 , 24 ) ;
...@@ -242,6 +243,13 @@ ModelessDialog RID_SVXDLG_SEARCH ...@@ -242,6 +243,13 @@ ModelessDialog RID_SVXDLG_SEARCH
IgnoreTab = TRUE ; IgnoreTab = TRUE ;
Hide = TRUE ; Hide = TRUE ;
}; };
#endif
FixedText FT_SEARCH_FORMATS
{
Pos = MAP_APPFONT ( 10 , 24 ) ;
Size = MAP_APPFONT ( 171 , 16 ) ;
Hide = TRUE ;
};
FixedText FT_REPLACE FixedText FT_REPLACE
{ {
Pos = MAP_APPFONT ( 6 , 49 ) ; Pos = MAP_APPFONT ( 6 , 49 ) ;
...@@ -295,6 +303,7 @@ ModelessDialog RID_SVXDLG_SEARCH ...@@ -295,6 +303,7 @@ ModelessDialog RID_SVXDLG_SEARCH
WordBreak = TRUE ; WordBreak = TRUE ;
Hide = TRUE ; Hide = TRUE ;
}; };
#if SUPD < 641 || defined( GT_DEBUG )
MultiLineEdit ED_REPLACE_FORMATS MultiLineEdit ED_REPLACE_FORMATS
{ {
Pos = MAP_APPFONT ( 10 , 68 ) ; Pos = MAP_APPFONT ( 10 , 68 ) ;
...@@ -303,6 +312,13 @@ ModelessDialog RID_SVXDLG_SEARCH ...@@ -303,6 +312,13 @@ ModelessDialog RID_SVXDLG_SEARCH
IgnoreTab = TRUE ; IgnoreTab = TRUE ;
Hide = TRUE ; Hide = TRUE ;
}; };
#endif
FixedText FT_REPLACE_FORMATS
{
Pos = MAP_APPFONT ( 10 , 68 ) ;
Size = MAP_APPFONT ( 171 , 16 ) ;
Hide = TRUE ;
};
CheckBox BTN_CELLS CheckBox BTN_CELLS
{ {
Pos = MAP_APPFONT ( 12 , 103 ) ; Pos = MAP_APPFONT ( 12 , 103 ) ;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment