Kaydet (Commit) 7abdda1b authored tarafından Markus Mohrhard's avatar Markus Mohrhard

fix all UNO IDL errors in new cond format API

Change-Id: I004a3899363280c16a60a5cca03d8940baeeae5c
üst 1da98a2f
......@@ -1171,9 +1171,13 @@ $(eval $(call gb_UnoApi_add_idlfiles_noheader,offapi,com/sun/star/sheet,\
Cells \
CellsEnumeration \
ConsolidationDescriptor \
ConditionalFormat \
ConditionFormatEntry \
ColorScale \
DDELink \
DDELinks \
DDELinksEnumeration \
DataBar \
DataPilotDescriptor \
DataPilotField \
DataPilotFieldGroup \
......@@ -1209,6 +1213,7 @@ $(eval $(call gb_UnoApi_add_idlfiles_noheader,offapi,com/sun/star/sheet,\
FunctionDescriptionEnumeration \
FunctionDescriptions \
HeaderFooterContent \
IconSet \
LabelRange \
LabelRanges \
LabelRangesEnumeration \
......@@ -3356,9 +3361,14 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,com/sun/star/sheet,\
CellDeleteMode \
CellFlags \
CellInsertMode \
ColorScaleEntryType \
ComplexReference \
ConditionEntryType \
ConditionFormatOperator \
ConditionOperator \
ConditionOperator2 \
DataBarAxis \
DataBarEntryType \
DDEItemInfo \
DDELinkInfo \
DDELinkMode \
......@@ -3404,6 +3414,8 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,com/sun/star/sheet,\
FunctionCategory \
GeneralFunction \
GoalResult \
IconSetFormatEntry \
IconSetType \
LocalizedName \
MemberResult \
MemberResultFlags \
......@@ -3448,12 +3460,15 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,com/sun/star/sheet,\
XCellRangesAccess \
XCellRangesQuery \
XCellSeries \
XColorScaleEntry \
XCompatibilityNames \
XConditionEntry \
XConditionalFormat \
XConditionalFormats \
XConditionEntry \
XConsolidatable \
XConsolidationDescriptor \
XDataBarEntry \
XDDELink \
XDDELinkResults \
XDDELinks \
......@@ -3489,6 +3504,7 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,com/sun/star/sheet,\
XGoalSeek \
XHeaderFooterContent \
XHierarchiesSupplier \
XIconSetEntry \
XLabelRange \
XLabelRanges \
XLevelsSupplier \
......
......@@ -16,13 +16,16 @@ service ConditionFormatEntry
{
interface XConditionEntry;
[property] ConditionFormatOperator Operator;
/**
* See com.sun.star.sheet.ConditionFormatOperator for valid values
*/
[property] long Operator;
[property] string StyleName;
[optional, property] Formula1;
[optional, property] string Formula1;
[optional, property] Formula2;
[optional, property] string Formula2;
};
......
......@@ -30,7 +30,7 @@ module com { module sun { module star { module sheet {
service ConditionalFormat
{
interface com::sun::star::beans::XPropertySet;
interface com::sun::star::uno::XConditionalFormat;
interface com::sun::star::sheet::XConditionalFormat;
/** represents the range for the conditional format
All ranges have to be in the same sheet.
......
......@@ -13,6 +13,7 @@
#include <com/sun/star/sheet/XConditionEntry.idl>
#include <com/sun/star/sheet/XColorScaleEntry.idl>
#include <com/sun/star/sheet/DataBarAxis.idl>
#include <com/sun/star/util/Color.idl>
module com { module sun { module star { module sheet {
......@@ -22,7 +23,10 @@ service DataBar
[property] boolean ShowValue;
[property] DataBarAxis AxisPosition;
/**
* See com.sun.star.sheet.DataBarAxis for possible values
*/
[property] long AxisPosition;
[property] boolean Gradient;
......
......@@ -22,7 +22,10 @@ service IconSet
[property] boolean Reverse;
[property] IconSetType Icons;
/**
* See com.sun.star.sheet.IconSetType for possible values.
*/
[property] long Icons;
[property] sequence<XIconSetEntry> IconSetEntries;
......
......@@ -12,7 +12,7 @@
module com { module sun { module star { module sheet {
constants IconSetEntryType
constants IconSetFormatEntry
{
const long ICONSET_PERCENTILE = 0;
......
......@@ -10,21 +10,29 @@
#ifndef __com_sun_star_sheet_XColorScaleEntry_idl__
#define __com_sun_star_sheet_XColorScaleEntry_idl__
#include <com/sun/star/util/Color.idl>
module com { module sun { module star { module sheet {
interface XColorScaleEntry
{
com::sun::star::util::Color getColor();
void setColor(com::sun::star::util::Color Color);
void setColor( [in] com::sun::star::util::Color Color);
string getFormula();
void setFormula(string Formula);
void setFormula( [in] string Formula);
ColorScaleEntryType getType();
/**
* See com.sun.star.sheet.ColorScaleEntryType for possible values
*/
long getType();
void setType(ColorScaleEntryType Type);
/**
* See com.sun.star.sheet.ColorScaleEntryType for possible values
*/
void setType( [in] long Type);
};
......
......@@ -16,11 +16,17 @@ interface XDataBarEntry
{
string getFormula();
void setFormula(string Formula);
void setFormula( [in] string Formula);
DataBarEntryType getType();
/**
* See com.sun.star.sheet.DataBarEntryType for possible values
*/
long getType();
void setType(DataBarEntryType Type);
/**
* See com.sun.star.sheet.DataBarEntryType for possible values
*/
void setType( [in] long Type);
};
......
......@@ -18,11 +18,17 @@ interface XIconSetEntry
{
string getFormula();
void setFormula(string Formula);
void setFormula([in] string Formula);
IconSetEntryType getType();
/**
* See com.sun.star.sheet.IconSetEntryType for possible values.
*/
long getType();
void setType(IconSetEntryType Type);
/**
* See com.sun.star.sheet.IconSetEntryType for possible values.
*/
void setType([in] long Type);
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment