Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
5fb5cf97
Kaydet (Commit)
5fb5cf97
authored
Eki 08, 2012
tarafından
Tor Lillqvist
Kaydeden (comit)
Tor Lillqvist
Eki 08, 2012
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
De-duplicate harder
Change-Id: Ie319c98cc6c7551f6e1e5ba41d8bc2090d23e671
üst
46caf0e0
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
46 additions
and
46 deletions
+46
-46
scdlgfact.cxx
sc/source/ui/attrdlg/scdlgfact.cxx
+21
-21
scdlgfact.hxx
sc/source/ui/attrdlg/scdlgfact.hxx
+4
-4
sddlgfact.cxx
sd/source/ui/dlg/sddlgfact.cxx
+17
-17
sddlgfact.hxx
sd/source/ui/dlg/sddlgfact.hxx
+4
-4
No files found.
sc/source/ui/attrdlg/scdlgfact.cxx
Dosyayı görüntüle @
5fb5cf97
...
@@ -86,7 +86,7 @@
...
@@ -86,7 +86,7 @@
// ause
// ause
#include "editutil.hxx"
#include "editutil.hxx"
IMPL_ABSTDLG_BASE
(
VclAbstractDialog_Impl
);
IMPL_ABSTDLG_BASE
(
Sc
VclAbstractDialog_Impl
);
IMPL_ABSTDLG_BASE
(
AbstractScImportAsciiDlg_Impl
);
IMPL_ABSTDLG_BASE
(
AbstractScImportAsciiDlg_Impl
);
IMPL_ABSTDLG_BASE
(
AbstractScAutoFormatDlg_Impl
);
IMPL_ABSTDLG_BASE
(
AbstractScAutoFormatDlg_Impl
);
IMPL_ABSTDLG_BASE
(
AbstractScColRowLabelDlg_Impl
);
IMPL_ABSTDLG_BASE
(
AbstractScColRowLabelDlg_Impl
);
...
@@ -123,34 +123,34 @@ IMPL_ABSTDLG_BASE(AbstractScStringInputDlg_Impl);
...
@@ -123,34 +123,34 @@ IMPL_ABSTDLG_BASE(AbstractScStringInputDlg_Impl);
IMPL_ABSTDLG_BASE
(
AbstractScTabBgColorDlg_Impl
);
IMPL_ABSTDLG_BASE
(
AbstractScTabBgColorDlg_Impl
);
IMPL_ABSTDLG_BASE
(
AbstractScImportOptionsDlg_Impl
);
IMPL_ABSTDLG_BASE
(
AbstractScImportOptionsDlg_Impl
);
IMPL_ABSTDLG_BASE
(
AbstractScTextImportOptionsDlg_Impl
);
IMPL_ABSTDLG_BASE
(
AbstractScTextImportOptionsDlg_Impl
);
IMPL_ABSTDLG_BASE
(
AbstractTabDialog_Impl
);
IMPL_ABSTDLG_BASE
(
Sc
AbstractTabDialog_Impl
);
// AbstractTabDialog_Impl begin
//
Sc
AbstractTabDialog_Impl begin
void
AbstractTabDialog_Impl
::
SetCurPageId
(
sal_uInt16
nId
)
void
Sc
AbstractTabDialog_Impl
::
SetCurPageId
(
sal_uInt16
nId
)
{
{
pDlg
->
SetCurPageId
(
nId
);
pDlg
->
SetCurPageId
(
nId
);
}
}
const
SfxItemSet
*
AbstractTabDialog_Impl
::
GetOutputItemSet
()
const
const
SfxItemSet
*
Sc
AbstractTabDialog_Impl
::
GetOutputItemSet
()
const
{
{
return
pDlg
->
GetOutputItemSet
();
return
pDlg
->
GetOutputItemSet
();
}
}
const
sal_uInt16
*
AbstractTabDialog_Impl
::
GetInputRanges
(
const
SfxItemPool
&
pItem
)
const
sal_uInt16
*
Sc
AbstractTabDialog_Impl
::
GetInputRanges
(
const
SfxItemPool
&
pItem
)
{
{
return
pDlg
->
GetInputRanges
(
pItem
);
return
pDlg
->
GetInputRanges
(
pItem
);
}
}
void
AbstractTabDialog_Impl
::
SetInputSet
(
const
SfxItemSet
*
pInSet
)
void
Sc
AbstractTabDialog_Impl
::
SetInputSet
(
const
SfxItemSet
*
pInSet
)
{
{
pDlg
->
SetInputSet
(
pInSet
);
pDlg
->
SetInputSet
(
pInSet
);
}
}
//From class Window.
//From class Window.
void
AbstractTabDialog_Impl
::
SetText
(
const
XubString
&
rStr
)
void
Sc
AbstractTabDialog_Impl
::
SetText
(
const
XubString
&
rStr
)
{
{
pDlg
->
SetText
(
rStr
);
pDlg
->
SetText
(
rStr
);
}
}
String
AbstractTabDialog_Impl
::
GetText
()
const
String
Sc
AbstractTabDialog_Impl
::
GetText
()
const
{
{
return
pDlg
->
GetText
();
return
pDlg
->
GetText
();
}
}
...
@@ -757,7 +757,7 @@ VclAbstractDialog * ScAbstractDialogFactory_Impl::CreateScColOrRowDlg(Window*
...
@@ -757,7 +757,7 @@ VclAbstractDialog * ScAbstractDialogFactory_Impl::CreateScColOrRowDlg(Window*
}
}
if
(
pDlg
)
if
(
pDlg
)
return
new
VclAbstractDialog_Impl
(
pDlg
);
return
new
Sc
VclAbstractDialog_Impl
(
pDlg
);
return
0
;
return
0
;
}
}
...
@@ -776,7 +776,7 @@ VclAbstractDialog * ScAbstractDialogFactory_Impl::CreateScSortWarningDlg( Window
...
@@ -776,7 +776,7 @@ VclAbstractDialog * ScAbstractDialogFactory_Impl::CreateScSortWarningDlg( Window
break
;
break
;
}
}
if
(
pDlg
)
if
(
pDlg
)
return
new
VclAbstractDialog_Impl
(
pDlg
);
return
new
Sc
VclAbstractDialog_Impl
(
pDlg
);
return
0
;
return
0
;
}
}
...
@@ -1456,13 +1456,13 @@ SfxAbstractTabDialog * ScAbstractDialogFactory_Impl::CreateScAttrDlg( SfxViewFra
...
@@ -1456,13 +1456,13 @@ SfxAbstractTabDialog * ScAbstractDialogFactory_Impl::CreateScAttrDlg( SfxViewFra
}
}
if
(
pDlg
)
if
(
pDlg
)
return
new
AbstractTabDialog_Impl
(
pDlg
);
return
new
Sc
AbstractTabDialog_Impl
(
pDlg
);
return
0
;
return
0
;
}
}
#undef SfxTabDialog
#undef SfxTabDialog
#undef AbstractTabDialog_Impl
#undef
Sc
AbstractTabDialog_Impl
SfxAbstractTabDialog
*
ScAbstractDialogFactory_Impl
::
CreateScHFEditDlg
(
SfxViewFrame
*
pFrame
,
SfxAbstractTabDialog
*
ScAbstractDialogFactory_Impl
::
CreateScHFEditDlg
(
SfxViewFrame
*
pFrame
,
...
@@ -1483,7 +1483,7 @@ SfxAbstractTabDialog * ScAbstractDialogFactory_Impl::CreateScHFEditDlg( SfxViewF
...
@@ -1483,7 +1483,7 @@ SfxAbstractTabDialog * ScAbstractDialogFactory_Impl::CreateScHFEditDlg( SfxViewF
}
}
if
(
pDlg
)
if
(
pDlg
)
return
new
AbstractTabDialog_Impl
(
pDlg
);
return
new
Sc
AbstractTabDialog_Impl
(
pDlg
);
return
0
;
return
0
;
}
}
...
@@ -1506,7 +1506,7 @@ SfxAbstractTabDialog * ScAbstractDialogFactory_Impl::CreateScStyleDlg( Window*
...
@@ -1506,7 +1506,7 @@ SfxAbstractTabDialog * ScAbstractDialogFactory_Impl::CreateScStyleDlg( Window*
}
}
if
(
pDlg
)
if
(
pDlg
)
return
new
AbstractTabDialog_Impl
(
pDlg
);
return
new
Sc
AbstractTabDialog_Impl
(
pDlg
);
return
0
;
return
0
;
}
}
...
@@ -1527,7 +1527,7 @@ SfxAbstractTabDialog * ScAbstractDialogFactory_Impl::CreateScSubTotalDlg( Window
...
@@ -1527,7 +1527,7 @@ SfxAbstractTabDialog * ScAbstractDialogFactory_Impl::CreateScSubTotalDlg( Window
}
}
if
(
pDlg
)
if
(
pDlg
)
return
new
AbstractTabDialog_Impl
(
pDlg
);
return
new
Sc
AbstractTabDialog_Impl
(
pDlg
);
return
0
;
return
0
;
}
}
...
@@ -1547,7 +1547,7 @@ SfxAbstractTabDialog * ScAbstractDialogFactory_Impl::CreateScCharDlg( Window* pP
...
@@ -1547,7 +1547,7 @@ SfxAbstractTabDialog * ScAbstractDialogFactory_Impl::CreateScCharDlg( Window* pP
}
}
if
(
pDlg
)
if
(
pDlg
)
return
new
AbstractTabDialog_Impl
(
pDlg
);
return
new
Sc
AbstractTabDialog_Impl
(
pDlg
);
return
0
;
return
0
;
}
}
...
@@ -1567,7 +1567,7 @@ SfxAbstractTabDialog * ScAbstractDialogFactory_Impl::CreateScParagraphDlg( Windo
...
@@ -1567,7 +1567,7 @@ SfxAbstractTabDialog * ScAbstractDialogFactory_Impl::CreateScParagraphDlg( Windo
}
}
if
(
pDlg
)
if
(
pDlg
)
return
new
AbstractTabDialog_Impl
(
pDlg
);
return
new
Sc
AbstractTabDialog_Impl
(
pDlg
);
return
0
;
return
0
;
}
}
...
@@ -1587,7 +1587,7 @@ SfxAbstractTabDialog * ScAbstractDialogFactory_Impl::CreateScValidationDlg( Wind
...
@@ -1587,7 +1587,7 @@ SfxAbstractTabDialog * ScAbstractDialogFactory_Impl::CreateScValidationDlg( Wind
}
}
if
(
pDlg
)
if
(
pDlg
)
return
new
AbstractTabDialog_Impl
(
pDlg
);
return
new
Sc
AbstractTabDialog_Impl
(
pDlg
);
return
0
;
return
0
;
}
}
...
@@ -1606,11 +1606,11 @@ SfxAbstractTabDialog * ScAbstractDialogFactory_Impl::CreateScSortDlg( Window*
...
@@ -1606,11 +1606,11 @@ SfxAbstractTabDialog * ScAbstractDialogFactory_Impl::CreateScSortDlg( Window*
}
}
if
(
pDlg
)
if
(
pDlg
)
return
new
AbstractTabDialog_Impl
(
pDlg
);
return
new
Sc
AbstractTabDialog_Impl
(
pDlg
);
return
0
;
return
0
;
}
}
#undef SfxTabDialog
#undef SfxTabDialog
#undef AbstractTabDialog_Impl
#undef
Sc
AbstractTabDialog_Impl
//------------------ Factories for TabPages--------------------
//------------------ Factories for TabPages--------------------
...
...
sc/source/ui/attrdlg/scdlgfact.hxx
Dosyayı görüntüle @
5fb5cf97
...
@@ -110,9 +110,9 @@ long Class::GetResult() \
...
@@ -110,9 +110,9 @@ long Class::GetResult() \
return pDlg->GetResult(); \
return pDlg->GetResult(); \
}
}
class
VclAbstractDialog_Impl
:
public
VclAbstractDialog
//add for ScColOrRowDlg
class
Sc
VclAbstractDialog_Impl
:
public
VclAbstractDialog
//add for ScColOrRowDlg
{
{
DECL_ABSTDLG_BASE
(
VclAbstractDialog_Impl
,
Dialog
)
DECL_ABSTDLG_BASE
(
Sc
VclAbstractDialog_Impl
,
Dialog
)
};
};
class
AbstractScImportAsciiDlg_Impl
:
public
AbstractScImportAsciiDlg
//add for ScImportAsciiDlg
class
AbstractScImportAsciiDlg_Impl
:
public
AbstractScImportAsciiDlg
//add for ScImportAsciiDlg
...
@@ -392,9 +392,9 @@ class AbstractScTextImportOptionsDlg_Impl : public AbstractScTextImportOptionsDl
...
@@ -392,9 +392,9 @@ class AbstractScTextImportOptionsDlg_Impl : public AbstractScTextImportOptionsDl
};
};
//add for ScAttrDlg , ScHFEditDlg, ScStyleDlg, ScSubTotalDlg, ScCharDlg, ScParagraphDlg, ScValidationDlg, ScSortDlg
//add for ScAttrDlg , ScHFEditDlg, ScStyleDlg, ScSubTotalDlg, ScCharDlg, ScParagraphDlg, ScValidationDlg, ScSortDlg
class
AbstractTabDialog_Impl
:
public
SfxAbstractTabDialog
class
Sc
AbstractTabDialog_Impl
:
public
SfxAbstractTabDialog
{
{
DECL_ABSTDLG_BASE
(
AbstractTabDialog_Impl
,
SfxTabDialog
)
DECL_ABSTDLG_BASE
(
Sc
AbstractTabDialog_Impl
,
SfxTabDialog
)
virtual
void
SetCurPageId
(
sal_uInt16
nId
);
virtual
void
SetCurPageId
(
sal_uInt16
nId
);
virtual
const
SfxItemSet
*
GetOutputItemSet
()
const
;
virtual
const
SfxItemSet
*
GetOutputItemSet
()
const
;
virtual
const
sal_uInt16
*
GetInputRanges
(
const
SfxItemPool
&
pItem
);
virtual
const
sal_uInt16
*
GetInputRanges
(
const
SfxItemPool
&
pItem
);
...
...
sd/source/ui/dlg/sddlgfact.cxx
Dosyayı görüntüle @
5fb5cf97
...
@@ -61,10 +61,10 @@
...
@@ -61,10 +61,10 @@
#include "masterlayoutdlg.hxx"
#include "masterlayoutdlg.hxx"
#include "headerfooterdlg.hxx"
#include "headerfooterdlg.hxx"
IMPL_ABSTDLG_BASE
(
VclAbstractDialog_Impl
);
IMPL_ABSTDLG_BASE
(
Sd
VclAbstractDialog_Impl
);
IMPL_ABSTDLG_BASE
(
AbstractCopyDlg_Impl
);
IMPL_ABSTDLG_BASE
(
AbstractCopyDlg_Impl
);
IMPL_ABSTDLG_BASE
(
AbstractSdCustomShowDlg_Impl
);
IMPL_ABSTDLG_BASE
(
AbstractSdCustomShowDlg_Impl
);
IMPL_ABSTDLG_BASE
(
AbstractTabDialog_Impl
);
IMPL_ABSTDLG_BASE
(
Sd
AbstractTabDialog_Impl
);
IMPL_ABSTDLG_BASE
(
SdPresLayoutTemplateDlg_Impl
);
IMPL_ABSTDLG_BASE
(
SdPresLayoutTemplateDlg_Impl
);
IMPL_ABSTDLG_BASE
(
AbstractAssistentDlg_Impl
);
IMPL_ABSTDLG_BASE
(
AbstractAssistentDlg_Impl
);
IMPL_ABSTDLG_BASE
(
AbstractSdModifyFieldDlg_Impl
);
IMPL_ABSTDLG_BASE
(
AbstractSdModifyFieldDlg_Impl
);
...
@@ -99,33 +99,33 @@ sal_Bool AbstractSdCustomShowDlg_Impl::IsCustomShow() const
...
@@ -99,33 +99,33 @@ sal_Bool AbstractSdCustomShowDlg_Impl::IsCustomShow() const
}
}
// AbstractSdCustomShowDlg_Impl end
// AbstractSdCustomShowDlg_Impl end
// AbstractTabDialog_Impl begin
//
Sd
AbstractTabDialog_Impl begin
void
AbstractTabDialog_Impl
::
SetCurPageId
(
sal_uInt16
nId
)
void
Sd
AbstractTabDialog_Impl
::
SetCurPageId
(
sal_uInt16
nId
)
{
{
pDlg
->
SetCurPageId
(
nId
);
pDlg
->
SetCurPageId
(
nId
);
}
}
const
SfxItemSet
*
AbstractTabDialog_Impl
::
GetOutputItemSet
()
const
const
SfxItemSet
*
Sd
AbstractTabDialog_Impl
::
GetOutputItemSet
()
const
{
{
return
pDlg
->
GetOutputItemSet
();
return
pDlg
->
GetOutputItemSet
();
}
}
const
sal_uInt16
*
AbstractTabDialog_Impl
::
GetInputRanges
(
const
SfxItemPool
&
pItem
)
const
sal_uInt16
*
Sd
AbstractTabDialog_Impl
::
GetInputRanges
(
const
SfxItemPool
&
pItem
)
{
{
return
pDlg
->
GetInputRanges
(
pItem
);
return
pDlg
->
GetInputRanges
(
pItem
);
}
}
void
AbstractTabDialog_Impl
::
SetInputSet
(
const
SfxItemSet
*
pInSet
)
void
Sd
AbstractTabDialog_Impl
::
SetInputSet
(
const
SfxItemSet
*
pInSet
)
{
{
pDlg
->
SetInputSet
(
pInSet
);
pDlg
->
SetInputSet
(
pInSet
);
}
}
//From class Window.
//From class Window.
void
AbstractTabDialog_Impl
::
SetText
(
const
XubString
&
rStr
)
void
Sd
AbstractTabDialog_Impl
::
SetText
(
const
XubString
&
rStr
)
{
{
pDlg
->
SetText
(
rStr
);
pDlg
->
SetText
(
rStr
);
}
}
String
AbstractTabDialog_Impl
::
GetText
()
const
String
Sd
AbstractTabDialog_Impl
::
GetText
()
const
{
{
return
pDlg
->
GetText
();
return
pDlg
->
GetText
();
}
}
//add for AbstractTabDialog_Impl end
//add for
Sd
AbstractTabDialog_Impl end
// --------------------------------------------------------------------
// --------------------------------------------------------------------
...
@@ -388,7 +388,7 @@ VclAbstractDialog * SdAbstractDialogFactory_Impl::CreateBreakDlg(
...
@@ -388,7 +388,7 @@ VclAbstractDialog * SdAbstractDialogFactory_Impl::CreateBreakDlg(
sal_uLong
nSumActionCount
,
sal_uLong
nSumActionCount
,
sal_uLong
nObjCount
)
//add for BreakDlg
sal_uLong
nObjCount
)
//add for BreakDlg
{
{
return
new
VclAbstractDialog_Impl
(
new
::
sd
::
BreakDlg
(
pWindow
,
pDrView
,
pShell
,
nSumActionCount
,
nObjCount
)
);
return
new
Sd
VclAbstractDialog_Impl
(
new
::
sd
::
BreakDlg
(
pWindow
,
pDrView
,
pShell
,
nSumActionCount
,
nObjCount
)
);
}
}
//add for BreakDlg end
//add for BreakDlg end
...
@@ -412,13 +412,13 @@ AbstractSdCustomShowDlg * SdAbstractDialogFactory_Impl::CreateSdCustomShowDlg( :
...
@@ -412,13 +412,13 @@ AbstractSdCustomShowDlg * SdAbstractDialogFactory_Impl::CreateSdCustomShowDlg( :
// add for SdCharDlg begin
// add for SdCharDlg begin
SfxAbstractTabDialog
*
SdAbstractDialogFactory_Impl
::
CreateSdTabCharDialog
(
::
Window
*
pParent
,
const
SfxItemSet
*
pAttr
,
SfxObjectShell
*
pDocShell
)
SfxAbstractTabDialog
*
SdAbstractDialogFactory_Impl
::
CreateSdTabCharDialog
(
::
Window
*
pParent
,
const
SfxItemSet
*
pAttr
,
SfxObjectShell
*
pDocShell
)
{
{
return
new
AbstractTabDialog_Impl
(
new
SdCharDlg
(
pParent
,
pAttr
,
pDocShell
)
);
return
new
Sd
AbstractTabDialog_Impl
(
new
SdCharDlg
(
pParent
,
pAttr
,
pDocShell
)
);
}
}
SfxAbstractTabDialog
*
SdAbstractDialogFactory_Impl
::
CreateSdTabPageDialog
(
::
Window
*
pParent
,
const
SfxItemSet
*
pAttr
,
SfxObjectShell
*
pDocShell
,
sal_Bool
bAreaPage
)
SfxAbstractTabDialog
*
SdAbstractDialogFactory_Impl
::
CreateSdTabPageDialog
(
::
Window
*
pParent
,
const
SfxItemSet
*
pAttr
,
SfxObjectShell
*
pDocShell
,
sal_Bool
bAreaPage
)
{
{
return
new
AbstractTabDialog_Impl
(
new
SdPageDlg
(
pDocShell
,
pParent
,
pAttr
,
bAreaPage
)
);
return
new
Sd
AbstractTabDialog_Impl
(
new
SdPageDlg
(
pDocShell
,
pParent
,
pAttr
,
bAreaPage
)
);
}
}
// add for SdCharDlg end
// add for SdCharDlg end
...
@@ -479,7 +479,7 @@ SfxAbstractTabDialog * SdAbstractDialogFactory_Impl::CreateSdOutlineBulletTabDl
...
@@ -479,7 +479,7 @@ SfxAbstractTabDialog * SdAbstractDialogFactory_Impl::CreateSdOutlineBulletTabDl
SfxAbstractTabDialog
*
SdAbstractDialogFactory_Impl
::
CreateSdParagraphTabDlg
(
::
Window
*
pParent
,
const
SfxItemSet
*
pAttr
)
SfxAbstractTabDialog
*
SdAbstractDialogFactory_Impl
::
CreateSdParagraphTabDlg
(
::
Window
*
pParent
,
const
SfxItemSet
*
pAttr
)
{
{
return
new
AbstractTabDialog_Impl
(
new
SdParagraphDlg
(
pParent
,
pAttr
)
);
return
new
Sd
AbstractTabDialog_Impl
(
new
SdParagraphDlg
(
pParent
,
pAttr
)
);
}
}
// add for OutlineBulletDlg end
// add for OutlineBulletDlg end
...
@@ -494,7 +494,7 @@ AbstractSdStartPresDlg * SdAbstractDialogFactory_Impl::CreateSdStartPresentatio
...
@@ -494,7 +494,7 @@ AbstractSdStartPresDlg * SdAbstractDialogFactory_Impl::CreateSdStartPresentatio
// add for SdRemoteDlg begin
// add for SdRemoteDlg begin
VclAbstractDialog
*
SdAbstractDialogFactory_Impl
::
CreateRemoteDialog
(
::
Window
*
pWindow
)
VclAbstractDialog
*
SdAbstractDialogFactory_Impl
::
CreateRemoteDialog
(
::
Window
*
pWindow
)
{
{
return
new
VclAbstractDialog_Impl
(
new
::
sd
::
RemoteDialog
(
pWindow
)
);
return
new
Sd
VclAbstractDialog_Impl
(
new
::
sd
::
RemoteDialog
(
pWindow
)
);
}
}
// add for SdRemoteDlg end
// add for SdRemoteDlg end
...
@@ -514,7 +514,7 @@ AbstractSdPresLayoutDlg * SdAbstractDialogFactory_Impl::CreateSdPresLayoutDlg(
...
@@ -514,7 +514,7 @@ AbstractSdPresLayoutDlg * SdAbstractDialogFactory_Impl::CreateSdPresLayoutDlg(
// add for SdTabTemplateDlg begin
// add for SdTabTemplateDlg begin
SfxAbstractTabDialog
*
SdAbstractDialogFactory_Impl
::
CreateSdTabTemplateDlg
(
::
Window
*
pParent
,
const
SfxObjectShell
*
pDocShell
,
SfxStyleSheetBase
&
rStyleBase
,
SdrModel
*
pModel
,
SdrView
*
pView
)
SfxAbstractTabDialog
*
SdAbstractDialogFactory_Impl
::
CreateSdTabTemplateDlg
(
::
Window
*
pParent
,
const
SfxObjectShell
*
pDocShell
,
SfxStyleSheetBase
&
rStyleBase
,
SdrModel
*
pModel
,
SdrView
*
pView
)
{
{
return
new
AbstractTabDialog_Impl
(
new
SdTabTemplateDlg
(
pParent
,
pDocShell
,
rStyleBase
,
pModel
,
pView
)
);
return
new
Sd
AbstractTabDialog_Impl
(
new
SdTabTemplateDlg
(
pParent
,
pDocShell
,
rStyleBase
,
pModel
,
pView
)
);
}
}
// add for SdTabTemplateDlg end
// add for SdTabTemplateDlg end
...
@@ -561,7 +561,7 @@ CreateTabPage SdAbstractDialogFactory_Impl::GetSdOptionsSnapTabPageCreatorFunc()
...
@@ -561,7 +561,7 @@ CreateTabPage SdAbstractDialogFactory_Impl::GetSdOptionsSnapTabPageCreatorFunc()
VclAbstractDialog
*
SdAbstractDialogFactory_Impl
::
CreateMasterLayoutDialog
(
::
Window
*
pParent
,
VclAbstractDialog
*
SdAbstractDialogFactory_Impl
::
CreateMasterLayoutDialog
(
::
Window
*
pParent
,
SdDrawDocument
*
pDoc
,
SdPage
*
pCurrentPage
)
SdDrawDocument
*
pDoc
,
SdPage
*
pCurrentPage
)
{
{
return
new
VclAbstractDialog_Impl
(
new
::
sd
::
MasterLayoutDialog
(
pParent
,
pDoc
,
pCurrentPage
));
return
new
Sd
VclAbstractDialog_Impl
(
new
::
sd
::
MasterLayoutDialog
(
pParent
,
pDoc
,
pCurrentPage
));
}
}
AbstractHeaderFooterDialog
*
SdAbstractDialogFactory_Impl
::
CreateHeaderFooterDialog
(
ViewShell
*
pViewShell
,
AbstractHeaderFooterDialog
*
SdAbstractDialogFactory_Impl
::
CreateHeaderFooterDialog
(
ViewShell
*
pViewShell
,
...
...
sd/source/ui/dlg/sddlgfact.hxx
Dosyayı görüntüle @
5fb5cf97
...
@@ -59,9 +59,9 @@ namespace sd {
...
@@ -59,9 +59,9 @@ namespace sd {
}
}
// add for BreakDlg
// add for BreakDlg
class
Dialog
;
class
Dialog
;
class
VclAbstractDialog_Impl
:
public
VclAbstractDialog
class
Sd
VclAbstractDialog_Impl
:
public
VclAbstractDialog
{
{
DECL_ABSTDLG_BASE
(
VclAbstractDialog_Impl
,
Dialog
)
DECL_ABSTDLG_BASE
(
Sd
VclAbstractDialog_Impl
,
Dialog
)
};
};
// add for CopyDlg
// add for CopyDlg
...
@@ -83,9 +83,9 @@ class AbstractSdCustomShowDlg_Impl : public AbstractSdCustomShowDlg
...
@@ -83,9 +83,9 @@ class AbstractSdCustomShowDlg_Impl : public AbstractSdCustomShowDlg
//add for SdCharDlg begin
//add for SdCharDlg begin
class
SfxTabDialog
;
class
SfxTabDialog
;
class
AbstractTabDialog_Impl
:
public
SfxAbstractTabDialog
class
Sd
AbstractTabDialog_Impl
:
public
SfxAbstractTabDialog
{
{
DECL_ABSTDLG_BASE
(
AbstractTabDialog_Impl
,
SfxTabDialog
)
DECL_ABSTDLG_BASE
(
Sd
AbstractTabDialog_Impl
,
SfxTabDialog
)
virtual
void
SetCurPageId
(
sal_uInt16
nId
);
virtual
void
SetCurPageId
(
sal_uInt16
nId
);
virtual
const
SfxItemSet
*
GetOutputItemSet
()
const
;
virtual
const
SfxItemSet
*
GetOutputItemSet
()
const
;
virtual
const
sal_uInt16
*
GetInputRanges
(
const
SfxItemPool
&
pItem
);
virtual
const
sal_uInt16
*
GetInputRanges
(
const
SfxItemPool
&
pItem
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment