2010-10-12 15:59:03 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-14 17:39:53 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2006-09-17 06:28:19 +00:00
|
|
|
|
2001-02-28 09:09:17 +00:00
|
|
|
#include "RelationDesignView.hxx"
|
|
|
|
#include "RelationTableView.hxx"
|
|
|
|
#include "RelationController.hxx"
|
2009-10-16 00:05:16 +02:00
|
|
|
#include <svl/undo.hxx>
|
2001-02-28 09:09:17 +00:00
|
|
|
#include <vcl/svapp.hxx>
|
|
|
|
#include <vcl/msgbox.hxx>
|
|
|
|
#include "browserids.hxx"
|
2002-08-19 07:01:32 +00:00
|
|
|
#include "dbu_rel.hrc"
|
2001-02-28 09:09:17 +00:00
|
|
|
#include <comphelper/types.hxx>
|
|
|
|
#include <connectivity/dbtools.hxx>
|
|
|
|
#include <com/sun/star/sdbc/DataType.hpp>
|
|
|
|
#include <com/sun/star/container/XNameAccess.hpp>
|
|
|
|
#include "RTableConnection.hxx"
|
|
|
|
#include "ConnectionLine.hxx"
|
|
|
|
#include "ConnectionLineData.hxx"
|
|
|
|
#include "RTableConnectionData.hxx"
|
|
|
|
#include "dbustrings.hrc"
|
2001-03-15 07:29:16 +00:00
|
|
|
#include <comphelper/extract.hxx>
|
2001-02-28 09:09:17 +00:00
|
|
|
#include "UITools.hxx"
|
2001-06-28 13:26:45 +00:00
|
|
|
#include <tools/debug.hxx>
|
2001-02-28 09:09:17 +00:00
|
|
|
|
|
|
|
using namespace ::dbaui;
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star::lang;
|
|
|
|
using namespace ::com::sun::star::sdbc;
|
|
|
|
using namespace ::com::sun::star::beans;
|
|
|
|
using namespace ::com::sun::star::container;
|
|
|
|
|
2012-12-14 12:58:00 +02:00
|
|
|
ORelationDesignView::ORelationDesignView(Window* _pParent, ORelationController& _rController,const Reference< XComponentContext >& _rxContext)
|
|
|
|
:OJoinDesignView( _pParent, _rController, _rxContext )
|
2001-02-28 09:09:17 +00:00
|
|
|
{
|
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2001-02-28 09:09:17 +00:00
|
|
|
ORelationDesignView::~ORelationDesignView()
|
|
|
|
{
|
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2001-08-23 13:46:27 +00:00
|
|
|
void ORelationDesignView::Construct()
|
2001-02-28 09:09:17 +00:00
|
|
|
{
|
|
|
|
m_pTableView = new ORelationTableView(m_pScrollWindow,this);
|
2001-08-23 13:46:27 +00:00
|
|
|
OJoinDesignView::Construct();
|
2001-02-28 09:09:17 +00:00
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2001-02-28 09:09:17 +00:00
|
|
|
void ORelationDesignView::initialize()
|
|
|
|
{
|
2001-06-28 13:26:45 +00:00
|
|
|
m_pTableView->clearLayoutInformation();
|
2001-02-28 09:09:17 +00:00
|
|
|
m_pTableView->ReSync();
|
|
|
|
|
|
|
|
OJoinDesignView::initialize();
|
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2014-01-18 00:18:52 +01:00
|
|
|
bool ORelationDesignView::PreNotify( NotifyEvent& rNEvt )
|
2001-03-20 07:46:50 +00:00
|
|
|
{
|
2014-01-18 00:18:52 +01:00
|
|
|
bool nDone = false;
|
2001-03-20 07:46:50 +00:00
|
|
|
if(rNEvt.GetType() == EVENT_GETFOCUS)
|
|
|
|
{
|
2001-03-21 12:51:10 +00:00
|
|
|
if(!m_pTableView->HasChildPathFocus())
|
|
|
|
{
|
|
|
|
m_pTableView->GrabTabWinFocus();
|
2014-01-18 00:18:52 +01:00
|
|
|
nDone = true;
|
2001-03-21 12:51:10 +00:00
|
|
|
}
|
2001-03-20 07:46:50 +00:00
|
|
|
}
|
2001-10-26 06:49:36 +00:00
|
|
|
if(!nDone)
|
|
|
|
nDone = OJoinDesignView::PreNotify(rNEvt);
|
|
|
|
return nDone;
|
2001-03-20 07:46:50 +00:00
|
|
|
}
|
2013-08-17 23:43:14 +02:00
|
|
|
|
2002-05-02 06:54:11 +00:00
|
|
|
void ORelationDesignView::GetFocus()
|
|
|
|
{
|
|
|
|
OJoinDesignView::GetFocus();
|
|
|
|
if ( m_pTableView && m_pTableView->IsVisible() && !m_pTableView->GetTabWinMap()->empty() )
|
|
|
|
m_pTableView->GrabTabWinFocus();
|
|
|
|
}
|
2001-02-28 09:09:17 +00:00
|
|
|
|
2010-10-12 15:59:03 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|