Kaydet (Commit) 7a73a78e authored tarafından Rüdiger Timm's avatar Rüdiger Timm

INTEGRATION: CWS oj14 (1.32.8); FILE MERGED

2007/02/20 19:41:22 oj 1.32.8.6: merge conflict resolved
2007/02/20 15:50:26 oj 1.32.8.5: RESYNC: (1.33-1.35); FILE MERGED
2006/12/21 14:12:33 oj 1.32.8.4: impl propset
2006/12/21 12:30:02 oj 1.32.8.3: impl selectionSupplier
2006/11/07 09:32:12 oj 1.32.8.2: RESYNC: (1.32-1.33); FILE MERGED
2006/01/03 07:49:16 oj 1.32.8.1: changed module client
üst 3773819e
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
* *
* $RCSfile: querycontroller.hxx,v $ * $RCSfile: querycontroller.hxx,v $
* *
* $Revision: 1.35 $ * $Revision: 1.36 $
* *
* last change: $Author: rt $ $Date: 2007-01-17 14:57:50 $ * last change: $Author: rt $ $Date: 2007-07-06 08:31:39 $
* *
* The Contents of this file are made available subject to * The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
...@@ -44,9 +44,6 @@ ...@@ -44,9 +44,6 @@
#ifndef _COM_SUN_STAR_SDB_XSQLQUERYCOMPOSER_HPP_ #ifndef _COM_SUN_STAR_SDB_XSQLQUERYCOMPOSER_HPP_
#include <com/sun/star/sdb/XSQLQueryComposer.hpp> #include <com/sun/star/sdb/XSQLQueryComposer.hpp>
#endif #endif
#ifndef _COM_SUN_STAR_UTIL_XNUMBERFORMATTER_HPP_
#include <com/sun/star/util/XNumberFormatter.hpp>
#endif
#ifndef DBAUI_QUERYVIEW_HXX #ifndef DBAUI_QUERYVIEW_HXX
#include "queryview.hxx" #include "queryview.hxx"
#endif #endif
...@@ -65,6 +62,12 @@ ...@@ -65,6 +62,12 @@
#ifndef _CONNECTIVITY_SQLPARSE_HXX #ifndef _CONNECTIVITY_SQLPARSE_HXX
#include <connectivity/sqlparse.hxx> #include <connectivity/sqlparse.hxx>
#endif #endif
#ifndef _COMPHELPER_UNO3_HXX_
#include <comphelper/uno3.hxx>
#endif
#ifndef _COMPHELPER_UNO3_HXX_
#include <comphelper/uno3.hxx>
#endif
#ifndef _CONNECTIVITY_SQLNODE_HXX #ifndef _CONNECTIVITY_SQLNODE_HXX
#include <connectivity/sqlnode.hxx> #include <connectivity/sqlnode.hxx>
#endif #endif
...@@ -114,7 +117,6 @@ namespace dbaui ...@@ -114,7 +117,6 @@ namespace dbaui
::std::vector<sal_uInt32> m_vColumnWidth; ::std::vector<sal_uInt32> m_vColumnWidth;
::com::sun::star::uno::Reference< ::com::sun::star::sdb::XSQLQueryComposer > m_xComposer; ::com::sun::star::uno::Reference< ::com::sun::star::sdb::XSQLQueryComposer > m_xComposer;
::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormatter > m_xFormatter; // a number formatter working with the connection's NumberFormatsSupplier
::rtl::OUString m_sStatement; // contains the sql statement ::rtl::OUString m_sStatement; // contains the sql statement
::rtl::OUString m_sUpdateCatalogName; // catalog for update data ::rtl::OUString m_sUpdateCatalogName; // catalog for update data
...@@ -163,7 +165,7 @@ namespace dbaui ...@@ -163,7 +165,7 @@ namespace dbaui
public: public:
OQueryController(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rM); OQueryController(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rM);
~OQueryController(); virtual ~OQueryController();
OTableFields& getTableFieldDesc() { return m_vTableFieldDesc; } OTableFields& getTableFieldDesc() { return m_vTableFieldDesc; }
OTableFields& getUnUsedFields() { return m_vUnUsedFieldsDesc; } OTableFields& getUnUsedFields() { return m_vUnUsedFieldsDesc; }
...@@ -193,17 +195,18 @@ namespace dbaui ...@@ -193,17 +195,18 @@ namespace dbaui
virtual sal_Bool Construct(Window* pParent); virtual sal_Bool Construct(Window* pParent);
::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormatter > getNumberFormatter()const { return m_xFormatter; } DECLARE_XINTERFACE( )
DECLARE_XTYPEPROVIDER( )
// XPropertySet
virtual com::sun::star::uno::Reference<com::sun::star::beans::XPropertySetInfo> SAL_CALL getPropertySetInfo() throw(com::sun::star::uno::RuntimeException);
virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper();
// XEventListener // XEventListener
virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw(::com::sun::star::uno::RuntimeException); virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw(::com::sun::star::uno::RuntimeException);
// ::com::sun::star::lang::XComponent // ::com::sun::star::lang::XComponent
virtual void SAL_CALL disposing(); virtual void SAL_CALL disposing();
DECLARE_XINTERFACE()
DECLARE_XTYPEPROVIDER()
// XServiceInfo
virtual ::rtl::OUString SAL_CALL getImplementationName() throw(::com::sun::star::uno::RuntimeException); virtual ::rtl::OUString SAL_CALL getImplementationName() throw(::com::sun::star::uno::RuntimeException);
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString> SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException); virtual ::com::sun::star::uno::Sequence< ::rtl::OUString> SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException);
// need by registration // need by registration
...@@ -212,12 +215,10 @@ namespace dbaui ...@@ -212,12 +215,10 @@ namespace dbaui
static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >
SAL_CALL Create(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >&); SAL_CALL Create(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >&);
// XPropertySet
virtual com::sun::star::uno::Reference<com::sun::star::beans::XPropertySetInfo> SAL_CALL getPropertySetInfo() throw(com::sun::star::uno::RuntimeException);
virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper();
protected: protected:
virtual void onLoadedMenu(const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XLayoutManager >& _xLayoutManager); virtual void onLoadedMenu(const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XLayoutManager >& _xLayoutManager);
// OPropertyArrayUsageHelper
virtual ::cppu::IPropertyArrayHelper* createArrayHelper( ) const;
virtual OTableWindowData* createTableWindowData(); virtual OTableWindowData* createTableWindowData();
virtual OJoinDesignView* getJoinView(); virtual OJoinDesignView* getJoinView();
...@@ -235,9 +236,6 @@ namespace dbaui ...@@ -235,9 +236,6 @@ namespace dbaui
virtual bool allowViews() const; virtual bool allowViews() const;
virtual bool allowQueries() const; virtual bool allowQueries() const;
// OPropertyArrayUsageHelper
virtual ::cppu::IPropertyArrayHelper* createArrayHelper( ) const;
private: private:
DECL_LINK( OnExecuteAddTable, void* ); DECL_LINK( OnExecuteAddTable, void* );
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment