blob: 762b0cd5d76165410beec56fb99c33e01ec0950d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
/* -*- 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/.
*/
#ifndef INCLUDED_SC_SOURCE_UI_INC_DATAFDLG_HXX
#define INCLUDED_SC_SOURCE_UI_INC_DATAFDLG_HXX
#include <vcl/dialog.hxx>
#include <vcl/button.hxx>
#include <vcl/fixed.hxx>
#include "global.hxx"
#include "tabvwsh.hxx"
#include <sfx2/bindings.hxx>
#include <sfx2/dispatch.hxx>
#define MAX_DATAFORM_COLS 256
#define MAX_DATAFORM_ROWS 32000
class ScDataFormDlg : public ModalDialog
{
private:
VclPtr<PushButton> m_pBtnNew;
VclPtr<PushButton> m_pBtnDelete;
VclPtr<PushButton> m_pBtnRestore;
VclPtr<PushButton> m_pBtnPrev;
VclPtr<PushButton> m_pBtnNext;
VclPtr<PushButton> m_pBtnClose;
VclPtr<ScrollBar> m_pSlider;
VclPtr<VclGrid> m_pGrid;
VclPtr<FixedText> m_pFixedText;
OUString sNewRecord;
ScTabViewShell* pTabViewShell;
ScDocument* pDoc;
sal_uInt16 aColLength;
SCROW nCurrentRow;
SCCOL nStartCol;
SCCOL nEndCol;
SCROW nStartRow;
SCROW nEndRow;
SCTAB nTab;
bool bNoSelection;
std::vector<VclPtr<FixedText> > maFixedTexts;
std::vector<VclPtr<Edit> > maEdits;
public:
ScDataFormDlg( vcl::Window* pParent, ScTabViewShell* pTabViewShell);
virtual ~ScDataFormDlg();
virtual void dispose() SAL_OVERRIDE;
void FillCtrls(SCROW nCurrentRow);
private:
void SetButtonState();
// Handler:
DECL_LINK(Impl_NewHdl, void *);
DECL_LINK(Impl_PrevHdl, void *);
DECL_LINK(Impl_NextHdl, void *);
DECL_LINK(Impl_RestoreHdl, void *);
DECL_LINK(Impl_DeleteHdl, void *);
DECL_LINK(Impl_CloseHdl, void *);
DECL_LINK(Impl_ScrollHdl, void *);
DECL_LINK( Impl_DataModifyHdl, Edit* );
};
#endif // INCLUDED_SC_SOURCE_UI_INC_DATAFDLG_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|