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/.
10 #ifndef BASCTL_LINENUMBERWINDOW_HXX
11 #define BASCTL_LINENUMBERWINDOW_HXX
13 #include <vcl/window.hxx>
20 class LineNumberWindow
: public Window
23 ModulWindow
* m_pModulWindow
;
27 virtual void DataChanged (DataChangedEvent
const& rDCEvt
);
30 virtual void Paint( const Rectangle
& );
33 LineNumberWindow (Window
* pParent
, ModulWindow
* pModulWin
);
36 void DoScroll( long nHorzScroll
, long nVertScroll
);
39 long& GetCurYOffset();
46 #endif // BASCTL_LINENUMBERWINDOW_HXX
48 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */