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
55de7652
Kaydet (Commit)
55de7652
authored
Tem 13, 2011
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
callcatcher: remove unused TaskBar::Foo
üst
a5b3eded
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
69 deletions
+0
-69
taskbar.hxx
svtools/inc/svtools/taskbar.hxx
+0
-5
taskbar.cxx
svtools/source/control/taskbar.cxx
+0
-64
No files found.
svtools/inc/svtools/taskbar.hxx
Dosyayı görüntüle @
55de7652
...
...
@@ -403,14 +403,9 @@ public:
void
Format
();
void
SetLines
(
sal_uInt16
nLines
);
sal_uInt16
GetLines
()
const
{
return
mnLines
;
}
void
EnableAutoHide
(
sal_Bool
bAutoHide
=
sal_True
);
sal_Bool
IsAutoHideEnabled
()
const
{
return
mbAutoHide
;
}
void
ShowStatusText
(
const
String
&
rText
);
void
HideStatusText
();
void
SetStatusSize
(
long
nNewSize
)
{
mnStatusWidth
=
nNewSize
;
Resize
();
}
long
GetStatusSize
()
const
{
return
mnStatusWidth
;
}
...
...
svtools/source/control/taskbar.cxx
Dosyayı görüntüle @
55de7652
...
...
@@ -464,70 +464,6 @@ void TaskBar::Format()
// -----------------------------------------------------------------------
void
TaskBar
::
SetLines
(
sal_uInt16
nLines
)
{
mnLines
=
nLines
;
}
// -----------------------------------------------------------------------
void
TaskBar
::
EnableAutoHide
(
sal_Bool
bAutoHide
)
{
mbAutoHide
=
bAutoHide
;
if
(
mbAutoHide
)
{
ImplNewHeight
(
TASKBAR_AUTOHIDE_HEIGHT
);
}
else
{
ImplNewHeight
(
CalcWindowSizePixel
().
Height
()
);
}
}
// -----------------------------------------------------------------------
void
TaskBar
::
ShowStatusText
(
const
String
&
rText
)
{
if
(
mpStatusBar
)
{
if
(
!
mbStatusText
)
{
mbStatusText
=
sal_True
;
if
(
mpStatusBar
->
AreItemsVisible
()
)
{
mbShowItems
=
sal_True
;
mpStatusBar
->
HideItems
();
}
else
mbShowItems
=
sal_True
;
maOldText
=
mpStatusBar
->
GetText
();
Resize
();
mpStatusBar
->
SetText
(
rText
);
Update
();
mpStatusBar
->
Update
();
}
else
mpStatusBar
->
SetText
(
rText
);
}
}
// -----------------------------------------------------------------------
void
TaskBar
::
HideStatusText
()
{
if
(
mbStatusText
&&
mpStatusBar
)
{
mbStatusText
=
sal_False
;
mpStatusBar
->
SetText
(
maOldText
);
Resize
();
if
(
mbShowItems
)
mpStatusBar
->
ShowItems
();
}
}
// -----------------------------------------------------------------------
Size
TaskBar
::
CalcWindowSizePixel
()
const
{
TaskButtonBar
*
pTempButtonBar
=
GetButtonBar
();
...
...
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