summaryrefslogtreecommitdiff
path: root/include/svx/SvxPresetListBox.hxx
diff options
context:
space:
mode:
authorRishabh Kumar <kris.kr296@gmail.com>2016-07-04 15:04:39 +0530
committerKatarina Behrens <Katarina.Behrens@cib.de>2016-07-05 07:52:19 +0000
commit0f8ca94774ba66faa2b43af1f904e2886d85bf8a (patch)
tree781edd1b2d47df9fe4a69a1a66eb2e13312a6bc1 /include/svx/SvxPresetListBox.hxx
parent308a088211a0df6a75a1f5cd63aa7ee9dcb54536 (diff)
Icon view listbox for XHatchList
Change-Id: I40d39c28bbc217cb63a3857c8a90dba72d196878 Reviewed-on: https://gerrit.libreoffice.org/26896 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
Diffstat (limited to 'include/svx/SvxPresetListBox.hxx')
-rw-r--r--include/svx/SvxPresetListBox.hxx62
1 files changed, 62 insertions, 0 deletions
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 <svtools/svtdllapi.h>
+#include <svx/XPropertyTable.hxx>
+#include <vcl/ctrl.hxx>
+#include <svtools/valueset.hxx>
+#include <svx/xtable.hxx>
+
+class SVX_DLLPUBLIC SvxPresetListBox : public ValueSet
+{
+private:
+ sal_uInt32 nColCount = 2;
+ sal_uInt32 nRowCount = 5;
+ Link<SvxPresetListBox*,void> maRenameHdl;
+ Link<SvxPresetListBox*,void> 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<SvxPresetListBox*,void>& rLink )
+ {
+ maRenameHdl = rLink;
+ }
+ void SetDeleteHdl( const Link<SvxPresetListBox*,void>& 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: */