Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : */
9 :
10 : #include <vcl/builder.hxx>
11 : #include "LimitBox.hxx"
12 : #include "dbu_qry.hrc"
13 : #include "moduledbu.hxx"
14 :
15 : #define ALL_STRING ModuleRes(STR_QUERY_LIMIT_ALL).toString()
16 : #define ALL_INT -1
17 :
18 : namespace global{
19 :
20 : /// Default values
21 : sal_Int64 aDefLimitAry[] =
22 : {
23 : 5,
24 : 10,
25 : 20,
26 : 50
27 : };
28 :
29 : }
30 :
31 : namespace dbaui
32 : {
33 :
34 :
35 0 : LimitBox::LimitBox( Window* pParent, WinBits nStyle )
36 0 : : NumericBox( pParent, nStyle )
37 : {
38 0 : SetShowTrailingZeros( false );
39 0 : SetDecimalDigits( 0 );
40 0 : SetMin( -1 );
41 0 : SetMax( SAL_MAX_INT64 );
42 0 : LoadDefaultLimits();
43 :
44 : Size aSize(
45 0 : GetSizePixel().Width(),
46 0 : CalcWindowSizePixel(GetEntryCount() + 1) );
47 0 : SetSizePixel(aSize);
48 0 : }
49 :
50 0 : LimitBox::~LimitBox()
51 : {
52 0 : }
53 :
54 0 : OUString LimitBox::CreateFieldText( sal_Int64 nValue ) const
55 : {
56 0 : if( nValue == ALL_INT )
57 0 : return ALL_STRING;
58 : else
59 0 : return NumericBox::CreateFieldText( nValue );
60 : }
61 :
62 0 : void LimitBox::Reformat()
63 : {
64 :
65 0 : if( GetText() == ALL_STRING )
66 : {
67 0 : SetValue( ALL_INT );
68 : }
69 : ///Reformat only when text is not All
70 : else
71 : {
72 : ///Not allow user to type in -1
73 0 : if( GetText() == "-1" )
74 : {
75 0 : Undo();
76 : }
77 : else
78 0 : NumericBox::Reformat();
79 : }
80 0 : }
81 :
82 0 : void LimitBox::ReformatAll()
83 : {
84 : ///First entry is All, which do not need numeric reformat
85 0 : if ( GetEntryCount() > 0 )
86 : {
87 0 : RemoveEntryAt( 0 );
88 0 : NumericBox::ReformatAll();
89 0 : InsertValue( ALL_INT, 0);
90 : }
91 : else
92 : {
93 0 : NumericBox::ReformatAll();
94 : }
95 0 : }
96 :
97 0 : Size LimitBox::GetOptimalSize() const
98 : {
99 0 : return CalcBlockSize(10,1);
100 : }
101 :
102 : ///Initialize entries
103 0 : void LimitBox::LoadDefaultLimits()
104 : {
105 0 : InsertValue( ALL_INT );
106 :
107 : const unsigned nSize =
108 0 : sizeof(global::aDefLimitAry)/sizeof(global::aDefLimitAry[0]);
109 0 : for( unsigned nIndex = 0; nIndex< nSize; ++nIndex)
110 : {
111 0 : InsertValue( global::aDefLimitAry[nIndex] );
112 : }
113 0 : }
114 :
115 0 : extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeLimitBox( Window *pParent, VclBuilder::stringmap & )
116 : {
117 0 : LimitBox* pBox = new LimitBox( pParent, WB_DROPDOWN | WB_VSCROLL );
118 0 : return pBox;
119 : }
120 :
121 :
122 : } ///dbaui namespace
123 :
124 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|