git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38717
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
35 files changed:
{ wxT("wxCB_SORT"), wxCB_SORT },
/* wxGauge */
{ wxT("wxCB_SORT"), wxCB_SORT },
/* wxGauge */
+#if WXWIN_COMPATIBILITY_2_6
{ wxT("wxGA_PROGRESSBAR"), wxGA_PROGRESSBAR },
{ wxT("wxGA_PROGRESSBAR"), wxGA_PROGRESSBAR },
+#endif // WXWIN_COMPATIBILITY_2_6
{ wxT("wxGA_HORIZONTAL"), wxGA_HORIZONTAL },
{ wxT("wxGA_VERTICAL"), wxGA_VERTICAL },
{ wxT("wxGA_HORIZONTAL"), wxGA_HORIZONTAL },
{ wxT("wxGA_VERTICAL"), wxGA_VERTICAL },
// wxr2xml.cpp: implementation of the wxr2xml class.
// 8/30/00 Brian Gavin
// only tested on wxMSW so far
// wxr2xml.cpp: implementation of the wxr2xml class.
// 8/30/00 Brian Gavin
// only tested on wxMSW so far
-//License: wxWindows Liscense
+// License: wxWindows Liscense
// ////////////////////////////////////////////////////////////////////
/*
// ////////////////////////////////////////////////////////////////////
/*
}
bool wxr2xml::Convert(wxString wxrfile, wxString xmlfile)
}
bool wxr2xml::Convert(wxString wxrfile, wxString xmlfile)
s += _T("wxGA_HORIZONTAL|");
if (style & wxGA_VERTICAL)
s += _T("wxGA_VERTICAL|");
s += _T("wxGA_HORIZONTAL|");
if (style & wxGA_VERTICAL)
s += _T("wxGA_VERTICAL|");
- if (style & wxGA_PROGRESSBAR)
- s += _T("wxGA_PROGRESSBAR|");
// windows only
if (style & wxGA_SMOOTH)
s += _T("wxGA_SMOOTH|");
// windows only
if (style & wxGA_SMOOTH)
s += _T("wxGA_SMOOTH|");
// deactivated
virtual void SetActive(bool isActive, wxWindow *lastFocus);
// deactivated
virtual void SetActive(bool isActive, wxWindow *lastFocus);
+#if WXWIN_COMPATIBILITY_2_6
// OBSOLETE: don't use, always returns true
//
// returns true if the program is successfully initialized
// OBSOLETE: don't use, always returns true
//
// returns true if the program is successfully initialized
- bool Initialized() { return true; }
+ wxDEPRECATED( bool Initialized() );
+#endif // WXWIN_COMPATIBILITY_2_6
// perform standard OnIdle behaviour, ensure that this is always called
void OnIdle(wxIdleEvent& event);
// perform standard OnIdle behaviour, ensure that this is always called
void OnIdle(wxIdleEvent& event);
DECLARE_NO_COPY_CLASS(wxAppBase)
};
DECLARE_NO_COPY_CLASS(wxAppBase)
};
+#if WXWIN_COMPATIBILITY_2_6
+ inline bool wxAppBase::Initialized() { return true; }
+#endif // WXWIN_COMPATIBILITY_2_6
+
#endif // wxUSE_GUI
// ----------------------------------------------------------------------------
#endif // wxUSE_GUI
// ----------------------------------------------------------------------------
extern wxAppInitializer wxTheAppInitializer;
#endif // _WX_APP_H_BASE_
extern wxAppInitializer wxTheAppInitializer;
#endif // _WX_APP_H_BASE_
// Win32 only, is default (and only) on some other platforms
#define wxGA_SMOOTH 0x0020
// Win32 only, is default (and only) on some other platforms
#define wxGA_SMOOTH 0x0020
-// obsolete style
-#define wxGA_PROGRESSBAR 0
+#if WXWIN_COMPATIBILITY_2_6
+ // obsolete style
+ #define wxGA_PROGRESSBAR 0
+#endif // WXWIN_COMPATIBILITY_2_6
extern WXDLLEXPORT_DATA(const wxChar) wxGaugeNameStr[];
extern WXDLLEXPORT_DATA(const wxChar) wxGaugeNameStr[];
// event.GetExtraLong())
void Command(wxCommandEvent& event);
// event.GetExtraLong())
void Command(wxCommandEvent& event);
+#if WXWIN_COMPATIBILITY_2_6
// compatibility - these functions are deprecated, use the new ones
// instead
// compatibility - these functions are deprecated, use the new ones
// instead
- bool Selected(int n) const { return IsSelected(n); }
+ wxDEPRECATED( bool Selected(int n) const );
// returns the item number at a point or wxNOT_FOUND
// returns the item number at a point or wxNOT_FOUND
- int HitTest(const wxPoint& point) const { return DoListHitTest(point); }
+ wxDEPRECATED( int HitTest(const wxPoint& point) const );
+#endif // WXWIN_COMPATIBILITY_2_6
protected:
// NB: due to wxGTK implementation details, DoInsert() is implemented
protected:
// NB: due to wxGTK implementation details, DoInsert() is implemented
DECLARE_NO_COPY_CLASS(wxListBoxBase)
};
DECLARE_NO_COPY_CLASS(wxListBoxBase)
};
+#if WXWIN_COMPATIBILITY_2_6
+ inline bool wxListBoxBase::Selected(int n) const { return IsSelected(n); }
+ inline int wxListBoxBase::HitTest(const wxPoint& point) const { return DoListHitTest(point); }
+#endif // WXWIN_COMPATIBILITY_2_6
+
// ----------------------------------------------------------------------------
// include the platform-specific class declaration
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// include the platform-specific class declaration
// ----------------------------------------------------------------------------
wxStreamBuffer *GetInputStreamBuffer() const { return m_i_streambuf; }
wxStreamBuffer *GetInputStreamBuffer() const { return m_i_streambuf; }
+#if WXWIN_COMPATIBILITY_2_6
// deprecated, compatibility only
// deprecated, compatibility only
- wxStreamBuffer *InputStreamBuffer() const { return m_i_streambuf; }
+ wxDEPRECATED( wxStreamBuffer *InputStreamBuffer() const );
+#endif // WXWIN_COMPATIBILITY_2_6
protected:
wxStreamBuffer *m_i_streambuf;
protected:
wxStreamBuffer *m_i_streambuf;
wxStreamBuffer *GetOutputStreamBuffer() const { return m_o_streambuf; }
wxStreamBuffer *GetOutputStreamBuffer() const { return m_o_streambuf; }
+#if WXWIN_COMPATIBILITY_2_6
// deprecated, compatibility only
// deprecated, compatibility only
- wxStreamBuffer *OutputStreamBuffer() const { return m_o_streambuf; }
+ wxDEPRECATED( wxStreamBuffer *OutputStreamBuffer() const );
+#endif // WXWIN_COMPATIBILITY_2_6
protected:
wxStreamBuffer *m_o_streambuf;
protected:
wxStreamBuffer *m_o_streambuf;
DECLARE_NO_COPY_CLASS(wxMemoryOutputStream)
};
DECLARE_NO_COPY_CLASS(wxMemoryOutputStream)
};
+#if WXWIN_COMPATIBILITY_2_6
+ inline wxStreamBuffer *wxMemoryInputStream::InputStreamBuffer() const { return m_i_streambuf; }
+ inline wxStreamBuffer *wxMemoryOutputStream::OutputStreamBuffer() const { return m_o_streambuf; }
+#endif // WXWIN_COMPATIBILITY_2_6
+
#endif
// wxUSE_STREAMS
#endif
// _WX_WXMMSTREAM_H__
#endif
// wxUSE_STREAMS
#endif
// _WX_WXMMSTREAM_H__
// Windows callbacks
WXLRESULT MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
// Windows callbacks
WXLRESULT MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
- // obsolete methods
- // ----------------
-
+#if WXWIN_COMPATIBILITY_2_6
// use the other ctor
wxDEPRECATED( wxDialog(wxWindow *parent,
const wxString& title, bool modal,
// use the other ctor
wxDEPRECATED( wxDialog(wxWindow *parent,
const wxString& title, bool modal,
// use IsModal()
wxDEPRECATED( bool IsModalShowing() const );
// use IsModal()
wxDEPRECATED( bool IsModalShowing() const );
+#endif // WXWIN_COMPATIBILITY_2_6
// handle Escape here
virtual bool MSWProcessMessage(WXMSG* pMsg);
// handle Escape here
virtual bool MSWProcessMessage(WXMSG* pMsg);
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
+#if WXWIN_COMPATIBILITY_2_6
// obsolete stuff, for compatibility only -- don't use
wxDEPRECATED( int GetItemSpacing(bool isSmall) const);
// obsolete stuff, for compatibility only -- don't use
wxDEPRECATED( int GetItemSpacing(bool isSmall) const);
+#endif // WXWIN_COMPATIBILITY_2_6
// convert our styles to Windows
virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
// convert our styles to Windows
virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
virtual wxString OnGetItemText(long item, long column) const;
// return the icon for the given item. In report view, OnGetItemImage will
virtual wxString OnGetItemText(long item, long column) const;
// return the icon for the given item. In report view, OnGetItemImage will
- // only be called for the first column. See OnGetItemColumnImage for
+ // only be called for the first column. See OnGetItemColumnImage for
// details.
virtual int OnGetItemImage(long item) const;
// details.
virtual int OnGetItemImage(long item) const;
#endif // wxUSE_LISTCTRL
#endif // _WX_LISTCTRL_H_
#endif // wxUSE_LISTCTRL
#endif // _WX_LISTCTRL_H_
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
+// Name: wx/os2/dialog.h
// Purpose: wxDialog class
// Author: David Webster
// Modified by:
// Purpose: wxDialog class
// Author: David Webster
// Modified by:
,WXWPARAM wParam
,WXLPARAM lParam
);
,WXWPARAM wParam
,WXLPARAM lParam
);
- // obsolete methods
- // ----------------
+#if WXWIN_COMPATIBILITY_2_6
// Constructor with a modal flag, but no window id - the old convention
wxDEPRECATED( wxDialog( wxWindow* pParent
// Constructor with a modal flag, but no window id - the old convention
wxDEPRECATED( wxDialog( wxWindow* pParent
// use IsModal()
wxDEPRECATED( bool IsModalShowing() const );
// use IsModal()
wxDEPRECATED( bool IsModalShowing() const );
+#endif // WXWIN_COMPATIBILITY_2_6
+
protected:
//
// find the window to use as parent for this dialog if none has been
protected:
//
// find the window to use as parent for this dialog if none has been
}; // end of CLASS wxDialog
#endif // _WX_DIALOG_H_
}; // end of CLASS wxDialog
#endif // _WX_DIALOG_H_
#define wxSL_SELRANGE 0x0800
#define wxSL_INVERSE 0x1000
#define wxSL_SELRANGE 0x0800
#define wxSL_INVERSE 0x1000
-// obsolete
-#define wxSL_NOTIFY_DRAG 0x0000
-
+#if WXWIN_COMPATIBILITY_2_6
+ // obsolete
+ #define wxSL_NOTIFY_DRAG 0x0000
+#endif // WXWIN_COMPATIBILITY_2_6
extern WXDLLEXPORT_DATA(const wxChar) wxSliderNameStr[];
extern WXDLLEXPORT_DATA(const wxChar) wxSliderNameStr[];
#define wxSP_BORDER wxSP_3DBORDER
#define wxSP_3D (wxSP_3DBORDER | wxSP_3DSASH)
#define wxSP_BORDER wxSP_3DBORDER
#define wxSP_3D (wxSP_3DBORDER | wxSP_3DSASH)
-// obsolete styles, don't do anything
-#define wxSP_SASH_AQUA 0
-#define wxSP_FULLSASH 0
+#if WXWIN_COMPATIBILITY_2_6
+ // obsolete styles, don't do anything
+ #define wxSP_SASH_AQUA 0
+ #define wxSP_FULLSASH 0
+#endif // WXWIN_COMPATIBILITY_2_6
BEGIN_DECLARE_EVENT_TYPES()
DECLARE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED, 850)
BEGIN_DECLARE_EVENT_TYPES()
DECLARE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED, 850)
#endif // wxUSE_STOPWATCH
#endif // wxUSE_STOPWATCH
+#if wxUSE_LONGLONG && WXWIN_COMPATIBILITY_2_6
-// Starts a global timer
-// -- DEPRECATED: use wxStopWatch instead
-void WXDLLIMPEXP_BASE wxStartTimer();
+ // Starts a global timer
+ // -- DEPRECATED: use wxStopWatch instead
+ wxDEPRECATED( void WXDLLIMPEXP_BASE wxStartTimer() );
-// Gets elapsed milliseconds since last wxStartTimer or wxGetElapsedTime
-// -- DEPRECATED: use wxStopWatch instead
-long WXDLLIMPEXP_BASE wxGetElapsedTime(bool resetTimer = true);
+ // Gets elapsed milliseconds since last wxStartTimer or wxGetElapsedTime
+ // -- DEPRECATED: use wxStopWatch instead
+ wxDEPRECATED( long WXDLLIMPEXP_BASE wxGetElapsedTime(bool resetTimer = true) );
-#endif // wxUSE_LONGLONG
+#endif // wxUSE_LONGLONG && WXWIN_COMPATIBILITY_2_6
// ----------------------------------------------------------------------------
// global time functions
// ----------------------------------------------------------------------------
// global time functions
#define wxGetCurrentTime() wxGetLocalTime()
#endif // _WX_STOPWATCH_H_
#define wxGetCurrentTime() wxGetLocalTime()
#endif // _WX_STOPWATCH_H_
wxInputStream *GetInputStream() const;
wxOutputStream *GetOutputStream() const;
wxInputStream *GetInputStream() const;
wxOutputStream *GetOutputStream() const;
+#if WXWIN_COMPATIBILITY_2_6
// deprecated, for compatibility only
// deprecated, for compatibility only
- wxStreamBase *Stream() { return m_stream; }
+ wxDEPRECATED( wxStreamBase *Stream() );
+#endif // WXWIN_COMPATIBILITY_2_6
// this constructs a dummy wxStreamBuffer, used by (and exists for)
// wxMemoryStreams only, don't use!
// this constructs a dummy wxStreamBuffer, used by (and exists for)
// wxMemoryStreams only, don't use!
void SetInputStreamBuffer(wxStreamBuffer *buffer);
wxStreamBuffer *GetInputStreamBuffer() const { return m_i_streambuf; }
void SetInputStreamBuffer(wxStreamBuffer *buffer);
wxStreamBuffer *GetInputStreamBuffer() const { return m_i_streambuf; }
+#if WXWIN_COMPATIBILITY_2_6
// deprecated, for compatibility only
// deprecated, for compatibility only
- wxStreamBuffer *InputStreamBuffer() const { return m_i_streambuf; }
+ wxDEPRECATED( wxStreamBuffer *InputStreamBuffer() const );
+#endif // WXWIN_COMPATIBILITY_2_6
protected:
virtual size_t OnSysRead(void *buffer, size_t bufsize);
protected:
virtual size_t OnSysRead(void *buffer, size_t bufsize);
void SetOutputStreamBuffer(wxStreamBuffer *buffer);
wxStreamBuffer *GetOutputStreamBuffer() const { return m_o_streambuf; }
void SetOutputStreamBuffer(wxStreamBuffer *buffer);
wxStreamBuffer *GetOutputStreamBuffer() const { return m_o_streambuf; }
+#if WXWIN_COMPATIBILITY_2_6
// deprecated, for compatibility only
// deprecated, for compatibility only
- wxStreamBuffer *OutputStreamBuffer() const { return m_o_streambuf; }
+ wxDEPRECATED( wxStreamBuffer *OutputStreamBuffer() const );
+#endif // WXWIN_COMPATIBILITY_2_6
protected:
virtual size_t OnSysWrite(const void *buffer, size_t bufsize);
protected:
virtual size_t OnSysWrite(const void *buffer, size_t bufsize);
DECLARE_NO_COPY_CLASS(wxBufferedOutputStream)
};
DECLARE_NO_COPY_CLASS(wxBufferedOutputStream)
};
+#if WXWIN_COMPATIBILITY_2_6
+ inline wxStreamBase *wxStreamBuffer::Stream() { return m_stream; }
+ inline wxStreamBuffer *wxBufferedInputStream::InputStreamBuffer() const { return m_i_streambuf; }
+ inline wxStreamBuffer *wxBufferedOutputStream::OutputStreamBuffer() const { return m_o_streambuf; }
+#endif // WXWIN_COMPATIBILITY_2_6
+
#endif // wxUSE_STREAMS
#endif // _WX_WXSTREAM_H__
#endif // wxUSE_STREAMS
#endif // _WX_WXSTREAM_H__
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// Purpose: wxTextCtrlBase class - the interface of wxTextCtrl
// Author: Vadim Zeitlin
// Modified by:
// Purpose: wxTextCtrlBase class - the interface of wxTextCtrl
// Author: Vadim Zeitlin
// Modified by:
#define wxTE_WORDWRAP 0x0001 // wrap only at words boundaries
#define wxTE_BESTWRAP 0x0000 // this is the default
#define wxTE_WORDWRAP 0x0001 // wrap only at words boundaries
#define wxTE_BESTWRAP 0x0000 // this is the default
-// obsolete synonym
-#define wxTE_LINEWRAP wxTE_CHARWRAP
+#if WXWIN_COMPATIBILITY_2_6
+ // obsolete synonym
+ #define wxTE_LINEWRAP wxTE_CHARWRAP
+#endif // WXWIN_COMPATIBILITY_2_6
// force using RichEdit version 2.0 or 3.0 instead of 1.0 (default) for
// wxTE_RICH controls - can be used together with or instead of wxTE_RICH
// force using RichEdit version 2.0 or 3.0 instead of 1.0 (default) for
// wxTE_RICH controls - can be used together with or instead of wxTE_RICH
+#if WXWIN_COMPATIBILITY_2_6
// deprecated version, don't use
// deprecated version, don't use
- bool Wait(unsigned long milliseconds)
- { return WaitTimeout(milliseconds) == wxCOND_NO_ERROR; }
+ wxDEPRECATED( bool Wait(unsigned long milliseconds) );
+#endif // WXWIN_COMPATIBILITY_2_6
private:
wxConditionInternal *m_internal;
private:
wxConditionInternal *m_internal;
DECLARE_NO_COPY_CLASS(wxCondition)
};
DECLARE_NO_COPY_CLASS(wxCondition)
};
+#if WXWIN_COMPATIBILITY_2_6
+ inline bool wxCondition::Wait(unsigned long milliseconds)
+ { return WaitTimeout(milliseconds) == wxCOND_NO_ERROR; }
+#endif // WXWIN_COMPATIBILITY_2_6
+
// ----------------------------------------------------------------------------
// wxSemaphore: a counter limiting the number of threads concurrently accessing
// a shared resource
// ----------------------------------------------------------------------------
// wxSemaphore: a counter limiting the number of threads concurrently accessing
// a shared resource
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// Purpose: wxTreeCtrl base classes and types
// Author: Julian Smart et al
// Modified by:
// Purpose: wxTreeCtrl base classes and types
// Author: Julian Smart et al
// Modified by:
#include "wx/event.h"
#include "wx/dynarray.h"
#include "wx/event.h"
#include "wx/dynarray.h"
+#if WXWIN_COMPATIBILITY_2_6
+
// flags for deprecated `Expand(int action)', will be removed in next versions
enum
{
// flags for deprecated `Expand(int action)', will be removed in next versions
enum
{
+#endif // WXWIN_COMPATIBILITY_2_6
+
// ----------------------------------------------------------------------------
// wxTreeItemId identifies an element of the tree. In this implementation, it's
// just a trivial wrapper around Win32 HTREEITEM or a pointer to some private
// ----------------------------------------------------------------------------
// wxTreeItemId identifies an element of the tree. In this implementation, it's
// just a trivial wrapper around Win32 HTREEITEM or a pointer to some private
#define wxTR_DEFAULT_STYLE (wxTR_HAS_BUTTONS | wxTR_LINES_AT_ROOT)
#endif
#define wxTR_DEFAULT_STYLE (wxTR_HAS_BUTTONS | wxTR_LINES_AT_ROOT)
#endif
+#if WXWIN_COMPATIBILITY_2_6
// deprecated, don't use
#define wxTR_MAC_BUTTONS 0
#define wxTR_AQUA_BUTTONS 0
// deprecated, don't use
#define wxTR_MAC_BUTTONS 0
#define wxTR_AQUA_BUTTONS 0
+#endif // WXWIN_COMPATIBILITY_2_6
// values for the `flags' parameter of wxTreeCtrl::HitTest() which determine
// values for the `flags' parameter of wxTreeCtrl::HitTest() which determine
#endif // wxUSE_TREECTRL
#endif // _WX_TREEBASE_H_
#endif // wxUSE_TREECTRL
#endif // _WX_TREEBASE_H_
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// Purpose: Text stream classes
// Author: Guilhem Lavaux
// Modified by:
// Purpose: Text stream classes
// Author: Guilhem Lavaux
// Modified by:
wxInt16 Read16S(int base = 10);
wxInt8 Read8S(int base = 10);
double ReadDouble();
wxInt16 Read16S(int base = 10);
wxInt8 Read8S(int base = 10);
double ReadDouble();
- wxString ReadString(); // deprecated: use ReadLine or ReadWord instead
wxString ReadLine();
wxString ReadWord();
wxChar GetChar() { wxChar c = NextChar(); return (wxChar)(c != wxEOT ? c : 0); }
wxString ReadLine();
wxString ReadWord();
wxChar GetChar() { wxChar c = NextChar(); return (wxChar)(c != wxEOT ? c : 0); }
wxTextInputStream& operator>>( __wxTextInputManip func) { return func(*this); }
wxTextInputStream& operator>>( __wxTextInputManip func) { return func(*this); }
+#if WXWIN_COMPATIBILITY_2_6
+ wxDEPRECATED( wxString ReadString() ); // use ReadLine or ReadWord instead
+#endif // WXWIN_COMPATIBILITY_2_6
+
protected:
wxInputStream &m_input;
wxString m_separators;
protected:
wxInputStream &m_input;
wxString m_separators;
// get the (first) top level parent window
WXDLLEXPORT wxWindow* wxGetTopLevelParent(wxWindow *win);
// get the (first) top level parent window
WXDLLEXPORT wxWindow* wxGetTopLevelParent(wxWindow *win);
-// deprecated (doesn't start with 'wx' prefix), use wxWindow::NewControlId()
-inline int NewControlId() { return wxWindowBase::NewControlId(); }
+#if WXWIN_COMPATIBILITY_2_6
+ // deprecated (doesn't start with 'wx' prefix), use wxWindow::NewControlId()
+ wxDEPRECATED( int NewControlId() );
+ inline int NewControlId() { return wxWindowBase::NewControlId(); }
+#endif // WXWIN_COMPATIBILITY_2_6
#if wxUSE_ACCESSIBILITY
// ----------------------------------------------------------------------------
#if wxUSE_ACCESSIBILITY
// ----------------------------------------------------------------------------
break;
case WrapStyle_Char:
break;
case WrapStyle_Char:
- flags |= wxTE_LINEWRAP;
+ flags |= wxTE_CHARWRAP;
break;
case WrapStyle_Best:
break;
case WrapStyle_Best:
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
+// Name: src/common/txtstrm.cpp
// Purpose: Text stream classes
// Author: Guilhem Lavaux
// Modified by:
// Purpose: Text stream classes
// Author: Guilhem Lavaux
// Modified by:
return wxStrtod(word.c_str(), 0);
}
return wxStrtod(word.c_str(), 0);
}
+#if WXWIN_COMPATIBILITY_2_6
+
wxString wxTextInputStream::ReadString()
{
return ReadLine();
}
wxString wxTextInputStream::ReadString()
{
return ReadLine();
}
+#endif // WXWIN_COMPATIBILITY_2_6
+
wxString wxTextInputStream::ReadLine()
{
wxString line;
wxString wxTextInputStream::ReadLine()
{
wxString line;
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
+// Name: src/common/valgen.cpp
// Purpose: wxGenericValidator class
// Author: Kevin Smith
// Modified by:
// Purpose: wxGenericValidator class
// Author: Kevin Smith
// Modified by:
if (m_validatorWindow->IsKindOf(CLASSINFO(wxToggleButton)) )
{
wxToggleButton * pControl = (wxToggleButton *) m_validatorWindow;
if (m_validatorWindow->IsKindOf(CLASSINFO(wxToggleButton)) )
{
wxToggleButton * pControl = (wxToggleButton *) m_validatorWindow;
- if (m_pBool)
- {
- pControl->SetValue(*m_pBool);
- return true;
- }
+ if (m_pBool)
+ {
+ pControl->SetValue(*m_pBool);
+ return true;
+ }
#if wxUSE_TOGGLEBTN
if (m_validatorWindow->IsKindOf(CLASSINFO(wxToggleButton)) )
{
#if wxUSE_TOGGLEBTN
if (m_validatorWindow->IsKindOf(CLASSINFO(wxToggleButton)) )
{
- wxToggleButton *pControl = (wxToggleButton *) m_validatorWindow;
- if (m_pBool)
- {
- *m_pBool = pControl->GetValue() ;
- return true;
- }
+ wxToggleButton *pControl = (wxToggleButton *) m_validatorWindow;
+ if (m_pBool)
+ {
+ *m_pBool = pControl->GetValue() ;
+ return true;
+ }
count = pControl->GetCount();
for ( i = 0; i < count; i++ )
{
count = pControl->GetCount();
for ( i = 0; i < count; i++ )
{
- if (pControl->Selected(i))
+ if (pControl->IsSelected(i))
#endif
// wxUSE_VALIDATORS
#endif
// wxUSE_VALIDATORS
{
wxTextInputStream s(str);
{
wxTextInputStream s(str);
- m_value = s.ReadString();
+ m_value = s.ReadLine();
return true;
}
#endif // wxUSE_STREAMS
return true;
}
#endif // wxUSE_STREAMS
+#if WXWIN_COMPATIBILITY_2_6
+
// deprecated ctor
wxDialog::wxDialog(wxWindow *parent,
const wxString& title,
// deprecated ctor
wxDialog::wxDialog(wxWindow *parent,
const wxString& title,
// nothing to do, obsolete method
}
// nothing to do, obsolete method
}
+#endif // WXWIN_COMPATIBILITY_2_6
+
wxDialog::~wxDialog()
{
m_isBeingDeleted = true;
wxDialog::~wxDialog()
{
m_isBeingDeleted = true;
// showing the dialogs
// ----------------------------------------------------------------------------
// showing the dialogs
// ----------------------------------------------------------------------------
+#if WXWIN_COMPATIBILITY_2_6
+
bool wxDialog::IsModalShowing() const
{
return IsModal();
}
bool wxDialog::IsModalShowing() const
{
return IsModal();
}
+#endif // WXWIN_COMPATIBILITY_2_6
+
wxWindow *wxDialog::FindSuitableParent() const
{
// first try to use the currently active window
wxWindow *wxDialog::FindSuitableParent() const
{
// first try to use the currently active window
wxFLAGS_MEMBER(wxGA_HORIZONTAL)
wxFLAGS_MEMBER(wxGA_VERTICAL)
wxFLAGS_MEMBER(wxGA_HORIZONTAL)
wxFLAGS_MEMBER(wxGA_VERTICAL)
+#if WXWIN_COMPATIBILITY_2_6
wxFLAGS_MEMBER(wxGA_PROGRESSBAR)
wxFLAGS_MEMBER(wxGA_PROGRESSBAR)
+#endif // WXWIN_COMPATIBILITY_2_6
wxFLAGS_MEMBER(wxGA_SMOOTH)
wxEND_FLAGS( wxGaugeStyle )
wxFLAGS_MEMBER(wxGA_SMOOTH)
wxEND_FLAGS( wxGaugeStyle )
return wxSize(LOWORD(spacing), HIWORD(spacing));
}
return wxSize(LOWORD(spacing), HIWORD(spacing));
}
+#if WXWIN_COMPATIBILITY_2_6
+
int wxListCtrl::GetItemSpacing(bool isSmall) const
{
return ListView_GetItemSpacing(GetHwnd(), (BOOL) isSmall);
}
int wxListCtrl::GetItemSpacing(bool isSmall) const
{
return ListView_GetItemSpacing(GetHwnd(), (BOOL) isSmall);
}
+#endif // WXWIN_COMPATIBILITY_2_6
+
void wxListCtrl::SetItemTextColour( long item, const wxColour &col )
{
wxListItem info;
void wxListCtrl::SetItemTextColour( long item, const wxColour &col )
{
wxListItem info;
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
-// Name: msw/textctrl.cpp
+// Name: src/msw/textctrl.cpp
// Purpose: wxTextCtrl
// Author: Julian Smart
// Modified by:
// Purpose: wxTextCtrl
// Author: Julian Smart
// Modified by:
wxFLAGS_MEMBER(wxTE_CENTRE)
wxFLAGS_MEMBER(wxTE_RIGHT)
wxFLAGS_MEMBER(wxTE_DONTWRAP)
wxFLAGS_MEMBER(wxTE_CENTRE)
wxFLAGS_MEMBER(wxTE_RIGHT)
wxFLAGS_MEMBER(wxTE_DONTWRAP)
- wxFLAGS_MEMBER(wxTE_LINEWRAP)
+ wxFLAGS_MEMBER(wxTE_CHARWRAP)
wxFLAGS_MEMBER(wxTE_WORDWRAP)
wxEND_FLAGS( wxTextCtrlStyle )
wxFLAGS_MEMBER(wxTE_WORDWRAP)
wxEND_FLAGS( wxTextCtrlStyle )
if (!IsInkEdit())
{
if ( m_verRichEdit == 2 )
if (!IsInkEdit())
{
if ( m_verRichEdit == 2 )
if ( wxRichEditModule::Load(wxRichEditModule::Version_41) )
{
// yes, class name for version 4.1 really is 5.0
if ( wxRichEditModule::Load(wxRichEditModule::Version_41) )
{
// yes, class name for version 4.1 really is 5.0
}
#endif // wxUSE_RICHEDIT
}
#endif // wxUSE_RICHEDIT
// Pass IEM_InsertText (0) as wParam, in order to have the ink always
// converted to text.
::SendMessage(GetHwnd(), EM_SETINKINSERTMODE, 0, 0);
// Pass IEM_InsertText (0) as wParam, in order to have the ink always
// converted to text.
::SendMessage(GetHwnd(), EM_SETINKINSERTMODE, 0, 0);
// Make sure the mouse can be used for input
::SendMessage(GetHwnd(), EM_SETUSEMOUSEFORINPUT, 1, 0);
}
#endif
// Make sure the mouse can be used for input
::SendMessage(GetHwnd(), EM_SETUSEMOUSEFORINPUT, 1, 0);
}
#endif
// enable the events we're interested in: we want to get EN_CHANGE as
// for the normal controls
LPARAM mask = ENM_CHANGE;
// enable the events we're interested in: we want to get EN_CHANGE as
// for the normal controls
LPARAM mask = ENM_CHANGE;
static bool ms_inkEditLibLoadAttemped;
if (ms_inkEditLibLoadAttemped)
ms_inkEditLib.IsLoaded();
static bool ms_inkEditLibLoadAttemped;
if (ms_inkEditLibLoadAttemped)
ms_inkEditLib.IsLoaded();
ms_inkEditLibLoadAttemped = true;
ms_inkEditLibLoadAttemped = true;
wxLogNull logNull;
return ms_inkEditLib.Load(wxT("inked"));
}
wxLogNull logNull;
return ms_inkEditLib.Load(wxT("inked"));
}
wxFLAGS_MEMBER(wxGA_HORIZONTAL)
wxFLAGS_MEMBER(wxGA_VERTICAL)
wxFLAGS_MEMBER(wxGA_HORIZONTAL)
wxFLAGS_MEMBER(wxGA_VERTICAL)
- wxFLAGS_MEMBER(wxGA_PROGRESSBAR)
wxFLAGS_MEMBER(wxGA_SMOOTH)
wxEND_FLAGS( wxGaugeStyle )
wxFLAGS_MEMBER(wxGA_SMOOTH)
wxEND_FLAGS( wxGaugeStyle )
wxFLAGS_MEMBER(wxTE_CENTRE)
wxFLAGS_MEMBER(wxTE_RIGHT)
wxFLAGS_MEMBER(wxTE_DONTWRAP)
wxFLAGS_MEMBER(wxTE_CENTRE)
wxFLAGS_MEMBER(wxTE_RIGHT)
wxFLAGS_MEMBER(wxTE_DONTWRAP)
- wxFLAGS_MEMBER(wxTE_LINEWRAP)
+ wxFLAGS_MEMBER(wxTE_CHARWRAP)
wxFLAGS_MEMBER(wxTE_WORDWRAP)
wxEND_FLAGS( wxTextCtrlStyle )
wxFLAGS_MEMBER(wxTE_WORDWRAP)
wxEND_FLAGS( wxTextCtrlStyle )
//else: we can just see it
// wrap at any character or only at words boundaries?
//else: we can just see it
// wrap at any character or only at words boundaries?
- if ( !(GetWindowStyle() & wxTE_LINEWRAP) )
+ if ( !(GetWindowStyle() & wxTE_CHARWRAP) )
{
// find the (last) not word char before this word
wxTextCoord colWordStart;
{
// find the (last) not word char before this word
wxTextCoord colWordStart;
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
+// Name: src/xrc/xh_gauge.cpp
// Purpose: XRC resource for wxGauge
// Author: Bob Mitchell
// Created: 2000/03/21
// Purpose: XRC resource for wxGauge
// Author: Bob Mitchell
// Created: 2000/03/21
{
XRC_ADD_STYLE(wxGA_HORIZONTAL);
XRC_ADD_STYLE(wxGA_VERTICAL);
{
XRC_ADD_STYLE(wxGA_HORIZONTAL);
XRC_ADD_STYLE(wxGA_VERTICAL);
+#if WXWIN_COMPATIBILITY_2_6
XRC_ADD_STYLE(wxGA_PROGRESSBAR);
XRC_ADD_STYLE(wxGA_PROGRESSBAR);
+#endif // WXWIN_COMPATIBILITY_2_6
XRC_ADD_STYLE(wxGA_SMOOTH); // windows only
AddWindowStyles();
}
XRC_ADD_STYLE(wxGA_SMOOTH); // windows only
AddWindowStyles();
}
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
+// Name: src/xrc/xh_split.cpp
// Purpose: XRC resource for wxSplitterWindow
// Author: panga@freemail.hu, Vaclav Slavik
// Created: 2003/01/26
// Purpose: XRC resource for wxSplitterWindow
// Author: panga@freemail.hu, Vaclav Slavik
// Created: 2003/01/26
XRC_ADD_STYLE(wxSP_3D);
XRC_ADD_STYLE(wxSP_3DSASH);
XRC_ADD_STYLE(wxSP_3DBORDER);
XRC_ADD_STYLE(wxSP_3D);
XRC_ADD_STYLE(wxSP_3DSASH);
XRC_ADD_STYLE(wxSP_3DBORDER);
+#if WXWIN_COMPATIBILITY_2_6
XRC_ADD_STYLE(wxSP_FULLSASH);
XRC_ADD_STYLE(wxSP_FULLSASH);
+#endif // WXWIN_COMPATIBILITY_2_6
XRC_ADD_STYLE(wxSP_BORDER);
XRC_ADD_STYLE(wxSP_NOBORDER);
XRC_ADD_STYLE(wxSP_PERMIT_UNSPLIT);
XRC_ADD_STYLE(wxSP_BORDER);
XRC_ADD_STYLE(wxSP_NOBORDER);
XRC_ADD_STYLE(wxSP_PERMIT_UNSPLIT);
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
+// Name: src/xrc/xh_text.cpp
// Purpose: XRC resource for wxTextCtrl
// Author: Aleksandras Gluchovas
// Created: 2000/03/21
// Purpose: XRC resource for wxTextCtrl
// Author: Aleksandras Gluchovas
// Created: 2000/03/21
XRC_ADD_STYLE(wxTE_CENTRE);
XRC_ADD_STYLE(wxTE_RIGHT);
XRC_ADD_STYLE(wxTE_DONTWRAP);
XRC_ADD_STYLE(wxTE_CENTRE);
XRC_ADD_STYLE(wxTE_RIGHT);
XRC_ADD_STYLE(wxTE_DONTWRAP);
+#if WXWIN_COMPATIBILITY_2_6
XRC_ADD_STYLE(wxTE_LINEWRAP);
XRC_ADD_STYLE(wxTE_LINEWRAP);
+#endif // WXWIN_COMPATIBILITY_2_6
+ XRC_ADD_STYLE(wxTE_CHARWRAP);
XRC_ADD_STYLE(wxTE_WORDWRAP);
AddWindowStyles();
}
XRC_ADD_STYLE(wxTE_WORDWRAP);
AddWindowStyles();
}
// TODO: find sash pos from last time
int sashPos = 100;
// TODO: find sash pos from last time
int sashPos = 100;
- m_splitterWindow = new wxSplitterWindow(parent, ctID_PROPERTY_EDITOR_SPLITTER, wxDefaultPosition, wxSize(500, 400), wxSP_3DSASH|wxSP_FULLSASH/*|wxCLIP_CHILDREN*/ |wxBORDER_NONE|wxNO_FULL_REPAINT_ON_RESIZE);
+ m_splitterWindow = new wxSplitterWindow(parent, ctID_PROPERTY_EDITOR_SPLITTER, wxDefaultPosition, wxSize(500, 400), wxSP_3DSASH/*|wxCLIP_CHILDREN*/ |wxBORDER_NONE|wxNO_FULL_REPAINT_ON_RESIZE);
m_splitterWindow->SetMinimumPaneSize(10);
m_propertyDescriptionWindow = new wxHtmlWindow(m_splitterWindow, ctID_ATTRIBUTE_EDITOR_DESCRIPTION, wxDefaultPosition, wxSize(200, 60), wxSUNKEN_BORDER);
m_splitterWindow->SetMinimumPaneSize(10);
m_propertyDescriptionWindow = new wxHtmlWindow(m_splitterWindow, ctID_ATTRIBUTE_EDITOR_DESCRIPTION, wxDefaultPosition, wxSize(200, 60), wxSUNKEN_BORDER);
<value name="proxy-wxTE_CENTRE" type="bool">FALSE</value>
<value name="proxy-wxTE_RIGHT" type="bool">FALSE</value>
<value name="proxy-wxHSCROLL" type="bool">FALSE</value>
<value name="proxy-wxTE_CENTRE" type="bool">FALSE</value>
<value name="proxy-wxTE_RIGHT" type="bool">FALSE</value>
<value name="proxy-wxHSCROLL" type="bool">FALSE</value>
- <value name="proxy-wxTE_LINEWRAP" type="bool">FALSE</value>
+ <value name="proxy-wxTE_CHARWRAP" type="bool">FALSE</value>
<value name="proxy-wxTE_WORDWRAP" type="bool">FALSE</value>
<value name="proxy-wxNO_BORDER" type="bool">FALSE</value>
<value name="proxy-wxSIMPLE_BORDER" type="bool">FALSE</value>
<value name="proxy-wxTE_WORDWRAP" type="bool">FALSE</value>
<value name="proxy-wxNO_BORDER" type="bool">FALSE</value>
<value name="proxy-wxSIMPLE_BORDER" type="bool">FALSE</value>
<value name="proxy-wxTE_CENTRE" type="bool">FALSE</value>
<value name="proxy-wxTE_RIGHT" type="bool">FALSE</value>
<value name="proxy-wxHSCROLL" type="bool">FALSE</value>
<value name="proxy-wxTE_CENTRE" type="bool">FALSE</value>
<value name="proxy-wxTE_RIGHT" type="bool">FALSE</value>
<value name="proxy-wxHSCROLL" type="bool">FALSE</value>
- <value name="proxy-wxTE_LINEWRAP" type="bool">FALSE</value>
+ <value name="proxy-wxTE_CHARWRAP" type="bool">FALSE</value>
<value name="proxy-wxTE_WORDWRAP" type="bool">FALSE</value>
<value name="proxy-wxNO_BORDER" type="bool">FALSE</value>
<value name="proxy-wxSIMPLE_BORDER" type="bool">FALSE</value>
<value name="proxy-wxTE_WORDWRAP" type="bool">FALSE</value>
<value name="proxy-wxNO_BORDER" type="bool">FALSE</value>
<value name="proxy-wxSIMPLE_BORDER" type="bool">FALSE</value>
<value name="proxy-wxTE_CENTRE" type="bool">FALSE</value>
<value name="proxy-wxTE_RIGHT" type="bool">FALSE</value>
<value name="proxy-wxHSCROLL" type="bool">FALSE</value>
<value name="proxy-wxTE_CENTRE" type="bool">FALSE</value>
<value name="proxy-wxTE_RIGHT" type="bool">FALSE</value>
<value name="proxy-wxHSCROLL" type="bool">FALSE</value>
- <value name="proxy-wxTE_LINEWRAP" type="bool">FALSE</value>
+ <value name="proxy-wxTE_CHARWRAP" type="bool">FALSE</value>
<value name="proxy-wxTE_WORDWRAP" type="bool">FALSE</value>
<value name="proxy-wxNO_BORDER" type="bool">FALSE</value>
<value name="proxy-wxSIMPLE_BORDER" type="bool">FALSE</value>
<value name="proxy-wxTE_WORDWRAP" type="bool">FALSE</value>
<value name="proxy-wxNO_BORDER" type="bool">FALSE</value>
<value name="proxy-wxSIMPLE_BORDER" type="bool">FALSE</value>
<value name="proxy-wxSP_3DBORDER" type="bool">TRUE</value>
<value name="proxy-wxSP_BORDER" type="bool">FALSE</value>
<value name="proxy-wxSP_3DSASH" type="bool">TRUE</value>
<value name="proxy-wxSP_3DBORDER" type="bool">TRUE</value>
<value name="proxy-wxSP_BORDER" type="bool">FALSE</value>
<value name="proxy-wxSP_3DSASH" type="bool">TRUE</value>
- <value name="proxy-wxSP_FULLSASH" type="bool">FALSE</value>
<value name="proxy-wxSP_PERMIT_UNSPLIT" type="bool">FALSE</value>
<value name="proxy-wxSP_LIVE_UPDATE " type="bool">FALSE</value>
<value name="proxy-wxNO_BORDER" type="bool">TRUE</value>
<value name="proxy-wxSP_PERMIT_UNSPLIT" type="bool">FALSE</value>
<value name="proxy-wxSP_LIVE_UPDATE " type="bool">FALSE</value>
<value name="proxy-wxNO_BORDER" type="bool">TRUE</value>
<value name="proxy-wxTE_CENTRE" type="bool">FALSE</value>
<value name="proxy-wxTE_RIGHT" type="bool">FALSE</value>
<value name="proxy-wxHSCROLL" type="bool">FALSE</value>
<value name="proxy-wxTE_CENTRE" type="bool">FALSE</value>
<value name="proxy-wxTE_RIGHT" type="bool">FALSE</value>
<value name="proxy-wxHSCROLL" type="bool">FALSE</value>
- <value name="proxy-wxTE_LINEWRAP" type="bool">FALSE</value>
+ <value name="proxy-wxTE_CHARWRAP" type="bool">FALSE</value>
<value name="proxy-wxTE_WORDWRAP" type="bool">FALSE</value>
<value name="proxy-wxNO_BORDER" type="bool">FALSE</value>
<value name="proxy-wxSIMPLE_BORDER" type="bool">FALSE</value>
<value name="proxy-wxTE_WORDWRAP" type="bool">FALSE</value>
<value name="proxy-wxNO_BORDER" type="bool">FALSE</value>
<value name="proxy-wxSIMPLE_BORDER" type="bool">FALSE</value>
+ wxLongLong localTime = wxGetLocalTimeMillis();
#endif
// Find extension-less filename
#endif
// Find extension-less filename
wxString buf;
#ifndef NO_GUI
wxString buf;
#ifndef NO_GUI
- long tim = wxGetElapsedTime();
- buf.Printf(_T("Finished PASS #%d in %ld seconds.\n"), passNumber, (long)(tim/1000.0));
+ wxLongLong elapsed = wxGetLocalTimeMillis() - localTime;
+ buf.Printf(_T("Finished PASS #%d in %ld seconds.\n"), passNumber, (long)(elapsed.GetLo()/1000.0));
OnInform((wxChar *)buf.c_str());
if (errorCount)
OnInform((wxChar *)buf.c_str());
if (errorCount)