LCOV - code coverage report
Current view: top level - dbaccess/source/ui/querydesign - QTableWindow.cxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 86 0.0 %
Date: 2014-04-14 Functions: 0 10 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #include "QTableWindow.hxx"
      21             : #include "QueryTableView.hxx"
      22             : #include "dbustrings.hrc"
      23             : #include <osl/diagnose.h>
      24             : #include "dbaccess_helpid.hrc"
      25             : #include "QueryDesignView.hxx"
      26             : #include "browserids.hxx"
      27             : #include "querycontroller.hxx"
      28             : #include <vcl/image.hxx>
      29             : #include "TableWindowListBox.hxx"
      30             : #include "dbu_qry.hrc"
      31             : #include "Query.hrc"
      32             : #include <com/sun/star/sdbcx/XKeysSupplier.hpp>
      33             : #include <com/sun/star/container/XNameAccess.hpp>
      34             : #include <com/sun/star/container/XIndexAccess.hpp>
      35             : #include <com/sun/star/beans/XPropertySet.hpp>
      36             : #include <com/sun/star/sdbcx/KeyType.hpp>
      37             : #include <com/sun/star/sdbcx/XColumnsSupplier.hpp>
      38             : #include "TableFieldInfo.hxx"
      39             : #include <comphelper/extract.hxx>
      40             : #include <comphelper/string.hxx>
      41             : #include <comphelper/uno3.hxx>
      42             : #include "UITools.hxx"
      43             : #include "svtools/treelistentry.hxx"
      44             : 
      45             : using namespace ::com::sun::star::sdbc;
      46             : using namespace ::com::sun::star::sdbcx;
      47             : using namespace ::com::sun::star::uno;
      48             : using namespace ::com::sun::star::container;
      49             : using namespace ::com::sun::star::beans;
      50             : using namespace dbaui;
      51             : // class OQueryTableWindow
      52           0 : OQueryTableWindow::OQueryTableWindow( Window* pParent, const TTableWindowData::value_type& pTabWinData, sal_Unicode* pszInitialAlias)
      53             :     :OTableWindow( pParent, pTabWinData )
      54           0 :     ,m_nAliasNum(0)
      55             : {
      56           0 :     if (pszInitialAlias != NULL)
      57           0 :         m_strInitialAlias = OUString(pszInitialAlias);
      58             :     else
      59           0 :         m_strInitialAlias = GetAliasName();
      60             : 
      61             :     // if table name matches alias, do not pass to InitialAlias,
      62             :     // as the appending of a possible token could not succeed...
      63           0 :     if (m_strInitialAlias == pTabWinData->GetTableName())
      64           0 :         m_strInitialAlias = OUString();
      65             : 
      66           0 :     SetHelpId(HID_CTL_QRYDGNTAB);
      67           0 : }
      68             : 
      69           0 : OQueryTableWindow::~OQueryTableWindow()
      70             : {
      71           0 : }
      72             : 
      73           0 : sal_Bool OQueryTableWindow::Init()
      74             : {
      75           0 :     sal_Bool bSuccess = OTableWindow::Init();
      76           0 :     if(!bSuccess)
      77           0 :         return bSuccess;
      78             : 
      79           0 :     OQueryTableView* pContainer = static_cast<OQueryTableView*>(getTableView());
      80             : 
      81             :     // first determine Alias
      82           0 :     OUString sAliasName;
      83             : 
      84           0 :     TTableWindowData::value_type pWinData = GetData();
      85             : 
      86           0 :     if (!m_strInitialAlias.isEmpty() )
      87             :         // Alias was explicitly given
      88           0 :         sAliasName = m_strInitialAlias;
      89           0 :     else if ( GetTable().is() )
      90           0 :         GetTable()->getPropertyValue( PROPERTY_NAME ) >>= sAliasName;
      91             :     else
      92           0 :         return sal_False;
      93             : 
      94             :     // Alias with successive number
      95           0 :     if (pContainer->CountTableAlias(sAliasName, m_nAliasNum))
      96             :     {
      97           0 :         sAliasName += OUString('_');
      98           0 :         sAliasName += OUString::number(m_nAliasNum);
      99             :     }
     100             : 
     101           0 :     sAliasName = comphelper::string::remove(sAliasName, '"');
     102           0 :     SetAliasName(sAliasName);
     103             :         // SetAliasName passes it as WinName, hence it uses the base class
     104             :     // reset the title
     105           0 :     m_aTitle.SetText( pWinData->GetWinName() );
     106           0 :     m_aTitle.Show();
     107             : 
     108           0 :     if (!bSuccess)
     109             :     {   // it should just open a dummy window...
     110             :         OSL_ENSURE(!GetAliasName().isEmpty(), "OQueryTableWindow::Init : kein Alias- UND kein Tabellenname geht nicht !");
     111             :             // .. but that needs at least an Alias
     112             : 
     113             :         // create ::com::sun::star::form::ListBox
     114           0 :         if (!m_pListBox)
     115           0 :             m_pListBox = CreateListBox();
     116             : 
     117             :         // set titel
     118           0 :         m_aTitle.SetText(GetAliasName());
     119           0 :         m_aTitle.Show();
     120             : 
     121           0 :         clearListBox();
     122             :             // don't need to refill them as I don't have a table
     123           0 :         m_pListBox->Show();
     124             :     }
     125             : 
     126           0 :     getTableView()->getDesignView()->getController().InvalidateFeature(ID_BROWSER_QUERY_EXECUTE);
     127           0 :     return bSuccess;
     128             : }
     129             : 
     130           0 : void* OQueryTableWindow::createUserData(const Reference< XPropertySet>& _xColumn,bool _bPrimaryKey)
     131             : {
     132           0 :     OTableFieldInfo* pInfo = new OTableFieldInfo();
     133           0 :     pInfo->SetKey(_bPrimaryKey ? TAB_PRIMARY_FIELD : TAB_NORMAL_FIELD);
     134           0 :     if ( _xColumn.is() )
     135           0 :         pInfo->SetDataType(::comphelper::getINT32(_xColumn->getPropertyValue(PROPERTY_TYPE)));
     136           0 :     return pInfo;
     137             : }
     138             : 
     139           0 : void OQueryTableWindow::deleteUserData(void*& _pUserData)
     140             : {
     141           0 :     delete static_cast<OTableFieldInfo*>(_pUserData);
     142           0 :     _pUserData = NULL;
     143           0 : }
     144             : 
     145           0 : void OQueryTableWindow::OnEntryDoubleClicked(SvTreeListEntry* pEntry)
     146             : {
     147             :     OSL_ENSURE(pEntry != NULL, "OQueryTableWindow::OnEntryDoubleClicked : pEntry must not be NULL !");
     148             :         // you could also scan that and then return, but like this it could possibly hint to faults at the caller
     149             : 
     150           0 :     if (getTableView()->getDesignView()->getController().isReadOnly())
     151           0 :         return;
     152             : 
     153           0 :     OTableFieldInfo* pInf = static_cast<OTableFieldInfo*>(pEntry->GetUserData());
     154             :     OSL_ENSURE(pInf != NULL, "OQueryTableWindow::OnEntryDoubleClicked : field doesn't have FieldInfo !");
     155             : 
     156             :     // build up DragInfo
     157           0 :     OTableFieldDescRef aInfo = new OTableFieldDesc(GetTableName(),m_pListBox->GetEntryText(pEntry));
     158           0 :     aInfo->SetTabWindow(this);
     159           0 :     aInfo->SetAlias(GetAliasName());
     160           0 :     aInfo->SetFieldIndex(m_pListBox->GetModel()->GetAbsPos(pEntry));
     161           0 :     aInfo->SetDataType(pInf->GetDataType());
     162             : 
     163             :     // and insert corresponding field
     164           0 :     static_cast<OQueryTableView*>(getTableView())->InsertField(aInfo);
     165             : }
     166             : 
     167           0 : sal_Bool OQueryTableWindow::ExistsField(const OUString& strFieldName, OTableFieldDescRef& rInfo)
     168             : {
     169             :     OSL_ENSURE(m_pListBox != NULL, "OQueryTableWindow::ExistsField : doesn't have ::com::sun::star::form::ListBox !");
     170             :     OSL_ENSURE(rInfo.is(),"OQueryTableWindow::ExistsField: invalid argument for OTableFieldDescRef!");
     171           0 :     Reference< XConnection> xConnection = getTableView()->getDesignView()->getController().getConnection();
     172           0 :     sal_Bool bExists = sal_False;
     173           0 :     if(xConnection.is())
     174             :     {
     175           0 :         SvTreeListEntry* pEntry = m_pListBox->First();
     176             :         try
     177             :         {
     178           0 :             Reference<XDatabaseMetaData> xMeta = xConnection->getMetaData();
     179           0 :             ::comphelper::UStringMixEqual bCase(xMeta.is() && xMeta->supportsMixedCaseQuotedIdentifiers());
     180             : 
     181           0 :             while (pEntry)
     182             :             {
     183           0 :                 if (bCase(strFieldName,OUString(m_pListBox->GetEntryText(pEntry))))
     184             :                 {
     185           0 :                     OTableFieldInfo* pInf = static_cast<OTableFieldInfo*>(pEntry->GetUserData());
     186             :                     OSL_ENSURE(pInf != NULL, "OQueryTableWindow::ExistsField : field doesn't have FieldInfo !");
     187             : 
     188           0 :                     rInfo->SetTabWindow(this);
     189           0 :                     rInfo->SetField(strFieldName);
     190           0 :                     rInfo->SetTable(GetTableName());
     191           0 :                     rInfo->SetAlias(GetAliasName());
     192           0 :                     rInfo->SetFieldIndex(m_pListBox->GetModel()->GetAbsPos(pEntry));
     193           0 :                     rInfo->SetDataType(pInf->GetDataType());
     194           0 :                     bExists = sal_True;
     195           0 :                     break;
     196             :                 }
     197           0 :                 pEntry = m_pListBox->Next(pEntry);
     198           0 :             }
     199             :         }
     200           0 :         catch(SQLException&)
     201             :         {
     202             :         }
     203             :     }
     204             : 
     205           0 :     return bExists;
     206             : }
     207             : 
     208           0 : sal_Bool OQueryTableWindow::ExistsAVisitedConn() const
     209             : {
     210           0 :     return static_cast<const OQueryTableView*>(getTableView())->ExistsAVisitedConn(this);
     211             : }
     212             : 
     213           0 : void OQueryTableWindow::KeyInput( const KeyEvent& rEvt )
     214             : {
     215           0 :     OTableWindow::KeyInput( rEvt );
     216           0 : }
     217             : 
     218             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10