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
b6542ea4
Kaydet (Commit)
b6542ea4
authored
Şub 07, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
for ToolBox Optimal Size use contents optimal sizes
Change-Id: I614c4fdb6478d1ca8e092dc742886190ec920b7d
üst
c572b6cd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
2 deletions
+33
-2
tbcontrl.cxx
svx/source/tbxctrls/tbcontrl.cxx
+4
-1
toolbox.cxx
vcl/source/window/toolbox.cxx
+29
-1
No files found.
svx/source/tbxctrls/tbcontrl.cxx
Dosyayı görüntüle @
b6542ea4
...
...
@@ -805,7 +805,10 @@ SvxFontNameBox_Impl::SvxFontNameBox_Impl( Window* pParent, const Reference< XDis
m_xFrame
(
_xFrame
),
mbEndPreview
(
false
)
{
SetSizePixel
(
LogicToPixel
(
aLogicalSize
,
MAP_APPFONT
));
Size
aSize
(
LogicToPixel
(
aLogicalSize
,
MAP_APPFONT
));
set_width_request
(
aSize
.
Width
());
set_height_request
(
aSize
.
Height
());
SetSizePixel
(
aSize
);
EnableControls_Impl
();
GetSubEdit
()
->
AddEventListener
(
LINK
(
this
,
SvxFontNameBox_Impl
,
CheckAndMarkUnknownFont
));
}
...
...
vcl/source/window/toolbox.cxx
Dosyayı görüntüle @
b6542ea4
...
...
@@ -4854,7 +4854,35 @@ void ToolBox::Resizing( Size& rSize )
Size
ToolBox
::
GetOptimalSize
()
const
{
return
ImplCalcSize
(
this
,
mnLines
);
// If we have any expandable entries, then force them to their
// optimal sizes, then reset them afterwards
std
::
map
<
Window
*
,
Size
>
aExpandables
;
for
(
size_t
i
=
0
;
i
<
mpData
->
m_aItems
.
size
();
++
i
)
{
if
(
mpData
->
m_aItems
[
i
].
mbExpand
)
{
Window
*
pWindow
=
mpData
->
m_aItems
[
i
].
mpWindow
;
SAL_WARN_IF
(
!
pWindow
,
"vcl.layout"
,
"only tabitems with window supported at the moment"
);
if
(
!
pWindow
)
continue
;
Size
aWinSize
(
pWindow
->
GetSizePixel
());
aExpandables
[
pWindow
]
=
aWinSize
;
Size
aPrefSize
(
pWindow
->
get_preferred_size
());
aWinSize
.
Width
()
=
aPrefSize
.
Width
();
pWindow
->
SetSizePixel
(
aWinSize
);
}
}
Size
aSize
(
ImplCalcSize
(
this
,
mnLines
));
for
(
std
::
map
<
Window
*
,
Size
>::
iterator
aI
=
aExpandables
.
begin
();
aI
!=
aExpandables
.
end
();
++
aI
)
{
Window
*
pWindow
=
aI
->
first
;
Size
aWinSize
=
aI
->
second
;
pWindow
->
SetSizePixel
(
aWinSize
);
}
return
aSize
;
}
Size
ToolBox
::
CalcWindowSizePixel
(
sal_uInt16
nCalcLines
)
const
...
...
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