initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
62
libs/wxWidgets-3.3.1/include/wx/qt/textentry.h
Normal file
62
libs/wxWidgets-3.3.1/include/wx/qt/textentry.h
Normal file
@@ -0,0 +1,62 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/qt/textentry.h
|
||||
// Author: Peter Most, Mariano Reingart
|
||||
// Copyright: (c) 2010 wxWidgets dev team
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_QT_TEXTENTRY_H_
|
||||
#define _WX_QT_TEXTENTRY_H_
|
||||
|
||||
class wxTextAutoCompleteData; // private class used only by wxTextEntry itself
|
||||
|
||||
class WXDLLIMPEXP_CORE wxTextEntry : public wxTextEntryBase
|
||||
{
|
||||
public:
|
||||
wxTextEntry();
|
||||
|
||||
virtual void WriteText(const wxString& text) override;
|
||||
|
||||
virtual void Remove(long from, long to) override;
|
||||
|
||||
virtual void Copy() override;
|
||||
virtual void Cut() override;
|
||||
virtual void Paste() override;
|
||||
|
||||
virtual void Undo() override;
|
||||
virtual void Redo() override;
|
||||
virtual bool CanUndo() const override;
|
||||
virtual bool CanRedo() const override;
|
||||
|
||||
virtual void SetInsertionPoint(long pos) override;
|
||||
virtual long GetInsertionPoint() const override;
|
||||
virtual long GetLastPosition() const override;
|
||||
|
||||
virtual void SetSelection(long from, long to) override;
|
||||
virtual void GetSelection(long *from, long *to) const override;
|
||||
|
||||
virtual bool IsEditable() const override;
|
||||
virtual void SetEditable(bool editable) override;
|
||||
|
||||
protected:
|
||||
virtual wxString DoGetValue() const override;
|
||||
virtual void DoSetValue(const wxString& value, int flags=0) override;
|
||||
|
||||
virtual bool DoAutoCompleteStrings(const wxArrayString& choices) override;
|
||||
virtual bool DoAutoCompleteFileNames(int flags) override;
|
||||
virtual bool DoAutoCompleteCustom(wxTextCompleter* completer) override;
|
||||
|
||||
virtual wxWindow *GetEditableWindow() override;
|
||||
|
||||
// Block/unblock the corresponding Qt signal.
|
||||
virtual void EnableTextChangedEvents(bool enable) override;
|
||||
|
||||
// Various auto-completion-related stuff, only used if any of AutoComplete()
|
||||
// methods are called. Use the function above to access it.
|
||||
wxTextAutoCompleteData* m_autoCompleteData = nullptr;
|
||||
|
||||
// It needs to call our GetEditableWindow() method.
|
||||
friend class wxTextAutoCompleteData;
|
||||
};
|
||||
|
||||
#endif // _WX_QT_TEXTENTRY_H_
|
||||
Reference in New Issue
Block a user