mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-13 17:49:14 +01:00
d14efe561b
long become wxWidgets 2.9.2, which in turn is expected to be the last 2.9 release before the 3.0 stable release. Since the full wxWidgets distribution is rather large, I have imported only the parts that we use, on a subdirectory basis: art include/wx/*.* include/wx/aui include/wx/cocoa include/wx/generic include/wx/gtk include/wx/meta include/wx/msw include/wx/osx include/wx/persist include/wx/private include/wx/protocol include/wx/unix src/aui src/common src/generic src/gtk src/msw src/osx src/unix git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7380 8ced0084-cf51-0410-be5f-012b33b47a6e
63 lines
2.0 KiB
C++
63 lines
2.0 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/msw/fdrepdlg.h
|
|
// Purpose: wxFindReplaceDialog class
|
|
// Author: Markus Greither
|
|
// Modified by: 31.07.01: VZ: integrated into wxWidgets
|
|
// Created: 23/03/2001
|
|
// RCS-ID: $Id: fdrepdlg.h 58757 2009-02-08 11:45:59Z VZ $
|
|
// Copyright: (c) Markus Greither
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_MSW_FDREPDLG_H_
|
|
#define _WX_MSW_FDREPDLG_H_
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxFindReplaceDialog: dialog for searching / replacing text
|
|
// ----------------------------------------------------------------------------
|
|
|
|
class WXDLLIMPEXP_CORE wxFindReplaceDialog : public wxFindReplaceDialogBase
|
|
{
|
|
public:
|
|
// ctors and such
|
|
wxFindReplaceDialog() { Init(); }
|
|
wxFindReplaceDialog(wxWindow *parent,
|
|
wxFindReplaceData *data,
|
|
const wxString &title,
|
|
int style = 0);
|
|
|
|
bool Create(wxWindow *parent,
|
|
wxFindReplaceData *data,
|
|
const wxString &title,
|
|
int style = 0);
|
|
|
|
virtual ~wxFindReplaceDialog();
|
|
|
|
// implementation only from now on
|
|
|
|
wxFindReplaceDialogImpl *GetImpl() const { return m_impl; }
|
|
|
|
// override some base class virtuals
|
|
virtual bool Show(bool show = true);
|
|
virtual void SetTitle( const wxString& title);
|
|
virtual wxString GetTitle() const;
|
|
|
|
protected:
|
|
virtual void DoGetSize(int *width, int *height) const;
|
|
virtual void DoGetClientSize(int *width, int *height) const;
|
|
virtual void DoSetSize(int x, int y,
|
|
int width, int height,
|
|
int sizeFlags = wxSIZE_AUTO);
|
|
|
|
void Init();
|
|
|
|
wxString m_title;
|
|
|
|
wxFindReplaceDialogImpl *m_impl;
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxFindReplaceDialog)
|
|
wxDECLARE_NO_COPY_CLASS(wxFindReplaceDialog);
|
|
};
|
|
|
|
#endif // _WX_MSW_FDREPDLG_H_
|