📄 cdlgtagjumplist.cpp
字号:
/*! @file
@brief タグジャンプリストダイアログボックス
@author MIK
$Revision: 1.6 $
@date 2005.03.31 MIK キーワード指定TagJump対応のため大幅に変更
*/
/*
Copyright (C) 2003, MIK
Copyright (C) 2005, MIK
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented;
you must not claim that you wrote the original software.
If you use this software in a product, an acknowledgment
in the product documentation would be appreciated but is
not required.
2. Altered source versions must be plainly marked as such,
and must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
*/
#include <stdio.h>
#include "sakura_rc.h"
#include "global.h"
#include "funccode.h"
#include "mymessage.h"
#include "CDialog.h"
#include "CDlgTagJumpList.h"
#include "CSortedTagJumpList.h"
#include <Shlwapi.h>
#include "CRecent.h"
#include "etc_uty.h"
#include "debug.h"
#include "my_icmp.h"
#include "sakura.hh"
const DWORD p_helpids[] = {
IDC_LIST_TAGJUMP, HIDC_LIST_TAGJUMPLIST, //ファイル
IDOK, HIDC_TAGJUMPLIST_IDOK, //OK
IDCANCEL, HIDC_TAGJUMPLIST_IDCANCEL, //キャンセル
IDC_BUTTON_HELP, HIDC_BUTTON_TAGJUMPLIST_HELP, //ヘルプ
IDC_KEYWORD, HDIC_TAGJUMPLIST_KEYWORD, //キーワード
// IDC_STATIC, -1,
0, 0
};
/*
ctags.exe が出力する、拡張子と対応する種類
*/
static const char *p_extentions[] = {
/*asm*/ "asm,s", "d=define,l=label,m=macro,t=type",
/*asp*/ "asp,asa", "f=function,s=sub",
/*awk*/ "awk,gawk,mawk", "f=function",
/*beta*/ "bet", "f=fragment,p=pattern,s=slot,v=virtual",
/*c*/ "c,h", "c=class,d=macro,e=enumerator,f=function,g=enum,m=member,n=namespace,p=prototype,s=struct,t=typedef,u=union,v=variable,x=externvar",
/*c++*/ "c++,cc,cp,cpp,cxx,h++,hh,hp,hpp,hxx", "c=class,d=macro,e=enumerator,f=function,g=enum,m=member,n=namespace,p=prototype,s=struct,t=typedef,u=union,v=variable,x=externvar",
/*java*/ "java", "c=class,d=macro,e=enumerator,f=function,g=enum,m=member,n=namespace,p=prototype,s=struct,t=typedef,u=union,v=variable,x=externvar",
/*vera*/ "vr,vri,vrh", "c=class,d=macro,e=enumerator,f=function,g=enum,m=member,n=namespace,p=prototype,s=struct,t=typedef,u=union,v=variable,x=externvar",
/*cobol*/ "cbl,cob", "d=data,f=file,g=group,p=paragraph,P=program,s=section",
/*eiffel*/ "e", "c=class,f=feature,l=local",
/*fortran*/ "f,for,ftn,f77,f90,f95", "b=block data,c=common,e=entry,f=function,i=interface,k=component,l=label,L=local,m=module,n=namelist,p=program,s=subroutine,t=type,v=variable",
/*lisp*/ "cl,clisp,el,l,lisp,lsp,ml", "f=function",
/*lua*/ "lua", "f=function",
/*makefile*/ "mak", "m=macro",
/*pascal*/ "p,pas", "f=function,p=procedure",
/*perl*/ "pl,pm,perl", "s=subroutine,p=package",
/*php*/ "php,php3,phtml", "c=class,f=function",
/*python*/ "py,python", "c=class,f=function,m=member",
/*rexx*/ "cmd,rexx,rx", "s=subroutine",
/*ruby*/ "rb", "c=class,f=method,F=singleton method,m=mixin",
/*scheme*/ "sch,scheme,scm,sm", "f=function,s=set",
/*sh*/ "sh,bsh,bash,ksh,zsh", "f=function",
/*slang*/ "sl", "f=function,n=namespace",
/*sql*/ "sql", "c=cursor,d=prototype,f=function,F=field,l=local,P=package,p=procedure,r=record,s=subtype,t=table,T=trigger,v=variable",
/*tcl*/ "tcl,tk,wish,itcl", "p=procedure,c=class,f=method",
/*verilog*/ "v", "f=function,m=module,P=parameter,p=port,r=reg,t=task,v=variable,w=wire",
/*vim*/ "vim", "f=function,v=variable",
/*yacc*/ "y", "l=label",
// /*vb*/ "bas,cls,ctl,dob,dsr,frm,pag", "a=attribute,c=class,f=function,l=label,s=procedure,v=variable",
NULL, NULL
};
CDlgTagJumpList::CDlgTagJumpList()
: m_cList( 100 ),
m_nIndex( -1 ),
m_nLoop( -1 ),
m_pszFileName( NULL ),
m_pszKeyword( NULL ),
m_bTagJumpICase( FALSE ),
m_bTagJumpAnyWhere( FALSE ),
m_nTimerId( 0 )
{
}
CDlgTagJumpList::~CDlgTagJumpList()
{
Empty();
m_nLoop = 0;
if( m_pszFileName ) free( m_pszFileName );
m_pszFileName = NULL;
if( m_pszKeyword ) free( m_pszKeyword );
m_pszKeyword = NULL;
StopTimer();
}
/*!
タイマー停止
@author MIK
@date 2005.03.31 新規作成
*/
void CDlgTagJumpList::StopTimer( void )
{
if( m_nTimerId != 0 ){
::KillTimer( m_hWnd, m_nTimerId );
m_nTimerId = 0;
}
}
/*!
タイマー開始
キーワード指定時,一定期間文字入力がなければリストを更新するため
「一定期間」を計るタイマーが必要
@author MIK
@date 2005.03.31 新規作成
*/
void CDlgTagJumpList::StartTimer( void )
{
StopTimer();
m_nTimerId = ::SetTimer( m_hWnd, 12345, TAGJUMP_TIMER_DELAY, NULL );
}
/*!
リストのクリア
@author MIK
@date 2005.03.31 新規作成
*/
void CDlgTagJumpList::Empty( void )
{
m_nIndex = -1;
m_cList.Empty();
}
/*
モーダルダイアログの表示
@param[in] lParam 0=ダイレクトタグジャンプ, 1=キーワードを指定してタグジャンプ
*/
int CDlgTagJumpList::DoModal(
HINSTANCE hInstance,
HWND hwndParent,
LPARAM lParam
)
{
int ret = (int)CDialog::DoModal( hInstance, hwndParent, IDD_TAGJUMPLIST, lParam );
StopTimer();
return ret;
}
/* ダイアログデータの設定 */
void CDlgTagJumpList::SetData( void )
{
// From Here 2005.04.03 MIK 設定値の読み込み
if( 0 != m_lParam )
{
HWND hwndKey;
hwndKey = ::GetDlgItem( m_hWnd, IDC_KEYWORD );
m_bTagJumpICase = m_pShareData->m_bTagJumpICase;
::CheckDlgButton( m_hWnd, IDC_CHECK_ICASE, m_bTagJumpICase ? BST_CHECKED : BST_UNCHECKED );
m_bTagJumpAnyWhere = m_pShareData->m_bTagJumpAnyWhere;
::CheckDlgButton( m_hWnd, IDC_CHECK_ANYWHERE, m_bTagJumpAnyWhere ? BST_CHECKED : BST_UNCHECKED );
::SendMessage( hwndKey, CB_LIMITTEXT, (WPARAM)_MAX_PATH-1, 0 );
CRecent cRecent;
cRecent.EasyCreate( RECENT_FOR_TAGJUMP_KEYWORD );
for( int i = 0; i < cRecent.GetItemCount(); i++ ){
::SendMessage( hwndKey, CB_ADDSTRING, 0, (LPARAM) (LPCTSTR)cRecent.GetItem(i) );
}
if( m_pszKeyword != NULL ){
::SetDlgItemText( m_hWnd, IDC_KEYWORD, m_pszKeyword );
}
else if( cRecent.GetItemCount() > 0 ){
::SendMessage( hwndKey, CB_SETCURSEL, 0, 0 );
}
cRecent.Terminate();
StartTimer();
}
// To Here 2005.04.03 MIK 設定値の読み込み
UpdateData();
}
/*! @brief Jump候補の更新
@date 2005.03.31 MIK
ダイアログOpen時以外にも更新が必要なためSetData()より分離
*/
void CDlgTagJumpList::UpdateData( void )
{
HWND hwndList;
LV_ITEM lvi;
char tmp[32];
int nIndex;
char *p;
int count;
hwndList = ::GetDlgItem( m_hWnd, IDC_LIST_TAGJUMP );
ListView_DeleteAllItems( hwndList );
count = m_cList.GetCount();
for( nIndex = 0; nIndex < count; nIndex++ )
{
CSortedTagJumpList::TagJumpInfo* item;
item = m_cList.GetPtr( nIndex );
if( NULL == item ) break;
lvi.mask = LVIF_TEXT;
lvi.iItem = nIndex;
lvi.iSubItem = 0;
lvi.pszText = item->keyword;
ListView_InsertItem( hwndList, &lvi );
wsprintf( tmp, "%d", item->depth );
ListView_SetItemText( hwndList, nIndex, 1, tmp );
wsprintf( tmp, "%d", item->no );
ListView_SetItemText( hwndList, nIndex, 2, tmp );
p = GetNameByType( item->type, item->filename );
ListView_SetItemText( hwndList, nIndex, 3, p );
free( p );
ListView_SetItemText( hwndList, nIndex, 4, item->filename );
ListView_SetItemText( hwndList, nIndex, 5, item->note );
ListView_SetItemState( hwndList, nIndex, 0, LVIS_SELECTED | LVIS_FOCUSED );
}
// 数が多すぎる場合は切り捨てた旨を末尾に挿入
if( m_cList.IsOverflow() )
{
lvi.mask = LVIF_TEXT;
lvi.iItem = nIndex;
lvi.iSubItem = 0;
lvi.pszText = "(通知)";
ListView_InsertItem( hwndList, &lvi );
ListView_SetItemText( hwndList, nIndex, 1, "" );
ListView_SetItemText( hwndList, nIndex, 2, "" );
ListView_SetItemText( hwndList, nIndex, 3, "" );
ListView_SetItemText( hwndList, nIndex, 4, "(これ以降は切り捨てました)" );
ListView_SetItemText( hwndList, nIndex, 5, "" );
}
m_nIndex = SearchBestTag();
if( m_nIndex != -1 )
{
ListView_SetItemState( hwndList, m_nIndex, LVIS_SELECTED | LVIS_FOCUSED, LVIS_SELECTED | LVIS_FOCUSED );
ListView_EnsureVisible( hwndList, m_nIndex, FALSE );
}
return;
}
/*! ダイアログデータの取得
@return TRUE: 正常, FALSE: 入力エラー
@date 2005.04.03 MIK 設定値の保存処理追加
*/
int CDlgTagJumpList::GetData( void )
{
HWND hwndList;
hwndList = ::GetDlgItem( m_hWnd, IDC_LIST_TAGJUMP );
m_nIndex = ListView_GetNextItem( hwndList, -1, LVIS_SELECTED );
if( m_nIndex == -1 || m_nIndex >= m_cList.GetCapacity() ) return FALSE;
// From Here 2005.04.03 MIK 設定値の保存
if( 0 != m_lParam )
{
m_pShareData->m_bTagJumpICase = m_bTagJumpICase;
m_pShareData->m_bTagJumpAnyWhere = m_bTagJumpAnyWhere;
char tmp[MAX_TAG_STRING_LENGTH];
strcpy( tmp, "" );
::GetDlgItemText( m_hWnd, IDC_KEYWORD, tmp, sizeof( tmp ) / sizeof( char ) );
SetKeyword( tmp );
//設定を保存
CRecent cRecentTagJumpKeyword;
cRecentTagJumpKeyword.EasyCreate( RECENT_FOR_TAGJUMP_KEYWORD );
cRecentTagJumpKeyword.AppendItem( m_pszKeyword );
cRecentTagJumpKeyword.Terminate();
}
// To Here 2005.04.03 MIK
return TRUE;
}
/*!
@date 2005.03.31 MIK
階層カラムの追加.キーワード指定欄の追加
*/
BOOL CDlgTagJumpList::OnInitDialog( HWND hwndDlg, WPARAM wParam, LPARAM lParam )
{
HWND hwndList;
LV_COLUMN col;
RECT rc;
long lngStyle;
BOOL bRet;
m_hWnd = hwndDlg;
//リストビューの表示位置を取得する。
hwndList = ::GetDlgItem( hwndDlg, IDC_LIST_TAGJUMP );
//ListView_DeleteAllItems( hwndList );
rc.left = rc.top = rc.right = rc.bottom = 0;
::GetWindowRect( hwndList, &rc );
col.mask = LVCF_FMT | LVCF_WIDTH | LVCF_TEXT | LVCF_SUBITEM;
col.fmt = LVCFMT_LEFT;
col.cx = (rc.right - rc.left) * 19 / 100;
col.pszText = "キーワード";
col.iSubItem = 0;
ListView_InsertColumn( hwndList, 0, &col );
col.mask = LVCF_FMT | LVCF_WIDTH | LVCF_TEXT | LVCF_SUBITEM;
col.fmt = LVCFMT_CENTER;
col.cx = (rc.right - rc.left) * 6 / 100;
col.pszText = "階層";
col.iSubItem = 1;
ListView_InsertColumn( hwndList, 1, &col );
col.mask = LVCF_FMT | LVCF_WIDTH | LVCF_TEXT | LVCF_SUBITEM;
col.fmt = LVCFMT_RIGHT;
col.cx = (rc.right - rc.left) * 8 / 100;
col.pszText = "行番号";
col.iSubItem = 2;
ListView_InsertColumn( hwndList, 2, &col );
col.mask = LVCF_FMT | LVCF_WIDTH | LVCF_TEXT | LVCF_SUBITEM;
col.fmt = LVCFMT_LEFT;
col.cx = (rc.right - rc.left) * 9 / 100;
col.pszText = "種類";
col.iSubItem = 3;
ListView_InsertColumn( hwndList, 3, &col );
col.mask = LVCF_FMT | LVCF_WIDTH | LVCF_TEXT | LVCF_SUBITEM;
col.fmt = LVCFMT_LEFT;
col.cx = (rc.right - rc.left) * 35 / 100;
col.pszText = "ファイル名";
col.iSubItem = 4;
ListView_InsertColumn( hwndList, 4, &col );
col.mask = LVCF_FMT | LVCF_WIDTH | LVCF_TEXT | LVCF_SUBITEM;
col.fmt = LVCFMT_LEFT;
col.cx = (rc.right - rc.left) * 20 / 100;
col.pszText = "備考";
col.iSubItem = 5;
ListView_InsertColumn( hwndList, 5, &col );
/* 行選択 */
lngStyle = ::SendMessage( hwndList, LVM_GETEXTENDEDLISTVIEWSTYLE, 0, 0 );
lngStyle |= LVS_EX_FULLROWSELECT;
::SendMessage( hwndList, LVM_SETEXTENDEDLISTVIEWSTYLE, 0, lngStyle );
HWND hwndKey;
hwndKey = ::GetDlgItem( m_hWnd, IDC_KEYWORD );
if( m_lParam == 0 ){
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -