diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-11-22 09:58:19 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-11-22 09:58:19 +0000 |
commit | 4acbd6c62effd8b660e86583abc8352b11b3827d (patch) | |
tree | 0ea7490a5969ee3d204ef9b69cf85d6c84f32ccc /sfx2/source | |
parent | e808a2d8b5e0ba3835cbbcc615b049563cd67a13 (diff) |
INTEGRATION: CWS asyncdialogs (1.32.152); FILE MERGED
2006/07/12 21:05:14 pb 1.32.152.3: RESYNC: (1.33-1.34); FILE MERGED
2005/12/08 09:48:36 kso 1.32.152.2: RESYNC: (1.32-1.33); FILE MERGED
2005/11/10 09:57:23 pb 1.32.152.1: fix: #i57125# asynchronous execute of file dialog
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/inc/cfg.hxx | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/sfx2/source/inc/cfg.hxx b/sfx2/source/inc/cfg.hxx index f34116968e01..20b55497b95a 100644 --- a/sfx2/source/inc/cfg.hxx +++ b/sfx2/source/inc/cfg.hxx @@ -4,9 +4,9 @@ * * $RCSfile: cfg.hxx,v $ * - * $Revision: 1.35 $ + * $Revision: 1.36 $ * - * last change: $Author: vg $ $Date: 2006-11-22 10:53:50 $ + * last change: $Author: vg $ $Date: 2006-11-22 10:58:19 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -489,11 +489,18 @@ struct TAccInfo KeyCode m_aKey; }; +namespace sfx2 +{ + class FileDialogHelper; +} + class SfxAcceleratorConfigPage : public SfxTabPage { friend class SfxAccCfgTabListBox_Impl; private: const SfxMacroInfoItem* m_pMacroInfoItem; + sfx2::FileDialogHelper* m_pFileDlg; + SfxAccCfgTabListBox_Impl aEntriesBox; FixedLine aKeyboardGroup; RadioButton aOfficeButton; @@ -532,12 +539,16 @@ private: DECL_LINK( Default, PushButton * ); DECL_LINK( RadioHdl, RadioButton* ); + DECL_LINK( LoadHdl, sfx2::FileDialogHelper* ); + DECL_LINK( SaveHdl, sfx2::FileDialogHelper* ); + String GetLabel4Command(const String& sCommand); void InitAccCfg(); KeyCode MapPosToKeyCode( USHORT nPos ) const; USHORT MapKeyCodeToPos( const KeyCode &rCode ) const; String GetFunctionName( KeyFuncType eType ) const; css::uno::Reference< css::frame::XModel > SearchForAlreadyLoadedDoc(const String& sName); + void StartFileDialog( WinBits nBits, const String& rTitle ); void Init(const css::uno::Reference< css::ui::XAcceleratorConfiguration >& pAccMgr); void ResetConfig(); |