summaryrefslogtreecommitdiff
path: root/sc/source/ui/src/colorformat.src
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/src/colorformat.src')
-rw-r--r--sc/source/ui/src/colorformat.src160
1 files changed, 0 insertions, 160 deletions
diff --git a/sc/source/ui/src/colorformat.src b/sc/source/ui/src/colorformat.src
deleted file mode 100644
index 439f4fb3db1a..000000000000
--- a/sc/source/ui/src/colorformat.src
+++ /dev/null
@@ -1,160 +0,0 @@
-/* -*- 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/.
- */
-
-#include "colorformat.hrc"
-
-ModalDialog RID_SCDLG_DATABAR
-{
- OutputSize = TRUE;
- Hide = TRUE;
- Size = MAP_APPFONT ( 200, 200 );
- Text [ en-US ] = "Data Bar";
- Moveable = TRUE;
- Closeable = TRUE;
- OkButton BTN_OK
- {
- Pos = MAP_APPFONT ( 120, 180 );
- Size = MAP_APPFONT ( 30, 14 );
- TabStop = TRUE;
- };
- CancelButton BTN_CANCEL
- {
- Pos = MAP_APPFONT ( 160, 180 );
- Size = MAP_APPFONT ( 30, 14 );
- TabStop = TRUE;
- };
- FixedLine FL_VALUES
- {
- Pos = MAP_APPFONT( 5, 5 );
- Size = MAP_APPFONT( 190, 10 );
- Text [ en-US ] = "Entry Values";
- };
- FixedLine FL_BAR_COLORS
- {
- Pos = MAP_APPFONT( 5, 60 );
- Size = MAP_APPFONT( 190, 10 );
- Text [ en-US ] = "Bar Colors";
- };
- FixedLine FL_AXIS
- {
- Pos = MAP_APPFONT( 5, 120 );
- Size = MAP_APPFONT( 190, 10 );
- Text [ en-US ] = "Axis";
- };
- FixedText FT_MINIMUM
- {
- Pos = MAP_APPFONT( 10, 20 );
- Size = MAP_APPFONT( 50, 14 );
- Text [ en-US ] = "Minimum:";
- };
- FixedText FT_MAXIMUM
- {
- Pos = MAP_APPFONT( 10, 40 );
- Size = MAP_APPFONT( 50, 14 );
- Text [ en-US ] = "Maximum:";
- };
- FixedText FT_POSITIVE
- {
- Pos = MAP_APPFONT( 10, 75 );
- Size = MAP_APPFONT( 50, 14 );
- Text [ en-US ] = "Positive:";
- };
- FixedText FT_NEGATIVE
- {
- Pos = MAP_APPFONT( 10, 95 );
- Size = MAP_APPFONT( 50, 14 );
- Text [ en-US ] = "Negative:";
- };
- FixedText FT_POSITION
- {
- Pos = MAP_APPFONT( 10, 135 );
- Size = MAP_APPFONT( 110, 14 );
- Text [ en-US ] = "Position of vertical axis";
- };
- FixedText FT_COLOR_AXIS
- {
- Pos = MAP_APPFONT( 10, 155 );
- Size = MAP_APPFONT( 110, 14 );
- Text [ en-US ] = "Color of vertical axis";
- };
- ListBox LB_POS
- {
- Pos = MAP_APPFONT( 80, 75 );
- Size = MAP_APPFONT( 60, 50 );
- Border = TRUE;
- DropDown = TRUE;
- DDExtraWidth = TRUE;
- };
- ListBox LB_NEG
- {
- Pos = MAP_APPFONT( 80, 95 );
- Size = MAP_APPFONT( 60, 50 );
- Border = TRUE;
- DropDown = TRUE;
- DDExtraWidth = TRUE;
- };
- ListBox LB_COL_AXIS
- {
- Pos = MAP_APPFONT( 120, 155 );
- Size = MAP_APPFONT( 60, 50 );
- Border = TRUE;
- DropDown = TRUE;
- DDExtraWidth = TRUE;
- };
- ListBox LB_TYPE
- {
- Pos = MAP_APPFONT( 80, 20 );
- Size = MAP_APPFONT( 50, 50 );
- Border = TRUE;
- DropDown = TRUE;
- StringList [ en-US ] =
- {
- "Automatic";
- "Minimum";
- "Maximum";
- "Percentile";
- "Value";
- "Percent";
- "Formula";
- };
- };
- ListBox LB_AXIS_POSITION
- {
- Pos = MAP_APPFONT( 120, 135 );
- Size = MAP_APPFONT( 50, 50 );
- Border = TRUE;
- DropDown = TRUE;
- StringList [ en-US ] =
- {
- "Automatic";
- "Middle";
- "None";
- };
- };
- Edit ED_MIN
- {
- Pos = MAP_APPFONT( 140, 21 );
- Size = MAP_APPFONT( 40, 12 );
- TabStop = TRUE;
- Border = TRUE;
- };
- Edit ED_MAX
- {
- Pos = MAP_APPFONT( 140, 41 );
- Size = MAP_APPFONT( 40, 12 );
- TabStop = TRUE;
- Border = TRUE;
- };
- String STR_WARN_SAME_VALUE
- {
- Text [ en-US ] = "Min value must be smaller than max value!";
- };
-};
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */