forked from amazingfate/loongoffice
use solenv/bin/add-modulelines script for the task and remove all UTF bom from *.src and *.hrc files svx/source/dialog/hdft.src Change-Id: I745d4f0fe9b05436a142a03f8512970f91c41bd4
99 lines
3.0 KiB
Plaintext
99 lines
3.0 KiB
Plaintext
/* -*- 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 .
|
|
*/
|
|
|
|
#include "optchart.hrc"
|
|
#include <cuires.hrc>
|
|
#include "helpid.hrc"
|
|
|
|
// tab page for setting the default colors used for new charts
|
|
|
|
TabPage RID_OPTPAGE_CHART_DEFCOLORS
|
|
{
|
|
HelpID = HID_OPTIONS_CHART_DEFCOLORS;
|
|
Size = MAP_APPFONT ( TP_WIDTH , TP_HEIGHT ) ;
|
|
Hide = TRUE;
|
|
Text [ en-US ] = "Default Colors";
|
|
FixedLine FL_CHART_COLOR_LIST
|
|
{
|
|
Pos = MAP_APPFONT ( 6 , 3 ) ;
|
|
Size = MAP_APPFONT ( 80 , 8 ) ;
|
|
Text [ en-US ] = "Chart colors";
|
|
};
|
|
ListBox LB_CHART_COLOR_LIST
|
|
{
|
|
HelpID = "cui:ListBox:RID_OPTPAGE_CHART_DEFCOLORS:LB_CHART_COLOR_LIST";
|
|
Border = TRUE;
|
|
Pos = MAP_APPFONT ( 12 , 15 );
|
|
Size = MAP_APPFONT ( 68 , 152 );
|
|
DropDown = FALSE;
|
|
TabStop = TRUE ;
|
|
};
|
|
FixedLine FL_COLOR_BOX
|
|
{
|
|
Pos = MAP_APPFONT ( 92 , 3 ) ;
|
|
Size = MAP_APPFONT ( 106 , 8 ) ;
|
|
Text [ en-US ] = "Color table" ;
|
|
};
|
|
Control CT_COLOR_BOX
|
|
{
|
|
Border = TRUE;
|
|
Pos = MAP_APPFONT ( 98 , 15 );
|
|
Size = MAP_APPFONT ( 94 , 152 );
|
|
TabStop = TRUE ;
|
|
};
|
|
PushButton PB_ADD_CHART_COLOR
|
|
{
|
|
Pos = MAP_APPFONT ( 204 , 15 ) ;
|
|
Size = MAP_APPFONT ( 50 , 14 ) ;
|
|
Text [ en-US ] = "~Add";
|
|
};
|
|
PushButton PB_REMOVE_CHART_COLOR
|
|
{
|
|
Pos = MAP_APPFONT ( 204 , 32 ) ;
|
|
Size = MAP_APPFONT ( 50 , 14 ) ;
|
|
Text [ en-US ] = "~Remove";
|
|
};
|
|
PushButton PB_RESET_TO_DEFAULT
|
|
{
|
|
HelpID = "cui:PushButton:RID_OPTPAGE_CHART_DEFCOLORS:PB_RESET_TO_DEFAULT";
|
|
Pos = MAP_APPFONT ( 204 , 165 ) ;
|
|
Size = MAP_APPFONT ( 50 , 14 ) ;
|
|
Text [ en-US ] = "~Default";
|
|
};
|
|
};
|
|
|
|
String RID_SVXSTR_DIAGRAM_ROW
|
|
{
|
|
// $(ROW) can be a number or the caption of the row in quotes
|
|
|
|
Text [ en-US ] = "Data Series $(ROW)" ;
|
|
};
|
|
QueryBox RID_OPTQB_COLOR_CHART_DELETE
|
|
{
|
|
Buttons = WB_YES_NO ;
|
|
DefButton = WB_DEF_NO ;
|
|
Message [ en-US ] = "Do you really want to delete the chart color?" ;
|
|
};
|
|
String RID_OPTSTR_COLOR_CHART_DELETE
|
|
{
|
|
Text [ en-US ] = "Chart Color Deletion" ;
|
|
};
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|