diff options
author | Noel Grandin <noel@peralex.com> | 2014-09-23 11:20:40 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-09-23 14:11:39 +0300 |
commit | 827c46e7d75000cb03b0ce21759f9d0825f0c096 (patch) | |
tree | 3a84ccc45d54607c61328b18f58f914c1d6ec240 /extensions | |
parent | 7cbbefae224ab85343accb42b03f9431ec693a83 (diff) |
fdo#82577: Handle Window
Put the VCL Window class in the vcl namespace. Avoids clash with the X11
Window typedef.
Change-Id: Ib1beb7ab4ad75562a42aeb252732a073d25eff1a
Diffstat (limited to 'extensions')
87 files changed, 241 insertions, 241 deletions
diff --git a/extensions/source/abpilot/abspilot.cxx b/extensions/source/abpilot/abspilot.cxx index bfe4cb17e423..45abc6bf7036 100644 --- a/extensions/source/abpilot/abspilot.cxx +++ b/extensions/source/abpilot/abspilot.cxx @@ -58,7 +58,7 @@ namespace abp //= OAddessBookSourcePilot - OAddessBookSourcePilot::OAddessBookSourcePilot(Window* _pParent, const Reference< XComponentContext >& _rxORB) + OAddessBookSourcePilot::OAddessBookSourcePilot(vcl::Window* _pParent, const Reference< XComponentContext >& _rxORB) :OAddessBookSourcePilot_Base( _pParent, static_cast<sal_uInt32>(WZB_HELP | WZB_FINISH | WZB_CANCEL | WZB_NEXT | WZB_PREVIOUS) ) ,m_xORB(_rxORB) diff --git a/extensions/source/abpilot/abspilot.hxx b/extensions/source/abpilot/abspilot.hxx index 9a83389b193e..cd4e818f41c5 100644 --- a/extensions/source/abpilot/abspilot.hxx +++ b/extensions/source/abpilot/abspilot.hxx @@ -47,7 +47,7 @@ namespace abp public: /// ctor OAddessBookSourcePilot( - Window* _pParent, + vcl::Window* _pParent, const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _rxORB); /// dtor virtual ~OAddessBookSourcePilot(); diff --git a/extensions/source/abpilot/admininvokationimpl.cxx b/extensions/source/abpilot/admininvokationimpl.cxx index 955c10952e17..d924faf64149 100644 --- a/extensions/source/abpilot/admininvokationimpl.cxx +++ b/extensions/source/abpilot/admininvokationimpl.cxx @@ -48,7 +48,7 @@ namespace abp OAdminDialogInvokation::OAdminDialogInvokation(const Reference< XComponentContext >& _rxContext , const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > _xDataSource - , Window* _pMessageParent) + , vcl::Window* _pMessageParent) :m_xContext(_rxContext) ,m_xDataSource(_xDataSource) ,m_pMessageParent(_pMessageParent) diff --git a/extensions/source/abpilot/admininvokationimpl.hxx b/extensions/source/abpilot/admininvokationimpl.hxx index 32d895e0a367..e71b5ec55802 100644 --- a/extensions/source/abpilot/admininvokationimpl.hxx +++ b/extensions/source/abpilot/admininvokationimpl.hxx @@ -23,7 +23,7 @@ #include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/beans/XPropertySet.hpp> -class Window; +namespace vcl { class Window; } namespace abp { @@ -36,13 +36,13 @@ namespace abp ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > m_xContext; ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > m_xDataSource; - Window* m_pMessageParent; + vcl::Window* m_pMessageParent; public: OAdminDialogInvokation( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _rxContext, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > _xDataSource, - Window* _pMessageParent + vcl::Window* _pMessageParent ); bool invokeAdministration( bool _bFixedType ); diff --git a/extensions/source/abpilot/datasourcehandling.cxx b/extensions/source/abpilot/datasourcehandling.cxx index 8d2f36f9fbbf..b5b3d86eb120 100644 --- a/extensions/source/abpilot/datasourcehandling.cxx +++ b/extensions/source/abpilot/datasourcehandling.cxx @@ -502,7 +502,7 @@ namespace abp } - bool ODataSource::connect( Window* _pMessageParent ) + bool ODataSource::connect( vcl::Window* _pMessageParent ) { if ( isConnected( ) ) // nothing to do diff --git a/extensions/source/abpilot/datasourcehandling.hxx b/extensions/source/abpilot/datasourcehandling.hxx index 61b6855e31fa..7515c1516f79 100644 --- a/extensions/source/abpilot/datasourcehandling.hxx +++ b/extensions/source/abpilot/datasourcehandling.hxx @@ -32,7 +32,7 @@ namespace com { namespace sun { namespace star { } } } } -class Window; +namespace vcl { class Window; } @@ -157,7 +157,7 @@ namespace abp at all. @see isConnected */ - bool connect( Window* _pMessageParent ); + bool connect( vcl::Window* _pMessageParent ); /// returns <TRUE/> if the object has a valid connection, obtained from it's data source bool isConnected( ) const; diff --git a/extensions/source/abpilot/fieldmappingimpl.cxx b/extensions/source/abpilot/fieldmappingimpl.cxx index 8717ea75413b..99c93ef2c58e 100644 --- a/extensions/source/abpilot/fieldmappingimpl.cxx +++ b/extensions/source/abpilot/fieldmappingimpl.cxx @@ -69,7 +69,7 @@ namespace abp - bool invokeDialog( const Reference< XComponentContext >& _rxORB, class Window* _pParent, + bool invokeDialog( const Reference< XComponentContext >& _rxORB, class vcl::Window* _pParent, const Reference< XPropertySet >& _rxDataSource, AddressSettings& _rSettings ) { _rSettings.aFieldMapping.clear(); diff --git a/extensions/source/abpilot/fieldmappingimpl.hxx b/extensions/source/abpilot/fieldmappingimpl.hxx index df5e71ae5052..7ac1e5fb7fb3 100644 --- a/extensions/source/abpilot/fieldmappingimpl.hxx +++ b/extensions/source/abpilot/fieldmappingimpl.hxx @@ -36,7 +36,7 @@ namespace com { namespace sun { namespace star { class XPropertySet; } } } } -class Window; +namespace vcl { class Window; } namespace abp @@ -61,7 +61,7 @@ namespace abp */ bool invokeDialog( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _rxORB, - class Window* _pParent, + class vcl::Window* _pParent, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _rxDataSource, AddressSettings& _rSettings ); diff --git a/extensions/source/abpilot/unodialogabp.cxx b/extensions/source/abpilot/unodialogabp.cxx index 1ed507b60dc2..063bac1f8846 100644 --- a/extensions/source/abpilot/unodialogabp.cxx +++ b/extensions/source/abpilot/unodialogabp.cxx @@ -152,7 +152,7 @@ namespace abp } - Dialog* OABSPilotUno::createDialog(Window* _pParent) + Dialog* OABSPilotUno::createDialog(vcl::Window* _pParent) { return new OAddessBookSourcePilot(_pParent, m_aContext ); } diff --git a/extensions/source/abpilot/unodialogabp.hxx b/extensions/source/abpilot/unodialogabp.hxx index 845423d07954..ff58b6e9a456 100644 --- a/extensions/source/abpilot/unodialogabp.hxx +++ b/extensions/source/abpilot/unodialogabp.hxx @@ -84,7 +84,7 @@ namespace abp using OABSPilotUno_DBase::execute; protected: // OGenericUnoDialog overridables - virtual Dialog* createDialog(Window* _pParent) SAL_OVERRIDE; + virtual Dialog* createDialog(vcl::Window* _pParent) SAL_OVERRIDE; virtual void executedDialog(sal_Int16 _nExecutionResult) SAL_OVERRIDE; }; diff --git a/extensions/source/bibliography/bibbeam.cxx b/extensions/source/bibliography/bibbeam.cxx index c48327763351..72120f8d36ce 100644 --- a/extensions/source/bibliography/bibbeam.cxx +++ b/extensions/source/bibliography/bibbeam.cxx @@ -47,9 +47,9 @@ namespace bib using namespace ::com::sun::star::uno; - void HandleTaskPaneList( Window* pWindow, bool bAddToList ) + void HandleTaskPaneList( vcl::Window* pWindow, bool bAddToList ) { - Window* pParent = pWindow->GetParent(); + vcl::Window* pParent = pWindow->GetParent(); DBG_ASSERT( pParent, "-GetTaskPaneList(): everybody here should have a parent!" ); @@ -69,7 +69,7 @@ namespace bib class BibGridwin - :public Window //DockingWindow + :public vcl::Window //DockingWindow { private: Reference< awt::XWindow > m_xGridWin; @@ -85,7 +85,7 @@ namespace bib public: - BibGridwin(Window* pParent, WinBits nStyle = WB_3DLOOK ); + BibGridwin(vcl::Window* pParent, WinBits nStyle = WB_3DLOOK ); virtual ~BibGridwin(); void createGridWin(const Reference< awt::XControlModel > & xDbForm); @@ -98,7 +98,7 @@ namespace bib virtual void GetFocus() SAL_OVERRIDE; }; - BibGridwin::BibGridwin( Window* _pParent, WinBits _nStyle ) : Window( _pParent, _nStyle ) + BibGridwin::BibGridwin( vcl::Window* _pParent, WinBits _nStyle ) : Window( _pParent, _nStyle ) { m_xControlContainer = VCLUnoHelper::CreateControlContainer(this); @@ -180,7 +180,7 @@ namespace bib m_xGridWin->setFocus(); } - BibBeamer::BibBeamer( Window* _pParent, BibDataManager* _pDM, WinBits _nStyle ) + BibBeamer::BibBeamer( vcl::Window* _pParent, BibDataManager* _pDM, WinBits _nStyle ) :BibSplitWindow( _pParent, _nStyle | WB_NOSPLITDRAW ) ,pDatMan( _pDM ) ,pToolBar( NULL ) diff --git a/extensions/source/bibliography/bibbeam.hxx b/extensions/source/bibliography/bibbeam.hxx index c4e15925ffe1..e36bc7906453 100644 --- a/extensions/source/bibliography/bibbeam.hxx +++ b/extensions/source/bibliography/bibbeam.hxx @@ -70,7 +70,7 @@ namespace bib virtual ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatchProviderInterception > getDispatchProviderInterception(); - BibBeamer(Window* pParent,BibDataManager* pDatMan, WinBits nStyle = WB_3DLOOK ); + BibBeamer(vcl::Window* pParent,BibDataManager* pDatMan, WinBits nStyle = WB_3DLOOK ); virtual ~BibBeamer(); void SetXController(const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XController > &); diff --git a/extensions/source/bibliography/bibcont.cxx b/extensions/source/bibliography/bibcont.cxx index 955f47919f2c..b48aa514b361 100644 --- a/extensions/source/bibliography/bibcont.cxx +++ b/extensions/source/bibliography/bibcont.cxx @@ -43,7 +43,7 @@ bool BibShortCutHandler::HandleShortCutKey( const KeyEvent& ) } -BibWindow::BibWindow( Window* pParent, WinBits nStyle ) : Window( pParent, nStyle ), BibShortCutHandler( this ) +BibWindow::BibWindow( vcl::Window* pParent, WinBits nStyle ) : Window( pParent, nStyle ), BibShortCutHandler( this ) { } @@ -52,7 +52,7 @@ BibWindow::~BibWindow() } -BibSplitWindow::BibSplitWindow( Window* pParent, WinBits nStyle ) : SplitWindow( pParent, nStyle ), BibShortCutHandler( this ) +BibSplitWindow::BibSplitWindow( vcl::Window* pParent, WinBits nStyle ) : SplitWindow( pParent, nStyle ), BibShortCutHandler( this ) { } @@ -60,7 +60,7 @@ BibSplitWindow::~BibSplitWindow() { } -BibTabPage::BibTabPage( Window* pParent, const OString& rID, const OUString& rUIXMLDescription ) : +BibTabPage::BibTabPage( vcl::Window* pParent, const OString& rID, const OUString& rUIXMLDescription ) : TabPage( pParent, rID, rUIXMLDescription ), BibShortCutHandler( this ) { } @@ -80,13 +80,13 @@ using namespace ::rtl; #define WIN_MIN_HEIGHT 10 #define WIN_STEP_SIZE 5 -BibWindowContainer::BibWindowContainer( Window* pParent, BibShortCutHandler* pChildWin, WinBits nStyle ) : +BibWindowContainer::BibWindowContainer( vcl::Window* pParent, BibShortCutHandler* pChildWin, WinBits nStyle ) : BibWindow( pParent, nStyle ), pChild( pChildWin ) { if(pChild!=NULL) { - Window* pChildWindow = GetChild(); + vcl::Window* pChildWindow = GetChild(); pChildWindow->SetParent(this); pChildWindow->Show(); pChildWindow->SetPosPixel(Point(0,0)); @@ -97,7 +97,7 @@ BibWindowContainer::~BibWindowContainer() { if( pChild ) { - Window* pDel = GetChild(); + vcl::Window* pDel = GetChild(); pChild = NULL; // prevents GetFocus for child while deleting! delete pDel; } @@ -121,7 +121,7 @@ bool BibWindowContainer::HandleShortCutKey( const KeyEvent& rKeyEvent ) } -BibBookContainer::BibBookContainer(Window* pParent, WinBits nStyle): +BibBookContainer::BibBookContainer(vcl::Window* pParent, WinBits nStyle): BibSplitWindow(pParent,nStyle), pTopWin(NULL), pBottomWin(NULL) @@ -140,14 +140,14 @@ BibBookContainer::~BibBookContainer() if( pTopWin ) { - Window* pDel = pTopWin; + vcl::Window* pDel = pTopWin; pTopWin = NULL; // prevents GetFocus for child while deleting! delete pDel; } if( pBottomWin ) { - Window* pDel = pBottomWin; + vcl::Window* pDel = pBottomWin; pBottomWin = NULL; // prevents GetFocus for child while deleting! delete pDel; } diff --git a/extensions/source/bibliography/bibcont.hxx b/extensions/source/bibliography/bibcont.hxx index 67f7241973fe..7b2dacc01533 100644 --- a/extensions/source/bibliography/bibcont.hxx +++ b/extensions/source/bibliography/bibcont.hxx @@ -40,10 +40,10 @@ class BibWindowContainer : public BibWindow //Window virtual void Resize() SAL_OVERRIDE; public: - BibWindowContainer( Window* pParent, BibShortCutHandler* pChild, WinBits nStyle = WB_3DLOOK); + BibWindowContainer( vcl::Window* pParent, BibShortCutHandler* pChild, WinBits nStyle = WB_3DLOOK); virtual ~BibWindowContainer(); - inline Window* GetChild(); + inline vcl::Window* GetChild(); virtual void GetFocus() SAL_OVERRIDE; @@ -52,7 +52,7 @@ class BibWindowContainer : public BibWindow //Window using Window::GetChild; }; -inline Window* BibWindowContainer::GetChild() +inline vcl::Window* BibWindowContainer::GetChild() { return pChild? pChild->GetWindow() : NULL; } @@ -83,7 +83,7 @@ class BibBookContainer: public BibSplitWindow public: - BibBookContainer(Window* pParent, WinBits nStyle = WB_3DLOOK ); + BibBookContainer(vcl::Window* pParent, WinBits nStyle = WB_3DLOOK ); virtual ~BibBookContainer(); inline BibWindow* GetTopWin() {return pTopWin;} diff --git a/extensions/source/bibliography/bibload.cxx b/extensions/source/bibliography/bibload.cxx index feec3e9ede85..8a732ccb2b58 100644 --- a/extensions/source/bibliography/bibload.cxx +++ b/extensions/source/bibliography/bibload.cxx @@ -272,7 +272,7 @@ void BibliographyLoader::loadView(const Reference< XFrame > & rFrame, const OUSt VCLXWindow* pParentComponent = VCLXWindow::GetImplementation(aWindow); assert(pParentComponent); - Window* pParent = VCLUnoHelper::GetWindow( aWindow ); + vcl::Window* pParent = VCLUnoHelper::GetWindow( aWindow ); BibBookContainer *pMyWindow = new BibBookContainer( pParent ); pMyWindow->Show(); diff --git a/extensions/source/bibliography/bibshortcuthandler.hxx b/extensions/source/bibliography/bibshortcuthandler.hxx index 6eb4231b3182..f8c87f395fb5 100644 --- a/extensions/source/bibliography/bibshortcuthandler.hxx +++ b/extensions/source/bibliography/bibshortcuthandler.hxx @@ -31,45 +31,45 @@ class BibShortCutHandler { private: - Window* pBaseClass; // in cases, where BibShortCutHandler also has to be a window + vcl::Window* pBaseClass; // in cases, where BibShortCutHandler also has to be a window protected: - inline BibShortCutHandler( Window* pBaseClass ); + inline BibShortCutHandler( vcl::Window* pBaseClass ); public: virtual ~BibShortCutHandler(); virtual bool HandleShortCutKey( const KeyEvent& rKeyEvent ); // returns true, if key was handled - inline Window* GetWindow( void ); + inline vcl::Window* GetWindow( void ); }; -inline BibShortCutHandler::BibShortCutHandler( Window* _pBaseClass ) : pBaseClass( _pBaseClass ) +inline BibShortCutHandler::BibShortCutHandler( vcl::Window* _pBaseClass ) : pBaseClass( _pBaseClass ) { } -inline Window* BibShortCutHandler::GetWindow( void ) +inline vcl::Window* BibShortCutHandler::GetWindow( void ) { return pBaseClass; } -class BibWindow : public Window, public BibShortCutHandler +class BibWindow : public vcl::Window, public BibShortCutHandler { public: - BibWindow( Window* pParent,WinBits nStyle = WB_3DLOOK); + BibWindow( vcl::Window* pParent,WinBits nStyle = WB_3DLOOK); virtual ~BibWindow(); }; class BibSplitWindow : public SplitWindow, public BibShortCutHandler { public: - BibSplitWindow( Window* pParent,WinBits nStyle = WB_3DLOOK); + BibSplitWindow( vcl::Window* pParent,WinBits nStyle = WB_3DLOOK); virtual ~BibSplitWindow(); }; class BibTabPage : public TabPage, public BibShortCutHandler { public: - BibTabPage( Window* pParent, const OString& rID, const OUString& rUIXMLDescription ); + BibTabPage( vcl::Window* pParent, const OString& rID, const OUString& rUIXMLDescription ); virtual ~BibTabPage(); }; diff --git a/extensions/source/bibliography/bibtools.hxx b/extensions/source/bibliography/bibtools.hxx index 4b0af71175b4..86a316fdb7ef 100644 --- a/extensions/source/bibliography/bibtools.hxx +++ b/extensions/source/bibliography/bibtools.hxx @@ -26,15 +26,15 @@ namespace bib { // source in bibbeam.cxx - void HandleTaskPaneList( Window* pWindow, bool bAddToList ); + void HandleTaskPaneList( vcl::Window* pWindow, bool bAddToList ); // pWindow: just an system window or something which is child of a system window - inline void AddToTaskPaneList( Window* pWindowToBeHandled ) + inline void AddToTaskPaneList( vcl::Window* pWindowToBeHandled ) { HandleTaskPaneList( pWindowToBeHandled, true ); } - inline void RemoveFromTaskPaneList( Window* pWindowToBeHandled ) + inline void RemoveFromTaskPaneList( vcl::Window* pWindowToBeHandled ) { HandleTaskPaneList( pWindowToBeHandled, false ); } diff --git a/extensions/source/bibliography/bibview.cxx b/extensions/source/bibliography/bibview.cxx index 1ecbe3db04f6..64929b2d8f47 100644 --- a/extensions/source/bibliography/bibview.cxx +++ b/extensions/source/bibliography/bibview.cxx @@ -47,7 +47,7 @@ namespace bib - BibView::BibView( Window* _pParent, BibDataManager* _pManager, WinBits _nStyle ) + BibView::BibView( vcl::Window* _pParent, BibDataManager* _pManager, WinBits _nStyle ) :BibWindow( _pParent, _nStyle ) ,m_pDatMan( _pManager ) ,m_xDatMan( _pManager ) diff --git a/extensions/source/bibliography/bibview.hxx b/extensions/source/bibliography/bibview.hxx index a8d73ad7408a..add53d7c2bbe 100644 --- a/extensions/source/bibliography/bibview.hxx +++ b/extensions/source/bibliography/bibview.hxx @@ -59,7 +59,7 @@ namespace bib virtual void _reloaded( const ::com::sun::star::lang::EventObject& _rEvent ) SAL_OVERRIDE; public: - BibView( Window* _pParent, BibDataManager* _pDatMan, WinBits nStyle = WB_3DLOOK ); + BibView( vcl::Window* _pParent, BibDataManager* _pDatMan, WinBits nStyle = WB_3DLOOK ); virtual ~BibView(); void UpdatePages(); diff --git a/extensions/source/bibliography/datman.cxx b/extensions/source/bibliography/datman.cxx index f314500fccf5..49fa9581a30a 100644 --- a/extensions/source/bibliography/datman.cxx +++ b/extensions/source/bibliography/datman.cxx @@ -237,7 +237,7 @@ class MappingDialog_Impl : public ModalDialog DECL_LINK(ListBoxSelectHdl, ListBox*); public: - MappingDialog_Impl(Window* pParent, BibDataManager* pDatMan); + MappingDialog_Impl(vcl::Window* pParent, BibDataManager* pDatMan); virtual ~MappingDialog_Impl(); void SetModified() {bModified = true;} @@ -255,7 +255,7 @@ static sal_uInt16 lcl_FindLogicalName(BibConfig* pConfig , return USHRT_MAX; } -MappingDialog_Impl::MappingDialog_Impl(Window* pParent, BibDataManager* pMan) +MappingDialog_Impl::MappingDialog_Impl(vcl::Window* pParent, BibDataManager* pMan) : ModalDialog(pParent, "MappingDialog", "modules/sbibliography/ui/mappingdialog.ui") , pDatMan(pMan) , sNone(BIB_RESSTR(RID_BIB_STR_NONE)) @@ -432,13 +432,13 @@ class DBChangeDialog_Impl : public ModalDialog DECL_LINK(DoubleClickHdl, SvTabListBox*); public: - DBChangeDialog_Impl(Window* pParent, BibDataManager* pMan ); + DBChangeDialog_Impl(vcl::Window* pParent, BibDataManager* pMan ); virtual ~DBChangeDialog_Impl(); OUString GetCurrentURL()const; }; -DBChangeDialog_Impl::DBChangeDialog_Impl(Window* pParent, BibDataManager* pMan ) +DBChangeDialog_Impl::DBChangeDialog_Impl(vcl::Window* pParent, BibDataManager* pMan ) : ModalDialog(pParent, "ChooseDataSourceDialog", "modules/sbibliography/ui/choosedatasourcedialog.ui") , @@ -1432,7 +1432,7 @@ void BibDataManager::RemoveMeAsUidListener() } } -void BibDataManager::CreateMappingDialog(Window* pParent) +void BibDataManager::CreateMappingDialog(vcl::Window* pParent) { boost::scoped_ptr<MappingDialog_Impl> pDlg(new MappingDialog_Impl(pParent, this)); if(RET_OK == pDlg->Execute() && pBibView) @@ -1441,7 +1441,7 @@ void BibDataManager::CreateMappingDialog(Window* pParent) } } -OUString BibDataManager::CreateDBChangeDialog(Window* pParent) +OUString BibDataManager::CreateDBChangeDialog(vcl::Window* pParent) { OUString uRet; boost::scoped_ptr<DBChangeDialog_Impl> pDlg(new DBChangeDialog_Impl(pParent, this )); diff --git a/extensions/source/bibliography/datman.hxx b/extensions/source/bibliography/datman.hxx index 1bdd48b4a89f..fa52d0b7491a 100644 --- a/extensions/source/bibliography/datman.hxx +++ b/extensions/source/bibliography/datman.hxx @@ -34,7 +34,7 @@ #include <com/sun/star/frame/XDispatchProviderInterception.hpp> #include <cppuhelper/implbase1.hxx> -class Window; +namespace vcl { class Window; } namespace bib @@ -167,8 +167,8 @@ public: ::com::sun::star::uno::Reference< ::com::sun::star::awt::XControlModel > loadControlModel(const OUString& rName, bool bForceListBox = false); - void CreateMappingDialog(Window* pParent); - OUString CreateDBChangeDialog(Window* pParent); + void CreateMappingDialog(vcl::Window* pParent); + OUString CreateDBChangeDialog(vcl::Window* pParent); void DispatchDBChangeDialog(); bool HasActiveConnection() const; diff --git a/extensions/source/bibliography/framectr.cxx b/extensions/source/bibliography/framectr.cxx index 7f997e5dd88a..13763bc8a575 100644 --- a/extensions/source/bibliography/framectr.cxx +++ b/extensions/source/bibliography/framectr.cxx @@ -183,7 +183,7 @@ BibFrameController_Impl::BibFrameController_Impl( const uno::Reference< awt::XWi ,pDatMan( pDataManager ) ,pBibMod(NULL) { - Window* pParent = VCLUnoHelper::GetWindow( xWindow ); + vcl::Window* pParent = VCLUnoHelper::GetWindow( xWindow ); pParent->SetUniqueId(UID_BIB_FRAME_WINDOW); bDisposing=false; bHierarchical=true; @@ -398,15 +398,15 @@ bool BibFrameController_Impl::SaveModified(const Reference< form::runtime::XForm return bResult; } -static Window* lcl_GetFocusChild( Window* pParent ) +static vcl::Window* lcl_GetFocusChild( vcl::Window* pParent ) { sal_uInt16 nChildren = pParent->GetChildCount(); for( sal_uInt16 nChild = 0; nChild < nChildren; ++nChild) { - Window* pChild = pParent->GetChild( nChild ); + vcl::Window* pChild = pParent->GetChild( nChild ); if(pChild->HasFocus()) return pChild; - Window* pSubChild = lcl_GetFocusChild( pChild ); + vcl::Window* pSubChild = lcl_GetFocusChild( pChild ); if(pSubChild) return pSubChild; } @@ -421,7 +421,7 @@ void BibFrameController_Impl::dispatch(const util::URL& _rURL, const uno::Sequen if ( !bDisposing ) { ::SolarMutexGuard aGuard; - Window* pParent = VCLUnoHelper::GetWindow( xWindow ); + vcl::Window* pParent = VCLUnoHelper::GetWindow( xWindow ); WaitObject aWaitObject( pParent ); OUString aCommand( _rURL.Path); @@ -613,7 +613,7 @@ void BibFrameController_Impl::dispatch(const util::URL& _rURL, const uno::Sequen } else if(aCommand == "Cut") { - Window* pChild = lcl_GetFocusChild( VCLUnoHelper::GetWindow( xWindow ) ); + vcl::Window* pChild = lcl_GetFocusChild( VCLUnoHelper::GetWindow( xWindow ) ); if(pChild) { KeyEvent aEvent( 0, KEYFUNC_CUT ); @@ -622,7 +622,7 @@ void BibFrameController_Impl::dispatch(const util::URL& _rURL, const uno::Sequen } else if(aCommand == "Copy") { - Window* pChild = lcl_GetFocusChild( VCLUnoHelper::GetWindow( xWindow ) ); + vcl::Window* pChild = lcl_GetFocusChild( VCLUnoHelper::GetWindow( xWindow ) ); if(pChild) { KeyEvent aEvent( 0, KEYFUNC_COPY ); @@ -631,7 +631,7 @@ void BibFrameController_Impl::dispatch(const util::URL& _rURL, const uno::Sequen } else if(aCommand == "Paste") { - Window* pChild = lcl_GetFocusChild( VCLUnoHelper::GetWindow( xWindow ) ); + vcl::Window* pChild = lcl_GetFocusChild( VCLUnoHelper::GetWindow( xWindow ) ); if(pChild) { KeyEvent aEvent( 0, KEYFUNC_PASTE ); @@ -708,14 +708,14 @@ void BibFrameController_Impl::addStatusListener( } else if(aURL.Path == "Cut") { - Window* pChild = lcl_GetFocusChild( VCLUnoHelper::GetWindow( xWindow ) ); + vcl::Window* pChild = lcl_GetFocusChild( VCLUnoHelper::GetWindow( xWindow ) ); Edit* pEdit = dynamic_cast<Edit*>( pChild ); if( pEdit ) aEvent.IsEnabled = !pEdit->IsReadOnly() && pEdit->GetSelection().Len(); } if(aURL.Path == "Copy") { - Window* pChild = lcl_GetFocusChild( VCLUnoHelper::GetWindow( xWindow ) ); + vcl::Window* pChild = lcl_GetFocusChild( VCLUnoHelper::GetWindow( xWindow ) ); Edit* pEdit = dynamic_cast<Edit*>( pChild ); if( pEdit ) aEvent.IsEnabled = pEdit->GetSelection().Len() > 0; @@ -723,7 +723,7 @@ void BibFrameController_Impl::addStatusListener( else if(aURL.Path == "Paste" ) { aEvent.IsEnabled = sal_False; - Window* pChild = lcl_GetFocusChild( VCLUnoHelper::GetWindow( xWindow ) ); + vcl::Window* pChild = lcl_GetFocusChild( VCLUnoHelper::GetWindow( xWindow ) ); if(pChild) { uno::Reference< datatransfer::clipboard::XClipboard > xClip = pChild->GetClipboard(); diff --git a/extensions/source/bibliography/general.cxx b/extensions/source/bibliography/general.cxx index d139d61398b6..7c2ca8d81842 100644 --- a/extensions/source/bibliography/general.cxx +++ b/extensions/source/bibliography/general.cxx @@ -166,7 +166,7 @@ void BibPosListener::disposing(const lang::EventObject& /*Source*/) throw( uno:: { } -BibGeneralPage::BibGeneralPage(Window* pParent, BibDataManager* pMan): +BibGeneralPage::BibGeneralPage(vcl::Window* pParent, BibDataManager* pMan): BibTabPage(pParent, "GeneralPage", "modules/sbibliography/ui/generalpage.ui"), sErrorPrefix(BIB_RESSTR(ST_ERROR_PREFIX)), pDatMan(pMan) @@ -246,7 +246,7 @@ BibGeneralPage::BibGeneralPage(Window* pParent, BibDataManager* pMan): xCtrlContnr = VCLUnoHelper::CreateControlContainer(pGrid); - std::vector<Window*> aChildren; + std::vector<vcl::Window*> aChildren; AddControlWithError(lcl_GetColumnName(pMapping, IDENTIFIER_POS), *pIdentifierFT, sTableErrorString, @@ -400,7 +400,7 @@ void BibGeneralPage::CommitActiveControl() } void BibGeneralPage::AddControlWithError( const OUString& rColumnName, FixedText &rLabel, - OUString& rErrorString, const OString& sHelpId, sal_uInt16 nIndexInFTArray, std::vector<Window*> &rChildren) + OUString& rErrorString, const OString& sHelpId, sal_uInt16 nIndexInFTArray, std::vector<vcl::Window*> &rChildren) { const OUString aColumnUIName(rLabel.GetText()); // adds also the XControl and creates a map entry in nFT2CtrlMap[] for mapping between control and FT @@ -426,7 +426,7 @@ void BibGeneralPage::AddControlWithError( const OUString& rColumnName, FixedText uno::Reference< awt::XControlModel > BibGeneralPage::AddXControl( const OUString& rName, FixedText& rLabel, const OString& sHelpId, sal_Int16& rIndex, - std::vector<Window*>& rChildren) + std::vector<vcl::Window*>& rChildren) { uno::Reference< awt::XControlModel > xCtrModel; try @@ -514,7 +514,7 @@ uno::Reference< awt::XControlModel > BibGeneralPage::AddXControl( xCtrWin->setVisible( sal_True ); xControl->setDesignMode( sal_True ); - Window* pWindow = VCLUnoHelper::GetWindow(xControl->getPeer()); + vcl::Window* pWindow = VCLUnoHelper::GetWindow(xControl->getPeer()); pWindow->set_grid_top_attach(rLabel.get_grid_top_attach()); pWindow->set_grid_left_attach(rLabel.get_grid_left_attach()+1); pWindow->set_valign(VCL_ALIGN_CENTER); @@ -674,7 +674,7 @@ bool BibGeneralPage::HandleShortCutKey( const KeyEvent& rKeyEvent ) uno::Reference< awt::XControl > xControl( aControls[ nCtrlIndex ], UNO_QUERY ); DBG_ASSERT( xControl.is(), "-BibGeneralPage::HandleShortCutKey(): a control which is not a control!" ); - Window* pWindow = VCLUnoHelper::GetWindow( xControl->getPeer() ); + vcl::Window* pWindow = VCLUnoHelper::GetWindow( xControl->getPeer() ); if( pWindow ) { diff --git a/extensions/source/bibliography/general.hxx b/extensions/source/bibliography/general.hxx index 409ccf58873d..9e96c3343f7b 100644 --- a/extensions/source/bibliography/general.hxx +++ b/extensions/source/bibliography/general.hxx @@ -119,17 +119,17 @@ class BibGeneralPage: public BibGeneralPageBaseClass, public BibTabPage ::com::sun::star::uno::Reference< ::com::sun::star::awt::XControlModel > AddXControl( const OUString& rName, FixedText& rLabel, const OString& sHelpId, - sal_Int16& rIndex, std::vector<Window*>& rChildren ); + sal_Int16& rIndex, std::vector<vcl::Window*>& rChildren ); void AddControlWithError( const OUString& rColumnName, FixedText& rLabel, OUString& rErrorString, - const OString& sHelpId, sal_uInt16 nIndexInFTArray, std::vector<Window*>& rChildren ); + const OString& sHelpId, sal_uInt16 nIndexInFTArray, std::vector<vcl::Window*>& rChildren ); protected: void InitFixedTexts( void ); // create mnemonics and set text an all fixed texts public: - BibGeneralPage(Window* pParent, BibDataManager* pDatMan); + BibGeneralPage(vcl::Window* pParent, BibDataManager* pDatMan); virtual ~BibGeneralPage(); inline const OUString& GetErrorString() const; diff --git a/extensions/source/bibliography/toolbar.cxx b/extensions/source/bibliography/toolbar.cxx index 54a0ef09c30d..2a5d07b55fd1 100644 --- a/extensions/source/bibliography/toolbar.cxx +++ b/extensions/source/bibliography/toolbar.cxx @@ -176,7 +176,7 @@ void BibTBEditListener::statusChanged(const frame::FeatureStateEvent& rEvt)throw } } -BibToolBar::BibToolBar(Window* pParent, Link aLink, WinBits nStyle): +BibToolBar::BibToolBar(vcl::Window* pParent, Link aLink, WinBits nStyle): ToolBox(pParent,BibResId(RID_BIB_TOOLBAR)), aImgLst(BibResId( RID_TOOLBAR_IMGLIST )), aBigImgLst(BibResId( RID_TOOLBAR_BIGIMGLIST )), diff --git a/extensions/source/bibliography/toolbar.hxx b/extensions/source/bibliography/toolbar.hxx index b14c231c7d86..a1e7886a3171 100644 --- a/extensions/source/bibliography/toolbar.hxx +++ b/extensions/source/bibliography/toolbar.hxx @@ -148,7 +148,7 @@ class BibToolBar: public ToolBox public: - BibToolBar(Window* pParent, Link aLink, WinBits nStyle = WB_3DLOOK ); + BibToolBar(vcl::Window* pParent, Link aLink, WinBits nStyle = WB_3DLOOK ); virtual ~BibToolBar(); void SetXController(const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XController > &); diff --git a/extensions/source/dbpilots/controlwizard.cxx b/extensions/source/dbpilots/controlwizard.cxx index d51aef5fd4ac..c67fc94bfbf2 100644 --- a/extensions/source/dbpilots/controlwizard.cxx +++ b/extensions/source/dbpilots/controlwizard.cxx @@ -228,7 +228,7 @@ namespace dbp OControlWizardPage_Base::initializePage(); } - OControlWizard::OControlWizard( Window* _pParent, + OControlWizard::OControlWizard( vcl::Window* _pParent, const Reference< XPropertySet >& _rxObjectModel, const Reference< XComponentContext >& _rxContext ) :OWizardMachine(_pParent, WZB_CANCEL | WZB_PREVIOUS | WZB_NEXT | WZB_FINISH) ,m_xContext(_rxContext) @@ -455,7 +455,7 @@ namespace dbp return initContext(); } - Reference< XInteractionHandler > OControlWizard::getInteractionHandler(Window* _pWindow) const + Reference< XInteractionHandler > OControlWizard::getInteractionHandler(vcl::Window* _pWindow) const { Reference< XInteractionHandler > xHandler; try diff --git a/extensions/source/dbpilots/controlwizard.hxx b/extensions/source/dbpilots/controlwizard.hxx index 6df51b8d3427..2d0fdbac7aa1 100644 --- a/extensions/source/dbpilots/controlwizard.hxx +++ b/extensions/source/dbpilots/controlwizard.hxx @@ -108,7 +108,7 @@ namespace dbp public: OControlWizard( - Window* _pParent, + vcl::Window* _pParent, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _rxObjectModel, const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _rxContext ); @@ -130,7 +130,7 @@ namespace dbp /** returns the com.sun.star.task.InteractionHandler @param _pWindow The window will be used when an error message has to be shown. */ - ::com::sun::star::uno::Reference< ::com::sun::star::task::XInteractionHandler > getInteractionHandler(Window* _pWindow) const; + ::com::sun::star::uno::Reference< ::com::sun::star::task::XInteractionHandler > getInteractionHandler(vcl::Window* _pWindow) const; protected: // initialize the derivees settings (which have to be derived from OControlWizardSettings) diff --git a/extensions/source/dbpilots/gridwizard.cxx b/extensions/source/dbpilots/gridwizard.cxx index 2b982ad9b47d..003bd2d029ed 100644 --- a/extensions/source/dbpilots/gridwizard.cxx +++ b/extensions/source/dbpilots/gridwizard.cxx @@ -52,7 +52,7 @@ namespace dbp //= OGridWizard - OGridWizard::OGridWizard( Window* _pParent, + OGridWizard::OGridWizard( vcl::Window* _pParent, const Reference< XPropertySet >& _rxObjectModel, const Reference< XComponentContext >& _rxContext ) :OControlWizard(_pParent, _rxObjectModel, _rxContext) ,m_bHadDataSelection(true) diff --git a/extensions/source/dbpilots/gridwizard.hxx b/extensions/source/dbpilots/gridwizard.hxx index d3aac825857e..91da2fd5bee7 100644 --- a/extensions/source/dbpilots/gridwizard.hxx +++ b/extensions/source/dbpilots/gridwizard.hxx @@ -47,7 +47,7 @@ namespace dbp public: OGridWizard( - Window* _pParent, + vcl::Window* _pParent, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _rxObjectModel, const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _rxContext ); diff --git a/extensions/source/dbpilots/groupboxwiz.cxx b/extensions/source/dbpilots/groupboxwiz.cxx index 3816e32111e5..3f1f91c2d0ef 100644 --- a/extensions/source/dbpilots/groupboxwiz.cxx +++ b/extensions/source/dbpilots/groupboxwiz.cxx @@ -47,7 +47,7 @@ namespace dbp //= OGroupBoxWizard - OGroupBoxWizard::OGroupBoxWizard( Window* _pParent, + OGroupBoxWizard::OGroupBoxWizard( vcl::Window* _pParent, const Reference< XPropertySet >& _rxObjectModel, const Reference< XComponentContext >& _rxContext ) :OControlWizard(_pParent, _rxObjectModel, _rxContext) ,m_bVisitedDefault(false) diff --git a/extensions/source/dbpilots/groupboxwiz.hxx b/extensions/source/dbpilots/groupboxwiz.hxx index a2e1c3e47ae2..e37840f88216 100644 --- a/extensions/source/dbpilots/groupboxwiz.hxx +++ b/extensions/source/dbpilots/groupboxwiz.hxx @@ -53,7 +53,7 @@ namespace dbp public: OGroupBoxWizard( - Window* _pParent, + vcl::Window* _pParent, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _rxObjectModel, const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _rxContext ); diff --git a/extensions/source/dbpilots/listcombowizard.cxx b/extensions/source/dbpilots/listcombowizard.cxx index 83bcfecd446d..6349c0796c58 100644 --- a/extensions/source/dbpilots/listcombowizard.cxx +++ b/extensions/source/dbpilots/listcombowizard.cxx @@ -49,7 +49,7 @@ namespace dbp //= OListComboWizard - OListComboWizard::OListComboWizard( Window* _pParent, + OListComboWizard::OListComboWizard( vcl::Window* _pParent, const Reference< XPropertySet >& _rxObjectModel, const Reference< XComponentContext >& _rxContext ) :OControlWizard(_pParent, _rxObjectModel, _rxContext) ,m_bListBox(false) diff --git a/extensions/source/dbpilots/listcombowizard.hxx b/extensions/source/dbpilots/listcombowizard.hxx index a2ac8e136d00..6d4908cdda5c 100644 --- a/extensions/source/dbpilots/listcombowizard.hxx +++ b/extensions/source/dbpilots/listcombowizard.hxx @@ -57,7 +57,7 @@ namespace dbp public: OListComboWizard( - Window* _pParent, + vcl::Window* _pParent, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _rxObjectModel, const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _rxContext ); diff --git a/extensions/source/dbpilots/unoautopilot.hxx b/extensions/source/dbpilots/unoautopilot.hxx index ac053f9ea038..29b6b79b7dfb 100644 --- a/extensions/source/dbpilots/unoautopilot.hxx +++ b/extensions/source/dbpilots/unoautopilot.hxx @@ -85,7 +85,7 @@ namespace dbp protected: // OGenericUnoDialog overridables - virtual Dialog* createDialog(Window* _pParent) SAL_OVERRIDE; + virtual Dialog* createDialog(vcl::Window* _pParent) SAL_OVERRIDE; virtual void implInitialize(const com::sun::star::uno::Any& _rValue) SAL_OVERRIDE; }; diff --git a/extensions/source/dbpilots/unoautopilot.inl b/extensions/source/dbpilots/unoautopilot.inl index 4796e23bf0cd..4d6452be578b 100644 --- a/extensions/source/dbpilots/unoautopilot.inl +++ b/extensions/source/dbpilots/unoautopilot.inl @@ -96,7 +96,7 @@ template <class TYPE, class SERVICEINFO> template <class TYPE, class SERVICEINFO> -Dialog* OUnoAutoPilot<TYPE, SERVICEINFO>::createDialog(Window* _pParent) +Dialog* OUnoAutoPilot<TYPE, SERVICEINFO>::createDialog(::vcl::Window* _pParent) { return new TYPE(_pParent, m_xObjectModel, m_aContext); } diff --git a/extensions/source/plugin/base/plctrl.cxx b/extensions/source/plugin/base/plctrl.cxx index bceeaa61afb9..b8973e0ec8f0 100644 --- a/extensions/source/plugin/base/plctrl.cxx +++ b/extensions/source/plugin/base/plctrl.cxx @@ -166,7 +166,7 @@ void PluginControl_Impl::createPeer( const Reference< ::com::sun::star::awt::XTo _xParentWindow = Reference< ::com::sun::star::awt::XWindow > ( xParentPeer, UNO_QUERY ); DBG_ASSERT( _xParentWindow.is(), "### no parent peer window!" ); - Window* pImpl = VCLUnoHelper::GetWindow( xParentPeer ); + vcl::Window* pImpl = VCLUnoHelper::GetWindow( xParentPeer ); if (pImpl) { _pSysChild = new SystemChildWindow( pImpl, WB_CLIPCHILDREN ); diff --git a/extensions/source/propctrlr/MasterDetailLinkDialog.cxx b/extensions/source/propctrlr/MasterDetailLinkDialog.cxx index 788aabbc4ed2..1b94ac756bbb 100644 --- a/extensions/source/propctrlr/MasterDetailLinkDialog.cxx +++ b/extensions/source/propctrlr/MasterDetailLinkDialog.cxx @@ -103,7 +103,7 @@ namespace pcr } - Dialog* MasterDetailLinkDialog::createDialog(Window* _pParent) + Dialog* MasterDetailLinkDialog::createDialog(vcl::Window* _pParent) { return new FormLinkDialog(_pParent,m_xDetail,m_xMaster, m_aContext ,m_sExplanation,m_sDetailLabel,m_sMasterLabel); diff --git a/extensions/source/propctrlr/MasterDetailLinkDialog.hxx b/extensions/source/propctrlr/MasterDetailLinkDialog.hxx index 392310085e91..3ff5f64ec0cf 100644 --- a/extensions/source/propctrlr/MasterDetailLinkDialog.hxx +++ b/extensions/source/propctrlr/MasterDetailLinkDialog.hxx @@ -60,7 +60,7 @@ namespace pcr virtual ::cppu::IPropertyArrayHelper* createArrayHelper( ) const SAL_OVERRIDE; // OGenericUnoDialog overridables - virtual Dialog* createDialog(Window* _pParent) SAL_OVERRIDE; + virtual Dialog* createDialog(vcl::Window* _pParent) SAL_OVERRIDE; virtual void implInitialize(const com::sun::star::uno::Any& _rValue) SAL_OVERRIDE; ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet> m_xDetail; diff --git a/extensions/source/propctrlr/browserline.cxx b/extensions/source/propctrlr/browserline.cxx index ab72d013db29..8cfbc3cabe21 100644 --- a/extensions/source/propctrlr/browserline.cxx +++ b/extensions/source/propctrlr/browserline.cxx @@ -53,7 +53,7 @@ namespace pcr //= OBrowserLine - OBrowserLine::OBrowserLine( const OUString& _rEntryName, Window* pParent ) + OBrowserLine::OBrowserLine( const OUString& _rEntryName, vcl::Window* pParent ) :m_sEntryName( _rEntryName ) ,m_aFtTitle(pParent) ,m_pControlWindow( NULL ) @@ -121,13 +121,13 @@ namespace pcr } - Window* OBrowserLine::GetRefWindow() + vcl::Window* OBrowserLine::GetRefWindow() { - Window* pRefWindow=&m_aFtTitle; + vcl::Window* pRefWindow=&m_aFtTitle; if(m_pBrowseButton) { - pRefWindow=(Window*)m_pBrowseButton; + pRefWindow=(vcl::Window*)m_pBrowseButton; } else if ( m_pControlWindow ) { @@ -137,11 +137,11 @@ namespace pcr } - void OBrowserLine::SetTabOrder(Window* pRefWindow, sal_uInt16 nFlags ) + void OBrowserLine::SetTabOrder(vcl::Window* pRefWindow, sal_uInt16 nFlags ) { m_aFtTitle.SetZOrder(pRefWindow,nFlags); if ( m_pControlWindow ) - m_pControlWindow->SetZOrder( (Window*)&m_aFtTitle, WINDOW_ZORDER_BEHIND ); + m_pControlWindow->SetZOrder( (vcl::Window*)&m_aFtTitle, WINDOW_ZORDER_BEHIND ); if ( m_pBrowseButton && m_pControlWindow ) m_pBrowseButton->SetZOrder( m_pControlWindow, WINDOW_ZORDER_BEHIND ); @@ -325,13 +325,13 @@ namespace pcr } } - void implEnable( Window* _pWindow, sal_uInt16 _nEnabledBits, sal_uInt16 _nMatchBits ) + void implEnable( vcl::Window* _pWindow, sal_uInt16 _nEnabledBits, sal_uInt16 _nMatchBits ) { if ( _pWindow ) _pWindow->Enable( ( _nEnabledBits & _nMatchBits ) == _nMatchBits ); } - void implEnable( Window* _pWindow, bool _bEnable ) + void implEnable( vcl::Window* _pWindow, bool _bEnable ) { if ( _pWindow ) _pWindow->Enable( _bEnable ); diff --git a/extensions/source/propctrlr/browserline.hxx b/extensions/source/propctrlr/browserline.hxx index 8f39ae82b3e7..cdc91c712fd0 100644 --- a/extensions/source/propctrlr/browserline.hxx +++ b/extensions/source/propctrlr/browserline.hxx @@ -56,18 +56,18 @@ namespace pcr Point m_aLinePos; ::com::sun::star::uno::Reference< ::com::sun::star::inspection::XPropertyControl > m_xControl; - Window* m_pControlWindow; + vcl::Window* m_pControlWindow; PushButton* m_pBrowseButton; PushButton* m_pAdditionalBrowseButton; IButtonClickListener* m_pClickListener; - Window* m_pTheParent; + vcl::Window* m_pTheParent; sal_uInt16 m_nNameWidth; sal_uInt16 m_nEnableFlags; bool m_bIndentTitle; bool m_bReadOnly; public: - OBrowserLine( const OUString& _rEntryName, Window* pParent); + OBrowserLine( const OUString& _rEntryName, vcl::Window* pParent); ~OBrowserLine(); void setControl( const ::com::sun::star::uno::Reference< ::com::sun::star::inspection::XPropertyControl >& _rxControl ); @@ -75,7 +75,7 @@ namespace pcr { return m_xControl; } - inline Window* getControlWindow() const + inline vcl::Window* getControlWindow() const { return m_pControlWindow; } @@ -95,8 +95,8 @@ namespace pcr void Hide(); bool IsVisible(); - Window* GetRefWindow(); - void SetTabOrder(Window* pRefWindow, sal_uInt16 nFlags ); + vcl::Window* GetRefWindow(); + void SetTabOrder(vcl::Window* pRefWindow, sal_uInt16 nFlags ); bool GrabFocus(); void ShowBrowseButton( const OUString& _rImageURL, bool _bPrimary ); diff --git a/extensions/source/propctrlr/browserlistbox.cxx b/extensions/source/propctrlr/browserlistbox.cxx index 05d672822053..66664193ad9b 100644 --- a/extensions/source/propctrlr/browserlistbox.cxx +++ b/extensions/source/propctrlr/browserlistbox.cxx @@ -343,7 +343,7 @@ namespace pcr //= OBrowserListBox - OBrowserListBox::OBrowserListBox( Window* pParent, WinBits nWinStyle) + OBrowserListBox::OBrowserListBox( vcl::Window* pParent, WinBits nWinStyle) :Control(pParent, nWinStyle| WB_CLIPCHILDREN) ,m_aLinesPlayground(this,WB_DIALOGCONTROL | WB_CLIPCHILDREN) ,m_aVScroll(this,WB_VSCROLL|WB_REPEAT|WB_DRAG) @@ -1096,7 +1096,7 @@ namespace pcr if ( nPos < m_aLines.size() ) { - Window* pRefWindow = NULL; + vcl::Window* pRefWindow = NULL; if ( nPos > 0 ) pRefWindow = m_aLines[nPos-1].pLine->GetRefWindow(); @@ -1105,7 +1105,7 @@ namespace pcr // the old control and some data about it Reference< XPropertyControl > xControl = rLine.pLine->getControl(); - Window* pControlWindow = rLine.pLine->getControlWindow(); + vcl::Window* pControlWindow = rLine.pLine->getControlWindow(); Point aControlPos; if ( pControlWindow ) aControlPos = pControlWindow->GetPosPixel(); @@ -1189,7 +1189,7 @@ namespace pcr // So, we manually switch this to read-only. if ( xControl.is() && ( xControl->getControlType() == PropertyControlType::Unknown ) ) { - Window *pWindow = rLine.pLine->getControlWindow(); + vcl::Window *pWindow = rLine.pLine->getControlWindow(); Edit* pControlWindowAsEdit = dynamic_cast<Edit*>(pWindow); if (pControlWindowAsEdit) pControlWindowAsEdit->SetReadOnly(true); diff --git a/extensions/source/propctrlr/browserlistbox.hxx b/extensions/source/propctrlr/browserlistbox.hxx index dca5005c7c7c..b61911c66fb9 100644 --- a/extensions/source/propctrlr/browserlistbox.hxx +++ b/extensions/source/propctrlr/browserlistbox.hxx @@ -122,7 +122,7 @@ namespace pcr void Resize() SAL_OVERRIDE; public: - OBrowserListBox( Window* pParent, WinBits nWinStyle = WB_DIALOGCONTROL ); + OBrowserListBox( vcl::Window* pParent, WinBits nWinStyle = WB_DIALOGCONTROL ); virtual ~OBrowserListBox(); diff --git a/extensions/source/propctrlr/browserpage.cxx b/extensions/source/propctrlr/browserpage.cxx index 00bce2cd7f00..8f03f67ea1ca 100644 --- a/extensions/source/propctrlr/browserpage.cxx +++ b/extensions/source/propctrlr/browserpage.cxx @@ -33,7 +33,7 @@ namespace pcr // class OBrowserPage - OBrowserPage::OBrowserPage(Window* pParent,WinBits nWinStyle) + OBrowserPage::OBrowserPage(vcl::Window* pParent,WinBits nWinStyle) :TabPage(pParent,nWinStyle) ,m_aListBox(this) { diff --git a/extensions/source/propctrlr/browserpage.hxx b/extensions/source/propctrlr/browserpage.hxx index bb368df0ed45..6ef6ef80bce9 100644 --- a/extensions/source/propctrlr/browserpage.hxx +++ b/extensions/source/propctrlr/browserpage.hxx @@ -41,7 +41,7 @@ namespace pcr virtual void StateChanged(StateChangedType nType) SAL_OVERRIDE; public: - OBrowserPage(Window* pParent, WinBits nWinStyle = 0); + OBrowserPage(vcl::Window* pParent, WinBits nWinStyle = 0); virtual ~OBrowserPage(); sal_Int32 getMinimumWidth(); diff --git a/extensions/source/propctrlr/browserview.cxx b/extensions/source/propctrlr/browserview.cxx index 3ce6501c41c9..f56532cab6d0 100644 --- a/extensions/source/propctrlr/browserview.cxx +++ b/extensions/source/propctrlr/browserview.cxx @@ -30,7 +30,7 @@ namespace pcr //= class OPropertyBrowserView - OPropertyBrowserView::OPropertyBrowserView(Window* _pParent, WinBits nBits) + OPropertyBrowserView::OPropertyBrowserView(vcl::Window* _pParent, WinBits nBits) :Window(_pParent, nBits | WB_3DLOOK) ,m_nActivePage(0) { @@ -58,7 +58,7 @@ namespace pcr sal_uInt16 nTmpPage = m_pPropBox->GetCurPage(); if (nTmpPage) m_nActivePage = nTmpPage; - boost::scoped_ptr<Window> aTemp(m_pPropBox); + boost::scoped_ptr<vcl::Window> aTemp(m_pPropBox); m_pPropBox = NULL; } diff --git a/extensions/source/propctrlr/browserview.hxx b/extensions/source/propctrlr/browserview.hxx index 58ffb6c3dad9..c87dd55b3c0a 100644 --- a/extensions/source/propctrlr/browserview.hxx +++ b/extensions/source/propctrlr/browserview.hxx @@ -35,7 +35,7 @@ namespace pcr //= - class OPropertyBrowserView : public Window + class OPropertyBrowserView : public vcl::Window { OPropertyEditor* m_pPropBox; sal_uInt16 m_nActivePage; @@ -47,7 +47,7 @@ namespace pcr virtual bool Notify( NotifyEvent& _rNEvt ) SAL_OVERRIDE; public: - OPropertyBrowserView( Window* pParent, WinBits nBits = 0); + OPropertyBrowserView( vcl::Window* pParent, WinBits nBits = 0); virtual ~OPropertyBrowserView(); diff --git a/extensions/source/propctrlr/commoncontrol.cxx b/extensions/source/propctrlr/commoncontrol.cxx index ae676b764c06..0e95203be50a 100644 --- a/extensions/source/propctrlr/commoncontrol.cxx +++ b/extensions/source/propctrlr/commoncontrol.cxx @@ -40,7 +40,7 @@ namespace pcr //= ControlHelper - ControlHelper::ControlHelper( Window* _pControlWindow, sal_Int16 _nControlType, XPropertyControl& _rAntiImpl, IModifyListener* _pModifyListener ) + ControlHelper::ControlHelper( vcl::Window* _pControlWindow, sal_Int16 _nControlType, XPropertyControl& _rAntiImpl, IModifyListener* _pModifyListener ) :m_pControlWindow( _pControlWindow ) ,m_nControlType( _nControlType ) ,m_rAntiImpl( _rAntiImpl ) @@ -144,7 +144,7 @@ namespace pcr } - IMPL_LINK( ControlHelper, ModifiedHdl, Window*, /*_pWin*/ ) + IMPL_LINK( ControlHelper, ModifiedHdl, vcl::Window*, /*_pWin*/ ) { if ( m_pModifyListener ) m_pModifyListener->modified(); @@ -152,7 +152,7 @@ namespace pcr } - IMPL_LINK( ControlHelper, GetFocusHdl, Window*, /*_pWin*/ ) + IMPL_LINK( ControlHelper, GetFocusHdl, vcl::Window*, /*_pWin*/ ) { try { @@ -167,7 +167,7 @@ namespace pcr } - IMPL_LINK( ControlHelper, LoseFocusHdl, Window*, /*_pWin*/ ) + IMPL_LINK( ControlHelper, LoseFocusHdl, vcl::Window*, /*_pWin*/ ) { // TODO/UNOize: should this be outside the default control's implementations? If somebody // has an own control implementation, which does *not* do this - would this be allowed? diff --git a/extensions/source/propctrlr/commoncontrol.hxx b/extensions/source/propctrlr/commoncontrol.hxx index ea838ea44cc2..629660eda8d7 100644 --- a/extensions/source/propctrlr/commoncontrol.hxx +++ b/extensions/source/propctrlr/commoncontrol.hxx @@ -47,7 +47,7 @@ namespace pcr ControlHelper* m_pHelper; public: - ControlWindow( Window* _pParent, WinBits _nStyle ) + ControlWindow( vcl::Window* _pParent, WinBits _nStyle ) :WindowType( _pParent, _nStyle ) ,m_pHelper( NULL ) { @@ -86,7 +86,7 @@ namespace pcr class ControlHelper { private: - Window* m_pControlWindow; + vcl::Window* m_pControlWindow; sal_Int16 m_nControlType; ::com::sun::star::uno::Reference< ::com::sun::star::inspection::XPropertyControlContext > m_xContext; @@ -116,7 +116,7 @@ namespace pcr would just call our <member>setModified</member>. */ ControlHelper( - Window* _pControlWindow, + vcl::Window* _pControlWindow, sal_Int16 _nControlType, ::com::sun::star::inspection::XPropertyControl& _rAntiImpl, IModifyListener* _pModifyListener ); @@ -126,8 +126,8 @@ namespace pcr /** sets our "modified" flag to <TRUE/> */ inline void setModified() { m_bModified = true; } - inline Window* getVclControlWindow() { return m_pControlWindow; } - inline const Window* getVclControlWindow() const { return m_pControlWindow; } + inline vcl::Window* getVclControlWindow() { return m_pControlWindow; } + inline const vcl::Window* getVclControlWindow() const { return m_pControlWindow; } public: // XPropertyControl @@ -153,9 +153,9 @@ namespace pcr void autoSizeWindow(); /// may be used by derived classes, they forward the event to the PropCtrListener - DECL_LINK( ModifiedHdl, Window* ); - DECL_LINK( GetFocusHdl, Window* ); - DECL_LINK( LoseFocusHdl, Window* ); + DECL_LINK( ModifiedHdl, vcl::Window* ); + DECL_LINK( GetFocusHdl, vcl::Window* ); + DECL_LINK( LoseFocusHdl, vcl::Window* ); private: /** fail-safe wrapper around calling our context's activateNextControl @@ -191,7 +191,7 @@ namespace pcr ControlHelper m_aImplControl; protected: - inline CommonBehaviourControl( sal_Int16 _nControlType, Window* _pParentWindow, WinBits _nWindowStyle, bool _bDoSetHandlers = true ); + inline CommonBehaviourControl( sal_Int16 _nControlType, vcl::Window* _pParentWindow, WinBits _nWindowStyle, bool _bDoSetHandlers = true ); // XPropertyControl - delegated to ->m_aImplControl virtual ::sal_Int16 SAL_CALL getControlType() throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE; @@ -244,7 +244,7 @@ namespace pcr template< class CONTROL_INTERFACE, class CONTROL_WINDOW > - inline CommonBehaviourControl< CONTROL_INTERFACE, CONTROL_WINDOW >::CommonBehaviourControl ( sal_Int16 _nControlType, Window* _pParentWindow, WinBits _nWindowStyle, bool _bDoSetHandlers ) + inline CommonBehaviourControl< CONTROL_INTERFACE, CONTROL_WINDOW >::CommonBehaviourControl ( sal_Int16 _nControlType, vcl::Window* _pParentWindow, WinBits _nWindowStyle, bool _bDoSetHandlers ) :ComponentBaseClass( m_aMutex ) ,m_aImplControl( new WindowType( _pParentWindow, _nWindowStyle ), _nControlType, *this, this ) { diff --git a/extensions/source/propctrlr/controlfontdialog.cxx b/extensions/source/propctrlr/controlfontdialog.cxx index 54f1a3819cb6..5be7ba9215e0 100644 --- a/extensions/source/propctrlr/controlfontdialog.cxx +++ b/extensions/source/propctrlr/controlfontdialog.cxx @@ -141,7 +141,7 @@ namespace pcr } - Dialog* OControlFontDialog::createDialog(Window* _pParent) + Dialog* OControlFontDialog::createDialog(vcl::Window* _pParent) { ControlCharacterDialog::createItemSet(m_pFontItems, m_pItemPool, m_pItemPoolDefaults); diff --git a/extensions/source/propctrlr/controlfontdialog.hxx b/extensions/source/propctrlr/controlfontdialog.hxx index efe72404f4de..a5bd97d45b81 100644 --- a/extensions/source/propctrlr/controlfontdialog.hxx +++ b/extensions/source/propctrlr/controlfontdialog.hxx @@ -82,7 +82,7 @@ namespace pcr protected: // OGenericUnoDialog overridables - virtual Dialog* createDialog(Window* _pParent) SAL_OVERRIDE; + virtual Dialog* createDialog(vcl::Window* _pParent) SAL_OVERRIDE; virtual void destroyDialog() SAL_OVERRIDE; virtual void executedDialog(sal_Int16 _nExecutionResult) SAL_OVERRIDE; }; diff --git a/extensions/source/propctrlr/defaulthelpprovider.cxx b/extensions/source/propctrlr/defaulthelpprovider.cxx index 3e09a79a9181..8016a2da0831 100644 --- a/extensions/source/propctrlr/defaulthelpprovider.cxx +++ b/extensions/source/propctrlr/defaulthelpprovider.cxx @@ -151,9 +151,9 @@ namespace pcr } - Window* DefaultHelpProvider::impl_getVclControlWindow_nothrow( const Reference< XPropertyControl >& _rxControl ) + vcl::Window* DefaultHelpProvider::impl_getVclControlWindow_nothrow( const Reference< XPropertyControl >& _rxControl ) { - Window* pControlWindow = NULL; + vcl::Window* pControlWindow = NULL; OSL_PRECOND( _rxControl.is(), "DefaultHelpProvider::impl_getVclControlWindow_nothrow: illegal control!" ); if ( !_rxControl.is() ) return pControlWindow; @@ -179,7 +179,7 @@ namespace pcr if ( !_rxControl.is() ) return sHelpText; - Window* pControlWindow( impl_getVclControlWindow_nothrow( _rxControl ) ); + vcl::Window* pControlWindow( impl_getVclControlWindow_nothrow( _rxControl ) ); OSL_ENSURE( pControlWindow, "DefaultHelpProvider::impl_getHelpText_nothrow: could not determine the VCL window!" ); if ( !pControlWindow ) return sHelpText; diff --git a/extensions/source/propctrlr/defaulthelpprovider.hxx b/extensions/source/propctrlr/defaulthelpprovider.hxx index d16f327fe72f..2fafe3d979a4 100644 --- a/extensions/source/propctrlr/defaulthelpprovider.hxx +++ b/extensions/source/propctrlr/defaulthelpprovider.hxx @@ -27,7 +27,7 @@ #include <cppuhelper/implbase2.hxx> -class Window; +namespace vcl { class Window; } namespace pcr @@ -71,7 +71,7 @@ namespace pcr void create( const ::com::sun::star::uno::Reference< ::com::sun::star::inspection::XObjectInspectorUI >& _rxUI ); private: - Window* impl_getVclControlWindow_nothrow( const ::com::sun::star::uno::Reference< ::com::sun::star::inspection::XPropertyControl >& _rxControl ); + vcl::Window* impl_getVclControlWindow_nothrow( const ::com::sun::star::uno::Reference< ::com::sun::star::inspection::XPropertyControl >& _rxControl ); OUString impl_getHelpText_nothrow( const ::com::sun::star::uno::Reference< ::com::sun::star::inspection::XPropertyControl >& _rxControl ); }; diff --git a/extensions/source/propctrlr/fontdialog.cxx b/extensions/source/propctrlr/fontdialog.cxx index f8698dbff07e..8030bf8c42a7 100644 --- a/extensions/source/propctrlr/fontdialog.cxx +++ b/extensions/source/propctrlr/fontdialog.cxx @@ -171,7 +171,7 @@ namespace pcr //= ControlCharacterDialog - ControlCharacterDialog::ControlCharacterDialog(Window* _pParent, const SfxItemSet& _rCoreSet) + ControlCharacterDialog::ControlCharacterDialog(vcl::Window* _pParent, const SfxItemSet& _rCoreSet) : SfxTabDialog(_pParent, "ControlFontDialog", "modules/spropctrlr/ui/controlfontdialog.ui", &_rCoreSet) , m_nCharsId(0) diff --git a/extensions/source/propctrlr/fontdialog.hxx b/extensions/source/propctrlr/fontdialog.hxx index a96ddc4c0a29..cb157913e77a 100644 --- a/extensions/source/propctrlr/fontdialog.hxx +++ b/extensions/source/propctrlr/fontdialog.hxx @@ -35,7 +35,7 @@ namespace pcr class ControlCharacterDialog : public SfxTabDialog { public: - ControlCharacterDialog(Window* _pParent, const SfxItemSet& _rCoreSet); + ControlCharacterDialog(vcl::Window* _pParent, const SfxItemSet& _rCoreSet); virtual ~ControlCharacterDialog(); /// creates an item set to be used with this dialog diff --git a/extensions/source/propctrlr/formcomponenthandler.hxx b/extensions/source/propctrlr/formcomponenthandler.hxx index 6b4ff90b1127..5eed30a9d960 100644 --- a/extensions/source/propctrlr/formcomponenthandler.hxx +++ b/extensions/source/propctrlr/formcomponenthandler.hxx @@ -454,7 +454,7 @@ namespace pcr ::std::auto_ptr< WaitObject > m_aWaitObject; public: - WaitCursor( Window* _pWindow ) + WaitCursor( vcl::Window* _pWindow ) { if ( _pWindow ) m_aWaitObject.reset( new WaitObject( _pWindow ) ); diff --git a/extensions/source/propctrlr/formlinkdialog.cxx b/extensions/source/propctrlr/formlinkdialog.cxx index 6a79a3de496e..e421a5b2c4ce 100644 --- a/extensions/source/propctrlr/formlinkdialog.cxx +++ b/extensions/source/propctrlr/formlinkdialog.cxx @@ -70,7 +70,7 @@ namespace pcr Link m_aLinkChangeHandler; public: - FieldLinkRow( Window* _pParent ); + FieldLinkRow( vcl::Window* _pParent ); inline void SetLinkChangeHandler( const Link& _rHdl ) { m_aLinkChangeHandler = _rHdl; } @@ -92,7 +92,7 @@ namespace pcr }; - FieldLinkRow::FieldLinkRow( Window* _pParent ) + FieldLinkRow::FieldLinkRow( vcl::Window* _pParent ) :TabPage( _pParent, "FieldLinkRow", "modules/spropctrlr/ui/fieldlinkrow.ui" ) { get(m_pDetailColumn, "detailCombobox"); @@ -140,7 +140,7 @@ namespace pcr return 0L; } - extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeFieldLinkRow(Window *pParent, VclBuilder::stringmap &) + extern "C" SAL_DLLPUBLIC_EXPORT vcl::Window* SAL_CALL makeFieldLinkRow(vcl::Window *pParent, VclBuilder::stringmap &) { return new FieldLinkRow(pParent); } @@ -149,7 +149,7 @@ namespace pcr //= FormLinkDialog - FormLinkDialog::FormLinkDialog( Window* _pParent, const Reference< XPropertySet >& _rxDetailForm, + FormLinkDialog::FormLinkDialog( vcl::Window* _pParent, const Reference< XPropertySet >& _rxDetailForm, const Reference< XPropertySet >& _rxMasterForm, const Reference< XComponentContext >& _rxContext, const OUString& _sExplanation, const OUString& _sDetailLabel, diff --git a/extensions/source/propctrlr/formlinkdialog.hxx b/extensions/source/propctrlr/formlinkdialog.hxx index db85f6f0da81..e4fc3f01a766 100644 --- a/extensions/source/propctrlr/formlinkdialog.hxx +++ b/extensions/source/propctrlr/formlinkdialog.hxx @@ -73,7 +73,7 @@ namespace pcr public: FormLinkDialog( - Window* _pParent, + vcl::Window* _pParent, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _rxDetailForm, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _rxMasterForm, const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _rxContext, diff --git a/extensions/source/propctrlr/handlerhelper.cxx b/extensions/source/propctrlr/handlerhelper.cxx index 5859c1eff48b..54fa2ef2e0d8 100644 --- a/extensions/source/propctrlr/handlerhelper.cxx +++ b/extensions/source/propctrlr/handlerhelper.cxx @@ -275,9 +275,9 @@ namespace pcr } - Window* PropertyHandlerHelper::getDialogParentWindow( const Reference<XComponentContext>& _rContext ) + vcl::Window* PropertyHandlerHelper::getDialogParentWindow( const Reference<XComponentContext>& _rContext ) { - Window* pInspectorWindow = NULL; + vcl::Window* pInspectorWindow = NULL; try { Reference< XWindow > xInspectorWindow( _rContext->getValueByName( "DialogParentWindow" ), UNO_QUERY_THROW ); diff --git a/extensions/source/propctrlr/handlerhelper.hxx b/extensions/source/propctrlr/handlerhelper.hxx index f3482aafeb65..f60f5672ad57 100644 --- a/extensions/source/propctrlr/handlerhelper.hxx +++ b/extensions/source/propctrlr/handlerhelper.hxx @@ -30,7 +30,7 @@ #include <vector> -class Window; +namespace vcl { class Window; } namespace com { namespace sun { namespace star { namespace inspection { struct LineDescriptor; @@ -174,13 +174,13 @@ namespace pcr /** gets the window of the ObjectInspector in which an property handler lives The method looks up a value called "DialogParentWindow" in the given UNO copmonent context, - queries it for XWindow, and returns the respective Window*. If either of those steps fails, + queries it for XWindow, and returns the respective vcl::Window*. If either of those steps fails, this is asserted in a non-product version, and silently ignore otherwise. @param _rContext the component context which was used to create the component calling this method */ - static Window* getDialogParentWindow( const css::uno::Reference< css::uno::XComponentContext > & _rContext ); + static vcl::Window* getDialogParentWindow( const css::uno::Reference< css::uno::XComponentContext > & _rContext ); /** determines whether given PropertyAttributes require a to-be-created diff --git a/extensions/source/propctrlr/inspectorhelpwindow.cxx b/extensions/source/propctrlr/inspectorhelpwindow.cxx index 1ea7bbf26c87..b62010cf6cd9 100644 --- a/extensions/source/propctrlr/inspectorhelpwindow.cxx +++ b/extensions/source/propctrlr/inspectorhelpwindow.cxx @@ -27,7 +27,7 @@ namespace pcr //= InspectorHelpWindow - InspectorHelpWindow::InspectorHelpWindow( Window* _pParent ) + InspectorHelpWindow::InspectorHelpWindow( vcl::Window* _pParent ) :Window( _pParent, WB_DIALOGCONTROL ) ,m_aSeparator( this ) ,m_aHelpText( this, WB_LEFT | WB_READONLY | WB_AUTOVSCROLL ) diff --git a/extensions/source/propctrlr/inspectorhelpwindow.hxx b/extensions/source/propctrlr/inspectorhelpwindow.hxx index b24d461938e0..9419a72ec7a9 100644 --- a/extensions/source/propctrlr/inspectorhelpwindow.hxx +++ b/extensions/source/propctrlr/inspectorhelpwindow.hxx @@ -30,7 +30,7 @@ namespace pcr //= InspectorHelpWindow - class InspectorHelpWindow : public Window + class InspectorHelpWindow : public vcl::Window { private: FixedLine m_aSeparator; @@ -40,7 +40,7 @@ namespace pcr sal_Int32 m_nMaxLines; public: - InspectorHelpWindow( Window* _pParent ); + InspectorHelpWindow( vcl::Window* _pParent ); virtual void SetText( const OUString& rStr ) SAL_OVERRIDE; diff --git a/extensions/source/propctrlr/listselectiondlg.cxx b/extensions/source/propctrlr/listselectiondlg.cxx index 7808c276c0d3..fdb6229dc370 100644 --- a/extensions/source/propctrlr/listselectiondlg.cxx +++ b/extensions/source/propctrlr/listselectiondlg.cxx @@ -29,7 +29,7 @@ namespace pcr using namespace ::com::sun::star::uno; using namespace ::com::sun::star::beans; - ListSelectionDialog::ListSelectionDialog(Window* _pParent, const Reference< XPropertySet >& _rxListBox, + ListSelectionDialog::ListSelectionDialog(vcl::Window* _pParent, const Reference< XPropertySet >& _rxListBox, const OUString& _rPropertyName, const OUString& _rPropertyUIName) : ModalDialog( _pParent, "ListSelectDialog", "modules/spropctrlr/ui/listselectdialog.ui" ) ,m_xListBox ( _rxListBox ) diff --git a/extensions/source/propctrlr/listselectiondlg.hxx b/extensions/source/propctrlr/listselectiondlg.hxx index 7dd905e9dd96..aaccb0754ec2 100644 --- a/extensions/source/propctrlr/listselectiondlg.hxx +++ b/extensions/source/propctrlr/listselectiondlg.hxx @@ -39,7 +39,7 @@ namespace pcr public: ListSelectionDialog( - Window* _pParent, + vcl::Window* _pParent, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _rxListBox, const OUString& _rPropertyName, const OUString& _rPropertyUIName diff --git a/extensions/source/propctrlr/newdatatype.cxx b/extensions/source/propctrlr/newdatatype.cxx index 43638d7f103c..62cc6da9c247 100644 --- a/extensions/source/propctrlr/newdatatype.cxx +++ b/extensions/source/propctrlr/newdatatype.cxx @@ -29,7 +29,7 @@ namespace pcr //= NewDataTypeDialog - NewDataTypeDialog::NewDataTypeDialog( Window* _pParent, const OUString& _rNameBase, const ::std::vector< OUString >& _rProhibitedNames ) + NewDataTypeDialog::NewDataTypeDialog( vcl::Window* _pParent, const OUString& _rNameBase, const ::std::vector< OUString >& _rProhibitedNames ) : ModalDialog( _pParent, "DataTypeDialog", "modules/spropctrlr/ui/datatypedialog.ui" ) , m_aProhibitedNames( _rProhibitedNames.begin(), _rProhibitedNames.end() ) diff --git a/extensions/source/propctrlr/newdatatype.hxx b/extensions/source/propctrlr/newdatatype.hxx index f9d64045a5aa..135514aaa271 100644 --- a/extensions/source/propctrlr/newdatatype.hxx +++ b/extensions/source/propctrlr/newdatatype.hxx @@ -41,7 +41,7 @@ namespace pcr ::std::set< OUString > m_aProhibitedNames; public: - NewDataTypeDialog(Window* _pParent, const OUString& _rNameBase, + NewDataTypeDialog(vcl::Window* _pParent, const OUString& _rNameBase, const ::std::vector< OUString >& _rProhibitedNames ); OUString GetName() const { return m_pName->GetText(); } diff --git a/extensions/source/propctrlr/pcrunodialogs.cxx b/extensions/source/propctrlr/pcrunodialogs.cxx index de4ebe669192..6b1c71c45e4a 100644 --- a/extensions/source/propctrlr/pcrunodialogs.cxx +++ b/extensions/source/propctrlr/pcrunodialogs.cxx @@ -130,7 +130,7 @@ namespace pcr } - Dialog* OTabOrderDialog::createDialog( Window* _pParent ) + Dialog* OTabOrderDialog::createDialog( vcl::Window* _pParent ) { return new TabOrderDialog( _pParent, m_xTabbingModel, m_xControlContext, m_aContext ); } diff --git a/extensions/source/propctrlr/pcrunodialogs.hxx b/extensions/source/propctrlr/pcrunodialogs.hxx index 7ad83a94c4f4..61a76bf24f4c 100644 --- a/extensions/source/propctrlr/pcrunodialogs.hxx +++ b/extensions/source/propctrlr/pcrunodialogs.hxx @@ -78,7 +78,7 @@ namespace pcr protected: // OGenericUnoDialog overridables - virtual Dialog* createDialog(Window* _pParent) SAL_OVERRIDE; + virtual Dialog* createDialog(vcl::Window* _pParent) SAL_OVERRIDE; }; diff --git a/extensions/source/propctrlr/propcontroller.cxx b/extensions/source/propctrlr/propcontroller.cxx index ff37ef1ba4d6..4e5dda00b2e4 100644 --- a/extensions/source/propctrlr/propcontroller.cxx +++ b/extensions/source/propctrlr/propcontroller.cxx @@ -373,7 +373,7 @@ namespace pcr // announcement is responsible for calling setComponent, too. Reference< XWindow > xContainerWindow = m_xFrame->getContainerWindow(); VCLXWindow* pContainerWindow = VCLXWindow::GetImplementation(xContainerWindow); - Window* pParentWin = pContainerWindow ? pContainerWindow->GetWindow() : NULL; + vcl::Window* pParentWin = pContainerWindow ? pContainerWindow->GetWindow() : NULL; if (!pParentWin) throw RuntimeException("The frame is invalid. Unable to extract the container window.",*this); @@ -696,7 +696,7 @@ namespace pcr } - bool OPropertyBrowserController::Construct(Window* _pParentWin) + bool OPropertyBrowserController::Construct(vcl::Window* _pParentWin) { DBG_ASSERT(!haveView(), "OPropertyBrowserController::Construct: already have a view!"); DBG_ASSERT(_pParentWin, "OPropertyBrowserController::Construct: invalid parent window!"); diff --git a/extensions/source/propctrlr/propcontroller.hxx b/extensions/source/propctrlr/propcontroller.hxx index f5aa70673268..62c73a6fe3b6 100644 --- a/extensions/source/propctrlr/propcontroller.hxx +++ b/extensions/source/propctrlr/propcontroller.hxx @@ -60,7 +60,7 @@ #include <vector> #include <memory> -class Window; +namespace vcl { class Window; } namespace pcr @@ -310,7 +310,7 @@ namespace pcr */ bool impl_findObjectProperty_nothrow( const OUString& _rName, OrderedPropertyMap::const_iterator* _pProperty = NULL ); - bool Construct(Window* _pParentWin); + bool Construct(vcl::Window* _pParentWin); /** retrieves the property handler for a given property name @param _rPropertyName diff --git a/extensions/source/propctrlr/propertyeditor.cxx b/extensions/source/propctrlr/propertyeditor.cxx index 364d07ff7ba9..24bbd498ec01 100644 --- a/extensions/source/propctrlr/propertyeditor.cxx +++ b/extensions/source/propctrlr/propertyeditor.cxx @@ -41,7 +41,7 @@ namespace pcr // class OPropertyEditor - OPropertyEditor::OPropertyEditor( Window* pParent, WinBits nWinStyle) + OPropertyEditor::OPropertyEditor( vcl::Window* pParent, WinBits nWinStyle) :Control(pParent, nWinStyle) ,m_aTabControl( this ) ,m_pListener(NULL) diff --git a/extensions/source/propctrlr/propertyeditor.hxx b/extensions/source/propctrlr/propertyeditor.hxx index e80dceeffdd2..53e48fd10fbf 100644 --- a/extensions/source/propctrlr/propertyeditor.hxx +++ b/extensions/source/propctrlr/propertyeditor.hxx @@ -71,7 +71,7 @@ namespace pcr void GetFocus() SAL_OVERRIDE; public: - OPropertyEditor (Window* pParent, WinBits nWinStyle = WB_DIALOGCONTROL); + OPropertyEditor (vcl::Window* pParent, WinBits nWinStyle = WB_DIALOGCONTROL); virtual ~OPropertyEditor(); diff --git a/extensions/source/propctrlr/propertyhandler.cxx b/extensions/source/propctrlr/propertyhandler.cxx index 8bc0651126a9..862ab4b84a57 100644 --- a/extensions/source/propctrlr/propertyhandler.cxx +++ b/extensions/source/propctrlr/propertyhandler.cxx @@ -307,7 +307,7 @@ namespace pcr ) ); } - Window* PropertyHandler::impl_getDefaultDialogParent_nothrow() const + vcl::Window* PropertyHandler::impl_getDefaultDialogParent_nothrow() const { return PropertyHandlerHelper::getDialogParentWindow( m_xContext ); } diff --git a/extensions/source/propctrlr/propertyhandler.hxx b/extensions/source/propctrlr/propertyhandler.hxx index c086b5d4f67a..ee669ca76d93 100644 --- a/extensions/source/propctrlr/propertyhandler.hxx +++ b/extensions/source/propctrlr/propertyhandler.hxx @@ -52,7 +52,7 @@ namespace com { namespace sun { namespace star { } } } } -class Window; +namespace vcl { class Window; } namespace pcr { @@ -138,7 +138,7 @@ namespace pcr /** retrieves a window which can be used as parent for dialogs */ - Window* impl_getDefaultDialogParent_nothrow() const; + vcl::Window* impl_getDefaultDialogParent_nothrow() const; /** retrieves the property id for a given property name @throw com::sun::star::beans::UnknownPropertyException diff --git a/extensions/source/propctrlr/selectlabeldialog.cxx b/extensions/source/propctrlr/selectlabeldialog.cxx index d786b27350aa..c1302009bd99 100644 --- a/extensions/source/propctrlr/selectlabeldialog.cxx +++ b/extensions/source/propctrlr/selectlabeldialog.cxx @@ -47,7 +47,7 @@ namespace pcr // OSelectLabelDialog - OSelectLabelDialog::OSelectLabelDialog( Window* pParent, Reference< XPropertySet > _xControlModel ) + OSelectLabelDialog::OSelectLabelDialog( vcl::Window* pParent, Reference< XPropertySet > _xControlModel ) :ModalDialog(pParent, "LabelSelectionDialog", "modules/spropctrlr/ui/labelselectiondialog.ui") ,m_aModelImages(PcrRes(RID_IL_FORMEXPLORER)) ,m_xControlModel(_xControlModel) diff --git a/extensions/source/propctrlr/selectlabeldialog.hxx b/extensions/source/propctrlr/selectlabeldialog.hxx index 8c627155ab63..abb138248f97 100644 --- a/extensions/source/propctrlr/selectlabeldialog.hxx +++ b/extensions/source/propctrlr/selectlabeldialog.hxx @@ -56,7 +56,7 @@ namespace pcr bool m_bHaveAssignableControl; public: - OSelectLabelDialog(Window* pParent, ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > _xControlModel); + OSelectLabelDialog(vcl::Window* pParent, ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > _xControlModel); virtual ~OSelectLabelDialog(); ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > GetSelected() const { return m_pNoAssignment->IsChecked() ? ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > () : m_xSelectedControl; } diff --git a/extensions/source/propctrlr/standardcontrol.cxx b/extensions/source/propctrlr/standardcontrol.cxx index 413273410e66..cd9815167d8d 100644 --- a/extensions/source/propctrlr/standardcontrol.cxx +++ b/extensions/source/propctrlr/standardcontrol.cxx @@ -68,7 +68,7 @@ namespace pcr //= OTimeControl - OTimeControl::OTimeControl( Window* pParent, WinBits nWinStyle ) + OTimeControl::OTimeControl( vcl::Window* pParent, WinBits nWinStyle ) :OTimeControl_Base( PropertyControlType::TimeField, pParent, nWinStyle ) { getTypedControlWindow()->SetStrictFormat( true ); @@ -113,7 +113,7 @@ namespace pcr //= ODateControl - ODateControl::ODateControl( Window* pParent, WinBits nWinStyle ) + ODateControl::ODateControl( vcl::Window* pParent, WinBits nWinStyle ) :ODateControl_Base( PropertyControlType::DateField, pParent, nWinStyle | WB_DROPDOWN ) { WindowType* pControlWindow = getTypedControlWindow(); @@ -167,7 +167,7 @@ namespace pcr //= OEditControl - OEditControl::OEditControl(Window* _pParent, bool _bPW, WinBits _nWinStyle) + OEditControl::OEditControl(vcl::Window* _pParent, bool _bPW, WinBits _nWinStyle) :OEditControl_Base( _bPW ? PropertyControlType::CharacterField : PropertyControlType::TextField, _pParent, _nWinStyle ) { m_bIsPassword = _bPW; @@ -253,7 +253,7 @@ namespace pcr // class ODateTimeControl - ODateTimeControl::ODateTimeControl( Window* _pParent, WinBits _nWinStyle) + ODateTimeControl::ODateTimeControl( vcl::Window* _pParent, WinBits _nWinStyle) :ODateTimeControl_Base( PropertyControlType::DateTimeField, _pParent, _nWinStyle ) { getTypedControlWindow()->EnableEmptyField( true ); @@ -326,7 +326,7 @@ namespace pcr //= HyperlinkInput - HyperlinkInput::HyperlinkInput( Window* _pParent, WinBits _nWinStyle ) + HyperlinkInput::HyperlinkInput( vcl::Window* _pParent, WinBits _nWinStyle ) :Edit( _pParent, _nWinStyle ) { ::svtools::ColorConfig aColorConfig; @@ -411,7 +411,7 @@ namespace pcr //= OHyperlinkControl - OHyperlinkControl::OHyperlinkControl( Window* _pParent, WinBits _nWinStyle ) + OHyperlinkControl::OHyperlinkControl( vcl::Window* _pParent, WinBits _nWinStyle ) :OHyperlinkControl_Base( PropertyControlType::HyperlinkField, _pParent, _nWinStyle ) ,m_aActionListeners( m_aMutex ) { @@ -477,7 +477,7 @@ namespace pcr //= ONumericControl - ONumericControl::ONumericControl( Window* _pParent, WinBits _nWinStyle ) + ONumericControl::ONumericControl( vcl::Window* _pParent, WinBits _nWinStyle ) :ONumericControl_Base( PropertyControlType::NumericField, _pParent, _nWinStyle ) ,m_eValueUnit( FUNIT_NONE ) ,m_nFieldToUNOValueFactor( 1 ) @@ -664,7 +664,7 @@ namespace pcr } - OColorControl::OColorControl(Window* pParent, WinBits nWinStyle) + OColorControl::OColorControl(vcl::Window* pParent, WinBits nWinStyle) :OColorControl_Base( PropertyControlType::ColorListBox, pParent, nWinStyle ) { // initialize the color listbox @@ -798,7 +798,7 @@ namespace pcr //= OListboxControl - OListboxControl::OListboxControl( Window* pParent, WinBits nWinStyle) + OListboxControl::OListboxControl( vcl::Window* pParent, WinBits nWinStyle) :OListboxControl_Base( PropertyControlType::ListBox, pParent, nWinStyle ) { getTypedControlWindow()->SetDropDownLineCount( LB_DEFAULT_COUNT ); @@ -890,7 +890,7 @@ namespace pcr //= OComboboxControl - OComboboxControl::OComboboxControl( Window* pParent, WinBits nWinStyle) + OComboboxControl::OComboboxControl( vcl::Window* pParent, WinBits nWinStyle) :OComboboxControl_Base( PropertyControlType::ComboBox, pParent, nWinStyle ) { getTypedControlWindow()->SetDropDownLineCount( LB_DEFAULT_COUNT ); @@ -967,7 +967,7 @@ namespace pcr virtual void Resize() SAL_OVERRIDE; public: - OMultilineFloatingEdit(Window* _pParen); + OMultilineFloatingEdit(vcl::Window* _pParen); MultiLineEdit& getEdit() { return m_aImplEdit; } protected: @@ -975,7 +975,7 @@ namespace pcr }; - OMultilineFloatingEdit::OMultilineFloatingEdit(Window* _pParent) + OMultilineFloatingEdit::OMultilineFloatingEdit(vcl::Window* _pParent) :FloatingWindow(_pParent, WB_BORDER) ,m_aImplEdit(this, WB_VSCROLL|WB_IGNORETAB|WB_NOBORDER) { @@ -1022,7 +1022,7 @@ namespace pcr //= DropDownEditControl_Base - DropDownEditControl::DropDownEditControl( Window* _pParent, WinBits _nStyle ) + DropDownEditControl::DropDownEditControl( vcl::Window* _pParent, WinBits _nStyle ) :DropDownEditControl_Base( _pParent, _nStyle ) ,m_pFloatingEdit( NULL ) ,m_pImplEdit( NULL ) @@ -1064,16 +1064,16 @@ namespace pcr DropDownEditControl::~DropDownEditControl() { { - boost::scoped_ptr<Window> aTemp(m_pFloatingEdit); + boost::scoped_ptr<vcl::Window> aTemp(m_pFloatingEdit); m_pFloatingEdit = NULL; } { - boost::scoped_ptr<Window> aTemp(m_pImplEdit); + boost::scoped_ptr<vcl::Window> aTemp(m_pImplEdit); SetSubEdit( NULL ); m_pImplEdit = NULL; } { - boost::scoped_ptr<Window> aTemp(m_pDropdownButton); + boost::scoped_ptr<vcl::Window> aTemp(m_pDropdownButton); m_pDropdownButton = NULL; } } @@ -1142,7 +1142,7 @@ namespace pcr ShowDropDown( true ); m_pFloatingEdit->getEdit().GrabFocus(); m_pFloatingEdit->getEdit().SetSelection( aSel ); - Window* pFocusWin = Application::GetFocusWindow(); + vcl::Window* pFocusWin = Application::GetFocusWindow(); pFocusWin->KeyInput( *rNEvt.GetKeyEvent() ); } } @@ -1355,7 +1355,7 @@ namespace pcr //= OMultilineEditControl - OMultilineEditControl::OMultilineEditControl( Window* pParent, MultiLineOperationMode _eMode, WinBits nWinStyle ) + OMultilineEditControl::OMultilineEditControl( vcl::Window* pParent, MultiLineOperationMode _eMode, WinBits nWinStyle ) :OMultilineEditControl_Base( _eMode == eMultiLineText ? PropertyControlType::MultiLineTextField : PropertyControlType::StringListField , pParent , ( nWinStyle | WB_DIALOGCONTROL ) & ( ~WB_READONLY | ~WB_DROPDOWN ) diff --git a/extensions/source/propctrlr/standardcontrol.hxx b/extensions/source/propctrlr/standardcontrol.hxx index 1cf13284a28f..fdfb1dc638d1 100644 --- a/extensions/source/propctrlr/standardcontrol.hxx +++ b/extensions/source/propctrlr/standardcontrol.hxx @@ -58,7 +58,7 @@ namespace pcr typedef ControlWindow< LISTBOX_WINDOW > ListBoxType; public: - ListLikeControlWithModifyHandler( Window* _pParent, WinBits _nStyle ) + ListLikeControlWithModifyHandler( vcl::Window* _pParent, WinBits _nStyle ) :ListBoxType( _pParent, _nStyle ) { } @@ -100,7 +100,7 @@ namespace pcr class OTimeControl : public OTimeControl_Base { public: - OTimeControl( Window* pParent, WinBits nWinStyle ); + OTimeControl( vcl::Window* pParent, WinBits nWinStyle ); // XPropertyControl virtual ::com::sun::star::uno::Any SAL_CALL getValue() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; @@ -115,7 +115,7 @@ namespace pcr class ODateControl : public ODateControl_Base { public: - ODateControl( Window* pParent, WinBits nWinStyle ); + ODateControl( vcl::Window* pParent, WinBits nWinStyle ); // XPropertyControl virtual ::com::sun::star::uno::Any SAL_CALL getValue() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; @@ -133,7 +133,7 @@ namespace pcr bool m_bIsPassword : 1; public: - OEditControl( Window* _pParent, bool _bPassWord, WinBits nWinStyle ); + OEditControl( vcl::Window* _pParent, bool _bPassWord, WinBits nWinStyle ); // XPropertyControl virtual ::com::sun::star::uno::Any SAL_CALL getValue() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; @@ -151,7 +151,7 @@ namespace pcr class ODateTimeControl : public ODateTimeControl_Base { public: - ODateTimeControl( Window* pParent,WinBits nWinStyle ); + ODateTimeControl( vcl::Window* pParent,WinBits nWinStyle ); // XPropertyControl virtual ::com::sun::star::uno::Any SAL_CALL getValue() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; @@ -169,7 +169,7 @@ namespace pcr Link m_aClickHandler; public: - HyperlinkInput( Window* _pParent, WinBits _nWinStyle ); + HyperlinkInput( vcl::Window* _pParent, WinBits _nWinStyle ); /** sets the handler which will (asynchronously, with locked SolarMutex) be called when the hyperlink has been clicked by the user @@ -198,7 +198,7 @@ namespace pcr ::cppu::OInterfaceContainerHelper m_aActionListeners; public: - OHyperlinkControl( Window* _pParent, WinBits _nWinStyle ); + OHyperlinkControl( vcl::Window* _pParent, WinBits _nWinStyle ); // XPropertyControl virtual ::com::sun::star::uno::Any SAL_CALL getValue() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; @@ -225,7 +225,7 @@ namespace pcr typedef ControlWindow< MetricField > BaseClass; public: - CustomConvertibleNumericField( Window* _pParent, WinBits _nStyle ) + CustomConvertibleNumericField( vcl::Window* _pParent, WinBits _nStyle ) :BaseClass( _pParent, _nStyle ) { } @@ -244,7 +244,7 @@ namespace pcr sal_Int16 m_nFieldToUNOValueFactor; public: - ONumericControl( Window* pParent, WinBits nWinStyle ); + ONumericControl( vcl::Window* pParent, WinBits nWinStyle ); // XPropertyControl virtual ::com::sun::star::uno::Any SAL_CALL getValue() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; @@ -289,7 +289,7 @@ namespace pcr ::std::set< OUString > m_aNonColorEntries; public: - OColorControl( Window* pParent, WinBits nWinStyle ); + OColorControl( vcl::Window* pParent, WinBits nWinStyle ); // XPropertyControl virtual ::com::sun::star::uno::Any SAL_CALL getValue() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; @@ -315,7 +315,7 @@ namespace pcr class OListboxControl : public OListboxControl_Base { public: - OListboxControl( Window* pParent, WinBits nWinStyle ); + OListboxControl( vcl::Window* pParent, WinBits nWinStyle ); // XPropertyControl virtual ::com::sun::star::uno::Any SAL_CALL getValue() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; @@ -339,7 +339,7 @@ namespace pcr class OComboboxControl : public OComboboxControl_Base { public: - OComboboxControl( Window* pParent, WinBits nWinStyle ); + OComboboxControl( vcl::Window* pParent, WinBits nWinStyle ); // XPropertyControl virtual ::com::sun::star::uno::Any SAL_CALL getValue() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; @@ -381,7 +381,7 @@ namespace pcr bool m_bDropdown : 1; public: - DropDownEditControl( Window* _pParent, WinBits _nStyle ); + DropDownEditControl( vcl::Window* _pParent, WinBits _nStyle ); virtual ~DropDownEditControl(); void setOperationMode( MultiLineOperationMode _eMode ) { m_nOperationMode = _eMode; } @@ -419,7 +419,7 @@ namespace pcr class OMultilineEditControl : public OMultilineEditControl_Base { public: - OMultilineEditControl( Window* pParent, MultiLineOperationMode _eMode, WinBits nWinStyle ); + OMultilineEditControl( vcl::Window* pParent, MultiLineOperationMode _eMode, WinBits nWinStyle ); // XPropertyControl virtual ::com::sun::star::uno::Any SAL_CALL getValue() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; diff --git a/extensions/source/propctrlr/taborder.cxx b/extensions/source/propctrlr/taborder.cxx index 1f768cb148a3..554c069775e3 100644 --- a/extensions/source/propctrlr/taborder.cxx +++ b/extensions/source/propctrlr/taborder.cxx @@ -71,7 +71,7 @@ namespace pcr //= TabOrderDialog - TabOrderDialog::TabOrderDialog( Window* _pParent, const Reference< XTabControllerModel >& _rxTabModel, + TabOrderDialog::TabOrderDialog( vcl::Window* _pParent, const Reference< XTabControllerModel >& _rxTabModel, const Reference< XControlContainer >& _rxControlCont, const Reference< XComponentContext >& _rxORB ) :ModalDialog( _pParent, "TabOrderDialog", "modules/spropctrlr/ui/taborder.ui") ,m_xModel( _rxTabModel ) @@ -289,7 +289,7 @@ namespace pcr //= TabOrderListBox - TabOrderListBox::TabOrderListBox( Window* pParent, WinBits nBits ) + TabOrderListBox::TabOrderListBox( vcl::Window* pParent, WinBits nBits ) :SvTreeListBox( pParent, nBits ) { SetDragDropMode(0xFFFF/*SV_DRAGDROP_CTRL_MOVE*/); @@ -298,7 +298,7 @@ namespace pcr SetSelectionMode( MULTIPLE_SELECTION ); } - extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeTabOrderListBox(Window *pParent, + extern "C" SAL_DLLPUBLIC_EXPORT vcl::Window* SAL_CALL makeTabOrderListBox(vcl::Window *pParent, VclBuilder::stringmap &rMap) { WinBits nWinStyle = WB_TABSTOP; diff --git a/extensions/source/propctrlr/taborder.hxx b/extensions/source/propctrlr/taborder.hxx index 688c5300a7c2..d70e60cce47f 100644 --- a/extensions/source/propctrlr/taborder.hxx +++ b/extensions/source/propctrlr/taborder.hxx @@ -46,7 +46,7 @@ namespace pcr class TabOrderListBox : public SvTreeListBox { public: - TabOrderListBox( Window* pParent, WinBits nBits ); + TabOrderListBox( vcl::Window* pParent, WinBits nBits ); virtual ~TabOrderListBox(); void MoveSelection( long nRelPos ); @@ -95,7 +95,7 @@ namespace pcr public: TabOrderDialog( - Window* _pParent, + vcl::Window* _pParent, const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XTabControllerModel >& _rxTabModel, const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XControlContainer >& _rxControlCont, const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _rxORB diff --git a/extensions/source/propctrlr/usercontrol.cxx b/extensions/source/propctrlr/usercontrol.cxx index 043535b501bf..9007f570aef8 100644 --- a/extensions/source/propctrlr/usercontrol.cxx +++ b/extensions/source/propctrlr/usercontrol.cxx @@ -87,7 +87,7 @@ namespace pcr // OFormatSampleControl - OFormatSampleControl::OFormatSampleControl( Window* pParent, WinBits nWinStyle ) + OFormatSampleControl::OFormatSampleControl( vcl::Window* pParent, WinBits nWinStyle ) :OFormatSampleControl_Base( PropertyControlType::Unknown, pParent, nWinStyle ) { } @@ -169,7 +169,7 @@ namespace pcr // class OFormattedNumericControl - OFormattedNumericControl::OFormattedNumericControl( Window* pParent, WinBits nWinStyle ) + OFormattedNumericControl::OFormattedNumericControl( vcl::Window* pParent, WinBits nWinStyle ) :OFormattedNumericControl_Base( PropertyControlType::Unknown, pParent, nWinStyle ) { getTypedControlWindow()->TreatAsNumber(true); @@ -261,7 +261,7 @@ namespace pcr //= OFileUrlControl - OFileUrlControl::OFileUrlControl( Window* pParent, WinBits nWinStyle ) + OFileUrlControl::OFileUrlControl( vcl::Window* pParent, WinBits nWinStyle ) :OFileUrlControl_Base( PropertyControlType::Unknown, pParent, nWinStyle | WB_DROPDOWN ) { getTypedControlWindow()->SetDropDownLineCount( 10 ); @@ -307,7 +307,7 @@ namespace pcr //= OTimeDurationControl - OTimeDurationControl::OTimeDurationControl( ::Window* pParent, WinBits nWinStyle ) + OTimeDurationControl::OTimeDurationControl( vcl::Window* pParent, WinBits nWinStyle ) :ONumericControl( pParent, nWinStyle ) { getTypedControlWindow()->SetUnit( FUNIT_CUSTOM ); diff --git a/extensions/source/propctrlr/usercontrol.hxx b/extensions/source/propctrlr/usercontrol.hxx index a5a9f23c9aba..3fe258a7d9bd 100644 --- a/extensions/source/propctrlr/usercontrol.hxx +++ b/extensions/source/propctrlr/usercontrol.hxx @@ -41,7 +41,7 @@ namespace pcr typedef ControlWindow< FormattedField > BaseClass; public: - NumberFormatSampleField( Window* _pParent, WinBits _nStyle ) + NumberFormatSampleField( vcl::Window* _pParent, WinBits _nStyle ) :BaseClass( _pParent, _nStyle ) { } @@ -59,7 +59,7 @@ namespace pcr class OFormatSampleControl : public OFormatSampleControl_Base { public: - OFormatSampleControl( Window* pParent, WinBits nWinStyle ); + OFormatSampleControl( vcl::Window* pParent, WinBits nWinStyle ); // XPropertyControl virtual ::com::sun::star::uno::Any SAL_CALL getValue() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; @@ -102,7 +102,7 @@ namespace pcr sal_Int32 m_nLastDecimalDigits; public: - OFormattedNumericControl( Window* pParent, WinBits nWinStyle = WB_TABSTOP); + OFormattedNumericControl( vcl::Window* pParent, WinBits nWinStyle = WB_TABSTOP); // XPropertyControl virtual ::com::sun::star::uno::Any SAL_CALL getValue() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; @@ -128,7 +128,7 @@ namespace pcr class OFileUrlControl : public OFileUrlControl_Base { public: - OFileUrlControl( Window* pParent, WinBits nWinStyle ); + OFileUrlControl( vcl::Window* pParent, WinBits nWinStyle ); // XPropertyControl virtual ::com::sun::star::uno::Any SAL_CALL getValue() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; @@ -145,7 +145,7 @@ namespace pcr class OTimeDurationControl : public ONumericControl { public: - OTimeDurationControl( ::Window* pParent, WinBits nWinStyle ); + OTimeDurationControl( vcl::Window* pParent, WinBits nWinStyle ); virtual ~OTimeDurationControl(); // XPropertyControl diff --git a/extensions/source/scanner/grid.cxx b/extensions/source/scanner/grid.cxx index 5a593b0b1377..38c951c7c171 100644 --- a/extensions/source/scanner/grid.cxx +++ b/extensions/source/scanner/grid.cxx @@ -30,7 +30,7 @@ #include <algorithm> #include <boost/scoped_array.hpp> -class GridWindow : public Window +class GridWindow : public vcl::Window { // helper class for handles struct impHandle @@ -49,13 +49,13 @@ class GridWindow : public Window return (maPos.X() < rComp.maPos.X()); } - void draw(Window& rWin, const BitmapEx& rBitmapEx) + void draw(vcl::Window& rWin, const BitmapEx& rBitmapEx) { const Point aOffset(rWin.PixelToLogic(Point(mnOffX, mnOffY))); rWin.DrawBitmapEx(maPos - aOffset, rBitmapEx); } - bool isHit(Window& rWin, const Point& rPos) + bool isHit(vcl::Window& rWin, const Point& rPos) { const Point aOffset(rWin.PixelToLogic(Point(mnOffX, mnOffY))); const Rectangle aTarget(maPos - aOffset, maPos + aOffset); @@ -117,7 +117,7 @@ class GridWindow : public Window virtual Size GetOptimalSize() const SAL_OVERRIDE; void drawLine( double x1, double y1, double x2, double y2 ); public: - GridWindow(Window* pParent); + GridWindow(vcl::Window* pParent); void Init(double* pXValues, double* pYValues, int nValues, bool bCutValues, const BitmapEx &rMarkerBitmap); virtual ~GridWindow(); @@ -130,7 +130,7 @@ public: virtual void Paint( const Rectangle& rRect ) SAL_OVERRIDE; }; -GridWindow::GridWindow(Window* pParent) +GridWindow::GridWindow(vcl::Window* pParent) : Window(pParent, 0) , m_aGridArea(50, 15, 100, 100) , m_fMinX(0.0) @@ -198,7 +198,7 @@ Size GridWindow::GetOptimalSize() const return LogicToPixel(Size(240, 200), MAP_APPFONT); } -GridDialog::GridDialog(double* pXValues, double* pYValues, int nValues, Window* pParent, bool bCutValues ) +GridDialog::GridDialog(double* pXValues, double* pYValues, int nValues, vcl::Window* pParent, bool bCutValues ) : ModalDialog(pParent, "GridDialog", "modules/scanner/ui/griddialog.ui") { get(m_pOKButton, "ok"); @@ -694,7 +694,7 @@ double* GridDialog::getNewYValues() return m_pGridWindow->getNewYValues(); } -extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeGridWindow(Window *pParent, VclBuilder::stringmap &) +extern "C" SAL_DLLPUBLIC_EXPORT vcl::Window* SAL_CALL makeGridWindow(vcl::Window *pParent, VclBuilder::stringmap &) { return new GridWindow(pParent); } diff --git a/extensions/source/scanner/grid.hxx b/extensions/source/scanner/grid.hxx index 7416c6abcfe4..6fca647facd5 100644 --- a/extensions/source/scanner/grid.hxx +++ b/extensions/source/scanner/grid.hxx @@ -48,7 +48,7 @@ class GridDialog : public ModalDialog public: GridDialog(double* pXValues, double* pYValues, int nValues, - Window* pParent, bool bCutValues = true); + vcl::Window* pParent, bool bCutValues = true); void setBoundings(double fMinX, double fMinY, double fMaxX, double fMaxY); double* getNewYValues(); diff --git a/extensions/source/scanner/sanedlg.cxx b/extensions/source/scanner/sanedlg.cxx index c47e1a6096d9..bc7ee8e4a978 100644 --- a/extensions/source/scanner/sanedlg.cxx +++ b/extensions/source/scanner/sanedlg.cxx @@ -33,7 +33,7 @@ #define PREVIEW_WIDTH 113 #define PREVIEW_HEIGHT 160 -class ScanPreview : public Window +class ScanPreview : public vcl::Window { private: enum DragDirection { TopLeft, Top, TopRight, Right, BottomRight, Bottom, @@ -51,7 +51,7 @@ private: void DrawRectangles(Point& rUL, Point& rBR); public: - ScanPreview(Window* pParent, WinBits nStyle) + ScanPreview(vcl::Window* pParent, WinBits nStyle) : Window(pParent, nStyle) , maMaxBottomRight(PREVIEW_WIDTH, PREVIEW_HEIGHT) , mpParentDialog(NULL) @@ -145,7 +145,7 @@ public: } }; -extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeScanPreview(Window *pParent, VclBuilder::stringmap &rMap) +extern "C" SAL_DLLPUBLIC_EXPORT vcl::Window* SAL_CALL makeScanPreview(vcl::Window *pParent, VclBuilder::stringmap &rMap) { WinBits nWinStyle = 0; OString sBorder = VclBuilder::extractCustomProperty(rMap); @@ -155,7 +155,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeScanPreview(Window *pParent return pWindow; } -SaneDlg::SaneDlg( Window* pParent, Sane& rSane, bool bScanEnabled ) : +SaneDlg::SaneDlg( vcl::Window* pParent, Sane& rSane, bool bScanEnabled ) : ModalDialog(pParent, "SaneDialog", "modules/scanner/ui/sanedialog.ui"), mrSane( rSane ), mbScanEnabled( bScanEnabled ), diff --git a/extensions/source/scanner/sanedlg.hxx b/extensions/source/scanner/sanedlg.hxx index 45750e5a452b..57eaa54b0cb3 100644 --- a/extensions/source/scanner/sanedlg.hxx +++ b/extensions/source/scanner/sanedlg.hxx @@ -103,7 +103,7 @@ private: // helper bool SetAdjustedNumericalValue( const char* pOption, double fValue, int nElement = 0 ); public: - SaneDlg( Window*, Sane&, bool ); + SaneDlg( vcl::Window*, Sane&, bool ); virtual ~SaneDlg(); virtual short Execute() SAL_OVERRIDE; diff --git a/extensions/source/update/ui/updatecheckui.cxx b/extensions/source/update/ui/updatecheckui.cxx index fed6d02e5dd8..38a7bd155b80 100644 --- a/extensions/source/update/ui/updatecheckui.cxx +++ b/extensions/source/update/ui/updatecheckui.cxx @@ -104,7 +104,7 @@ private: void RecalcTextRects(); public: - BubbleWindow( Window* pParent, const OUString& rTitle, + BubbleWindow( vcl::Window* pParent, const OUString& rTitle, const OUString& rText, const Image& rImage ); virtual ~BubbleWindow(); @@ -259,7 +259,7 @@ UpdateCheckUI::supportsService( OUString const & serviceName ) throw (uno::Runti Image UpdateCheckUI::GetMenuBarIcon( MenuBar* pMBar ) { sal_uInt32 nResID; - Window *pMBarWin = pMBar->GetWindow(); + vcl::Window *pMBarWin = pMBar->GetWindow(); sal_uInt32 nMBarHeight = 20; if ( pMBarWin ) @@ -641,11 +641,11 @@ IMPL_LINK_NOARG(UpdateCheckUI, UserEventHdl) { SolarMutexGuard aGuard; - Window *pTopWin = Application::GetFirstTopLevelWindow(); - Window *pActiveWin = Application::GetActiveTopWindow(); + vcl::Window *pTopWin = Application::GetFirstTopLevelWindow(); + vcl::Window *pActiveWin = Application::GetActiveTopWindow(); SystemWindow *pActiveSysWin = NULL; - Window *pBubbleWin = NULL; + vcl::Window *pBubbleWin = NULL; if ( mpBubbleWin ) pBubbleWin = mpBubbleWin; @@ -686,7 +686,7 @@ IMPL_LINK( UpdateCheckUI, WindowEventHdl, VclWindowEvent*, pEvent ) else if ( VCLEVENT_WINDOW_MENUBARADDED == nEventID ) { SolarMutexGuard aGuard; - Window *pWindow = pEvent->GetWindow(); + vcl::Window *pWindow = pEvent->GetWindow(); if ( pWindow ) { SystemWindow *pSysWin = pWindow->GetSystemWindow(); @@ -731,7 +731,7 @@ IMPL_LINK( UpdateCheckUI, ApplicationEventHdl, VclSimpleEvent *, pEvent) case VCLEVENT_WINDOW_GETFOCUS: { SolarMutexGuard aGuard; - Window *pWindow = static_cast< VclWindowEvent * >(pEvent)->GetWindow(); + vcl::Window *pWindow = static_cast< VclWindowEvent * >(pEvent)->GetWindow(); if ( pWindow && pWindow->IsTopWindow() ) { SystemWindow *pSysWin = pWindow->GetSystemWindow(); @@ -758,7 +758,7 @@ IMPL_LINK( UpdateCheckUI, ApplicationEventHdl, VclSimpleEvent *, pEvent) #define TEXT_MAX_HEIGHT 200 -BubbleWindow::BubbleWindow( Window* pParent, const OUString& rTitle, +BubbleWindow::BubbleWindow( vcl::Window* pParent, const OUString& rTitle, const OUString& rText, const Image& rImage ) : FloatingWindow( pParent, WB_SYSTEMWINDOW | WB_OWNERDRAWDECORATION |