Kaydet (Commit) 751191ed authored tarafından Caolán McNamara's avatar Caolán McNamara

move btndlg from vcl to toolkit

Change-Id: Iecc528bce1df9a67af43f9d9dd3ed41af24b0fad
Reviewed-on: https://gerrit.libreoffice.org/51713Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst bcb13925
......@@ -7976,7 +7976,6 @@ include/vcl/animate.hxx
include/vcl/bitmap.hxx
include/vcl/bitmapaccess.hxx
include/vcl/bitmapex.hxx
include/vcl/btndlg.hxx
include/vcl/builder.hxx
include/vcl/builderfactory.hxx
include/vcl/button.hxx
......@@ -16739,6 +16738,7 @@ testtools/source/performance/ubtest.cxx
toolkit/inc/helper/accessibilityclient.hxx
toolkit/inc/helper/imagealign.hxx
toolkit/inc/helper/tkresmgr.hxx
toolkit/inc/helper/btndlg.hxx
toolkit/inc/helper/unopropertyarrayhelper.hxx
toolkit/inc/helper/unowrapper.hxx
toolkit/source/awt/animatedimagespeer.cxx
......@@ -16801,6 +16801,7 @@ toolkit/source/controls/unocontrolcontainermodel.cxx
toolkit/source/controls/unocontrolmodel.cxx
toolkit/source/controls/unocontrols.cxx
toolkit/source/helper/accessibilityclient.cxx
toolkit/source/helper/btndlg.cxx
toolkit/source/helper/formpdfexport.cxx
toolkit/source/helper/imagealign.cxx
toolkit/source/helper/listenermultiplexer.cxx
......@@ -18267,7 +18268,6 @@ vcl/source/window/accel.cxx
vcl/source/window/accessibility.cxx
vcl/source/window/accmgr.cxx
vcl/source/window/brdwin.cxx
vcl/source/window/btndlg.cxx
vcl/source/window/builder.cxx
vcl/source/window/clipping.cxx
vcl/source/window/commandevent.cxx
......
......@@ -109,6 +109,7 @@ $(eval $(call gb_Library_add_exception_objects,tk,\
toolkit/source/controls/unocontrolmodel \
toolkit/source/controls/unocontrols \
toolkit/source/helper/accessibilityclient \
toolkit/source/helper/btndlg \
toolkit/source/helper/formpdfexport \
toolkit/source/helper/imagealign \
toolkit/source/helper/listenermultiplexer \
......
......@@ -20,7 +20,6 @@
#ifndef INCLUDED_VCL_BTNDLG_HXX
#define INCLUDED_VCL_BTNDLG_HXX
#include <vcl/dllapi.h>
#include <vcl/dialog.hxx>
#include <o3tl/typed_flags_set.hxx>
......@@ -47,7 +46,7 @@ namespace o3tl
template<> struct typed_flags<ButtonDialogFlags> : is_typed_flags<ButtonDialogFlags, 0x001f> {};
}
class VCL_DLLPUBLIC ButtonDialog : public Dialog
class ButtonDialog : public Dialog
{
public:
ButtonDialog( vcl::Window* pParent, WinBits nStyle );
......@@ -83,11 +82,11 @@ private:
sal_uInt16 mnFocusButtonId;
bool mbFormat;
SAL_DLLPRIVATE void ImplInitButtonDialogData();
SAL_DLLPRIVATE VclPtr<PushButton> ImplCreatePushButton( ButtonDialogFlags nBtnFlags );
SAL_DLLPRIVATE ImplBtnDlgItem* ImplGetItem( sal_uInt16 nId ) const;
DECL_DLLPRIVATE_LINK( ImplClickHdl, Button* pBtn, void );
SAL_DLLPRIVATE void ImplPosControls();
void ImplInitButtonDialogData();
VclPtr<PushButton> ImplCreatePushButton( ButtonDialogFlags nBtnFlags );
ImplBtnDlgItem* ImplGetItem( sal_uInt16 nId ) const;
DECL_LINK( ImplClickHdl, Button* pBtn, void );
void ImplPosControls();
};
......
......@@ -18,7 +18,7 @@
*/
#include <o3tl/typed_flags_set.hxx>
#include <vcl/btndlg.hxx>
#include <helper/btndlg.hxx>
// Window-Bits for MessageBoxen
enum class MessBoxStyle
......
......@@ -18,10 +18,9 @@
*/
#include <memory>
#include <svdata.hxx>
#include <vcl/button.hxx>
#include <vcl/btndlg.hxx>
#include <helper/btndlg.hxx>
struct ImplBtnDlgItem
......
......@@ -142,7 +142,6 @@ $(eval $(call gb_Library_add_exception_objects,vcl,\
vcl/source/window/stacking \
vcl/source/window/debug \
vcl/source/window/globalization \
vcl/source/window/btndlg \
vcl/source/window/builder \
vcl/source/window/commandevent \
vcl/source/window/cursor \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment