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
4cfb62a8
Kaydet (Commit)
4cfb62a8
authored
Tem 14, 2012
tarafından
Rafael Dominguez
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Create abstract class for template repositories.
Change-Id: Ie92c2241c468522439bccd7d9c18a2dbf9c27c38
üst
65fa0fbb
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
56 additions
and
0 deletions
+56
-0
Library_sfx.mk
sfx2/Library_sfx.mk
+1
-0
Package_inc.mk
sfx2/Package_inc.mk
+1
-0
templateabstractview.hxx
sfx2/inc/sfx2/templateabstractview.hxx
+28
-0
templateabstractview.cxx
sfx2/source/control/templateabstractview.cxx
+26
-0
No files found.
sfx2/Library_sfx.mk
Dosyayı görüntüle @
4cfb62a8
...
...
@@ -133,6 +133,7 @@ $(eval $(call gb_Library_add_exception_objects,sfx,\
sfx2/source/control/shell \
sfx2/source/control/sorgitm \
sfx2/source/control/statcach \
sfx2/source/control/templateabstractview \
sfx2/source/control/templateview \
sfx2/source/control/templateviewitem \
sfx2/source/control/templatefolderview \
...
...
sfx2/Package_inc.mk
Dosyayı görüntüle @
4cfb62a8
...
...
@@ -118,6 +118,7 @@ $(eval $(call gb_Package_add_file,sfx2_inc,inc/sfx2/taskpane.hxx,sfx2/taskpane.h
$(eval $(call gb_Package_add_file,sfx2_inc,inc/sfx2/tbxctrl.hxx,sfx2/tbxctrl.hxx))
$(eval $(call gb_Package_add_file,sfx2_inc,inc/sfx2/templdlg.hxx,sfx2/templdlg.hxx))
$(eval $(call gb_Package_add_file,sfx2_inc,inc/sfx2/templatelocnames.hrc,sfx2/templatelocnames.hrc))
$(eval $(call gb_Package_add_file,sfx2_inc,inc/sfx2/templateabstractview.hxx,sfx2/templateabstractview.hxx))
$(eval $(call gb_Package_add_file,sfx2_inc,inc/sfx2/templateview.hxx,sfx2/templateview.hxx))
$(eval $(call gb_Package_add_file,sfx2_inc,inc/sfx2/templatefolderview.hxx,sfx2/templatefolderview.hxx))
$(eval $(call gb_Package_add_file,sfx2_inc,inc/sfx2/templatefolderviewitem.hxx,sfx2/templatefolderviewitem.hxx))
...
...
sfx2/inc/sfx2/templateabstractview.hxx
0 → 100644
Dosyayı görüntüle @
4cfb62a8
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#ifndef __SFX2_TEMPLATEABSTRACTVIEW_HXX__
#define __SFX2_TEMPLATEABSTRACTVIEW_HXX__
#include <sfx2/thumbnailview.hxx>
class
SFX2_DLLPUBLIC
TemplateAbstractView
:
public
ThumbnailView
{
public
:
TemplateAbstractView
(
Window
*
pParent
,
WinBits
nWinStyle
,
bool
bDisableTransientChildren
);
TemplateAbstractView
(
Window
*
pParent
,
const
ResId
&
rResId
,
bool
bDisableTransientChildren
=
false
);
virtual
~
TemplateAbstractView
();
};
#endif // __SFX2_TEMPLATEABSTRACTVIEW_HXX__
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
sfx2/source/control/templateabstractview.cxx
0 → 100644
Dosyayı görüntüle @
4cfb62a8
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include <sfx2/templateabstractview.hxx>
TemplateAbstractView
::
TemplateAbstractView
(
Window
*
pParent
,
WinBits
nWinStyle
,
bool
bDisableTransientChildren
)
:
ThumbnailView
(
pParent
,
nWinStyle
,
bDisableTransientChildren
)
{
}
TemplateAbstractView
::
TemplateAbstractView
(
Window
*
pParent
,
const
ResId
&
rResId
,
bool
bDisableTransientChildren
)
:
ThumbnailView
(
pParent
,
rResId
,
bDisableTransientChildren
)
{
}
TemplateAbstractView
::~
TemplateAbstractView
()
{
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
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