summaryrefslogtreecommitdiff
path: root/cui/source/options
diff options
context:
space:
mode:
authorEfe Gürkan YALAMAN <efeyalaman@gmail.com>2013-06-19 21:07:55 +0300
committerThorsten Behrens <tbehrens@suse.com>2013-08-01 01:48:34 +0200
commit208e3f6ea77057e301bfe6693b3bd4e3ba66defc (patch)
tree574e1469299f96479634ed7cff1c1c2141b8d029 /cui/source/options
parent2004a788115fa8ec64fc2d5d5f857a0284b80263 (diff)
about config page header prototype
prototype is added for about:config utility as SfxTabPage. Change-Id: I5146c0615a42f0ae084b3ec29b6b5f3b6677d9c6
Diffstat (limited to 'cui/source/options')
-rw-r--r--cui/source/options/optaboutconfig.hxx24
1 files changed, 24 insertions, 0 deletions
diff --git a/cui/source/options/optaboutconfig.hxx b/cui/source/options/optaboutconfig.hxx
new file mode 100644
index 000000000000..969f130ad5a9
--- /dev/null
+++ b/cui/source/options/optaboutconfig.hxx
@@ -0,0 +1,24 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+#ifndef _SVX_OPTABOUTCONFIG_HXX
+#define _SVX_OPTABOUTCONFIG_HXX
+
+#include <svx/simpltabl.hxx>
+
+namespace svx
+{
+ class OptHeaderTabListBox;
+}
+
+
+class SvxAboutConfigTabPage : public SfxTabPage
+{
+private:
+ SvxSimpleTableContainer* m_pPrefCtrl;
+ //In case of tab page we can think a revert button
+ //PushButton* m_pDefaultBtn
+ PushButton* m_pEditBtn;
+
+ ::svx::OptHeaderTabListBox* pPrefBox;
+public:
+}
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */