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 : #ifndef INCLUDED_BASCTL_SOURCE_BASICIDE_LINENUMBERWINDOW_HXX
11 : #define INCLUDED_BASCTL_SOURCE_BASICIDE_LINENUMBERWINDOW_HXX
12 :
13 : #include <vcl/window.hxx>
14 :
15 : namespace basctl
16 : {
17 :
18 : class ModulWindow;
19 :
20 : class LineNumberWindow : public vcl::Window
21 : {
22 : private:
23 : ModulWindow* m_pModulWindow;
24 : int m_nWidth;
25 : long m_nCurYOffset;
26 : int m_nBaseWidth;
27 : virtual void DataChanged (DataChangedEvent const& rDCEvt) SAL_OVERRIDE;
28 :
29 : protected:
30 : virtual void Paint( const Rectangle& ) SAL_OVERRIDE;
31 :
32 : public:
33 : LineNumberWindow (vcl::Window* pParent, ModulWindow* pModulWin);
34 : virtual ~LineNumberWindow();
35 :
36 : void DoScroll( long nHorzScroll, long nVertScroll );
37 :
38 : bool SyncYOffset();
39 0 : long& GetCurYOffset() { return m_nCurYOffset;}
40 :
41 0 : int GetWidth() { return m_nWidth;}
42 : };
43 :
44 : } // namespace basctl
45 :
46 : #endif // INCLUDED_BASCTL_SOURCE_BASICIDE_LINENUMBERWINDOW_HXX
47 :
48 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|