Files
libreoffice/dbaccess/source/ui/tabledesign/FieldDescGenWin.cxx

158 lines
4.0 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2012-09-27 13:52:10 +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-14 13:28:01 +00:00
#include "FieldDescGenWin.hxx"
2011-02-03 00:33:36 +01:00
#include <osl/diagnose.h>
2001-02-14 13:28:01 +00:00
#include "dbaccess_helpid.hrc"
#include "TableDesignHelpBar.hxx"
#include "TableFieldControl.hxx"
#include "TableDesignView.hxx"
#include "TEditControl.hxx"
#include <boost/scoped_ptr.hpp>
2001-02-14 13:28:01 +00:00
using namespace dbaui;
// class OFieldDescGenWin
OFieldDescGenWin::OFieldDescGenWin( vcl::Window* pParent, OTableDesignHelpBar* pHelp ) :
2001-02-14 13:28:01 +00:00
TabPage( pParent, WB_3DLOOK | WB_DIALOGCONTROL )
{
m_pFieldControl = VclPtr<OTableFieldControl>::Create(this,pHelp);
m_pFieldControl->SetHelpId(HID_TAB_DESIGN_FIELDCONTROL);
2001-02-14 13:28:01 +00:00
m_pFieldControl->Show();
}
2001-02-14 13:28:01 +00:00
OFieldDescGenWin::~OFieldDescGenWin()
{
disposeOnce();
}
void OFieldDescGenWin::dispose()
2001-02-14 13:28:01 +00:00
{
m_pFieldControl.disposeAndClear();
TabPage::dispose();
2001-02-14 13:28:01 +00:00
}
2001-02-14 13:28:01 +00:00
void OFieldDescGenWin::Init()
{
2011-02-03 00:33:36 +01:00
OSL_ENSURE(GetEditorCtrl() != NULL, "OFieldDescGenWin::Init : have no editor control !");
2001-02-14 13:28:01 +00:00
m_pFieldControl->Init();
}
2001-02-14 13:28:01 +00:00
void OFieldDescGenWin::Resize()
{
m_pFieldControl->SetPosSizePixel(Point(0,0),GetSizePixel());
m_pFieldControl->Resize();
}
void OFieldDescGenWin::SetReadOnly( bool bReadOnly )
2001-02-14 13:28:01 +00:00
{
m_pFieldControl->SetReadOnly(bReadOnly);
}
OUString OFieldDescGenWin::GetControlText( sal_uInt16 nControlId )
2001-02-14 13:28:01 +00:00
{
return m_pFieldControl->GetControlText(nControlId);
}
void OFieldDescGenWin::SetControlText( sal_uInt16 nControlId, const OUString& rText )
2001-02-14 13:28:01 +00:00
{
// set texts of the controls
2001-02-14 13:28:01 +00:00
m_pFieldControl->SetControlText(nControlId,rText);
}
2001-02-14 13:28:01 +00:00
void OFieldDescGenWin::DisplayData( OFieldDescription* pFieldDescr )
{
m_pFieldControl->DisplayData(pFieldDescr);
}
#if OSL_DEBUG_LEVEL > 0
2001-02-14 13:28:01 +00:00
OTableEditorCtrl* OFieldDescGenWin::GetEditorCtrl()
{
2001-04-19 12:20:23 +00:00
OTableDesignView* pDesignWin = static_cast<OTableDesignView*>(GetParent()->GetParent()->GetParent());
2001-02-14 13:28:01 +00:00
return pDesignWin->GetEditorCtrl();
}
#endif
2001-02-14 13:28:01 +00:00
void OFieldDescGenWin::SaveData( OFieldDescription* pFieldDescr )
{
m_pFieldControl->SaveData(pFieldDescr);
}
2001-02-14 13:28:01 +00:00
void OFieldDescGenWin::GetFocus()
{
// sets the focus to the control that was active last
2001-02-14 13:28:01 +00:00
TabPage::GetFocus();
if(m_pFieldControl)
m_pFieldControl->GetFocus();
2001-02-14 13:28:01 +00:00
}
2001-02-14 13:28:01 +00:00
void OFieldDescGenWin::LoseFocus()
{
if (m_pFieldControl)
m_pFieldControl->LoseFocus();
2001-02-14 13:28:01 +00:00
TabPage::LoseFocus();
}
OUString OFieldDescGenWin::BoolStringPersistent(const OUString& rUIString) const
2001-02-14 13:28:01 +00:00
{
return m_pFieldControl->BoolStringPersistent(rUIString);
}
OUString OFieldDescGenWin::BoolStringUI(const OUString& rPersistentString) const
2001-02-14 13:28:01 +00:00
{
return m_pFieldControl->BoolStringUI(rPersistentString);
}
bool OFieldDescGenWin::isCopyAllowed()
2001-07-16 06:55:35 +00:00
{
return (m_pFieldControl && m_pFieldControl->isCutAllowed());
}
bool OFieldDescGenWin::isCutAllowed()
{
return (m_pFieldControl && m_pFieldControl->isCutAllowed());
}
bool OFieldDescGenWin::isPasteAllowed()
{
return (m_pFieldControl && m_pFieldControl->isPasteAllowed());
}
void OFieldDescGenWin::cut()
{
if(m_pFieldControl)
m_pFieldControl->cut();
}
void OFieldDescGenWin::copy()
{
if(m_pFieldControl)
m_pFieldControl->copy();
}
void OFieldDescGenWin::paste()
{
if(m_pFieldControl)
m_pFieldControl->paste();
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */