summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/tpsort.hxx
diff options
context:
space:
mode:
authorNiklas Nebel <nn@openoffice.org>2001-03-13 09:05:29 +0000
committerNiklas Nebel <nn@openoffice.org>2001-03-13 09:05:29 +0000
commit96dfacf24aefd8c5850d442d2e19d321c451d1fc (patch)
tree057ed98030f47de800db9b6ef16d3ed07e41a552 /sc/source/ui/inc/tpsort.hxx
parent3b28ab42391e4c16665a1705053efd4a4f67abbf (diff)
language and algorithm in sort dialog
Diffstat (limited to 'sc/source/ui/inc/tpsort.hxx')
-rw-r--r--sc/source/ui/inc/tpsort.hxx24
1 files changed, 20 insertions, 4 deletions
diff --git a/sc/source/ui/inc/tpsort.hxx b/sc/source/ui/inc/tpsort.hxx
index b2b871272cde..b62ec31433e7 100644
--- a/sc/source/ui/inc/tpsort.hxx
+++ b/sc/source/ui/inc/tpsort.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: tpsort.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: er $ $Date: 2001-03-12 16:49:49 $
+ * last change: $Author: nn $ $Date: 2001-03-13 10:03:17 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -87,6 +87,10 @@
#include <svtools/stdctrl.hxx>
#endif
+#ifndef _SVX_LANGBOX_HXX
+#include <svx/langbox.hxx>
+#endif
+
#ifndef SC_SCGLOB_HXX
#include "global.hxx"
@@ -175,6 +179,8 @@ private:
class ScDocument;
class ScRangeData;
+class CollatorRessource;
+class CollatorWrapper;
class ScTabPageSortOptions : public SfxTabPage
{
@@ -208,15 +214,21 @@ private:
CheckBox aBtnSortUser;
ListBox aLbSortUser;
+ FixedLine aLineLang;
+ SvxLanguageBox aLbLanguage;
+ ListBox aLbAlgorithm;
+
+ FixedLine aLineDirection;
RadioButton aBtnTopDown;
RadioButton aBtnLeftRight;
- GroupBox aGbDirection;
+
FixedText aFtAreaLabel;
- FixedInfo aFtArea;
+// FixedInfo aFtArea;
String aStrRowLabel;
String aStrColLabel;
String aStrUndefined;
String aStrNoName;
+ String aStrAreaLabel;
const USHORT nWhichSort;
const ScSortParam& rSortData;
@@ -225,6 +237,9 @@ private:
ScSortDlg* pDlg;
ScAddress theOutPos;
+ CollatorRessource* pColRes;
+ CollatorWrapper* pColWrap;
+
#ifdef _TPSORT_CXX
private:
void Init ();
@@ -236,6 +251,7 @@ private:
DECL_LINK( SelOutPosHdl, ListBox * );
void EdOutPosModHdl ( Edit* pEd );
DECL_LINK( SortDirHdl, RadioButton * );
+ DECL_LINK( FillAlgorHdl, void * );
#endif
};