Kaydet (Commit) 6876faee authored tarafından Rafael Dominguez's avatar Rafael Dominguez

Set online overlay dimensions the same as parent and set bg as white.

Change-Id: I40e84c1c10369a48544ccc1fcc9bb1821c8b3e23
üst 83682252
...@@ -36,7 +36,6 @@ private: ...@@ -36,7 +36,6 @@ private:
private: private:
TemplateView *mpItemView; TemplateView *mpItemView;
com::sun::star::uno::Sequence< rtl::OUString > maUrls; com::sun::star::uno::Sequence< rtl::OUString > maUrls;
com::sun::star::uno::Sequence< rtl::OUString > maNames; com::sun::star::uno::Sequence< rtl::OUString > maNames;
com::sun::star::uno::Reference< com::sun::star::ucb::XCommandEnvironment > m_xCmdEnv; com::sun::star::uno::Reference< com::sun::star::ucb::XCommandEnvironment > m_xCmdEnv;
......
...@@ -13,15 +13,21 @@ ...@@ -13,15 +13,21 @@
#include <officecfg/Office/Common.hxx> #include <officecfg/Office/Common.hxx>
#include <sfx2/templateonlineviewitem.hxx> #include <sfx2/templateonlineviewitem.hxx>
#include <sfx2/templateview.hxx> #include <sfx2/templateview.hxx>
#include <sfx2/templateviewitem.hxx>
#include <ucbhelper/content.hxx> #include <ucbhelper/content.hxx>
#include <ucbhelper/commandenvironment.hxx> #include <ucbhelper/commandenvironment.hxx>
#include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/task/XInteractionHandler.hpp> #include <com/sun/star/task/XInteractionHandler.hpp>
#include <com/sun/star/sdbc/XResultSet.hpp>
#include <com/sun/star/sdbc/XRow.hpp>
#include <com/sun/star/ucb/XContentAccess.hpp>
#include <com/sun/star/ucb/XDynamicResultSet.hpp>
using namespace com::sun::star; using namespace com::sun::star;
using namespace com::sun::star::lang; using namespace com::sun::star::lang;
using namespace com::sun::star::task; using namespace com::sun::star::task;
using namespace com::sun::star::sdbc;
using namespace com::sun::star::ucb; using namespace com::sun::star::ucb;
using namespace com::sun::star::uno; using namespace com::sun::star::uno;
...@@ -29,7 +35,7 @@ TemplateOnlineView::TemplateOnlineView (Window *pParent, WinBits nWinStyle, bool ...@@ -29,7 +35,7 @@ TemplateOnlineView::TemplateOnlineView (Window *pParent, WinBits nWinStyle, bool
: ThumbnailView(pParent,nWinStyle,bDisableTransientChildren), : ThumbnailView(pParent,nWinStyle,bDisableTransientChildren),
mpItemView(new TemplateView(this,NULL)) mpItemView(new TemplateView(this,NULL))
{ {
mpItemView->SetPosPixel(Point(0,0)); mpItemView->SetColor(Color(COL_WHITE));
Reference< XMultiServiceFactory > xFactory = comphelper::getProcessServiceFactory(); Reference< XMultiServiceFactory > xFactory = comphelper::getProcessServiceFactory();
Reference< XInteractionHandler > xGlobalInteractionHandler = Reference< XInteractionHandler >( Reference< XInteractionHandler > xGlobalInteractionHandler = Reference< XInteractionHandler >(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment