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
9cb456b7
Kaydet (Commit)
9cb456b7
authored
Şub 14, 2014
tarafından
Xisco Fauli
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
pywizards: delete unused fontDescriptors
Change-Id: I01479d3a24377b976b8363318b28b6b647f310ea
üst
ee122cfd
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
40 deletions
+0
-40
AgendaWizardDialog.py
wizards/com/sun/star/wizards/agenda/AgendaWizardDialog.py
+0
-12
FaxWizardDialog.py
wizards/com/sun/star/wizards/fax/FaxWizardDialog.py
+0
-11
LetterWizardDialog.py
wizards/com/sun/star/wizards/letter/LetterWizardDialog.py
+0
-7
WebWizardDialog.py
wizards/com/sun/star/wizards/web/WebWizardDialog.py
+0
-10
No files found.
wizards/com/sun/star/wizards/agenda/AgendaWizardDialog.py
Dosyayı görüntüle @
9cb456b7
...
...
@@ -99,22 +99,10 @@ class AgendaWizardDialog(WizardDialog):
PropertyNames
.
PROPERTY_TABINDEX
,
PropertyNames
.
PROPERTY_WIDTH
)
self
.
fontDescriptor1
=
\
uno
.
createUnoStruct
(
'com.sun.star.awt.FontDescriptor'
)
self
.
fontDescriptor2
=
\
uno
.
createUnoStruct
(
'com.sun.star.awt.FontDescriptor'
)
self
.
fontDescriptor4
=
\
uno
.
createUnoStruct
(
'com.sun.star.awt.FontDescriptor'
)
#Set member- FontDescriptors...
self
.
fontDescriptor1
.
Weight
=
150
self
.
fontDescriptor1
.
Underline
=
SINGLE
self
.
fontDescriptor2
.
Weight
=
100
self
.
fontDescriptor4
.
Weight
=
150
'''
build components
'''
def
buildStep1
(
self
):
self
.
insertLabel
(
"lblTitle1"
,
self
.
PROPS_LABEL_B
,
(
self
.
fontDescriptor4
,
16
,
self
.
resources
.
reslblTitle1_value
,
...
...
wizards/com/sun/star/wizards/fax/FaxWizardDialog.py
Dosyayı görüntüle @
9cb456b7
...
...
@@ -33,24 +33,13 @@ class FaxWizardDialog(WizardDialog):
self
.
setDialogProperties
(
True
,
210
,
True
,
104
,
52
,
1
,
1
,
self
.
resources
.
resFaxWizardDialog_title
,
310
)
self
.
fontDescriptor1
=
\
uno
.
createUnoStruct
(
'com.sun.star.awt.FontDescriptor'
)
self
.
fontDescriptor2
=
\
uno
.
createUnoStruct
(
'com.sun.star.awt.FontDescriptor'
)
self
.
fontDescriptor4
=
\
uno
.
createUnoStruct
(
'com.sun.star.awt.FontDescriptor'
)
self
.
fontDescriptor5
=
\
uno
.
createUnoStruct
(
'com.sun.star.awt.FontDescriptor'
)
#Set member- FontDescriptors...
self
.
fontDescriptor1
.
Weight
=
150
self
.
fontDescriptor1
.
Underline
=
SINGLE
self
.
fontDescriptor2
.
Weight
=
100
self
.
fontDescriptor4
.
Weight
=
100
self
.
fontDescriptor5
.
Weight
=
150
'''
build components
'''
def
buildStep1
(
self
):
self
.
optBusinessFax
=
self
.
insertRadioButton
(
"optBusinessFax"
,
FaxWizardDialogConst
.
OPTBUSINESSFAX_ITEM_CHANGED
,
...
...
wizards/com/sun/star/wizards/letter/LetterWizardDialog.py
Dosyayı görüntüle @
9cb456b7
...
...
@@ -34,17 +34,10 @@ class LetterWizardDialog(WizardDialog):
self
.
setDialogProperties
(
True
,
210
,
True
,
104
,
52
,
1
,
1
,
self
.
resources
.
resLetterWizardDialog_title
,
310
)
self
.
fontDescriptor1
=
\
uno
.
createUnoStruct
(
'com.sun.star.awt.FontDescriptor'
)
self
.
fontDescriptor2
=
\
uno
.
createUnoStruct
(
'com.sun.star.awt.FontDescriptor'
)
self
.
fontDescriptor5
=
\
uno
.
createUnoStruct
(
'com.sun.star.awt.FontDescriptor'
)
self
.
fontDescriptor6
=
\
uno
.
createUnoStruct
(
'com.sun.star.awt.FontDescriptor'
)
self
.
fontDescriptor1
.
Weight
=
150
self
.
fontDescriptor1
.
Underline
=
SINGLE
self
.
fontDescriptor2
.
Weight
=
100
self
.
fontDescriptor5
.
Weight
=
100
self
.
fontDescriptor6
.
Weight
=
150
...
...
wizards/com/sun/star/wizards/web/WebWizardDialog.py
Dosyayı görüntüle @
9cb456b7
...
...
@@ -92,10 +92,6 @@ class WebWizardDialog(WizardDialog):
self
.
setDialogProperties
(
True
,
210
,
True
,
102
,
52
,
1
,
6
,
self
.
resources
.
resWebWizardDialog_title
,
330
)
self
.
fontDescriptor0
=
\
uno
.
createUnoStruct
(
'com.sun.star.awt.FontDescriptor'
)
self
.
fontDescriptor1
=
\
uno
.
createUnoStruct
(
'com.sun.star.awt.FontDescriptor'
)
self
.
fontDescriptor4
=
\
uno
.
createUnoStruct
(
'com.sun.star.awt.FontDescriptor'
)
self
.
fontDescriptor5
=
\
...
...
@@ -105,11 +101,6 @@ class WebWizardDialog(WizardDialog):
self
.
fontDescriptor7
=
\
uno
.
createUnoStruct
(
'com.sun.star.awt.FontDescriptor'
)
self
.
imgIconsPrev
=
range
(
8
)
#Set member- self.fontDescriptors...
self
.
fontDescriptor0
.
Weight
=
100
self
.
fontDescriptor1
.
Weight
=
150
self
.
fontDescriptor1
.
Underline
=
SINGLE
self
.
fontDescriptor4
.
Weight
=
150
self
.
fontDescriptor5
.
Name
=
"Angsana New"
self
.
fontDescriptor5
.
Height
=
16
...
...
@@ -126,7 +117,6 @@ class WebWizardDialog(WizardDialog):
self
.
fontDescriptor7
.
StyleName
=
"Regular"
self
.
fontDescriptor7
.
Weight
=
100
#build components
def
buildStep1
(
self
):
tabIndex
=
100
self
.
insertLabel
(
"lbIntroTitle"
,
WebWizardDialog
.
PROPNAMES_TITLE
,
...
...
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