summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-12-19 13:41:16 +0000
committerCaolán McNamara <caolanm@redhat.com>2019-12-19 22:08:44 +0100
commit0a2b871ccdc5a76f793982bae45cb251c71e4b94 (patch)
treec15d296cc39974394a56f2ccfb4e6a904fe2a1a4 /include
parentcbca3beb990df9e75218e27ff0f1b563cf3a67da (diff)
weld PageFooterPanel
Change-Id: Ice9e7c5ab9c1085021ebb3561cfb2bd0a6727066 Reviewed-on: https://gerrit.libreoffice.org/85526 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/svx/samecontentlistbox.hxx4
-rw-r--r--include/svx/spacinglistbox.hxx2
2 files changed, 5 insertions, 1 deletions
diff --git a/include/svx/samecontentlistbox.hxx b/include/svx/samecontentlistbox.hxx
index 842063125d2e..73946e2a3f35 100644
--- a/include/svx/samecontentlistbox.hxx
+++ b/include/svx/samecontentlistbox.hxx
@@ -22,14 +22,16 @@
#include <svx/svxdllapi.h>
#include <vcl/lstbox.hxx>
+#include <vcl/weld.hxx>
/// Custom Widget ListBox to hold entries for SameContent setting of Header/Footer
class SVX_DLLPUBLIC SameContentListBox final : public ListBox
{
public:
SameContentListBox( vcl::Window* pParent );
+ static void Fill(weld::ComboBox& rComboBox);
Size GetOptimalSize() const override;
};
#endif
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ \ No newline at end of file
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/svx/spacinglistbox.hxx b/include/svx/spacinglistbox.hxx
index 91e7fa18d777..df8b8c043e19 100644
--- a/include/svx/spacinglistbox.hxx
+++ b/include/svx/spacinglistbox.hxx
@@ -22,6 +22,7 @@
#include <svx/svxdllapi.h>
#include <vcl/lstbox.hxx>
+#include <vcl/weld.hxx>
enum class SpacingType { SPACING_INCH, MARGINS_INCH, SPACING_CM, MARGINS_CM };
@@ -31,6 +32,7 @@ class SVX_DLLPUBLIC SpacingListBox final : public ListBox
public:
SpacingListBox( vcl::Window* pParent );
void Init(SpacingType eType);
+ static void Fill(SpacingType eType, weld::ComboBox&);
Size GetOptimalSize() const override;
};