Artifact Content

Not logged in

Artifact 6119f23431c544ed2ceef610cb2120c0540aa176


#ifndef AFX_SEARCH_H__201E0D70_9C20_420A_8600_966D2BA23010__INCLUDED_
#define AFX_SEARCH_H__201E0D70_9C20_420A_8600_966D2BA23010__INCLUDED_
#include "editwing/editwing.h"
#include "kilib/window.h"
#include "kilib/memory.h"
#include "kilib/ktlaptr.h"
#include "kilib/string.h"



//=========================================================================
//@{ @pkg Gp.Search //@}
//@{
//	検索オブジェクト
//@}
//=========================================================================

class Searchable : public ki::Object
{
public:
	//@{
	//	検索を行う
	//	@param str 対象文字列
	//	@param len 対象文字列の長さ
	//	@param stt 検索開始index。0なら先頭から
	//	@param mbg マッチ結果の先頭index
	//	@param med マッチ結果の終端indexの1個後ろ
	//	@return マッチしたかどうか
	//
	//	下方向サーチオブジェクトの場合、stt <= *beg の範囲
	//	上方向サーチオブジェクトの場合、*beg <= stt の範囲を検索
	//@}
	virtual bool Search( const unicode* str, ulong len, ulong stt,
		ulong* mbg, ulong* med ) = 0;
};



//=========================================================================
//@{
//	検索管理人
//
//	前回検索したときのオプションや検索文字列を覚えておくのが
//	このクラスの担当。検索・置換ダイアログの表示等もここで
//	やるかもしれない。
//@}
//=========================================================================

class SearchManager : ki::DlgImpl
{
	typedef editwing::DPos DPos;

public:
	//@{ コンストラクタ。特記事項無し //@}
	SearchManager( ki::Window& w, editwing::EwEdit& e );

	//@{ デストラクタ。特記事項無し //@}
	~SearchManager();

	//@{ 検索ダイアログ表示 //@}
	void ShowDlg();

	//@{ [次を検索]コマンド //@}
	void FindNext();

	//@{ [前を検索]コマンド //@}
	void FindPrev();

	//@{ 今すぐ検索可能か? //@}
	bool isReady() const
		{ return searcher_.isValid(); }

	//@{ 設定Save //@}
	void SaveToINI( ki::IniFile& ini );

	//@{ 設定Load //@}
	void LoadFromINI( ki::IniFile& ini );

	//@{ 苦肉の策^^; //@}
	bool TrapMsg(MSG* msg);

	//@{ 見つかりませんでしたダイアログ //@}
	void NotFound();

private:

	//@{ [置換]コマンド //@}
	void ReplaceImpl();

	//@{ [全置換]コマンド //@}
	void ReplaceAllImpl();

private:
	
	virtual void on_init();
	virtual void on_destroy();
	virtual bool on_command( UINT cmd, UINT id, HWND ctrl );
	void on_findnext();
	void on_findprev();
	void on_replacenext();
	void on_replaceall();
	void UpdateData();
	void ConstructSearcher( bool down=true );
	void FindNextImpl();
	void FindPrevImpl();
	bool FindNextFromImpl( DPos s, DPos* beg, DPos* end );
	bool FindPrevFromImpl( DPos s, DPos* beg, DPos* end );

private:
	editwing::EwEdit& edit_;
	ki::dptr<Searchable> searcher_;
	ki::Window& mainWnd_;

	bool bIgnoreCase_; // 大文字小文字を同一視?
	bool bRegExp_;     // 正規表現?
	bool bDownSearch_; // 検索方向
	bool bChanged_;    // 前回のsearcher構築時から変更があったらtrue

	ki::String findStr_;
	ki::String replStr_;

private:
	NOCOPY(SearchManager);
};



//=========================================================================

#endif // AFX_SEARCH_H__201E0D70_9C20_420A_8600_966D2BA23010__INCLUDED_