summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-06-14 11:07:20 +0100
committerCaolán McNamara <caolanm@redhat.com>2018-06-14 22:03:14 +0200
commit575a9bb4cd3952ed39aaccb83a5d6761ea082601 (patch)
treea2a6f179d14a35187dd4f38dd9c6c3fbc21d2c73 /cui
parent9956e32fab5ccd44d48cb26bb5d2d3ffd0f81446 (diff)
weld SvxParaAlignTabPage
Change-Id: I843b264d44266213e91b7e75bf35e4f6cf41dd88 Reviewed-on: https://gerrit.libreoffice.org/55809 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui')
-rw-r--r--cui/source/inc/paragrph.hxx41
-rw-r--r--cui/source/tabpages/paragrph.cxx308
-rw-r--r--cui/uiconfig/ui/paragalignpage.ui115
3 files changed, 204 insertions, 260 deletions
diff --git a/cui/source/inc/paragrph.hxx b/cui/source/inc/paragrph.hxx
index 569f5c082b23..ed88e4461532 100644
--- a/cui/source/inc/paragrph.hxx
+++ b/cui/source/inc/paragrph.hxx
@@ -130,36 +130,38 @@ class SvxParaAlignTabPage : public SfxTabPage
using TabPage::DeactivatePage;
static const sal_uInt16 pAlignRanges[];
+ ParaPrevWindow m_aExampleWin;
+
// alignment
- VclPtr<RadioButton> m_pLeft;
- VclPtr<RadioButton> m_pRight;
- VclPtr<RadioButton> m_pCenter;
- VclPtr<RadioButton> m_pJustify;
- VclPtr<FixedText> m_pLeftBottom;
- VclPtr<FixedText> m_pRightTop;
+ std::unique_ptr<weld::RadioButton> m_xLeft;
+ std::unique_ptr<weld::RadioButton> m_xRight;
+ std::unique_ptr<weld::RadioButton> m_xCenter;
+ std::unique_ptr<weld::RadioButton> m_xJustify;
+ std::unique_ptr<weld::Label> m_xLeftBottom;
+ std::unique_ptr<weld::Label> m_xRightTop;
- VclPtr<FixedText> m_pLastLineFT;
- VclPtr<ListBox> m_pLastLineLB;
- VclPtr<CheckBox> m_pExpandCB;
+ std::unique_ptr<weld::Label> m_xLastLineFT;
+ std::unique_ptr<weld::ComboBoxText> m_xLastLineLB;
+ std::unique_ptr<weld::CheckButton> m_xExpandCB;
- VclPtr<CheckBox> m_pSnapToGridCB;
+ std::unique_ptr<weld::CheckButton> m_xSnapToGridCB;
//preview
- VclPtr<SvxParaPrevWindow> m_pExampleWin;
+ std::unique_ptr<weld::CustomWeld> m_xExampleWin;
//vertical alignment
- VclPtr<VclFrame> m_pVertAlignFL;
- VclPtr<ListBox> m_pVertAlignLB;
+ std::unique_ptr<weld::Widget> m_xVertAlignFL;
+ std::unique_ptr<weld::ComboBoxText> m_xVertAlignLB;
- VclPtr<VclFrame> m_pPropertiesFL;
- VclPtr<svx::FrameDirectionListBox> m_pTextDirectionLB;
+ std::unique_ptr<weld::Widget> m_xPropertiesFL;
+ std::unique_ptr<svx::SvxFrameDirectionListBox> m_xTextDirectionLB;
- DECL_LINK(AlignHdl_Impl, Button*, void);
- DECL_LINK(LastLineHdl_Impl, ListBox&, void);
- DECL_LINK(TextDirectionHdl_Impl, ListBox&, void);
+ DECL_LINK(AlignHdl_Impl, weld::ToggleButton&, void);
+ DECL_LINK(LastLineHdl_Impl, weld::ComboBoxText&, void);
+ DECL_LINK(TextDirectionHdl_Impl, weld::ComboBoxText&, void);
void UpdateExample_Impl();
- SvxParaAlignTabPage( vcl::Window* pParent, const SfxItemSet& rSet );
+ SvxParaAlignTabPage(TabPageParent pParent, const SfxItemSet& rSet);
protected:
virtual void ActivatePage( const SfxItemSet& rSet ) override;
@@ -167,7 +169,6 @@ protected:
public:
virtual ~SvxParaAlignTabPage() override;
- virtual void dispose() override;
static VclPtr<SfxTabPage> Create( TabPageParent pParent, const SfxItemSet* rSet );
static const sal_uInt16* GetRanges() { return pAlignRanges; }
diff --git a/cui/source/tabpages/paragrph.cxx b/cui/source/tabpages/paragrph.cxx
index a3f25820739b..0fdc536823df 100644
--- a/cui/source/tabpages/paragrph.cxx
+++ b/cui/source/tabpages/paragrph.cxx
@@ -1016,29 +1016,24 @@ void SvxStdParagraphTabPage::PageCreated(const SfxAllItemSet& aSet)
#define LASTLINECOUNT_OLD 3
#define LASTLINECOUNT_NEW 4
-SvxParaAlignTabPage::SvxParaAlignTabPage( vcl::Window* pParent, const SfxItemSet& rSet )
-
- : SfxTabPage(pParent, "ParaAlignPage", "cui/ui/paragalignpage.ui",&rSet)
+SvxParaAlignTabPage::SvxParaAlignTabPage(TabPageParent pParent, const SfxItemSet& rSet)
+ : SfxTabPage(pParent, "cui/ui/paragalignpage.ui", "ParaAlignPage", &rSet)
+ , m_xLeft(m_xBuilder->weld_radio_button("radioBTN_LEFTALIGN"))
+ , m_xRight(m_xBuilder->weld_radio_button("radioBTN_RIGHTALIGN"))
+ , m_xCenter(m_xBuilder->weld_radio_button("radioBTN_CENTERALIGN"))
+ , m_xJustify(m_xBuilder->weld_radio_button("radioBTN_JUSTIFYALIGN"))
+ , m_xLeftBottom(m_xBuilder->weld_label("labelST_LEFTALIGN_ASIAN"))
+ , m_xRightTop(m_xBuilder->weld_label("labelST_RIGHTALIGN_ASIAN"))
+ , m_xLastLineFT(m_xBuilder->weld_label("labelLB_LASTLINE"))
+ , m_xLastLineLB(m_xBuilder->weld_combo_box_text("comboLB_LASTLINE"))
+ , m_xExpandCB(m_xBuilder->weld_check_button("checkCB_EXPAND"))
+ , m_xSnapToGridCB(m_xBuilder->weld_check_button("checkCB_SNAP"))
+ , m_xExampleWin(new weld::CustomWeld(*m_xBuilder, "drawingareaWN_EXAMPLE", m_aExampleWin))
+ , m_xVertAlignFL(m_xBuilder->weld_widget("frameFL_VERTALIGN"))
+ , m_xVertAlignLB(m_xBuilder->weld_combo_box_text("comboLB_VERTALIGN"))
+ , m_xPropertiesFL(m_xBuilder->weld_widget("framePROPERTIES"))
+ , m_xTextDirectionLB(new svx::SvxFrameDirectionListBox(m_xBuilder->weld_combo_box_text("comboLB_TEXTDIRECTION")))
{
- get(m_pLeft,"radioBTN_LEFTALIGN");
- get(m_pRight,"radioBTN_RIGHTALIGN");
- get(m_pCenter,"radioBTN_CENTERALIGN");
- get(m_pJustify,"radioBTN_JUSTIFYALIGN");
- get(m_pLeftBottom,"labelST_LEFTALIGN_ASIAN");
- get(m_pRightTop,"labelST_RIGHTALIGN_ASIAN");
-
- get(m_pLastLineFT,"labelLB_LASTLINE");
- get(m_pLastLineLB,"comboLB_LASTLINE");
- get(m_pExpandCB,"checkCB_EXPAND");
- get(m_pSnapToGridCB,"checkCB_SNAP");
- get(m_pExampleWin,"drawingareaWN_EXAMPLE");
-
- get(m_pVertAlignLB,"comboLB_VERTALIGN");
- get(m_pVertAlignFL,"frameFL_VERTALIGN");
-
- get(m_pPropertiesFL,"framePROPERTIES");
- get(m_pTextDirectionLB,"comboLB_TEXTDIRECTION");
-
SetExchangeSupport();
SvtLanguageOptions aLangOptions;
@@ -1046,63 +1041,40 @@ SvxParaAlignTabPage::SvxParaAlignTabPage( vcl::Window* pParent, const SfxItemSet
if ( aLangOptions.IsAsianTypographyEnabled() )
{
- m_pLeft->SetText(m_pLeftBottom->GetText());
- m_pRight->SetText(m_pRightTop->GetText());
+ m_xLeft->set_label(m_xLeftBottom->get_label());
+ m_xRight->set_label(m_xRightTop->get_label());
- OUString sLeft(m_pLeft->GetText());
+ OUString sLeft(m_xLeft->get_label());
sLeft = MnemonicGenerator::EraseAllMnemonicChars( sLeft );
- if ( m_pLastLineLB->GetEntryCount() == LASTLINECOUNT_OLD )
+ if (m_xLastLineLB->get_count() == LASTLINECOUNT_OLD)
{
- m_pLastLineLB->RemoveEntry( 0 );
- m_pLastLineLB->InsertEntry( sLeft, 0 );
+ m_xLastLineLB->remove(0);
+ m_xLastLineLB->insert_text(0, sLeft);
}
else
nLastLinePos = LASTLINEPOS_LEFT;
}
// remove "Default" or "Left" entry, depends on CJKOptions
- if ( m_pLastLineLB->GetEntryCount() == LASTLINECOUNT_NEW )
- m_pLastLineLB->RemoveEntry( nLastLinePos );
-
- Link<Button*,void> aLink = LINK( this, SvxParaAlignTabPage, AlignHdl_Impl );
- m_pLeft->SetClickHdl( aLink );
- m_pRight->SetClickHdl( aLink );
- m_pCenter->SetClickHdl( aLink );
- m_pJustify->SetClickHdl( aLink );
- m_pLastLineLB->SetSelectHdl( LINK( this, SvxParaAlignTabPage, LastLineHdl_Impl ) );
- m_pTextDirectionLB->SetSelectHdl( LINK( this, SvxParaAlignTabPage, TextDirectionHdl_Impl ) );
+ if (m_xLastLineLB->get_count() == LASTLINECOUNT_NEW)
+ m_xLastLineLB->remove(nLastLinePos);
- m_pTextDirectionLB->InsertEntryValue( SvxResId( RID_SVXSTR_FRAMEDIR_SUPER ), SvxFrameDirection::Environment );
- m_pTextDirectionLB->InsertEntryValue( SvxResId( RID_SVXSTR_FRAMEDIR_LTR ), SvxFrameDirection::Horizontal_LR_TB );
- m_pTextDirectionLB->InsertEntryValue( SvxResId( RID_SVXSTR_FRAMEDIR_RTL ), SvxFrameDirection::Horizontal_RL_TB );
+ Link<weld::ToggleButton&, void> aLink = LINK( this, SvxParaAlignTabPage, AlignHdl_Impl );
+ m_xLeft->connect_toggled(aLink);
+ m_xRight->connect_toggled(aLink);
+ m_xCenter->connect_toggled(aLink);
+ m_xJustify->connect_toggled(aLink);
+ m_xLastLineLB->connect_changed(LINK(this, SvxParaAlignTabPage, LastLineHdl_Impl));
+ m_xTextDirectionLB->connect_changed(LINK(this, SvxParaAlignTabPage, TextDirectionHdl_Impl));
- setPreviewsToSamePlace(pParent, this);
+ m_xTextDirectionLB->append(SvxFrameDirection::Environment, SvxResId(RID_SVXSTR_FRAMEDIR_SUPER));
+ m_xTextDirectionLB->append(SvxFrameDirection::Horizontal_LR_TB, SvxResId(RID_SVXSTR_FRAMEDIR_LTR));
+ m_xTextDirectionLB->append(SvxFrameDirection::Horizontal_RL_TB, SvxResId(RID_SVXSTR_FRAMEDIR_RTL));
}
SvxParaAlignTabPage::~SvxParaAlignTabPage()
{
- disposeOnce();
-}
-
-void SvxParaAlignTabPage::dispose()
-{
- m_pLeft.clear();
- m_pRight.clear();
- m_pCenter.clear();
- m_pJustify.clear();
- m_pLeftBottom.clear();
- m_pRightTop.clear();
- m_pLastLineFT.clear();
- m_pLastLineLB.clear();
- m_pExpandCB.clear();
- m_pSnapToGridCB.clear();
- m_pExampleWin.clear();
- m_pVertAlignFL.clear();
- m_pVertAlignLB.clear();
- m_pPropertiesFL.clear();
- m_pTextDirectionLB.clear();
- SfxTabPage::dispose();
}
DeactivateRC SvxParaAlignTabPage::DeactivatePage( SfxItemSet* _pSet )
@@ -1112,9 +1084,9 @@ DeactivateRC SvxParaAlignTabPage::DeactivatePage( SfxItemSet* _pSet )
return DeactivateRC::LeavePage;
}
-VclPtr<SfxTabPage> SvxParaAlignTabPage::Create( TabPageParent pParent, const SfxItemSet* rSet )
+VclPtr<SfxTabPage> SvxParaAlignTabPage::Create(TabPageParent pParent, const SfxItemSet* rSet)
{
- return VclPtr<SvxParaAlignTabPage>::Create(pParent.pParent, *rSet);
+ return VclPtr<SvxParaAlignTabPage>::Create(pParent, *rSet);
}
bool SvxParaAlignTabPage::FillItemSet( SfxItemSet* rOutSet )
@@ -1123,20 +1095,20 @@ bool SvxParaAlignTabPage::FillItemSet( SfxItemSet* rOutSet )
SvxAdjust eAdjust = SvxAdjust::Left;
- if ( m_pLeft->IsChecked() )
+ if ( m_xLeft->get_active() )
eAdjust = SvxAdjust::Left;
- else if ( m_pRight->IsChecked() )
+ else if ( m_xRight->get_active() )
eAdjust = SvxAdjust::Right;
- else if ( m_pCenter->IsChecked() )
+ else if ( m_xCenter->get_active() )
eAdjust = SvxAdjust::Center;
- else if ( m_pJustify->IsChecked() )
+ else if ( m_xJustify->get_active() )
eAdjust = SvxAdjust::Block;
sal_uInt16 _nWhich = GetWhich( SID_ATTR_PARA_ADJUST );
- SvxAdjust eOneWord = m_pExpandCB->IsChecked() ? SvxAdjust::Block : SvxAdjust::Left;
+ SvxAdjust eOneWord = m_xExpandCB->get_active() ? SvxAdjust::Block : SvxAdjust::Left;
- sal_Int32 nLBPos = m_pLastLineLB->GetSelectedEntryPos();
+ int nLBPos = m_xLastLineLB->get_active();
SvxAdjust eLastBlock = SvxAdjust::Left;
if ( 1 == nLBPos )
eLastBlock = SvxAdjust::Center;
@@ -1150,22 +1122,23 @@ bool SvxParaAlignTabPage::FillItemSet( SfxItemSet* rOutSet )
rOutSet->Put( aAdj );
bModified = true;
- if(m_pSnapToGridCB->IsValueChangedFromSaved())
+ if (m_xSnapToGridCB->get_state_changed_from_saved())
{
- rOutSet->Put(SvxParaGridItem(m_pSnapToGridCB->IsChecked(), GetWhich( SID_ATTR_PARA_SNAPTOGRID )));
+ rOutSet->Put(SvxParaGridItem(m_xSnapToGridCB->get_active(), GetWhich( SID_ATTR_PARA_SNAPTOGRID )));
bModified = true;
}
- if(m_pVertAlignLB->IsValueChangedFromSaved())
+
+ if (m_xVertAlignLB->get_value_changed_from_saved())
{
- rOutSet->Put(SvxParaVertAlignItem(static_cast<SvxParaVertAlignItem::Align>(m_pVertAlignLB->GetSelectedEntryPos()), GetWhich( SID_PARA_VERTALIGN )));
+ rOutSet->Put(SvxParaVertAlignItem(static_cast<SvxParaVertAlignItem::Align>(m_xVertAlignLB->get_active()), GetWhich( SID_PARA_VERTALIGN )));
bModified = true;
}
- if( m_pTextDirectionLB->IsVisible() )
+ if (m_xTextDirectionLB->get_visible())
{
- if( m_pTextDirectionLB->IsValueChangedFromSaved() )
+ if (m_xTextDirectionLB->get_value_changed_from_saved())
{
- SvxFrameDirection eDir = m_pTextDirectionLB->GetSelectEntryValue();
+ SvxFrameDirection eDir = m_xTextDirectionLB->get_active_id();
rOutSet->Put( SvxFrameDirectionItem( eDir, GetWhich( SID_ATTR_FRAMEDIRECTION ) ) );
bModified = true;
}
@@ -1191,18 +1164,18 @@ void SvxParaAlignTabPage::Reset( const SfxItemSet* rSet )
switch ( rAdj.GetAdjust() /*!!! ask VB rAdj.GetLastBlock()*/ )
{
- case SvxAdjust::Left: m_pLeft->Check(); break;
+ case SvxAdjust::Left: m_xLeft->set_active(true); break;
- case SvxAdjust::Right: m_pRight->Check(); break;
+ case SvxAdjust::Right: m_xRight->set_active(true); break;
- case SvxAdjust::Center: m_pCenter->Check(); break;
+ case SvxAdjust::Center: m_xCenter->set_active(true); break;
- case SvxAdjust::Block: m_pJustify->Check(); break;
+ case SvxAdjust::Block: m_xJustify->set_active(true); break;
default: ; //prevent warning
}
- bool bEnable = m_pJustify->IsChecked();
- m_pLastLineFT->Enable(bEnable);
- m_pLastLineLB->Enable(bEnable);
+ bool bEnable = m_xJustify->get_active();
+ m_xLastLineFT->set_sensitive(bEnable);
+ m_xLastLineLB->set_sensitive(bEnable);
switch(rAdj.GetLastBlock())
{
@@ -1213,34 +1186,34 @@ void SvxParaAlignTabPage::Reset( const SfxItemSet* rSet )
case SvxAdjust::Block: nLBSelect = 2; break;
default: ; //prevent warning
}
- m_pExpandCB->Enable(bEnable && nLBSelect == 2);
- m_pExpandCB->Check(SvxAdjust::Block == rAdj.GetOneWord());
+ m_xExpandCB->set_sensitive(bEnable && nLBSelect == 2);
+ m_xExpandCB->set_active(SvxAdjust::Block == rAdj.GetOneWord());
}
else
{
- m_pLeft->Check( false );
- m_pRight->Check( false );
- m_pCenter->Check( false );
- m_pJustify->Check( false );
+ m_xLeft->set_active(false);
+ m_xRight->set_active(false);
+ m_xCenter->set_active(false);
+ m_xJustify->set_active(false);
}
- m_pLastLineLB->SelectEntryPos(nLBSelect);
+ m_xLastLineLB->set_active(nLBSelect);
sal_uInt16 nHtmlMode = GetHtmlMode_Impl(*rSet);
if(nHtmlMode & HTMLMODE_ON)
{
- m_pLastLineLB->Hide();
- m_pLastLineFT->Hide();
- m_pExpandCB->Hide();
+ m_xLastLineLB->hide();
+ m_xLastLineFT->hide();
+ m_xExpandCB->hide();
if(!(nHtmlMode & HTMLMODE_FULL_STYLES) )
- m_pJustify->Disable();
- m_pSnapToGridCB->Show(false);
+ m_xJustify->set_sensitive(false);
+ m_xSnapToGridCB->show(false);
}
_nWhich = GetWhich(SID_ATTR_PARA_SNAPTOGRID);
eItemState = rSet->GetItemState( _nWhich );
if ( eItemState >= SfxItemState::DEFAULT )
{
const SvxParaGridItem& rSnap = static_cast<const SvxParaGridItem&>(rSet->Get( _nWhich ));
- m_pSnapToGridCB->Check(rSnap.GetValue());
+ m_xSnapToGridCB->set_active(rSnap.GetValue());
}
_nWhich = GetWhich( SID_PARA_VERTALIGN );
@@ -1248,11 +1221,11 @@ void SvxParaAlignTabPage::Reset( const SfxItemSet* rSet )
if ( eItemState >= SfxItemState::DEFAULT )
{
- m_pVertAlignFL->Show();
+ m_xVertAlignFL->show();
const SvxParaVertAlignItem& rAlign = static_cast<const SvxParaVertAlignItem&>(rSet->Get( _nWhich ));
- m_pVertAlignLB->SelectEntryPos(static_cast<sal_Int32>(rAlign.GetValue()));
+ m_xVertAlignLB->set_active(static_cast<sal_Int32>(rAlign.GetValue()));
}
_nWhich = GetWhich( SID_ATTR_FRAMEDIRECTION );
@@ -1260,125 +1233,126 @@ void SvxParaAlignTabPage::Reset( const SfxItemSet* rSet )
if( SfxItemState::DEFAULT <= rSet->GetItemState( _nWhich ) )
{
const SvxFrameDirectionItem& rFrameDirItem = static_cast<const SvxFrameDirectionItem&>( rSet->Get( _nWhich ) );
- m_pTextDirectionLB->SelectEntryValue( rFrameDirItem.GetValue() );
- m_pTextDirectionLB->SaveValue();
+ m_xTextDirectionLB->set_active_id(rFrameDirItem.GetValue());
+ m_xTextDirectionLB->save_value();
}
- m_pSnapToGridCB->SaveValue();
- m_pVertAlignLB->SaveValue();
- m_pLeft->SaveValue();
- m_pRight->SaveValue();
- m_pCenter->SaveValue();
- m_pJustify->SaveValue();
- m_pLastLineLB->SaveValue();
- m_pExpandCB->SaveValue();
+ m_xSnapToGridCB->save_state();
+ m_xVertAlignLB->save_value();
+ m_xLeft->save_state();
+ m_xRight->save_state();
+ m_xCenter->save_state();
+ m_xJustify->save_state();
+ m_xLastLineLB->save_value();
+ m_xExpandCB->save_state();
UpdateExample_Impl();
}
+
void SvxParaAlignTabPage::ChangesApplied()
{
- m_pTextDirectionLB->SaveValue();
- m_pSnapToGridCB->SaveValue();
- m_pVertAlignLB->SaveValue();
- m_pLeft->SaveValue();
- m_pRight->SaveValue();
- m_pCenter->SaveValue();
- m_pJustify->SaveValue();
- m_pLastLineLB->SaveValue();
- m_pExpandCB->SaveValue();
+ m_xTextDirectionLB->save_value();
+ m_xSnapToGridCB->save_state();
+ m_xVertAlignLB->save_value();
+ m_xLeft->save_state();
+ m_xRight->save_state();
+ m_xCenter->save_state();
+ m_xJustify->save_state();
+ m_xLastLineLB->save_value();
+ m_xExpandCB->save_state();
}
-IMPL_LINK_NOARG(SvxParaAlignTabPage, AlignHdl_Impl, Button*, void)
+IMPL_LINK_NOARG(SvxParaAlignTabPage, AlignHdl_Impl, weld::ToggleButton&, void)
{
- bool bJustify = m_pJustify->IsChecked();
- m_pLastLineFT->Enable(bJustify);
- m_pLastLineLB->Enable(bJustify);
- bool bLastLineIsBlock = m_pLastLineLB->GetSelectedEntryPos() == 2;
- m_pExpandCB->Enable(bJustify && bLastLineIsBlock);
+ bool bJustify = m_xJustify->get_active();
+ m_xLastLineFT->set_sensitive(bJustify);
+ m_xLastLineLB->set_sensitive(bJustify);
+ bool bLastLineIsBlock = m_xLastLineLB->get_active() == 2;
+ m_xExpandCB->set_sensitive(bJustify && bLastLineIsBlock);
//set last line listbox to entry position 0 if not enabled
- if(!m_pLastLineLB->IsEnabled())
- m_pLastLineLB->SelectEntryPos(0);
+ if (!m_xLastLineLB->get_sensitive())
+ m_xLastLineLB->set_active(0);
//uncheck 'Expand ... word' when check box is not enabled
- if(!m_pExpandCB->IsEnabled())
- m_pExpandCB->Check(false);
+ if (!m_xExpandCB->get_sensitive())
+ m_xExpandCB->set_active(false);
UpdateExample_Impl();
}
-IMPL_LINK_NOARG(SvxParaAlignTabPage, LastLineHdl_Impl, ListBox&, void)
+IMPL_LINK_NOARG(SvxParaAlignTabPage, LastLineHdl_Impl, weld::ComboBoxText&, void)
{
//fdo#41350 only enable 'Expand last word' if last line is also justified
- bool bLastLineIsBlock = m_pLastLineLB->GetSelectedEntryPos() == 2;
- m_pExpandCB->Enable(bLastLineIsBlock);
+ bool bLastLineIsBlock = m_xLastLineLB->get_active() == 2;
+ m_xExpandCB->set_sensitive(bLastLineIsBlock);
//uncheck 'Expand ... word' when check box is not enabled
- if(!m_pExpandCB->IsEnabled())
- m_pExpandCB->Check(false);
+ if (!m_xExpandCB->get_sensitive())
+ m_xExpandCB->set_active(false);
UpdateExample_Impl();
}
-IMPL_LINK_NOARG(SvxParaAlignTabPage, TextDirectionHdl_Impl, ListBox&, void)
+IMPL_LINK_NOARG(SvxParaAlignTabPage, TextDirectionHdl_Impl, weld::ComboBoxText&, void)
{
UpdateExample_Impl();
}
void SvxParaAlignTabPage::UpdateExample_Impl()
{
- if ( m_pLeft->IsChecked() )
+ if (m_xLeft->get_active())
{
- m_pExampleWin->EnableRTL( false );
- m_pExampleWin->SetAdjust( SvxAdjust::Left );
- m_pExampleWin->SetLastLine( SvxAdjust::Left );
+ m_aExampleWin.EnableRTL(false);
+ m_aExampleWin.SetAdjust(SvxAdjust::Left);
+ m_aExampleWin.SetLastLine(SvxAdjust::Left);
}
- else if ( m_pRight->IsChecked() )
+ else if (m_xRight->get_active())
{
- m_pExampleWin->EnableRTL( true );
- m_pExampleWin->SetAdjust( SvxAdjust::Left );
- m_pExampleWin->SetLastLine( SvxAdjust::Left );
+ m_aExampleWin.EnableRTL(true);
+ m_aExampleWin.SetAdjust(SvxAdjust::Left);
+ m_aExampleWin.SetLastLine(SvxAdjust::Left);
}
else
{
- SvxFrameDirection eDir = m_pTextDirectionLB->GetSelectEntryValue();
+ SvxFrameDirection eDir = m_xTextDirectionLB->get_active_id();
switch ( eDir )
{
case SvxFrameDirection::Environment :
- if ( !m_pRight->IsChecked() )
- m_pExampleWin->EnableRTL( IsRTLEnabled() /*false*/ );
+ if ( !m_xRight->get_active() )
+ m_aExampleWin.EnableRTL( IsRTLEnabled() /*false*/ );
break;
case SvxFrameDirection::Horizontal_RL_TB :
- if ( !m_pLeft->IsChecked() )
- m_pExampleWin->EnableRTL( true );
+ if ( !m_xLeft->get_active() )
+ m_aExampleWin.EnableRTL( true );
break;
case SvxFrameDirection::Horizontal_LR_TB :
- if ( !m_pRight->IsChecked() )
- m_pExampleWin->EnableRTL( false );
+ if ( !m_xRight->get_active() )
+ m_aExampleWin.EnableRTL( false );
break;
default: ; //prevent warning
}
- if ( m_pCenter->IsChecked() )
- m_pExampleWin->SetAdjust( SvxAdjust::Center );
- else if ( m_pJustify->IsChecked() )
+ if (m_xCenter->get_active())
+ m_aExampleWin.SetAdjust( SvxAdjust::Center );
+ else if (m_xJustify->get_active())
{
- m_pExampleWin->SetAdjust( SvxAdjust::Block );
- sal_Int32 nLBPos = m_pLastLineLB->GetSelectedEntryPos();
- if(nLBPos == 0)
- m_pExampleWin->SetLastLine(SvxAdjust::Left);
- else if(nLBPos == 1)
- m_pExampleWin->SetLastLine(SvxAdjust::Center);
- else if(nLBPos == 2)
- m_pExampleWin->SetLastLine(SvxAdjust::Block);
+ m_aExampleWin.SetAdjust( SvxAdjust::Block );
+ int nLBPos = m_xLastLineLB->get_active();
+ if (nLBPos == 0)
+ m_aExampleWin.SetLastLine(SvxAdjust::Left);
+ else if (nLBPos == 1)
+ m_aExampleWin.SetLastLine(SvxAdjust::Center);
+ else if (nLBPos == 2)
+ m_aExampleWin.SetLastLine(SvxAdjust::Block);
}
}
- m_pExampleWin->Invalidate();
+ m_aExampleWin.Invalidate();
}
void SvxParaAlignTabPage::EnableJustifyExt()
{
- m_pLastLineFT->Show();
- m_pLastLineLB->Show();
- m_pExpandCB->Show();
+ m_xLastLineFT->show();
+ m_xLastLineLB->show();
+ m_xExpandCB->show();
SvtLanguageOptions aCJKOptions;
- if(aCJKOptions.IsAsianTypographyEnabled())
- m_pSnapToGridCB->Show();
+ if (aCJKOptions.IsAsianTypographyEnabled())
+ m_xSnapToGridCB->show();
}
diff --git a/cui/uiconfig/ui/paragalignpage.ui b/cui/uiconfig/ui/paragalignpage.ui
index 9d43ef9f9dd6..6f0cf827b4b3 100644
--- a/cui/uiconfig/ui/paragalignpage.ui
+++ b/cui/uiconfig/ui/paragalignpage.ui
@@ -1,64 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!-- Generated with glade 3.18.3 -->
+<!-- Generated with glade 3.22.1 -->
<interface domain="cui">
<requires lib="gtk+" version="3.18"/>
- <requires lib="LibreOffice" version="1.0"/>
- <object class="GtkListStore" id="liststoreLB_LASTLINE">
- <columns>
- <!-- column-name gchararray1 -->
- <column type="gchararray"/>
- <!-- column-name guint1 -->
- <column type="guint"/>
- </columns>
- <data>
- <row>
- <col id="0" translatable="yes" context="paragalignpage|liststoreLB_LASTLINE">Start</col>
- <col id="1">0</col>
- </row>
- <row>
- <col id="0" translatable="yes" context="paragalignpage|liststoreLB_LASTLINE">Start</col>
- <col id="1">1</col>
- </row>
- <row>
- <col id="0" translatable="yes" context="paragalignpage|liststoreLB_LASTLINE">Centered</col>
- <col id="1">2</col>
- </row>
- <row>
- <col id="0" translatable="yes" context="paragalignpage|liststoreLB_LASTLINE">Justified</col>
- <col id="1">3</col>
- </row>
- </data>
- </object>
- <object class="GtkListStore" id="liststoreLB_VERTALIGN">
- <columns>
- <!-- column-name gchararray1 -->
- <column type="gchararray"/>
- <!-- column-name guint1 -->
- <column type="guint"/>
- </columns>
- <data>
- <row>
- <col id="0" translatable="yes" context="paragalignpage|liststoreLB_VERTALIGN">Automatic</col>
- <col id="1">0</col>
- </row>
- <row>
- <col id="0" translatable="yes" context="paragalignpage|liststoreLB_VERTALIGN">Base line</col>
- <col id="1">1</col>
- </row>
- <row>
- <col id="0" translatable="yes" context="paragalignpage|liststoreLB_VERTALIGN">Top</col>
- <col id="1">2</col>
- </row>
- <row>
- <col id="0" translatable="yes" context="paragalignpage|liststoreLB_VERTALIGN">Middle</col>
- <col id="1">3</col>
- </row>
- <row>
- <col id="0" translatable="yes" context="paragalignpage|liststoreLB_VERTALIGN">Bottom</col>
- <col id="1">4</col>
- </row>
- </data>
- </object>
<object class="GtkGrid" id="ParaAlignPage">
<property name="visible">True</property>
<property name="can_focus">False</property>
@@ -75,14 +18,31 @@
<property name="vexpand">True</property>
<property name="top_padding">24</property>
<child>
- <object class="svxlo-SvxParaPrevWindow" id="drawingareaWN_EXAMPLE">
+ <object class="GtkScrolledWindow">
<property name="visible">True</property>
- <property name="can_focus">False</property>
+ <property name="can_focus">True</property>
<property name="halign">center</property>
<property name="valign">start</property>
- <child internal-child="accessible">
- <object class="AtkObject" id="drawingareaWN_EXAMPLE-atkobject">
- <property name="AtkObject::accessible-name" translatable="yes" context="paragalignpage|drawingareaWN_EXAMPLE-atkobject">Example</property>
+ <property name="hscrollbar_policy">never</property>
+ <property name="vscrollbar_policy">never</property>
+ <property name="shadow_type">in</property>
+ <child>
+ <object class="GtkViewport">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <child>
+ <object class="GtkDrawingArea" id="drawingareaWN_EXAMPLE">
+ <property name="visible">True</property>
+ <property name="can_focus">False</property>
+ <property name="halign">center</property>
+ <property name="valign">start</property>
+ <child internal-child="accessible">
+ <object class="AtkObject" id="drawingareaWN_EXAMPLE-atkobject">
+ <property name="AtkObject::accessible-name" translatable="yes" context="paragalignpage|drawingareaWN_EXAMPLE-atkobject">Example</property>
+ </object>
+ </child>
+ </object>
+ </child>
</object>
</child>
</object>
@@ -123,8 +83,8 @@
<property name="receives_default">False</property>
<property name="use_underline">True</property>
<property name="xalign">0</property>
+ <property name="active">True</property>
<property name="draw_indicator">True</property>
- <property name="group">radioBTN_RIGHTALIGN</property>
</object>
<packing>
<property name="left_attach">0</property>
@@ -140,7 +100,7 @@
<property name="use_underline">True</property>
<property name="xalign">0</property>
<property name="draw_indicator">True</property>
- <property name="group">radioBTN_CENTERALIGN</property>
+ <property name="group">radioBTN_LEFTALIGN</property>
</object>
<packing>
<property name="left_attach">0</property>
@@ -157,7 +117,7 @@
<property name="use_underline">True</property>
<property name="xalign">0</property>
<property name="draw_indicator">True</property>
- <property name="group">radioBTN_JUSTIFYALIGN</property>
+ <property name="group">radioBTN_LEFTALIGN</property>
</object>
<packing>
<property name="left_attach">0</property>
@@ -249,10 +209,15 @@
</packing>
</child>
<child>
- <object class="GtkComboBox" id="comboLB_LASTLINE">
+ <object class="GtkComboBoxText" id="comboLB_LASTLINE">
<property name="visible">True</property>
<property name="can_focus">False</property>
- <property name="model">liststoreLB_LASTLINE</property>
+ <items>
+ <item id="0" translatable="yes" context="paragalignpage|liststoreLB_LASTLINE">Start</item>
+ <item id="1" translatable="yes" context="paragalignpage|liststoreLB_LASTLINE">Start</item>
+ <item id="2" translatable="yes" context="paragalignpage|liststoreLB_LASTLINE">Centered</item>
+ <item id="3" translatable="yes" context="paragalignpage|liststoreLB_LASTLINE">Justified</item>
+ </items>
</object>
<packing>
<property name="expand">False</property>
@@ -356,10 +321,16 @@
</packing>
</child>
<child>
- <object class="GtkComboBox" id="comboLB_VERTALIGN">
+ <object class="GtkComboBoxText" id="comboLB_VERTALIGN">
<property name="visible">True</property>
<property name="can_focus">False</property>
- <property name="model">liststoreLB_VERTALIGN</property>
+ <items>
+ <item id="0" translatable="yes" context="paragalignpage|liststoreLB_VERTALIGN">Automatic</item>
+ <item id="1" translatable="yes" context="paragalignpage|liststoreLB_VERTALIGN">Base line</item>
+ <item id="2" translatable="yes" context="paragalignpage|liststoreLB_VERTALIGN">Top</item>
+ <item id="3" translatable="yes" context="paragalignpage|liststoreLB_VERTALIGN">Middle</item>
+ <item id="4" translatable="yes" context="paragalignpage|liststoreLB_VERTALIGN">Bottom</item>
+ </items>
</object>
<packing>
<property name="expand">False</property>
@@ -421,11 +392,9 @@
</packing>
</child>
<child>
- <object class="svxlo-FrameDirectionListBox" id="comboLB_TEXTDIRECTION">
+ <object class="GtkComboBoxText" id="comboLB_TEXTDIRECTION">
<property name="visible">True</property>
<property name="can_focus">False</property>
- <property name="entry_text_column">0</property>
- <property name="id_column">1</property>
</object>
<packing>
<property name="expand">False</property>