2010-10-27 06:45:03 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2000-09-29 05:02:42 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 04:51:04 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-29 05:02:42 -05:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-29 05:02:42 -05:00
|
|
|
*
|
2008-04-11 04:51:04 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-29 05:02:42 -05:00
|
|
|
*
|
2008-04-11 04:51:04 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-29 05:02:42 -05:00
|
|
|
*
|
2008-04-11 04:51:04 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-09-29 05:02:42 -05:00
|
|
|
*
|
2008-04-11 04:51:04 -05:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-29 05:02:42 -05:00
|
|
|
*
|
2008-04-11 04:51:04 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-29 05:02:42 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _OBJDLG_HXX
|
|
|
|
#define _OBJDLG_HXX
|
|
|
|
|
|
|
|
#include <svheader.hxx>
|
|
|
|
#include <vcl/floatwin.hxx>
|
|
|
|
#include <vcl/toolbox.hxx>
|
|
|
|
#include <vcl/fixed.hxx>
|
2002-07-03 09:53:24 -05:00
|
|
|
#include "vcl/image.hxx"
|
|
|
|
|
2000-09-29 05:02:42 -05:00
|
|
|
#include <bastype2.hxx>
|
|
|
|
|
|
|
|
class StarBASIC;
|
|
|
|
|
2002-07-03 09:53:24 -05:00
|
|
|
class ObjectCatalogToolBox_Impl: public ToolBox
|
|
|
|
{
|
|
|
|
public:
|
2010-11-13 11:22:01 -06:00
|
|
|
ObjectCatalogToolBox_Impl(Window * pParent, ResId const & rResId);
|
2002-07-03 09:53:24 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
virtual void DataChanged(DataChangedEvent const & rDCEvt);
|
|
|
|
|
|
|
|
void setImages();
|
|
|
|
|
|
|
|
ImageList m_aImagesNormal;
|
|
|
|
};
|
|
|
|
|
2012-03-11 15:40:02 -05:00
|
|
|
class ObjectCatalog : public BasicDockingWindow
|
2000-09-29 05:02:42 -05:00
|
|
|
{
|
|
|
|
private:
|
2012-03-01 06:33:04 -06:00
|
|
|
BasicTreeListBox aMacroTreeList;
|
2002-07-03 09:53:24 -05:00
|
|
|
ObjectCatalogToolBox_Impl aToolBox;
|
2000-09-29 05:02:42 -05:00
|
|
|
FixedText aMacroDescr;
|
|
|
|
Link aCancelHdl;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
DECL_LINK( ToolBoxHdl, ToolBox* );
|
|
|
|
void CheckButtons();
|
|
|
|
DECL_LINK( TreeListHighlightHdl, SvTreeListBox * );
|
|
|
|
void UpdateFields();
|
|
|
|
virtual void Move();
|
2011-01-14 04:16:25 -06:00
|
|
|
virtual sal_Bool Close();
|
2000-09-29 05:02:42 -05:00
|
|
|
virtual void Resize();
|
2012-03-11 15:40:02 -05:00
|
|
|
virtual void Paint( const Rectangle& rRect );
|
2000-09-29 05:02:42 -05:00
|
|
|
|
|
|
|
public:
|
|
|
|
ObjectCatalog( Window * pParent );
|
2002-04-25 03:34:09 -05:00
|
|
|
virtual ~ObjectCatalog();
|
2000-09-29 05:02:42 -05:00
|
|
|
|
|
|
|
void UpdateEntries();
|
2004-07-23 06:07:50 -05:00
|
|
|
void SetCurrentEntry( BasicEntryDescriptor& rDesc );
|
2000-09-29 05:02:42 -05:00
|
|
|
void SetCancelHdl( const Link& rLink ) { aCancelHdl = rLink; }
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif //_OBJDLG_HXX
|
|
|
|
|
2010-10-27 06:45:03 -05:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|