From: Leon W. <moo...@us...> - 2004-11-30 20:22:57
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24659 Modified Files: AnyEdit.rc ClassViewPref.cpp resource.h Log Message: Updated ClassView Preferences for the manual update. Checkbox is now automatic update on or off and sorting options are now always available. Index: ClassViewPref.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/ClassViewPref.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ClassViewPref.cpp 21 Sep 2004 07:42:18 -0000 1.3 --- ClassViewPref.cpp 30 Nov 2004 20:22:48 -0000 1.4 *************** *** 123,131 **** { BOOL bEnable = ((CButton*)GetDlgItem(IDC_CHECK_CLASSVIEW))->GetCheck() == 1; GetDlgItem(IDC_SLIDER_CVPARSEDELAY)->EnableWindow( bEnable ); GetDlgItem(IDC_EDIT_CVPARSERDELAY)->EnableWindow( bEnable ); - GetDlgItem(IDC_CHECK_CVSORTBYACCESS)->EnableWindow( bEnable ); - GetDlgItem(IDC_CHECK_CVSORTBYTYPE)->EnableWindow( bEnable ); - GetDlgItem(IDC_CHECK_CVGROUPBYTYPE)->EnableWindow( bEnable ); } --- 123,129 ---- { BOOL bEnable = ((CButton*)GetDlgItem(IDC_CHECK_CLASSVIEW))->GetCheck() == 1; + GetDlgItem(IDC_STATIC_CVPARSERDELAY)->EnableWindow( bEnable ); GetDlgItem(IDC_SLIDER_CVPARSEDELAY)->EnableWindow( bEnable ); GetDlgItem(IDC_EDIT_CVPARSERDELAY)->EnableWindow( bEnable ); } Index: resource.h =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/resource.h,v retrieving revision 1.70 retrieving revision 1.71 diff -C2 -d -r1.70 -r1.71 *** resource.h 30 Nov 2004 19:36:47 -0000 1.70 --- resource.h 30 Nov 2004 20:22:48 -0000 1.71 *************** *** 264,268 **** #define IDC_CHECK_MULTIPLEINSTANCES 1150 #define IDC_RADIO_DOCTABNONE 1151 ! #define IDC_STATIC_PARSERDELAY 1152 #define IDC_CHECK_SAVEDOCFIRST 1153 #define IDC_CHECK_TRANSFORM 1154 --- 264,268 ---- #define IDC_CHECK_MULTIPLEINSTANCES 1150 #define IDC_RADIO_DOCTABNONE 1151 ! #define IDC_STATIC_CVPARSERDELAY 1152 #define IDC_CHECK_SAVEDOCFIRST 1153 #define IDC_CHECK_TRANSFORM 1154 Index: AnyEdit.rc =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/AnyEdit.rc,v retrieving revision 1.107 retrieving revision 1.108 diff -C2 -d -r1.107 -r1.108 *** AnyEdit.rc 30 Nov 2004 19:36:45 -0000 1.107 --- AnyEdit.rc 30 Nov 2004 20:22:48 -0000 1.108 *************** *** 2208,2228 **** FONT 8, "MS Sans Serif" BEGIN ! GROUPBOX "Class View",IDC_STATIC,7,9,275,43 ! CONTROL "Class View Display",IDC_CHECK_CLASSVIEW,"Button", ! BS_AUTOCHECKBOX | WS_TABSTOP,13,22,75,10 ! LTEXT "Parser Delay",IDC_STATIC_PARSERDELAY,102,22,41,8 CONTROL "Slider2",IDC_SLIDER_CVPARSEDELAY,"msctls_trackbar32", ! TBS_AUTOTICKS | TBS_BOTH | TBS_NOTICKS | WS_TABSTOP,149, ! 22,128,12 ! EDITTEXT IDC_EDIT_CVPARSERDELAY,201,39,28,12,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER ! GROUPBOX "Sorting",IDC_STATIC,7,57,133,42 CONTROL "Sort by &Type",IDC_CHECK_CVSORTBYTYPE,"Button", ! BS_AUTOCHECKBOX | WS_TABSTOP,13,68,56,10 CONTROL "Sort by &Access",IDC_CHECK_CVSORTBYACCESS,"Button", ! BS_AUTOCHECKBOX | WS_TABSTOP,13,82,63,10 ! GROUPBOX "Grouping",IDC_STATIC,147,57,135,42 CONTROL "Group by Type",IDC_CHECK_CVGROUPBYTYPE,"Button", ! BS_AUTOCHECKBOX | WS_TABSTOP,152,68,63,10 END --- 2208,2228 ---- FONT 8, "MS Sans Serif" BEGIN ! GROUPBOX "Class View",IDC_STATIC,7,9,275,46 ! CONTROL "Automatically Update Class View",IDC_CHECK_CLASSVIEW, ! "Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,19,119,10 ! LTEXT "Parser Delay",IDC_STATIC_CVPARSERDELAY,13,35,41,8 CONTROL "Slider2",IDC_SLIDER_CVPARSEDELAY,"msctls_trackbar32", ! TBS_AUTOTICKS | TBS_BOTH | TBS_NOTICKS | WS_TABSTOP,61, ! 35,149,12 ! EDITTEXT IDC_EDIT_CVPARSERDELAY,217,35,28,12,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER ! GROUPBOX "Sorting",IDC_STATIC,7,62,133,42 CONTROL "Sort by &Type",IDC_CHECK_CVSORTBYTYPE,"Button", ! BS_AUTOCHECKBOX | WS_TABSTOP,13,73,56,10 CONTROL "Sort by &Access",IDC_CHECK_CVSORTBYACCESS,"Button", ! BS_AUTOCHECKBOX | WS_TABSTOP,13,87,63,10 ! GROUPBOX "Grouping",IDC_STATIC,147,62,135,42 CONTROL "Group by Type",IDC_CHECK_CVGROUPBYTYPE,"Button", ! BS_AUTOCHECKBOX | WS_TABSTOP,152,73,63,10 END |