]> git.saurik.com Git - wxWidgets.git/blame - src/common/fddlgcmn.cpp
Allow to specify the title used by wxPreferencesEditor window.
[wxWidgets.git] / src / common / fddlgcmn.cpp
CommitLineData
8db37e06 1/////////////////////////////////////////////////////////////////////////////
80fdcdb9 2// Name: src/common/fddlgcmn.cpp
8db37e06
VZ
3// Purpose: common parts of wxFindReplaceDialog implementations
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 01.08.01
2903e699 7// RCS-ID: $Id$
8db37e06 8// Copyright: (c) 2001 Vadim Zeitlin
65571936 9// Licence: wxWindows licence
8db37e06
VZ
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
8db37e06
VZ
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
24 #pragma hdrstop
25#endif
26
27#if wxUSE_FINDREPLDLG
28
29#ifndef WX_PRECOMP
30#endif
31
32#include "wx/fdrepdlg.h"
33
34// ----------------------------------------------------------------------------
35// wxWin macros
36// ----------------------------------------------------------------------------
37
38IMPLEMENT_DYNAMIC_CLASS(wxFindDialogEvent, wxCommandEvent)
39
ce7fe42e
VZ
40wxDEFINE_EVENT( wxEVT_FIND, wxFindDialogEvent );
41wxDEFINE_EVENT( wxEVT_FIND_NEXT, wxFindDialogEvent );
42wxDEFINE_EVENT( wxEVT_FIND_REPLACE, wxFindDialogEvent );
43wxDEFINE_EVENT( wxEVT_FIND_REPLACE_ALL, wxFindDialogEvent );
44wxDEFINE_EVENT( wxEVT_FIND_CLOSE, wxFindDialogEvent );
8db37e06
VZ
45
46// ============================================================================
47// implementations
48// ============================================================================
49
50// ----------------------------------------------------------------------------
51// wxFindReplaceData
52// ----------------------------------------------------------------------------
53
54void wxFindReplaceData::Init()
55{
56 m_Flags = 0;
57}
58
59// ----------------------------------------------------------------------------
60// wxFindReplaceDialogBase
61// ----------------------------------------------------------------------------
62
63wxFindReplaceDialogBase::~wxFindReplaceDialogBase()
64{
65}
66
67void wxFindReplaceDialogBase::Send(wxFindDialogEvent& event)
68{
69 // we copy the data to dialog->GetData() as well
70
71 m_FindReplaceData->m_Flags = event.GetFlags();
72 m_FindReplaceData->m_FindWhat = event.GetFindString();
a62848fd 73 if ( HasFlag(wxFR_REPLACEDIALOG) &&
ce7fe42e
VZ
74 (event.GetEventType() == wxEVT_FIND_REPLACE ||
75 event.GetEventType() == wxEVT_FIND_REPLACE_ALL) )
8db37e06
VZ
76 {
77 m_FindReplaceData->m_ReplaceWith = event.GetReplaceString();
78 }
79
ce7fe42e
VZ
80 // translate wxEVT_FIND_NEXT to wxEVT_FIND if needed
81 if ( event.GetEventType() == wxEVT_FIND_NEXT )
8db37e06
VZ
82 {
83 if ( m_FindReplaceData->m_FindWhat != m_lastSearch )
84 {
ce7fe42e 85 event.SetEventType(wxEVT_FIND);
8db37e06
VZ
86
87 m_lastSearch = m_FindReplaceData->m_FindWhat;
88 }
89 }
90
91 if ( !GetEventHandler()->ProcessEvent(event) )
92 {
93 // the event is not propagated upwards to the parent automatically
94 // because the dialog is a top level window, so do it manually as
95 // in 9 cases of 10 the message must be processed by the dialog
96 // owner and not the dialog itself
97 (void)GetParent()->GetEventHandler()->ProcessEvent(event);
98 }
99}
100
101#endif // wxUSE_FINDREPLDLG
102