Files
loongoffice/cui/source/options/optjava.hxx
Stephan Bergmann 362d4f0cd4 Explicitly mark overriding destructors as "virtual"
It appears that the C++ standard allows overriding destructors to be marked
"override," but at least some MSVC versions complain about it, so at least make
sure such destructors are explicitly marked "virtual."

Change-Id: I0e1cafa7584fd16ebdce61f569eae2373a71b0a1
2014-04-01 19:22:54 +02:00

186 lines
6.4 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* 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 .
*/
#ifndef INCLUDED_CUI_SOURCE_OPTIONS_OPTJAVA_HXX
#define INCLUDED_CUI_SOURCE_OPTIONS_OPTJAVA_HXX
#include <config_features.h>
#include <vector>
#include <ucbhelper/content.hxx>
#include <vcl/button.hxx>
#include <vcl/fixed.hxx>
#include <vcl/lstbox.hxx>
#include <vcl/timer.hxx>
#include <sfx2/tabdlg.hxx>
#include <com/sun/star/ui/dialogs/XFolderPicker2.hpp>
#include <svtools/dialogclosedlistener.hxx>
#include <svtools/simptabl.hxx>
#include "radiobtnbox.hxx"
// forward ---------------------------------------------------------------
#if HAVE_FEATURE_JAVA
typedef struct _JavaInfo JavaInfo;
#else
typedef void* JavaInfo;
#endif
class SvxJavaParameterDlg;
class SvxJavaClassPathDlg;
class SvxJavaListBox;
// class SvxJavaOptionsPage ----------------------------------------------
class SvxJavaOptionsPage : public SfxTabPage
{
private:
CheckBox* m_pJavaEnableCB;
VclContainer* m_pJavaBox;
SvxJavaListBox* m_pJavaList;
FixedText* m_pJavaPathText;
PushButton* m_pAddBtn;
PushButton* m_pParameterBtn;
PushButton* m_pClassPathBtn;
PushButton* m_pExpertConfigBtn;
SvxJavaParameterDlg* m_pParamDlg;
SvxJavaClassPathDlg* m_pPathDlg;
#if HAVE_FEATURE_JAVA
JavaInfo** m_parJavaInfo;
rtl_uString** m_parParameters;
rtl_uString* m_pClassPath;
sal_Int32 m_nInfoSize;
sal_Int32 m_nParamSize;
#endif
OUString m_sInstallText;
OUString m_sAccessibilityText;
OUString m_sAddDialogText;
Timer m_aResetTimer;
CheckBox* m_pExperimentalCB;
CheckBox* m_pMacroCB;
::std::vector< JavaInfo* >
m_aAddedInfos;
::com::sun::star::uno::Reference< ::svt::DialogClosedListener > xDialogListener;
::com::sun::star::uno::Reference< ::com::sun::star::ui::dialogs::XFolderPicker2 > xFolderPicker;
DECL_LINK(EnableHdl_Impl, void *);
DECL_LINK( CheckHdl_Impl, SvSimpleTable * );
DECL_LINK(SelectHdl_Impl, void *);
DECL_LINK(AddHdl_Impl, void *);
DECL_LINK(ParameterHdl_Impl, void *);
DECL_LINK(ClassPathHdl_Impl, void *);
DECL_LINK(ResetHdl_Impl, void *);
DECL_LINK( StartFolderPickerHdl, void * );
DECL_LINK( DialogClosedHdl, ::com::sun::star::ui::dialogs::DialogClosedEvent* );
DECL_LINK(ExpertConfigHdl_Impl, void *);
void ClearJavaInfo();
void ClearJavaList();
void LoadJREs();
void AddJRE( JavaInfo* _pInfo );
void HandleCheckEntry( SvTreeListEntry* _pEntry );
void AddFolder( const OUString& _rFolder );
public:
SvxJavaOptionsPage( Window* pParent, const SfxItemSet& rSet );
virtual ~SvxJavaOptionsPage();
static SfxTabPage* Create( Window* pParent, const SfxItemSet& rSet );
virtual bool FillItemSet( SfxItemSet& rSet ) SAL_OVERRIDE;
virtual void Reset( const SfxItemSet& rSet ) SAL_OVERRIDE;
virtual void FillUserData() SAL_OVERRIDE;
};
// class SvxJavaParameterDlg ---------------------------------------------
class SvxJavaParameterDlg : public ModalDialog
{
private:
Edit* m_pParameterEdit;
PushButton* m_pAssignBtn;
ListBox* m_pAssignedList;
PushButton* m_pRemoveBtn;
DECL_LINK(ModifyHdl_Impl, void *);
DECL_LINK(AssignHdl_Impl, void *);
DECL_LINK(SelectHdl_Impl, void *);
DECL_LINK(DblClickHdl_Impl, void *);
DECL_LINK(RemoveHdl_Impl, void *);
inline void EnableRemoveButton()
{ m_pRemoveBtn->Enable(
m_pAssignedList->GetSelectEntryPos()
!= LISTBOX_ENTRY_NOTFOUND ); }
public:
SvxJavaParameterDlg( Window* pParent );
virtual ~SvxJavaParameterDlg();
virtual short Execute() SAL_OVERRIDE;
::com::sun::star::uno::Sequence< OUString > GetParameters() const;
void SetParameters( ::com::sun::star::uno::Sequence< OUString >& rParams );
};
// class SvxJavaClassPathDlg ---------------------------------------------
class SvxJavaClassPathDlg : public ModalDialog
{
private:
ListBox* m_pPathList;
PushButton* m_pAddArchiveBtn;
PushButton* m_pAddPathBtn;
PushButton* m_pRemoveBtn;
OUString m_sOldPath;
DECL_LINK(AddArchiveHdl_Impl, void *);
DECL_LINK(AddPathHdl_Impl, void *);
DECL_LINK(RemoveHdl_Impl, void *);
DECL_LINK(SelectHdl_Impl, void *);
bool IsPathDuplicate( const OUString& _rPath );
inline void EnableRemoveButton()
{ m_pRemoveBtn->Enable(
m_pPathList->GetSelectEntryPos() != LISTBOX_ENTRY_NOTFOUND ); }
public:
SvxJavaClassPathDlg( Window* pParent );
virtual ~SvxJavaClassPathDlg();
inline const OUString& GetOldPath() const { return m_sOldPath; }
inline void SetFocus() { m_pPathList->GrabFocus(); }
OUString GetClassPath() const;
void SetClassPath( const OUString& _rPath );
};
#endif // INCLUDED_CUI_SOURCE_OPTIONS_OPTJAVA_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */