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
1e37a551
Kaydet (Commit)
1e37a551
authored
Kas 23, 2014
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Forward-declare SfxFrameArr_Impl in sfx2/frame.hxx.
Change-Id: I49f0a16655114bf212ffec957bc6560075115e5c
üst
8d007c83
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
68 additions
and
7 deletions
+68
-7
frame.hxx
include/sfx2/frame.hxx
+1
-3
arrdecl.hxx
sfx2/inc/arrdecl.hxx
+0
-3
appdata.cxx
sfx2/source/appl/appdata.cxx
+1
-0
childwinimpl.cxx
sfx2/source/appl/childwinimpl.cxx
+40
-0
appdata.hxx
sfx2/source/inc/appdata.hxx
+1
-1
childwinimpl.hxx
sfx2/source/inc/childwinimpl.hxx
+24
-0
frame.cxx
sfx2/source/view/frame.cxx
+1
-0
No files found.
include/sfx2/frame.hxx
Dosyayı görüntüle @
1e37a551
...
...
@@ -76,9 +76,7 @@ class Rectangle;
class
SfxRequest
;
class
SfxUnoControllerItem
;
class
SystemWindow
;
class
SfxFrame
;
typedef
::
std
::
vector
<
SfxFrame
*>
SfxFrameArr_Impl
;
class
SfxFrameArr_Impl
;
typedef
::
std
::
vector
<
OUString
>
TargetList
;
...
...
sfx2/inc/arrdecl.hxx
Dosyayı görüntüle @
1e37a551
...
...
@@ -21,9 +21,6 @@
#include <vector>
class
SfxFrame
;
typedef
::
std
::
vector
<
SfxFrame
*>
SfxFrameArr_Impl
;
class
SfxFilter
;
typedef
::
std
::
vector
<
SfxFilter
*
>
SfxFilterList_Impl
;
...
...
sfx2/source/appl/appdata.cxx
Dosyayı görüntüle @
1e37a551
...
...
@@ -43,6 +43,7 @@
#include "objshimp.hxx"
#include "imestatuswindow.hxx"
#include "appbaslib.hxx"
#include <childwinimpl.hxx>
#include <basic/basicmanagerrepository.hxx>
#include <basic/basmgr.hxx>
...
...
sfx2/source/appl/childwinimpl.cxx
Dosyayı görüntüle @
1e37a551
...
...
@@ -74,4 +74,44 @@ SfxChildWinFactArr_Impl::const_iterator SfxChildWinFactArr_Impl::begin() const
return
maData
.
begin
();
}
SfxFrameArr_Impl
::
iterator
SfxFrameArr_Impl
::
begin
()
{
return
maData
.
begin
();
}
SfxFrameArr_Impl
::
iterator
SfxFrameArr_Impl
::
end
()
{
return
maData
.
end
();
}
SfxFrame
*
SfxFrameArr_Impl
::
front
()
{
return
maData
.
front
();
}
void
SfxFrameArr_Impl
::
erase
(
iterator
it
)
{
maData
.
erase
(
it
);
}
SfxFrame
*
SfxFrameArr_Impl
::
operator
[]
(
size_t
i
)
{
return
maData
[
i
];
}
void
SfxFrameArr_Impl
::
push_back
(
SfxFrame
*
p
)
{
maData
.
push_back
(
p
);
}
size_t
SfxFrameArr_Impl
::
size
()
const
{
return
maData
.
size
();
}
bool
SfxFrameArr_Impl
::
empty
()
const
{
return
maData
.
empty
();
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
sfx2/source/inc/appdata.hxx
Dosyayı görüntüle @
1e37a551
...
...
@@ -45,7 +45,7 @@ class SfxStatusDispatcher;
class
SfxDdeTriggerTopic_Impl
;
class
SfxDocumentTemplates
;
class
SfxFrame
;
typedef
::
std
::
vector
<
SfxFrame
*>
SfxFrameArr_Impl
;
class
SfxFrameArr_Impl
;
class
SvtSaveOptions
;
class
SvtHelpOptions
;
class
ResMgr
;
...
...
sfx2/source/inc/childwinimpl.hxx
Dosyayı görüntüle @
1e37a551
...
...
@@ -24,6 +24,8 @@
#include <boost/ptr_container/ptr_vector.hpp>
class
SfxFrame
;
class
SfxChildWinContextArr_Impl
{
typedef
boost
::
ptr_vector
<
SfxChildWinContextFactory
>
DataType
;
...
...
@@ -55,6 +57,28 @@ public:
const_iterator
begin
()
const
;
};
class
SfxFrameArr_Impl
{
typedef
std
::
vector
<
SfxFrame
*>
DataType
;
DataType
maData
;
public
:
typedef
DataType
::
iterator
iterator
;
iterator
begin
();
iterator
end
();
SfxFrame
*
front
();
void
erase
(
iterator
it
);
SfxFrame
*
operator
[]
(
size_t
i
);
void
push_back
(
SfxFrame
*
p
);
size_t
size
()
const
;
bool
empty
()
const
;
};
#endif
...
...
sfx2/source/view/frame.cxx
Dosyayı görüntüle @
1e37a551
...
...
@@ -60,6 +60,7 @@
#include <sfx2/msgpool.hxx>
#include "objshimp.hxx"
#include <sfx2/ipclient.hxx>
#include <childwinimpl.hxx>
#ifdef DBG_UTIL
#include <sfx2/frmhtmlw.hxx>
...
...
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