diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-02-21 21:44:07 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-02-22 09:03:51 +0000 |
commit | 6fb6bc4b4e45df954dc0ee0d5a53d35dae686fa0 (patch) | |
tree | aaeb9e930dd8a7e78b98d559277fba66b87a3048 /cui/source/customize | |
parent | 7d7eb08e182732ae3217a5f506d1a50384575b48 (diff) |
adapt code to New Toolbar Dialog .ui conversion
Change-Id: Ie1b7a0cf5fbb9dbfc04a07bb58d5f55f83a096f3
Diffstat (limited to 'cui/source/customize')
-rw-r--r-- | cui/source/customize/cfg.cxx | 40 | ||||
-rw-r--r-- | cui/source/customize/cfg.hrc | 3 | ||||
-rw-r--r-- | cui/source/customize/cfg.src | 60 |
3 files changed, 16 insertions, 87 deletions
diff --git a/cui/source/customize/cfg.cxx b/cui/source/customize/cfg.cxx index 20956aee716c..dd0121439d07 100644 --- a/cui/source/customize/cfg.cxx +++ b/cui/source/customize/cfg.cxx @@ -4653,24 +4653,24 @@ IMPL_LINK( SvxToolbarConfigPage, NewToolbarHdl, Button *, pButton ) SaveInData* pData = (SaveInData*) aSaveInListBox.GetEntryData( i ); - nInsertPos = pNameDialog->aSaveInListBox.InsertEntry( + nInsertPos = pNameDialog->m_pSaveInListBox->InsertEntry( aSaveInListBox.GetEntry( i ) ); - pNameDialog->aSaveInListBox.SetEntryData( nInsertPos, pData ); + pNameDialog->m_pSaveInListBox->SetEntryData( nInsertPos, pData ); } - pNameDialog->aSaveInListBox.SelectEntryPos( + pNameDialog->m_pSaveInListBox->SelectEntryPos( aSaveInListBox.GetSelectEntryPos(), sal_True ); bool ret = pNameDialog->Execute(); if ( ret == RET_OK ) { - pNameDialog->GetName( aNewName ); + aNewName = pNameDialog->GetName(); - nInsertPos = pNameDialog->aSaveInListBox.GetSelectEntryPos(); + nInsertPos = pNameDialog->m_pSaveInListBox->GetSelectEntryPos(); ToolbarSaveInData* pData = (ToolbarSaveInData*) - pNameDialog->aSaveInListBox.GetEntryData( nInsertPos ); + pNameDialog->m_pSaveInListBox->GetEntryData( nInsertPos ); if ( GetSaveInData() != pData ) { @@ -4954,24 +4954,16 @@ sal_Bool SvxToolbarEntriesListBox::NotifyCopying( return sal_False; } -SvxNewToolbarDialog::SvxNewToolbarDialog( - Window* pWindow, const String& rName ) - : - ModalDialog ( pWindow, CUI_RES( MD_NEW_TOOLBAR ) ), - aFtDescription ( this, CUI_RES( FT_NAME ) ), - aEdtName ( this, CUI_RES( EDT_STRING ) ), - aSaveInText ( this, CUI_RES( TXT_SAVEIN ) ), - aBtnOK ( this, CUI_RES( BTN_OK ) ), - aBtnCancel ( this, CUI_RES( BTN_CANCEL ) ), - aBtnHelp ( this, CUI_RES( BTN_HELP ) ), - aSaveInListBox ( this, CUI_RES( LB_SAVEIN ) ) +SvxNewToolbarDialog::SvxNewToolbarDialog(Window* pWindow, const OUString& rName) + : ModalDialog(pWindow, "NewToolbarDialog", "cui/ui/newtoolbardialog.ui") { - FreeResource(); - - aEdtName.SetText( rName ); - aEdtName.SetSelection(Selection(SELECTION_MIN, SELECTION_MAX)); - ModifyHdl(&aEdtName); - aEdtName.SetModifyHdl(LINK(this, SvxNewToolbarDialog, ModifyHdl)); + get(m_pEdtName, "edit"); + get(m_pBtnOK, "ok"); + get(m_pSaveInListBox, "savein"); + m_pEdtName->SetText( rName ); + m_pEdtName->SetSelection(Selection(SELECTION_MIN, SELECTION_MAX)); + ModifyHdl(m_pEdtName); + m_pEdtName->SetModifyHdl(LINK(this, SvxNewToolbarDialog, ModifyHdl)); } IMPL_LINK(SvxNewToolbarDialog, ModifyHdl, Edit*, pEdit) @@ -4979,7 +4971,7 @@ IMPL_LINK(SvxNewToolbarDialog, ModifyHdl, Edit*, pEdit) (void)pEdit; if(aCheckNameHdl.IsSet()) - aBtnOK.Enable(aCheckNameHdl.Call(this) > 0); + m_pBtnOK->Enable(aCheckNameHdl.Call(this) > 0); return 0; } diff --git a/cui/source/customize/cfg.hrc b/cui/source/customize/cfg.hrc index 64e0cef7b7fc..7db7f26b1e78 100644 --- a/cui/source/customize/cfg.hrc +++ b/cui/source/customize/cfg.hrc @@ -79,12 +79,9 @@ #define BTN_IMPORT (97 + CFG_OFFSET) #define IMAGE_BTN_COLOR (98 + CFG_OFFSET) -#define MD_NEW_TOOLBAR (101 + CFG_OFFSET) -#define EDT_STRING (102 + CFG_OFFSET) #define BTN_OK (103 + CFG_OFFSET) #define BTN_CANCEL (104 + CFG_OFFSET) #define BTN_HELP (105 + CFG_OFFSET) -#define FT_NAME (106 + CFG_OFFSET) #define FL_SEPARATOR (108 + CFG_OFFSET) #define BTN_DELETE (109 + CFG_OFFSET) diff --git a/cui/source/customize/cfg.src b/cui/source/customize/cfg.src index 80a6c1d6d44e..b4a4f487d093 100644 --- a/cui/source/customize/cfg.src +++ b/cui/source/customize/cfg.src @@ -483,66 +483,6 @@ ModalDialog MD_MENU_ORGANISER }; }; -// MD_NEW_TOOLBAR ------------------------------------------------- -ModalDialog MD_NEW_TOOLBAR -{ - HelpID = "cui:ModalDialog:MD_NEW_TOOLBAR"; - OutputSize = TRUE ; - SvLook = TRUE ; - Size = MAP_APPFONT ( 165 , 63 ) ; - Text [ en-US ] = "Name" ; - Moveable = TRUE ; - FixedText FT_NAME - { - Pos = MAP_APPFONT ( 6 , 6 ) ; - Size = MAP_APPFONT ( 98 , 8 ) ; - TEXT_TOOLBAR_NAME - WordBreak = TRUE ; - }; - Edit EDT_STRING - { - HelpID = "cui:Edit:MD_NEW_TOOLBAR:EDT_STRING"; - Border = TRUE ; - Pos = MAP_APPFONT ( 6 , 17 ) ; - Size = MAP_APPFONT ( 97 , 12 ) ; - TabStop = TRUE ; - }; - FixedText TXT_SAVEIN - { - Pos = MAP_APPFONT ( 6 , 35 ) ; - Size = MAP_APPFONT ( 98 , 8 ) ; - Group = TRUE ; - TEXT_SAVE_IN - }; - ListBox LB_SAVEIN - { - HelpID = "cui:ListBox:MD_NEW_TOOLBAR:LB_SAVEIN"; - Border = TRUE ; - Pos = MAP_APPFONT ( 6 , 43 ) ; - Size = MAP_APPFONT ( 97 , 53 ) ; - DropDown = TRUE ; - }; - OKButton BTN_OK - { - Pos = MAP_APPFONT ( 109 , 6 ) ; - Size = MAP_APPFONT ( 50 , 14 ) ; - TabStop = TRUE ; - DefButton = TRUE ; - }; - CancelButton BTN_CANCEL - { - Pos = MAP_APPFONT ( 109 , 23 ) ; - Size = MAP_APPFONT ( 50 , 14 ) ; - TabStop = TRUE ; - }; - HelpButton BTN_HELP - { - Pos = MAP_APPFONT ( 109 , 43 ) ; - Size = MAP_APPFONT ( 50 , 14 ) ; - TabStop = TRUE ; - }; -}; - #ifndef IMAGE_STDBTN_COLOR #define IMAGE_STDBTN_COLOR Color { Red = 0xFFFF; Green = 0x0000; Blue = 0xFFFF; } #endif |