1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
22 #include <vcl/fixed.hxx>
23 #include <vcl/button.hxx>
24 #include <vcl/field.hxx>
25 #include <vcl/lstbox.hxx>
26 #include <svx/stddlg.hxx>
27 #include <svx/langbox.hxx>
30 class CollatorResource
;
32 class SwSortDlg
: public SvxStandardDialog
38 NumericField
* m_pColEdt1
;
40 RadioButton
* m_pSortUp1RB
;
41 RadioButton
* m_pSortDn1RB
;
44 NumericField
* m_pColEdt2
;
46 RadioButton
* m_pSortUp2RB
;
47 RadioButton
* m_pSortDn2RB
;
50 NumericField
* m_pColEdt3
;
52 RadioButton
* m_pSortUp3RB
;
53 RadioButton
* m_pSortDn3RB
;
55 RadioButton
* m_pColumnRB
;
56 RadioButton
* m_pRowRB
;
58 RadioButton
* m_pDelimTabRB
;
59 RadioButton
* m_pDelimFreeRB
;
61 PushButton
* m_pDelimPB
;
63 SvxLanguageBox
* m_pLangLB
;
72 CollatorResource
* pColRes
;
78 sal_Unicode
GetDelimChar() const;
80 DECL_LINK( CheckHdl
, CheckBox
* );
81 DECL_LINK( DelimHdl
, RadioButton
* );
82 DECL_LINK( LanguageHdl
, ListBox
* );
83 DECL_LINK(DelimCharHdl
, void *);
86 SwSortDlg(Window
* pParent
, SwWrtShell
&rSh
);
92 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */