3f66f6a5b3
This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
69 lines
2.0 KiB
C++
69 lines
2.0 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/persist/splitter.h
|
|
// Purpose: Persistence support for wxSplitterWindow.
|
|
// Author: Vadim Zeitlin
|
|
// Created: 2011-08-31
|
|
// Copyright: (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org>
|
|
// Licence: wxWindows licence
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_PERSIST_SPLITTER_H_
|
|
#define _WX_PERSIST_SPLITTER_H_
|
|
|
|
#include "wx/persist/window.h"
|
|
|
|
#include "wx/splitter.h"
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// string constants used by wxPersistentSplitter
|
|
// ----------------------------------------------------------------------------
|
|
|
|
#define wxPERSIST_SPLITTER_KIND "Splitter"
|
|
|
|
// Special position value of -1 means the splitter is not split at all.
|
|
#define wxPERSIST_SPLITTER_POSITION "Position"
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxPersistentSplitter: supports saving/restoring splitter position
|
|
// ----------------------------------------------------------------------------
|
|
|
|
class wxPersistentSplitter : public wxPersistentWindow<wxSplitterWindow>
|
|
{
|
|
public:
|
|
wxPersistentSplitter(wxSplitterWindow* splitter)
|
|
: wxPersistentWindow<wxSplitterWindow>(splitter)
|
|
{
|
|
}
|
|
|
|
virtual void Save() const
|
|
{
|
|
wxSplitterWindow* const splitter = Get();
|
|
|
|
int pos = splitter->IsSplit() ? splitter->GetSashPosition() : -1;
|
|
SaveValue(wxPERSIST_SPLITTER_POSITION, pos);
|
|
}
|
|
|
|
virtual bool Restore()
|
|
{
|
|
int pos;
|
|
if ( !RestoreValue(wxPERSIST_SPLITTER_POSITION, &pos) )
|
|
return false;
|
|
|
|
if ( pos == -1 )
|
|
Get()->Unsplit();
|
|
else
|
|
Get()->SetSashPosition(pos);
|
|
|
|
return true;
|
|
}
|
|
|
|
virtual wxString GetKind() const { return wxPERSIST_SPLITTER_KIND; }
|
|
};
|
|
|
|
inline wxPersistentObject *wxCreatePersistentObject(wxSplitterWindow* splitter)
|
|
{
|
|
return new wxPersistentSplitter(splitter);
|
|
}
|
|
|
|
#endif // _WX_PERSIST_SPLITTER_H_
|