mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-13 09:39:11 +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
54 lines
1.8 KiB
C++
54 lines
1.8 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/osx/carbon/private/mactext.h
|
|
// Purpose: private wxMacTextControl base class
|
|
// Author: Stefan Csomor
|
|
// Modified by:
|
|
// Created: 03/02/99
|
|
// RCS-ID: $Id: mactext.h 67254 2011-03-20 00:14:35Z DS $
|
|
// Copyright: (c) Stefan Csomor
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_MAC_PRIVATE_MACTEXT_H_
|
|
#define _WX_MAC_PRIVATE_MACTEXT_H_
|
|
|
|
#include "wx/osx/private.h"
|
|
|
|
// implementation exposed, so that search control can pull it
|
|
|
|
class wxMacUnicodeTextControl : public wxMacControl, public wxTextWidgetImpl
|
|
{
|
|
public :
|
|
wxMacUnicodeTextControl( wxTextCtrl *wxPeer ) ;
|
|
wxMacUnicodeTextControl( wxTextCtrl *wxPeer,
|
|
const wxString& str,
|
|
const wxPoint& pos,
|
|
const wxSize& size, long style ) ;
|
|
virtual ~wxMacUnicodeTextControl();
|
|
|
|
virtual bool CanFocus() const
|
|
{ return true; }
|
|
virtual void VisibilityChanged(bool shown);
|
|
virtual wxString GetStringValue() const ;
|
|
virtual void SetStringValue( const wxString &str) ;
|
|
virtual void Copy();
|
|
virtual void Cut();
|
|
virtual void Paste();
|
|
virtual bool CanPaste() const;
|
|
virtual void SetEditable(bool editable) ;
|
|
virtual void GetSelection( long* from, long* to) const ;
|
|
virtual void SetSelection( long from , long to ) ;
|
|
virtual void WriteText(const wxString& str) ;
|
|
|
|
protected :
|
|
void InstallEventHandlers();
|
|
|
|
// contains the tag for the content (is different for password and non-password controls)
|
|
OSType m_valueTag ;
|
|
WXEVENTHANDLERREF m_macTextCtrlEventHandler ;
|
|
public :
|
|
ControlEditTextSelectionRec m_selection ;
|
|
};
|
|
|
|
#endif // _WX_MAC_PRIVATE_MACTEXT_H_
|