From 0f8ca94774ba66faa2b43af1f904e2886d85bf8a Mon Sep 17 00:00:00 2001 From: Rishabh Kumar Date: Mon, 4 Jul 2016 15:04:39 +0530 Subject: Icon view listbox for XHatchList Change-Id: I40d39c28bbc217cb63a3857c8a90dba72d196878 Reviewed-on: https://gerrit.libreoffice.org/26896 Tested-by: Jenkins Reviewed-by: Katarina Behrens --- include/svx/SvxPresetListBox.hxx | 62 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 include/svx/SvxPresetListBox.hxx (limited to 'include/svx/SvxPresetListBox.hxx') diff --git a/include/svx/SvxPresetListBox.hxx b/include/svx/SvxPresetListBox.hxx new file mode 100644 index 000000000000..228ad2d49eb3 --- /dev/null +++ b/include/svx/SvxPresetListBox.hxx @@ -0,0 +1,62 @@ +/* -*- 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/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ + +#ifndef INCLUDED_SVX_SVXPRESETLISTBOX_HXX +#define INCLUDED_SVX_SVXPRESETLISTBOX_HXX + +#include +#include +#include +#include +#include + +class SVX_DLLPUBLIC SvxPresetListBox : public ValueSet +{ +private: + sal_uInt32 nColCount = 2; + sal_uInt32 nRowCount = 5; + Link maRenameHdl; + Link maDeleteHdl; + + DECL_LINK_TYPED( OnMenuItemSelected, Menu*, bool ); +public: + SvxPresetListBox(vcl::Window* pParent, WinBits nWinStyle = WB_ITEMBORDER); + + virtual void Resize() override; + virtual void Command( const CommandEvent& rEvt ) override; + sal_uInt32 getColumnCount() const { return nColCount; } + + void setColumnCount( const sal_uInt32 nCount ) { nColCount = nCount; } + void setRowCount( const sal_uInt32 nRow ) { nRowCount = nRow; } + void SetRenameHdl( const Link& rLink ) + { + maRenameHdl = rLink; + } + void SetDeleteHdl( const Link& rLink ) + { + maDeleteHdl = rLink; + } + void FillPresetListBox(XHatchList& pList, sal_uInt32 nStartIndex = 1); + void DrawLayout(); + +}; + +#endif // INCLUDED_SVX_SVXPRESETLISTBOX_HXX + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit