android: Update app-specific/MIME type icons
[LibreOffice.git] / basctl / source / basicide / linenumberwindow.hxx
bloba2e457f71103b506a6748d6e26fe4f08bc7e2867
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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/.
8 */
10 #pragma once
12 #include <vcl/window.hxx>
14 namespace basctl
16 class ModulWindow;
18 class LineNumberWindow : public vcl::Window
20 private:
21 VclPtr<ModulWindow> m_pModulWindow;
22 int m_nWidth;
23 tools::Long m_nCurYOffset;
24 int m_nBaseWidth;
25 Color m_FontColor;
26 virtual void DataChanged(DataChangedEvent const& rDCEvt) override;
28 protected:
29 virtual void Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect) override;
31 public:
32 LineNumberWindow(vcl::Window* pParent, ModulWindow* pModulWin);
33 virtual ~LineNumberWindow() override;
34 virtual void dispose() override;
36 void DoScroll(tools::Long nVertScroll);
38 bool SyncYOffset();
39 tools::Long& GetCurYOffset() { return m_nCurYOffset; }
41 int GetWidth() const { return m_nWidth; }
44 } // namespace basctl
46 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */