/////////////////////////////////////////////////////////////////////////////
// Name: stc/stc.h
-// Purpose: documentation for wxStyledTextEvent class
+// Purpose: interface of wxStyledTextEvent
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
/**
*/
- wxEvent* Clone();
+ wxEvent* Clone() const;
/**
*/
- bool GetAlt();
+ bool GetAlt() const;
/**
*/
- bool GetControl();
+ bool GetControl() const;
/**
/**
*/
- int GetFoldLevelNow();
+ int GetFoldLevelNow() const;
/**
*/
- int GetFoldLevelPrev();
+ int GetFoldLevelPrev() const;
/**
*/
- int GetKey();
+ int GetKey() const;
/**
*/
- int GetLParam();
+ int GetLParam() const;
/**
*/
- int GetLength();
+ int GetLength() const;
/**
*/
- int GetLine();
+ int GetLine() const;
/**
*/
- int GetLinesAdded();
+ int GetLinesAdded() const;
/**
*/
- int GetListType();
+ int GetListType() const;
/**
*/
- int GetMargin();
+ int GetMargin() const;
/**
*/
- int GetMessage();
+ int GetMessage() const;
/**
*/
- int GetModificationType();
+ int GetModificationType() const;
/**
*/
- int GetModifiers();
+ int GetModifiers() const;
/**
*/
- int GetPosition();
+ int GetPosition() const;
/**
*/
- bool GetShift();
+ bool GetShift() const;
/**
*/
- wxString GetText();
+ wxString GetText() const;
/**
*/
- int GetWParam();
+ int GetWParam() const;
/**
*/
- int GetX();
+ int GetX() const;
/**
*/
- int GetY();
+ int GetY() const;
/**
};
+
/**
@class wxStyledTextCtrl
@headerfile stc.h wx/stc/stc.h
@library{wxbase}
@category{stc}
- @seealso
- wxStyledTextEvent
+ @see wxStyledTextEvent
*/
class wxStyledTextCtrl : public wxControl
{
*/
void ZoomOut();
};
+