summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-07-16 09:12:42 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-07-16 12:45:56 +0100
commit52bce8fadde39e32c0008babadc2c22cc501f753 (patch)
treec238b858401b18edaa27d62cd909a276ee76db73 /cui
parent84e5cdce3ed58c663109bb557b75cd6e45bb2dbc (diff)
convert versions of dialog to .ui
Change-Id: I1be2211b5c936e6e00f2fe81883b8fb1e67ef550
Diffstat (limited to 'cui')
-rw-r--r--cui/source/dialogs/multipat.cxx2
-rw-r--r--cui/source/inc/autocdlg.hxx27
-rw-r--r--cui/source/inc/dbregister.hxx4
-rw-r--r--cui/source/inc/multipat.hxx2
-rw-r--r--cui/source/inc/optdict.hxx2
-rw-r--r--cui/source/inc/optpath.hxx4
-rw-r--r--cui/source/inc/radiobtnbox.hxx8
-rw-r--r--cui/source/options/certpath.cxx4
-rw-r--r--cui/source/options/certpath.hxx6
-rw-r--r--cui/source/options/dbregister.cxx2
-rw-r--r--cui/source/options/fontsubs.cxx12
-rw-r--r--cui/source/options/fontsubs.hxx14
-rw-r--r--cui/source/options/optHeaderTabListbox.cxx6
-rw-r--r--cui/source/options/optHeaderTabListbox.hxx6
-rw-r--r--cui/source/options/optfltr.cxx6
-rw-r--r--cui/source/options/optfltr.hxx14
-rw-r--r--cui/source/options/optjava.cxx10
-rw-r--r--cui/source/options/optjava.hxx5
-rw-r--r--cui/source/options/radiobtnbox.cxx10
-rw-r--r--cui/source/options/webconninfo.cxx12
-rw-r--r--cui/source/options/webconninfo.hxx8
-rw-r--r--cui/source/tabpages/autocdlg.cxx8
-rw-r--r--cui/uiconfig/ui/optadvancedpage.ui2
-rw-r--r--cui/uiconfig/ui/optfontspage.ui2
-rw-r--r--cui/uiconfig/ui/optpathspage.ui2
-rw-r--r--cui/uiconfig/ui/storedwebconnectiondialog.ui2
26 files changed, 89 insertions, 91 deletions
diff --git a/cui/source/dialogs/multipat.cxx b/cui/source/dialogs/multipat.cxx
index 33715595cf82..183c56f27535 100644
--- a/cui/source/dialogs/multipat.cxx
+++ b/cui/source/dialogs/multipat.cxx
@@ -194,7 +194,7 @@ SvxMultiPathDialog::SvxMultiPathDialog( Window* pParent, sal_Bool bEmptyAllowed
{
static long aStaticTabs[]= { 2, 0, 12 };
- aRadioLB.SvxSimpleTable::SetTabs( aStaticTabs );
+ aRadioLB.SvSimpleTable::SetTabs( aStaticTabs );
String sHeader( CUI_RES( STR_HEADER_PATHS ) );
aRadioLB.SetQuickHelpText( sHeader );
sHeader.Insert( '\t', 0 );
diff --git a/cui/source/inc/autocdlg.hxx b/cui/source/inc/autocdlg.hxx
index 3d518d2b1d01..fe732cac8830 100644
--- a/cui/source/inc/autocdlg.hxx
+++ b/cui/source/inc/autocdlg.hxx
@@ -19,20 +19,19 @@
#ifndef _OFA_AUTOCDLG_HXX
#define _OFA_AUTOCDLG_HXX
-#include <svtools/langtab.hxx>
#include <sfx2/tabdlg.hxx>
+#include <svtools/langtab.hxx>
+#include <svtools/simptabl.hxx>
+#include <svtools/svtabbx.hxx>
+#include <svtools/treelistentry.hxx>
#include <svx/checklbx.hxx>
+#include <svx/langbox.hxx>
+#include <vcl/button.hxx>
#include <vcl/fixed.hxx>
#include <vcl/field.hxx>
-#include <vcl/metric.hxx>
-#include <svx/langbox.hxx>
-#include "svtools/treelistentry.hxx"
-
#include <vcl/group.hxx>
-#include <vcl/button.hxx>
#include <vcl/lstbox.hxx>
-#include <svtools/svtabbx.hxx>
-#include <svx/simptabl.hxx>
+#include <vcl/metric.hxx>
class CharClass;
class CollatorWrapper;
@@ -60,9 +59,9 @@ public:
// class OfaACorrCheckListBox ------------------------------------------
-class OfaACorrCheckListBox : public SvxSimpleTable
+class OfaACorrCheckListBox : public SvSimpleTable
{
- using SvxSimpleTable::SetTabs;
+ using SvSimpleTable::SetTabs;
using SvTreeListBox::GetCheckButtonState;
using SvTreeListBox::SetCheckButtonState;
@@ -72,8 +71,8 @@ class OfaACorrCheckListBox : public SvxSimpleTable
virtual void KeyInput( const KeyEvent& rKEvt );
public:
- OfaACorrCheckListBox(SvxSimpleTableContainer& rParent, WinBits nBits = WB_BORDER)
- : SvxSimpleTable(rParent, nBits)
+ OfaACorrCheckListBox(SvSimpleTableContainer& rParent, WinBits nBits = WB_BORDER)
+ : SvSimpleTable(rParent, nBits)
{
}
@@ -127,7 +126,7 @@ class OfaSwAutoFmtOptionsPage : public SfxTabPage
{
using TabPage::ActivatePage;
- SvxSimpleTableContainer m_aCheckLBContainer;
+ SvSimpleTableContainer m_aCheckLBContainer;
OfaACorrCheckListBox aCheckLB;
PushButton aEditPB;
FixedText aHeader1Expl;
@@ -349,7 +348,7 @@ private:
SvxCheckListBox aCheckLB;
/// Just for writer
- SvxSimpleTableContainer m_aSwCheckLBContainer;
+ SvSimpleTableContainer m_aSwCheckLBContainer;
OfaACorrCheckListBox aSwCheckLB;
String sHeader1;
String sHeader2;
diff --git a/cui/source/inc/dbregister.hxx b/cui/source/inc/dbregister.hxx
index 989dbe021585..63e9b76518ac 100644
--- a/cui/source/inc/dbregister.hxx
+++ b/cui/source/inc/dbregister.hxx
@@ -26,7 +26,7 @@
#include <svl/poolitem.hxx>
#include "ControlFocusHelper.hxx"
#include <sfx2/basedlgs.hxx>
-#include <svx/simptabl.hxx>
+#include <svtools/simptabl.hxx>
class SvTreeListEntry;
namespace svx
@@ -47,7 +47,7 @@ namespace svx
FixedLine aStdBox;
FixedText aTypeText;
FixedText aPathText;
- SvxSimpleTableContainer aPathCtrl;
+ SvSimpleTableContainer aPathCtrl;
PushButton m_aNew;
PushButton m_aEdit;
PushButton m_aDelete;
diff --git a/cui/source/inc/multipat.hxx b/cui/source/inc/multipat.hxx
index c36aa584a52d..d5dead1e26b7 100644
--- a/cui/source/inc/multipat.hxx
+++ b/cui/source/inc/multipat.hxx
@@ -47,7 +47,7 @@ class SvxMultiPathDialog : public ModalDialog
protected:
FixedLine aPathFL;
ListBox aPathLB;
- SvxSimpleTableContainer m_aRadioLBContainer;
+ SvSimpleTableContainer m_aRadioLBContainer;
svx::SvxRadioButtonListBox aRadioLB;
FixedText aRadioFT;
PushButton aAddBtn;
diff --git a/cui/source/inc/optdict.hxx b/cui/source/inc/optdict.hxx
index 6b1785299691..cd1a0a800ef7 100644
--- a/cui/source/inc/optdict.hxx
+++ b/cui/source/inc/optdict.hxx
@@ -33,7 +33,7 @@
#include <com/sun/star/uno/Sequence.hxx>
-#include <svx/simptabl.hxx>
+#include <svtools/simptabl.hxx>
#include <svx/langbox.hxx>
namespace com{namespace sun{namespace star{
diff --git a/cui/source/inc/optpath.hxx b/cui/source/inc/optpath.hxx
index f01c5b17c2e3..3b5d2ea618c4 100644
--- a/cui/source/inc/optpath.hxx
+++ b/cui/source/inc/optpath.hxx
@@ -20,7 +20,7 @@
#define _SVX_OPTPATH_HXX
#include <sfx2/tabdlg.hxx>
-#include <svx/simptabl.hxx>
+#include <svtools/simptabl.hxx>
#include <vcl/fixed.hxx>
#include <vcl/group.hxx>
#include "ControlFocusHelper.hxx"
@@ -42,7 +42,7 @@ class SvxPathTabPage;
class SvxPathTabPage : public SfxTabPage
{
private:
- SvxSimpleTableContainer* m_pPathCtrl;
+ SvSimpleTableContainer* m_pPathCtrl;
PushButton* m_pStandardBtn;
PushButton* m_pPathBtn;
diff --git a/cui/source/inc/radiobtnbox.hxx b/cui/source/inc/radiobtnbox.hxx
index efa15794c518..b28a076467ee 100644
--- a/cui/source/inc/radiobtnbox.hxx
+++ b/cui/source/inc/radiobtnbox.hxx
@@ -19,15 +19,15 @@
#ifndef _SVX_RADIOBTNBOX_HXX
#define _SVX_RADIOBTNBOX_HXX
-#include <svx/simptabl.hxx>
+#include <svtools/simptabl.hxx>
namespace svx {
// class SvxRadioButtonListBox -------------------------------------------
-class SvxRadioButtonListBox : public SvxSimpleTable
+class SvxRadioButtonListBox : public SvSimpleTable
{
- using SvxSimpleTable::SetTabs;
+ using SvSimpleTable::SetTabs;
private:
Point m_aCurMousePoint;
@@ -38,7 +38,7 @@ protected:
virtual void KeyInput( const KeyEvent& rKEvt );
public:
- SvxRadioButtonListBox(SvxSimpleTableContainer& rParent, WinBits nBits);
+ SvxRadioButtonListBox(SvSimpleTableContainer& rParent, WinBits nBits);
~SvxRadioButtonListBox();
void HandleEntryChecked( SvTreeListEntry* _pEntry );
diff --git a/cui/source/options/certpath.cxx b/cui/source/options/certpath.cxx
index e3ebcbe0375b..482873d73ea9 100644
--- a/cui/source/options/certpath.cxx
+++ b/cui/source/options/certpath.cxx
@@ -44,7 +44,7 @@ CertPathDialog::CertPathDialog( Window* pParent ) :
3, 0, 15, 75
};
- m_aCertPathList.SvxSimpleTable::SetTabs( aStaticTabs );
+ m_aCertPathList.SvSimpleTable::SetTabs( aStaticTabs );
OUString sProfile(CUI_RESSTR(STR_PROFILE));
OUString sDirectory(CUI_RESSTR(STR_DIRECTORY));
@@ -157,7 +157,7 @@ CertPathDialog::~CertPathDialog()
}
}
-IMPL_LINK( CertPathDialog, CheckHdl_Impl, SvxSimpleTable *, pList )
+IMPL_LINK( CertPathDialog, CheckHdl_Impl, SvSimpleTable *, pList )
{
SvTreeListEntry* pEntry = pList ? m_aCertPathList.GetEntry(m_aCertPathList.GetCurMousePoint())
: m_aCertPathList.FirstSelected();
diff --git a/cui/source/options/certpath.hxx b/cui/source/options/certpath.hxx
index e82f50e16eaf..3753bf652bf3 100644
--- a/cui/source/options/certpath.hxx
+++ b/cui/source/options/certpath.hxx
@@ -11,7 +11,7 @@
#define _CUI_CERTPATH_HXX
#include <sfx2/basedlgs.hxx>
-#include <svx/simptabl.hxx>
+#include <svtools/simptabl.hxx>
#include <vcl/button.hxx>
#include <vcl/fixed.hxx>
#include "radiobtnbox.hxx"
@@ -21,7 +21,7 @@ class CertPathDialog : public ModalDialog
private:
FixedLine m_aCertPathFL;
FixedText m_aCertPathFT;
- SvxSimpleTableContainer m_aCertPathListContainer;
+ SvSimpleTableContainer m_aCertPathListContainer;
svx::SvxRadioButtonListBox m_aCertPathList;
PushButton m_aAddBtn;
FixedLine m_aButtonsFL;
@@ -31,7 +31,7 @@ private:
OUString m_sAddDialogText;
OUString m_sManual;
- DECL_LINK(CheckHdl_Impl, SvxSimpleTable *);
+ DECL_LINK(CheckHdl_Impl, SvSimpleTable *);
DECL_LINK(AddHdl_Impl, void *);
DECL_LINK(OKHdl_Impl, void *);
diff --git a/cui/source/options/dbregister.cxx b/cui/source/options/dbregister.cxx
index 25d34e63161d..1e4ce41275c2 100644
--- a/cui/source/options/dbregister.cxx
+++ b/cui/source/options/dbregister.cxx
@@ -151,7 +151,7 @@ DbRegistrationOptionsPage::DbRegistrationOptionsPage( Window* pParent, const Sfx
pPathBox->SetSelectionMode( SINGLE_SELECTION );
pPathBox->SetPosSizePixel( Point( 0, aHeadSize.Height() ),
Size( aBoxSize.Width(), aBoxSize.Height() - aHeadSize.Height() ) );
- pPathBox->SvxSimpleTable::SetTabs( aTabs, MAP_APPFONT );
+ pPathBox->SvSimpleTable::SetTabs( aTabs, MAP_APPFONT );
pPathBox->SetHighlightRange();
pPathBox->SetHelpId( HID_DBPATH_CTL_PATH );
diff --git a/cui/source/options/fontsubs.cxx b/cui/source/options/fontsubs.cxx
index 91ecf40936cb..86e26aee7f59 100644
--- a/cui/source/options/fontsubs.cxx
+++ b/cui/source/options/fontsubs.cxx
@@ -57,7 +57,7 @@ SvxFontSubstTabPage::SvxFontSubstTabPage( Window* pParent,
get(m_pNonPropFontsOnlyCB, "nonpropfontonly");
get(m_pFontHeightLB, "fontheight");
- SvxSimpleTableContainer *pCheckLBContainer = get<SvxSimpleTableContainer>("checklb");
+ SvSimpleTableContainer *pCheckLBContainer = get<SvSimpleTableContainer>("checklb");
Size aControlSize(248, 75);
aControlSize = LogicToPixel(aControlSize, MAP_APPFONT);
pCheckLBContainer->set_width_request(aControlSize.Width());
@@ -70,7 +70,7 @@ SvxFontSubstTabPage::SvxFontSubstTabPage( Window* pParent,
m_pCheckLB->SetSelectionMode(MULTIPLE_SELECTION);
m_pCheckLB->SortByCol(2);
long aStaticTabs[] = { 4, 0, 0, 0, 0 };
- m_pCheckLB->SvxSimpleTable::SetTabs(&aStaticTabs[0]);
+ m_pCheckLB->SvSimpleTable::SetTabs(&aStaticTabs[0]);
OUString sHeader1(get<FixedText>("always")->GetText());
OUString sHeader2(get<FixedText>("screenonly")->GetText());
@@ -404,18 +404,18 @@ void SvxFontSubstCheckListBox::setColSizes()
aStaticTabs[2] = nMax;
aStaticTabs[3] = nDoubleMax;
aStaticTabs[4] = nDoubleMax + nRest/2;
- SvxSimpleTable::SetTabs(aStaticTabs, MAP_PIXEL);
+ SvSimpleTable::SetTabs(aStaticTabs, MAP_PIXEL);
}
void SvxFontSubstCheckListBox::Resize()
{
- SvxSimpleTable::Resize();
+ SvSimpleTable::Resize();
setColSizes();
}
void SvxFontSubstCheckListBox::SetTabs()
{
- SvxSimpleTable::SetTabs();
+ SvSimpleTable::SetTabs();
sal_uInt16 nAdjust = SV_LBOXTAB_ADJUST_RIGHT|SV_LBOXTAB_ADJUST_LEFT|SV_LBOXTAB_ADJUST_CENTER|SV_LBOXTAB_ADJUST_NUMERIC|SV_LBOXTAB_FORCE;
SvLBoxTab* pTab = aTabs[1];
@@ -451,7 +451,7 @@ void SvxFontSubstCheckListBox::KeyInput( const KeyEvent& rKEvt )
}
}
else
- SvxSimpleTable::KeyInput(rKEvt);
+ SvSimpleTable::KeyInput(rKEvt);
}
void SvxFontSubstCheckListBox::CheckEntryPos(sal_uLong nPos, sal_uInt16 nCol, sal_Bool bChecked)
diff --git a/cui/source/options/fontsubs.hxx b/cui/source/options/fontsubs.hxx
index fbc29def2035..d5fb69ac150b 100644
--- a/cui/source/options/fontsubs.hxx
+++ b/cui/source/options/fontsubs.hxx
@@ -20,18 +20,18 @@
#define _SVX_FONT_SUBSTITUTION_HXX
#include <sfx2/tabdlg.hxx>
+#include <svtools/ctrlbox.hxx>
+#include <svtools/simptabl.hxx>
+#include <svtools/treelistentry.hxx>
#include <vcl/fixed.hxx>
-#include <svx/simptabl.hxx>
#include <vcl/toolbox.hxx>
-#include <svtools/ctrlbox.hxx>
-#include "svtools/treelistentry.hxx"
// class SvxFontSubstCheckListBox ------------------------------------------
-class SvxFontSubstCheckListBox : public SvxSimpleTable
+class SvxFontSubstCheckListBox : public SvSimpleTable
{
friend class SvxFontSubstTabPage;
- using SvxSimpleTable::SetTabs;
+ using SvSimpleTable::SetTabs;
using SvTreeListBox::GetCheckButtonState;
using SvTreeListBox::SetCheckButtonState;
@@ -41,8 +41,8 @@ class SvxFontSubstCheckListBox : public SvxSimpleTable
virtual void Resize();
public:
- SvxFontSubstCheckListBox(SvxSimpleTableContainer& rParent, WinBits nBits)
- : SvxSimpleTable(rParent, nBits)
+ SvxFontSubstCheckListBox(SvSimpleTableContainer& rParent, WinBits nBits)
+ : SvSimpleTable(rParent, nBits)
{
}
diff --git a/cui/source/options/optHeaderTabListbox.cxx b/cui/source/options/optHeaderTabListbox.cxx
index 0ad304972b75..5d8db124a66b 100644
--- a/cui/source/options/optHeaderTabListbox.cxx
+++ b/cui/source/options/optHeaderTabListbox.cxx
@@ -21,7 +21,7 @@
#include <vcl/svapp.hxx>
#include <svtools/headbar.hxx>
#include <svtools/svlbitm.hxx>
-#include "svtools/treelistentry.hxx"
+#include <svtools/treelistentry.hxx>
namespace svx
{
@@ -53,8 +53,8 @@ void OptLBoxString_Impl::Paint(
}
// -----------------------------------------------------------------------------
-OptHeaderTabListBox::OptHeaderTabListBox(SvxSimpleTableContainer& rParent, WinBits nWinStyle)
- : SvxSimpleTable(rParent, nWinStyle)
+OptHeaderTabListBox::OptHeaderTabListBox(SvSimpleTableContainer& rParent, WinBits nWinStyle)
+ : SvSimpleTable(rParent, nWinStyle)
{
}
diff --git a/cui/source/options/optHeaderTabListbox.hxx b/cui/source/options/optHeaderTabListbox.hxx
index cb4e1f2e8f0f..eb2751283e1c 100644
--- a/cui/source/options/optHeaderTabListbox.hxx
+++ b/cui/source/options/optHeaderTabListbox.hxx
@@ -19,16 +19,16 @@
#ifndef SVX_OPTHEADERTABLISTBOX_HXX
#define SVX_OPTHEADERTABLISTBOX_HXX
-#include <svx/simptabl.hxx>
+#include <svtools/simptabl.hxx>
namespace svx
{
// class OptHeaderTabListBox ---------------------------------------------
- class OptHeaderTabListBox : public SvxSimpleTable
+ class OptHeaderTabListBox : public SvSimpleTable
{
public:
- OptHeaderTabListBox(SvxSimpleTableContainer& rParent, WinBits nBits);
+ OptHeaderTabListBox(SvSimpleTableContainer& rParent, WinBits nBits);
virtual void InitEntry(SvTreeListEntry*, const OUString&, const Image&, const Image&, SvLBoxButtonKind);
};
diff --git a/cui/source/options/optfltr.cxx b/cui/source/options/optfltr.cxx
index 2271fab7e057..a42702042531 100644
--- a/cui/source/options/optfltr.cxx
+++ b/cui/source/options/optfltr.cxx
@@ -147,7 +147,7 @@ OfaMSFilterTabPage2::OfaMSFilterTabPage2( Window* pParent,
FreeResource();
static long aStaticTabs[] = { 3, 0, 20, 40 };
- aCheckLB.SvxSimpleTable::SetTabs( aStaticTabs );
+ aCheckLB.SvSimpleTable::SetTabs( aStaticTabs );
String sHeader( sHeader1 );
(( sHeader += '\t' ) += sHeader2 ) += '\t';
@@ -309,7 +309,7 @@ SvTreeListEntry* OfaMSFilterTabPage2::GetEntry4Type( sal_IntPtr _nType ) const
void OfaMSFilterTabPage2::MSFltrSimpleTable::SetTabs()
{
- SvxSimpleTable::SetTabs();
+ SvSimpleTable::SetTabs();
sal_uInt16 nAdjust = SV_LBOXTAB_ADJUST_RIGHT|SV_LBOXTAB_ADJUST_LEFT|SV_LBOXTAB_ADJUST_CENTER|SV_LBOXTAB_ADJUST_NUMERIC|SV_LBOXTAB_FORCE;
if( aTabs.size() > 1 )
@@ -409,7 +409,7 @@ void OfaMSFilterTabPage2::MSFltrSimpleTable::KeyInput( const KeyEvent& rKEvt )
}
}
else
- SvxSimpleTable::KeyInput(rKEvt);
+ SvSimpleTable::KeyInput(rKEvt);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/cui/source/options/optfltr.hxx b/cui/source/options/optfltr.hxx
index fb4fd067e270..bdcaf49f4edf 100644
--- a/cui/source/options/optfltr.hxx
+++ b/cui/source/options/optfltr.hxx
@@ -23,9 +23,7 @@
#include <vcl/group.hxx>
#include <vcl/fixed.hxx>
#include <sfx2/tabdlg.hxx>
-#include <svx/simptabl.hxx>
-
-
+#include <svtools/simptabl.hxx>
class OfaMSFilterTabPage : public SfxTabPage
{
@@ -54,11 +52,11 @@ public:
class OfaMSFilterTabPage2 : public SfxTabPage
{
- class MSFltrSimpleTable : public SvxSimpleTable
+ class MSFltrSimpleTable : public SvSimpleTable
{
using SvTreeListBox::GetCheckButtonState;
using SvTreeListBox::SetCheckButtonState;
- using SvxSimpleTable::SetTabs;
+ using SvSimpleTable::SetTabs;
void CheckEntryPos(sal_uLong nPos, sal_uInt16 nCol, sal_Bool bChecked);
SvButtonState GetCheckButtonState( SvTreeListEntry*, sal_uInt16 nCol ) const;
@@ -69,13 +67,13 @@ class OfaMSFilterTabPage2 : public SfxTabPage
virtual void KeyInput( const KeyEvent& rKEvt );
public:
- MSFltrSimpleTable(SvxSimpleTableContainer& rParent, WinBits nBits = WB_BORDER)
- : SvxSimpleTable(rParent, nBits)
+ MSFltrSimpleTable(SvSimpleTableContainer& rParent, WinBits nBits = WB_BORDER)
+ : SvSimpleTable(rParent, nBits)
{
}
};
- SvxSimpleTableContainer m_aCheckLBContainer;
+ SvSimpleTableContainer m_aCheckLBContainer;
MSFltrSimpleTable aCheckLB;
FixedText aHeader1FT, aHeader2FT;
String sHeader1, sHeader2;
diff --git a/cui/source/options/optjava.cxx b/cui/source/options/optjava.cxx
index fbf91b9acde5..8d5248e5ac34 100644
--- a/cui/source/options/optjava.cxx
+++ b/cui/source/options/optjava.cxx
@@ -90,7 +90,7 @@ class SvxJavaListBox : public svx::SvxRadioButtonListBox
private:
const OUString m_sAccessibilityText;
public:
- SvxJavaListBox(SvxSimpleTableContainer& rParent, const OUString &rAccessibilityText)
+ SvxJavaListBox(SvSimpleTableContainer& rParent, const OUString &rAccessibilityText)
: SvxRadioButtonListBox(rParent, 0)
, m_sAccessibilityText(rAccessibilityText)
{
@@ -116,7 +116,7 @@ public:
aStaticTabs[2] = nCheckWidth;
aStaticTabs[3] = aStaticTabs[2] + nVendorWidth;
aStaticTabs[4] = aStaticTabs[3] + nVersionWidth;
- SvxSimpleTable::SetTabs(aStaticTabs, MAP_PIXEL);
+ SvSimpleTable::SetTabs(aStaticTabs, MAP_PIXEL);
}
virtual void Resize()
{
@@ -153,7 +153,7 @@ SvxJavaOptionsPage::SvxJavaOptionsPage( Window* pParent, const SfxItemSet& rSet
m_sAccessibilityText = get<FixedText>("a11y")->GetText();
m_sAddDialogText = get<FixedText>("selectruntime")->GetText();
- SvxSimpleTableContainer *pJavaListContainer = get<SvxSimpleTableContainer>("javas");
+ SvSimpleTableContainer *pJavaListContainer = get<SvSimpleTableContainer>("javas");
Size aControlSize(177, 60);
aControlSize = LogicToPixel(aControlSize, MAP_APPFONT);
pJavaListContainer->set_width_request(aControlSize.Width());
@@ -162,7 +162,7 @@ SvxJavaOptionsPage::SvxJavaOptionsPage( Window* pParent, const SfxItemSet& rSet
long aStaticTabs[]= { 4, 0, 0, 0, 0 };
- m_pJavaList->SvxSimpleTable::SetTabs( aStaticTabs );
+ m_pJavaList->SvSimpleTable::SetTabs( aStaticTabs );
OUStringBuffer sHeader;
sHeader.append("\t").append(get<FixedText>("vendor")->GetText())
@@ -223,7 +223,7 @@ IMPL_LINK_NOARG(SvxJavaOptionsPage, EnableHdl_Impl)
// -----------------------------------------------------------------------
-IMPL_LINK( SvxJavaOptionsPage, CheckHdl_Impl, SvxSimpleTable *, pList )
+IMPL_LINK( SvxJavaOptionsPage, CheckHdl_Impl, SvSimpleTable *, pList )
{
SvTreeListEntry* pEntry = pList ? m_pJavaList->GetEntry( m_pJavaList->GetCurMousePoint() )
: m_pJavaList->FirstSelected();
diff --git a/cui/source/options/optjava.hxx b/cui/source/options/optjava.hxx
index 81ab96777cdb..11c5424fd033 100644
--- a/cui/source/options/optjava.hxx
+++ b/cui/source/options/optjava.hxx
@@ -23,11 +23,12 @@
#include <ucbhelper/content.hxx>
#include <vcl/button.hxx>
#include <vcl/fixed.hxx>
+#include <vcl/lstbox.hxx>
#include <vcl/timer.hxx>
#include <sfx2/tabdlg.hxx>
-#include <svx/simptabl.hxx>
#include <com/sun/star/ui/dialogs/XFolderPicker2.hpp>
#include <svtools/dialogclosedlistener.hxx>
+#include <svtools/simptabl.hxx>
#include "radiobtnbox.hxx"
// forward ---------------------------------------------------------------
@@ -81,7 +82,7 @@ private:
::com::sun::star::uno::Reference< ::com::sun::star::ui::dialogs::XFolderPicker2 > xFolderPicker;
DECL_LINK(EnableHdl_Impl, void *);
- DECL_LINK( CheckHdl_Impl, SvxSimpleTable * );
+ DECL_LINK( CheckHdl_Impl, SvSimpleTable * );
DECL_LINK(SelectHdl_Impl, void *);
DECL_LINK(AddHdl_Impl, void *);
DECL_LINK(ParameterHdl_Impl, void *);
diff --git a/cui/source/options/radiobtnbox.cxx b/cui/source/options/radiobtnbox.cxx
index a19c89cef714..47d37eb2f73c 100644
--- a/cui/source/options/radiobtnbox.cxx
+++ b/cui/source/options/radiobtnbox.cxx
@@ -26,8 +26,8 @@ namespace svx {
// class SvxRadioButtonListBox ----------------------------------------------------
-SvxRadioButtonListBox::SvxRadioButtonListBox(SvxSimpleTableContainer& rParent, WinBits nBits)
- : SvxSimpleTable(rParent, nBits)
+SvxRadioButtonListBox::SvxRadioButtonListBox(SvSimpleTableContainer& rParent, WinBits nBits)
+ : SvSimpleTable(rParent, nBits)
{
EnableCheckButton( new SvLBoxButtonData( this, true ) );
@@ -39,13 +39,13 @@ SvxRadioButtonListBox::~SvxRadioButtonListBox()
void SvxRadioButtonListBox::SetTabs()
{
- SvxSimpleTable::SetTabs();
+ SvSimpleTable::SetTabs();
}
void SvxRadioButtonListBox::MouseButtonUp( const MouseEvent& _rMEvt )
{
m_aCurMousePoint = _rMEvt.GetPosPixel();
- SvxSimpleTable::MouseButtonUp( _rMEvt );
+ SvSimpleTable::MouseButtonUp( _rMEvt );
}
void SvxRadioButtonListBox::KeyInput( const KeyEvent& rKEvt )
@@ -61,7 +61,7 @@ void SvxRadioButtonListBox::KeyInput( const KeyEvent& rKEvt )
}
}
- SvxSimpleTable::KeyInput( rKEvt );
+ SvSimpleTable::KeyInput( rKEvt );
}
void SvxRadioButtonListBox::HandleEntryChecked( SvTreeListEntry* _pEntry )
diff --git a/cui/source/options/webconninfo.cxx b/cui/source/options/webconninfo.cxx
index 56ca925ccbfa..7ba03b9d3f14 100644
--- a/cui/source/options/webconninfo.cxx
+++ b/cui/source/options/webconninfo.cxx
@@ -39,8 +39,8 @@ namespace svx
// class PasswordTable ---------------------------------------------------
-PasswordTable::PasswordTable(SvxSimpleTableContainer& rParent, WinBits nBits)
- : SvxSimpleTable(rParent, nBits | WB_NOINITIALSELECTION)
+PasswordTable::PasswordTable(SvSimpleTableContainer& rParent, WinBits nBits)
+ : SvSimpleTable(rParent, nBits | WB_NOINITIALSELECTION)
{
}
@@ -78,7 +78,7 @@ void PasswordTable::Resort( bool bForced )
void PasswordTable::Resize()
{
- SvxSimpleTable::Resize();
+ SvSimpleTable::Resize();
if (isInitialLayout(this))
setColWidths();
}
@@ -96,7 +96,7 @@ void PasswordTable::setColWidths()
GetSizePixel().Width() - nUserNameWidth);
long aStaticTabs[]= { 2, 0, 0 };
aStaticTabs[2] = nWebSiteWidth;
- SvxSimpleTable::SetTabs(aStaticTabs, MAP_PIXEL);
+ SvSimpleTable::SetTabs(aStaticTabs, MAP_PIXEL);
}
// class WebConnectionInfoDialog -----------------------------------------
@@ -110,7 +110,7 @@ WebConnectionInfoDialog::WebConnectionInfoDialog(Window* pParent)
get(m_pRemoveAllBtn, "removeall");
get(m_pChangeBtn, "change");
- SvxSimpleTableContainer *pPasswordsLBContainer = get<SvxSimpleTableContainer>("logins");
+ SvSimpleTableContainer *pPasswordsLBContainer = get<SvSimpleTableContainer>("logins");
m_pPasswordsLB = new PasswordTable(*pPasswordsLBContainer, 0);
long aStaticTabs[]= { 2, 0, 0 };
@@ -146,7 +146,7 @@ WebConnectionInfoDialog::~WebConnectionInfoDialog()
}
// -----------------------------------------------------------------------
-IMPL_LINK( WebConnectionInfoDialog, HeaderBarClickedHdl, SvxSimpleTable*, pTable )
+IMPL_LINK( WebConnectionInfoDialog, HeaderBarClickedHdl, SvSimpleTable*, pTable )
{
m_pPasswordsLB->Resort( NULL == pTable );
return 0;
diff --git a/cui/source/options/webconninfo.hxx b/cui/source/options/webconninfo.hxx
index 03a15e13d8ac..c469dad79796 100644
--- a/cui/source/options/webconninfo.hxx
+++ b/cui/source/options/webconninfo.hxx
@@ -22,18 +22,18 @@
#include <vcl/button.hxx>
#include <vcl/dialog.hxx>
#include <vcl/fixed.hxx>
+#include <svtools/simptabl.hxx>
#include <svtools/stdctrl.hxx>
-#include <svx/simptabl.hxx>
//........................................................................
namespace svx
{
//........................................................................
- class PasswordTable : public SvxSimpleTable
+ class PasswordTable : public SvSimpleTable
{
public:
- PasswordTable(SvxSimpleTableContainer& rParent, WinBits nBits);
+ PasswordTable(SvSimpleTableContainer& rParent, WinBits nBits);
void InsertHeaderItem(sal_uInt16 nColumn, const OUString& rText, HeaderBarItemBits nBits);
void setColWidths();
@@ -53,7 +53,7 @@ namespace svx
PushButton* m_pChangeBtn;
sal_Int32 m_nPos;
- DECL_LINK( HeaderBarClickedHdl, SvxSimpleTable* );
+ DECL_LINK( HeaderBarClickedHdl, SvSimpleTable* );
DECL_LINK(RemovePasswordHdl, void *);
DECL_LINK(RemoveAllPasswordsHdl, void *);
DECL_LINK(ChangePasswordHdl, void *);
diff --git a/cui/source/tabpages/autocdlg.cxx b/cui/source/tabpages/autocdlg.cxx
index 11b6c7cdda04..5650ae98e84b 100644
--- a/cui/source/tabpages/autocdlg.cxx
+++ b/cui/source/tabpages/autocdlg.cxx
@@ -447,7 +447,7 @@ OfaSwAutoFmtOptionsPage::OfaSwAutoFmtOptionsPage( Window* pParent,
3, 0, 20, 40
};
- aCheckLB.SvxSimpleTable::SetTabs(aStaticTabs);
+ aCheckLB.SvSimpleTable::SetTabs(aStaticTabs);
String sHeader( sHeader1 );
sHeader += '\t';
sHeader += sHeader2;
@@ -742,7 +742,7 @@ IMPL_LINK_NOARG(OfaSwAutoFmtOptionsPage, EditHdl)
void OfaACorrCheckListBox::SetTabs()
{
- SvxSimpleTable::SetTabs();
+ SvSimpleTable::SetTabs();
sal_uInt16 nAdjust = SV_LBOXTAB_ADJUST_RIGHT|SV_LBOXTAB_ADJUST_LEFT|SV_LBOXTAB_ADJUST_CENTER|SV_LBOXTAB_ADJUST_NUMERIC|SV_LBOXTAB_FORCE;
if( aTabs.size() > 1 )
@@ -843,7 +843,7 @@ void OfaACorrCheckListBox::KeyInput( const KeyEvent& rKEvt )
}
}
else
- SvxSimpleTable::KeyInput(rKEvt);
+ SvSimpleTable::KeyInput(rKEvt);
}
OfaAutocorrReplacePage::OfaAutocorrReplacePage( Window* pParent,
@@ -1801,7 +1801,7 @@ OfaQuoteTabPage::OfaQuoteTabPage( Window* pParent, const SfxItemSet& rSet ) :
aSwCheckLB.SetStyle(aSwCheckLB.GetStyle() | WB_HSCROLL| WB_VSCROLL);
- aSwCheckLB.SvxSimpleTable::SetTabs(aStaticTabs);
+ aSwCheckLB.SvSimpleTable::SetTabs(aStaticTabs);
String sHeader( sHeader1 );
sHeader += '\t';
sHeader += sHeader2;
diff --git a/cui/uiconfig/ui/optadvancedpage.ui b/cui/uiconfig/ui/optadvancedpage.ui
index f89ff035e166..3be64d132f58 100644
--- a/cui/uiconfig/ui/optadvancedpage.ui
+++ b/cui/uiconfig/ui/optadvancedpage.ui
@@ -232,7 +232,7 @@
</packing>
</child>
<child>
- <object class="svxcorelo-SvxSimpleTableContainer" id="javas">
+ <object class="svtlo-SvSimpleTableContainer" id="javas">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="hexpand">True</property>
diff --git a/cui/uiconfig/ui/optfontspage.ui b/cui/uiconfig/ui/optfontspage.ui
index a5666cda8bc5..6070a25fb079 100644
--- a/cui/uiconfig/ui/optfontspage.ui
+++ b/cui/uiconfig/ui/optfontspage.ui
@@ -162,7 +162,7 @@
</packing>
</child>
<child>
- <object class="svxcorelo-SvxSimpleTableContainer" id="checklb">
+ <object class="svtlo-SvSimpleTableContainer" id="checklb">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="vexpand">True</property>
diff --git a/cui/uiconfig/ui/optpathspage.ui b/cui/uiconfig/ui/optpathspage.ui
index a273f7bc23be..887904d5707d 100644
--- a/cui/uiconfig/ui/optpathspage.ui
+++ b/cui/uiconfig/ui/optpathspage.ui
@@ -93,7 +93,7 @@
</packing>
</child>
<child>
- <object class="svxcorelo-SvxSimpleTableContainer" id="paths">
+ <object class="svtlo-SvSimpleTableContainer" id="paths">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="hexpand">True</property>
diff --git a/cui/uiconfig/ui/storedwebconnectiondialog.ui b/cui/uiconfig/ui/storedwebconnectiondialog.ui
index a9a4cf6222d7..2d757e3a05ed 100644
--- a/cui/uiconfig/ui/storedwebconnectiondialog.ui
+++ b/cui/uiconfig/ui/storedwebconnectiondialog.ui
@@ -114,7 +114,7 @@
</packing>
</child>
<child>
- <object class="svxcorelo-SvxSimpleTableContainer" id="logins">
+ <object class="svtlo-SvSimpleTableContainer" id="logins">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="hexpand">True</property>