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
4db25c3e
Kaydet (Commit)
4db25c3e
authored
Eyl 11, 2013
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
add yellow smilies to icon sets
Change-Id: I32d3290d333c6bac34b2ef58d2a63c4470b2e462
üst
166e2319
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
21 additions
and
3 deletions
+21
-3
icon-set-negative-yellow-smilie.png
...-themes/galaxy/sc/res/icon-set-negative-yellow-smilie.png
+0
-0
icon-set-positive-yellow-smilie.png
...-themes/galaxy/sc/res/icon-set-positive-yellow-smilie.png
+0
-0
colorscale.hxx
sc/inc/colorscale.hxx
+2
-1
colorscale.cxx
sc/source/core/data/colorscale.cxx
+8
-2
iconsets.hrc
sc/source/ui/inc/iconsets.hrc
+2
-0
condformatdlg.src
sc/source/ui/src/condformatdlg.src
+1
-0
iconsets.src
sc/source/ui/src/iconsets.src
+8
-0
No files found.
icon-themes/galaxy/sc/res/icon-set-negative-yellow-smilie.png
0 → 100644
Dosyayı görüntüle @
4db25c3e
934 Bytes
icon-themes/galaxy/sc/res/icon-set-positive-yellow-smilie.png
0 → 100644
Dosyayı görüntüle @
4db25c3e
924 Bytes
sc/inc/colorscale.hxx
Dosyayı görüntüle @
4db25c3e
...
...
@@ -178,7 +178,8 @@ enum ScIconSetType
IconSet_3Signs
,
IconSet_3Symbols
,
IconSet_3Symbols2
,
IconSet_ColorSmilies
,
IconSet_3Smilies
,
IconSet_3ColorSmilies
,
IconSet_4Arrows
,
IconSet_4ArrowsGray
,
IconSet_4RedToBlack
,
...
...
sc/source/core/data/colorscale.cxx
Dosyayı görüntüle @
4db25c3e
...
...
@@ -1165,7 +1165,8 @@ ScIconSetMap* ScIconSetFormat::getIconSetMap()
{
"3Signs"
,
IconSet_3Signs
,
3
},
{
"3Symbols"
,
IconSet_3Symbols
,
3
},
{
"3Symbols2"
,
IconSet_3Symbols2
,
3
},
{
"ColorSmilies"
,
IconSet_ColorSmilies
,
3
},
{
"3Smilies"
,
IconSet_3Smilies
,
3
},
{
"3ColorSmilies"
,
IconSet_3ColorSmilies
,
3
},
{
"4Arrows"
,
IconSet_4Arrows
,
4
},
{
"4ArrowsGray"
,
IconSet_4ArrowsGray
,
4
},
{
"4RedToBlack"
,
IconSet_4RedToBlack
,
4
},
...
...
@@ -1203,6 +1204,10 @@ const sal_Int32 a3Flags[] = {
BMP_ICON_SET_FLAGS_RED
,
BMP_ICON_SET_FLAGS_YELLOW
,
BMP_ICON_SET_FLAGS_GREEN
};
const
sal_Int32
a3Smilies
[]
{
BMP_ICON_SET_POSITIVE_YELLOW_SMILIE
,
BMP_ICON_SET_NEUTRAL_YELLOW_SMILIE
,
BMP_ICON_SET_NEGATIVE_YELLOW_SMILIE
};
const
sal_Int32
a3ColorSmilies
[]
{
BMP_ICON_SET_POSITIVE_GREEN_SMILIE
,
BMP_ICON_SET_NEUTRAL_YELLOW_SMILIE
,
BMP_ICON_SET_NEGATIVE_RED_SMILIE
};
...
...
@@ -1272,7 +1277,8 @@ static const ScIconSetBitmapMap aBitmapMap[] = {
{
IconSet_3Symbols2
,
a3Symbols1
},
{
IconSet_3TrafficLights1
,
a3TrafficLights1
},
{
IconSet_3TrafficLights2
,
a3TrafficLights2
},
{
IconSet_ColorSmilies
,
a3ColorSmilies
},
{
IconSet_3Smilies
,
a3Smilies
},
{
IconSet_3ColorSmilies
,
a3ColorSmilies
},
{
IconSet_4Arrows
,
a4Arrows
},
{
IconSet_4ArrowsGray
,
a4ArrowsGray
},
{
IconSet_4Rating
,
a4Ratings
},
...
...
sc/source/ui/inc/iconsets.hrc
Dosyayı görüntüle @
4db25c3e
...
...
@@ -61,5 +61,7 @@
#define BMP_ICON_SET_POSITIVE_GREEN_SMILIE 948
#define BMP_ICON_SET_NEUTRAL_YELLOW_SMILIE 947
#define BMP_ICON_SET_NEGATIVE_RED_SMILIE 946
#define BMP_ICON_SET_POSITIVE_YELLOW_SMILIE 945
#define BMP_ICON_SET_NEGATIVE_YELLOW_SMILIE 944
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
sc/source/ui/src/condformatdlg.src
Dosyayı görüntüle @
4db25c3e
...
...
@@ -343,6 +343,7 @@ Control RID_COND_ENTRY
"3 Signs";
"3 Symbols 1";
"3 Symbols 2";
"3 Smilies";
"3 Colored Smilies";
"4 Arrows";
"4 Gray Arrows";
...
...
sc/source/ui/src/iconsets.src
Dosyayı görüntüle @
4db25c3e
...
...
@@ -225,5 +225,13 @@ Bitmap BMP_ICON_SET_NEGATIVE_RED_SMILIE
{
File = "icon-set-negative-red-smilie.png";
};
Bitmap BMP_ICON_SET_POSITIVE_YELLOW_SMILIE
{
File = "icon-set-positive-yellow-smilie.png";
};
Bitmap BMP_ICON_SET_NEGATIVE_YELLOW_SMILIE
{
File = "icon-set-negative-yellow-smilie.png";
};
/* 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