office-gobmx/uui/source/fltdlg.src
Herbert Dürr 613036b5a1 Resolves: #i55152# the listbox in the filter selection dialog should be sorted
(cherry picked from commit 47fc3a3278a7aac0ba2d8f47eb10a83c0a5f40c7)

Change-Id: I07215bb62dbedcb2d9baa0fd6d66a3ebe30f540e
2013-07-05 08:52:51 +01:00

75 lines
2.2 KiB
Text

/* -*- 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 .
*/
#define __RSC
#include "ids.hrc"
#include "fltdlg.hrc"
ModalDialog DLG_FILTER_SELECT
{
HelpId = HID_DLG_FILTER_SELECT ;
OutputSize = TRUE ;
SVLook = TRUE ;
Size = MAP_APPFONT ( 250 , 200 ) ;
Moveable = TRUE ;
Text [ en-US ] = "Filter Selection" ;
FixedText FT_URL
{
Pos = MAP_APPFONT ( 6 , 6 ) ;
Size = MAP_APPFONT ( 238 , 10 ) ;
WordBreak = FALSE ;
};
ListBox LB_FILTERS
{
HelpID = "uui:ListBox:DLG_FILTER_SELECT:LB_FILTERS";
Border = TRUE ;
Pos = MAP_APPFONT ( 6 , 19 ) ;
Size = MAP_APPFONT ( 182 , 175 ) ;
TabStop = TRUE ;
Sort = TRUE ;
AutoHScroll = TRUE;
};
OKButton BTN_OK
{
Pos = MAP_APPFONT ( 194 , 19 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
TabStop = TRUE ;
DefButton = TRUE ;
};
CancelButton BTN_CANCEL
{
Pos = MAP_APPFONT ( 194 , 36 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
TabStop = TRUE ;
};
HelpButton BTN_HELP
{
Pos = MAP_APPFONT ( 194 , 56 ) ;
Size = MAP_APPFONT ( 50 , 14 ) ;
TabStop = TRUE ;
};
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */