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
05e61719
Kaydet (Commit)
05e61719
authored
Eki 06, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:mergeclasses
Change-Id: If918532fcc860e3deacd9c86dd7a2d554e4f748d
üst
2b57de8b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
60 deletions
+9
-60
UndoActions.hxx
chart2/source/controller/main/UndoActions.hxx
+0
-2
ConfigColorScheme.hxx
chart2/source/inc/ConfigColorScheme.hxx
+3
-5
ConfigItemListener.hxx
chart2/source/inc/ConfigItemListener.hxx
+0
-42
ConfigColorScheme.cxx
chart2/source/tools/ConfigColorScheme.cxx
+6
-10
mergeclasses.results
compilerplugins/clang/mergeclasses.results
+0
-1
No files found.
chart2/source/controller/main/UndoActions.hxx
Dosyayı görüntüle @
05e61719
...
...
@@ -19,8 +19,6 @@
#ifndef INCLUDED_CHART2_SOURCE_CONTROLLER_MAIN_UNDOACTIONS_HXX
#define INCLUDED_CHART2_SOURCE_CONTROLLER_MAIN_UNDOACTIONS_HXX
#include "ConfigItemListener.hxx"
#include <com/sun/star/frame/XModel.hpp>
#include <com/sun/star/document/XUndoAction.hpp>
#include <com/sun/star/uno/Sequence.hxx>
...
...
chart2/source/inc/ConfigColorScheme.hxx
Dosyayı görüntüle @
05e61719
...
...
@@ -19,7 +19,6 @@
#ifndef INCLUDED_CHART2_SOURCE_INC_CONFIGCOLORSCHEME_HXX
#define INCLUDED_CHART2_SOURCE_INC_CONFIGCOLORSCHEME_HXX
#include "ConfigItemListener.hxx"
#include "charttoolsdllapi.hxx"
#include <cppuhelper/implbase.hxx>
#include <comphelper/uno3.hxx>
...
...
@@ -42,7 +41,6 @@ class ChartConfigItem;
}
class
ConfigColorScheme
:
public
ConfigItemListener
,
public
::
cppu
::
WeakImplHelper
<
::
com
::
sun
::
star
::
chart2
::
XColorScheme
,
::
com
::
sun
::
star
::
lang
::
XServiceInfo
>
...
...
@@ -64,14 +62,14 @@ public:
static
OUString
getImplementationName_Static
();
static
css
::
uno
::
Sequence
<
OUString
>
getSupportedServiceNames_Static
();
// ____ ConfigItemListener ____
SAL_DLLPRIVATE
void
notify
(
const
OUString
&
rPropertyName
);
protected
:
// ____ XColorScheme ____
SAL_DLLPRIVATE
virtual
::
sal_Int32
SAL_CALL
getColorByIndex
(
::
sal_Int32
nIndex
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
// ____ ConfigItemListener ____
SAL_DLLPRIVATE
virtual
void
notify
(
const
OUString
&
rPropertyName
)
SAL_OVERRIDE
;
private
:
SAL_DLLPRIVATE
void
retrieveConfigColors
();
...
...
chart2/source/inc/ConfigItemListener.hxx
deleted
100644 → 0
Dosyayı görüntüle @
2b57de8b
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_CHART2_SOURCE_INC_CONFIGITEMLISTENER_HXX
#define INCLUDED_CHART2_SOURCE_INC_CONFIGITEMLISTENER_HXX
#include <rtl/ustring.hxx>
#include "charttoolsdllapi.hxx"
namespace
chart
{
class
OOO_DLLPUBLIC_CHARTTOOLS
ConfigItemListener
{
public
:
virtual
void
notify
(
const
OUString
&
rPropertyName
)
=
0
;
protected
:
~
ConfigItemListener
()
{}
};
}
// namespace chart
// INCLUDED_CHART2_SOURCE_INC_CONFIGITEMLISTENER_HXX
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
chart2/source/tools/ConfigColorScheme.cxx
Dosyayı görüntüle @
05e61719
...
...
@@ -52,31 +52,27 @@ namespace impl
class
ChartConfigItem
:
public
::
utl
::
ConfigItem
{
public
:
explicit
ChartConfigItem
(
Config
ItemListener
&
rListener
);
virtual
~
ChartConfigItem
()
;
explicit
ChartConfigItem
(
Config
ColorScheme
&
rListener
);
virtual
~
ChartConfigItem
()
{}
void
addPropertyNotification
(
const
OUString
&
rPropertyName
);
uno
::
Any
getProperty
(
const
OUString
&
aPropertyName
);
protected
:
// ____ ::utl::ConfigItem ____
virtual
void
ImplCommit
()
SAL_OVERRIDE
;
virtual
void
ImplCommit
()
SAL_OVERRIDE
;
virtual
void
Notify
(
const
Sequence
<
OUString
>
&
aPropertyNames
)
SAL_OVERRIDE
;
private
:
Config
ItemListener
&
m_rListener
;
::
std
::
set
<
OUString
>
m_aPropertiesToNotify
;
Config
ColorScheme
&
m_rListener
;
::
std
::
set
<
OUString
>
m_aPropertiesToNotify
;
};
ChartConfigItem
::
ChartConfigItem
(
Config
ItemListener
&
rListener
)
:
ChartConfigItem
::
ChartConfigItem
(
Config
ColorScheme
&
rListener
)
:
::
utl
::
ConfigItem
(
"Office.Chart/DefaultColor"
),
m_rListener
(
rListener
)
{}
ChartConfigItem
::~
ChartConfigItem
()
{}
void
ChartConfigItem
::
Notify
(
const
Sequence
<
OUString
>
&
aPropertyNames
)
{
for
(
sal_Int32
nIdx
=
0
;
nIdx
<
aPropertyNames
.
getLength
();
++
nIdx
)
...
...
compilerplugins/clang/mergeclasses.results
Dosyayı görüntüle @
05e61719
...
...
@@ -129,7 +129,6 @@ merge cairocanvas::DeviceHelper with cairocanvas::SpriteDeviceHelper
merge cairocanvas::Sprite with cairocanvas::CanvasCustomSpriteSpriteBase_Base
merge canvas::ISurfaceProxy with canvas::SurfaceProxy
merge canvas::ISurfaceProxyManager with canvas::SurfaceProxyManager
merge chart::ConfigItemListener with chart::ConfigColorScheme
merge chart::ExplicitValueProvider with chart::ChartView
merge chart::LegendEntryProvider with chart::VSeriesPlotter
merge chart::MarkHandleProvider with chart::SelectionHelper
...
...
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