office-gobmx/basctl/source/basicide/objdlg.hxx

97 lines
2.8 KiB
C++
Raw Normal View History

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
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-29 05:02:42 -05:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2000-09-29 05:02:42 -05:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-29 05:02:42 -05:00
*
* This file is part of OpenOffice.org.
2000-09-29 05:02:42 -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
*
* 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
*
* 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>
#include "vcl/image.hxx"
2000-09-29 05:02:42 -05:00
#include <bastype2.hxx>
class StarBASIC;
class ObjectTreeListBox : public BasicTreeListBox
{
private:
virtual void Command( const CommandEvent& rCEvt );
virtual void MouseButtonDown( const MouseEvent& rMEvt );
public:
ObjectTreeListBox( Window* pParent, const ResId& rRes );
~ObjectTreeListBox();
};
class ObjectCatalogToolBox_Impl: public ToolBox
{
public:
2010-11-13 11:22:01 -06:00
ObjectCatalogToolBox_Impl(Window * pParent, ResId const & rResId);
private:
virtual void DataChanged(DataChangedEvent const & rDCEvt);
void setImages();
ImageList m_aImagesNormal;
};
2000-09-29 05:02:42 -05:00
class ObjectCatalog : public FloatingWindow
{
private:
ObjectTreeListBox aMacroTreeList;
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();
virtual sal_Bool Close();
2000-09-29 05:02:42 -05:00
virtual void Resize();
public:
ObjectCatalog( Window * pParent );
virtual ~ObjectCatalog();
2000-09-29 05:02:42 -05:00
void UpdateEntries();
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: */