Tag: cws_src680_hsqlcsv User: fs Date: 2008-01-17 02:19:59+0000 Modified: dba/dbaccess/source/ui/app/AppView.hxx
Log: RESYNC: (1.11-1.14); FILE MERGED File Changes: Directory: /dba/dbaccess/source/ui/app/ ======================================= File [changed]: AppView.hxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/app/AppView.hxx?r1=1.9.34.2&r2=1.9.34.3 Delta lines: +14 -16 --------------------- --- AppView.hxx 2006-10-11 08:52:48+0000 1.9.34.2 +++ AppView.hxx 2008-01-17 02:19:57+0000 1.9.34.3 @@ -65,8 +65,10 @@ namespace com{ namespace sun { namespace star { namespace beans { class XPropertySet; } } } } namespace com{ namespace sun { namespace star { namespace frame { class XController; } } } } + class Control; class SvLBoxEntry; +class MnemonicGenerator; namespace dbaui { @@ -101,6 +103,7 @@ OApplicationSwapWindow* getPanel() const; OApplicationDetailView* getDetailView() const; }; + //================================================================== class OApplicationView : public ODataView ,public IClipboardTest @@ -153,9 +156,11 @@ ); virtual ~OApplicationView(); - /** automatically creates mnemonics for the icon/texts in our left hand side panel - */ - void createIconAutoMnemonics(); + /// automatically creates mnemonics for the icon/texts in our left hand side panel + void createIconAutoMnemonics( MnemonicGenerator& _rMnemonics ); + + /// automatically creates mnemonics for the texts in our task pane + void setTaskExternalMnemonics( MnemonicGenerator& _rMnemonics ); // window overloads virtual long PreNotify( NotifyEvent& rNEvt ); @@ -243,6 +248,12 @@ */ void getSelectionElementNames( ::std::vector< ::rtl::OUString>& _rNames ) const; + /** select all names on the currently selected container. Non existence names where ignored. + * + * \param _aNames the element names + */ + void selectElements(const ::com::sun::star::uno::Sequence< ::rtl::OUString>& _aNames); + /** adds a new object to the detail page. @param _eType The type where the entry shold be appended. @@ -284,10 +295,6 @@ void elementRemoved(ElementType _eType ,const ::rtl::OUString& _rName ); - /** clears the selection in the icon choice control and calls the handler - */ - void clearSelection(); - /** changes the container which should be displayed. The select handler will also be called. @param _eType @@ -301,9 +308,6 @@ /// <TRUE/> if the preview is enabled sal_Bool isPreviewEnabled(); - /// switches the current preview - void switchPreview(); - /** switches to the given preview mode @param _eMode the mode to set for the preview @@ -334,12 +338,6 @@ SvLBoxEntry* getEntry( const Point& _aPosPixel ) const; - /** disable the controls - @param _bDisable - if <TRUE/> then the controls will be disabled otherwise they will be enabled. - */ - void disableControls(sal_Bool _bDisable); - DECL_LINK( SwitchHdl, Accelerator* ); }; } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
