📄 ccrystaleditview.inl
字号:
////////////////////////////////////////////////////////////////////////////
// File: CCrystalEditView.inl
// Version: 1.0.0.0
// Created: 29-Dec-1998
//
// Author: Stcherbatchenko Andrei
// E-mail: windfall@gmx.de
//
// Inline functions of Crystal Edit classes
//
// You are free to use or modify this code to the following restrictions:
// - Acknowledge me somewhere in your about box, simple "Parts of code by.."
// will be enough. If you can't (or don't want to), contact me personally.
// - LEAVE THIS HEADER INTACT
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
// 19-Jul-99
// Ferdinand Prantl:
// + FEATURE: see cpps ...
//
// ... it's being edited very rapidly so sorry for non-commented
// and maybe "ugly" code ...
////////////////////////////////////////////////////////////////////////////
#ifndef __CCrystalEditView_INL_INCLUDED
#define __CCrystalEditView_INL_INCLUDED
#include "CCrystalEditView.h"
inline BOOL CCrystalEditView::
GetOverwriteMode ()
const
{
return m_bOvrMode;
}
inline void CCrystalEditView::SetOverwriteMode (BOOL bOvrMode /*= TRUE*/ )
{
m_bOvrMode = bOvrMode;
}
inline BOOL CCrystalEditView::
GetDisableBSAtSOL ()
const
{
return m_bDisableBSAtSOL;
}
inline BOOL CCrystalEditView::GetAutoIndent ()
const
{
return m_bAutoIndent;
}
inline void CCrystalEditView::SetAutoIndent (BOOL bAutoIndent)
{
m_bAutoIndent = bAutoIndent;
}
inline BOOL CCrystalEditView::GetInsertTabs ()
const
{
return m_bInsertTabs;
}
inline void CCrystalEditView::SetInsertTabs (BOOL bInsertTabs)
{
m_bInsertTabs = bInsertTabs;
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -