2010-10-14 08:27:31 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-11-15 17:28:16 +00: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 .
|
|
|
|
*/
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2013-10-23 19:14:56 +02:00
|
|
|
#ifndef INCLUDED_SVTOOLS_FILECTRL_HXX
|
|
|
|
#define INCLUDED_SVTOOLS_FILECTRL_HXX
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2013-11-09 15:40:46 -06:00
|
|
|
#include <svtools/svtdllapi.h>
|
2000-09-18 16:07:07 +00:00
|
|
|
#include <vcl/window.hxx>
|
|
|
|
#include <vcl/edit.hxx>
|
|
|
|
#include <vcl/button.hxx>
|
|
|
|
|
|
|
|
|
|
|
|
#define STR_FILECTRL_BUTTONTEXT 333 // ID-Range?!
|
|
|
|
|
|
|
|
// Flags for FileControl
|
2015-04-17 13:07:12 +02:00
|
|
|
enum class FileControlMode
|
|
|
|
{
|
|
|
|
NONE = 0x00,
|
|
|
|
RESIZEBUTTONBYPATHLEN = 0x01, //if this is set, the button will become small as soon as the Text in the Edit Field is to long to be shown completely
|
|
|
|
};
|
|
|
|
namespace o3tl
|
|
|
|
{
|
|
|
|
template<> struct typed_flags<FileControlMode> : is_typed_flags<FileControlMode, 0x01> {};
|
|
|
|
}
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// Flags for internal use of FileControl
|
2015-04-17 13:53:28 +02:00
|
|
|
enum class FileControlMode_Internal
|
|
|
|
{
|
|
|
|
INRESIZE = 0x0001,
|
|
|
|
ORIGINALBUTTONTEXT = 0x0002,
|
|
|
|
};
|
|
|
|
namespace o3tl
|
|
|
|
{
|
|
|
|
template<> struct typed_flags<FileControlMode_Internal> : is_typed_flags<FileControlMode_Internal, 0x03> {};
|
|
|
|
}
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
|
2014-09-23 11:20:40 +02:00
|
|
|
class SVT_DLLPUBLIC FileControl : public vcl::Window
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
|
|
|
private:
|
2015-01-12 15:16:05 +02:00
|
|
|
VclPtr<Edit> maEdit;
|
|
|
|
VclPtr<PushButton> maButton;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2013-08-19 13:48:10 +02:00
|
|
|
OUString maButtonText;
|
2014-03-20 11:53:43 +02:00
|
|
|
bool mbOpenDlg;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
FileControlMode mnFlags;
|
|
|
|
FileControlMode_Internal mnInternalFlags;
|
|
|
|
|
2001-09-04 07:57:48 +00:00
|
|
|
private:
|
2005-11-11 08:16:42 +00:00
|
|
|
SVT_DLLPRIVATE void ImplBrowseFile( );
|
2001-09-04 07:57:48 +00:00
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
protected:
|
2014-03-26 16:37:00 +01:00
|
|
|
SVT_DLLPRIVATE void Resize() SAL_OVERRIDE;
|
|
|
|
SVT_DLLPRIVATE void GetFocus() SAL_OVERRIDE;
|
|
|
|
SVT_DLLPRIVATE void StateChanged( StateChangedType nType ) SAL_OVERRIDE;
|
2005-11-11 08:16:42 +00:00
|
|
|
SVT_DLLPRIVATE WinBits ImplInitStyle( WinBits nStyle );
|
2015-08-19 09:11:34 +02:00
|
|
|
DECL_DLLPRIVATE_LINK_TYPED( ButtonHdl, Button*, void );
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
public:
|
2015-04-17 13:07:12 +02:00
|
|
|
FileControl( vcl::Window* pParent, WinBits nStyle, FileControlMode = FileControlMode::NONE );
|
2015-01-12 15:16:05 +02:00
|
|
|
virtual ~FileControl();
|
|
|
|
virtual void dispose() SAL_OVERRIDE;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2015-01-12 15:16:05 +02:00
|
|
|
Edit& GetEdit() { return *maEdit.get(); }
|
|
|
|
PushButton& GetButton() { return *maButton.get(); }
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2015-05-27 09:37:41 +02:00
|
|
|
void Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, DrawFlags nFlags ) SAL_OVERRIDE;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2014-03-26 16:37:00 +01:00
|
|
|
void SetText( const OUString& rStr ) SAL_OVERRIDE;
|
|
|
|
OUString GetText() const SAL_OVERRIDE;
|
2015-05-09 14:14:14 +01:00
|
|
|
|
|
|
|
void SetEditModifyHdl( const Link<>& rLink );
|
2000-09-18 16:07:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2010-10-14 08:27:31 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|