Files
libreoffice/dbaccess/source/ui/relationdesign/RelationDesignView.cxx

95 lines
2.9 KiB
C++
Raw Normal View History

/* -*- 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 .
*/
2001-02-28 09:09:17 +00:00
#include "RelationDesignView.hxx"
#include "RelationTableView.hxx"
#include "RelationController.hxx"
#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"
#include <comphelper/extract.hxx>
2001-02-28 09:09:17 +00:00
#include "UITools.hxx"
#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;
ORelationDesignView::ORelationDesignView(Window* _pParent, ORelationController& _rController,const Reference< XComponentContext >& _rxContext)
:OJoinDesignView( _pParent, _rController, _rxContext )
2001-02-28 09:09:17 +00:00
{
}
2001-02-28 09:09:17 +00:00
ORelationDesignView::~ORelationDesignView()
{
}
void ORelationDesignView::Construct()
2001-02-28 09:09:17 +00:00
{
m_pTableView = new ORelationTableView(m_pScrollWindow,this);
OJoinDesignView::Construct();
2001-02-28 09:09:17 +00:00
}
2001-02-28 09:09:17 +00:00
void ORelationDesignView::initialize()
{
m_pTableView->clearLayoutInformation();
2001-02-28 09:09:17 +00:00
m_pTableView->ReSync();
OJoinDesignView::initialize();
}
bool ORelationDesignView::PreNotify( NotifyEvent& rNEvt )
2001-03-20 07:46:50 +00:00
{
bool nDone = false;
2001-03-20 07:46:50 +00:00
if(rNEvt.GetType() == EVENT_GETFOCUS)
{
if(!m_pTableView->HasChildPathFocus())
{
m_pTableView->GrabTabWinFocus();
nDone = true;
}
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
}
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
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */