From: poy <po...@12...> - 2007-09-04 13:10:16
Attachments:
patch.patch
|
help button in settings. i moved the handleHelp function from PropPage to SettingsDialog. there's that annoying thing about onRaw's that don't accept void-returning functions, so i couldn't get the onRaw and the onClicked to call the same handleHelp function (which would have been nicer). added 3 strings in StringDefs to make the ok-cancel-help buttons in settings translatable. poy |
From: poy <po...@12...> - 2008-03-09 20:12:28
Attachments:
patch.patch
|
this patch was forgotten it seems... i've updated it to the current revision, and added AspectHelp to clean up onRaw(..., WM_HELP) calls. also, "OK", "Cancel", "Help" buttons in settings and in the user command dialog are now translatable. added file: smartwin/include/smartwin/aspects/AspectHelp.h poy ----- Original Message ----- From: "poy" <po...@12...> To: "dcplusplus-devel" <dcp...@li...> Sent: Tuesday, September 04, 2007 2:09 PM Subject: [dcplusplus-devel] patch: help in settings > help button in settings. i moved the handleHelp function from PropPage to > SettingsDialog. > there's that annoying thing about onRaw's that don't accept void-returning > functions, so i couldn't get the onRaw and the onClicked to call the same > handleHelp function (which would have been nicer). > > added 3 strings in StringDefs to make the ok-cancel-help buttons in > settings > translatable. > > poy > -------------------------------------------------------------------------------- > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ -------------------------------------------------------------------------------- > _______________________________________________ > dcplusplus-devel mailing list > dcp...@li... > https://lists.sourceforge.net/lists/listinfo/dcplusplus-devel > |
From: Jacek S. <arn...@gm...> - 2008-03-16 19:52:21
|
hm, applied...shouldn't the help callback get at least some of the helpinfo structure that's passed with wm_help? /J poy wrote: > this patch was forgotten it seems... i've updated it to the current > revision, and added AspectHelp to clean up onRaw(..., WM_HELP) calls. > also, "OK", "Cancel", "Help" buttons in settings and in the user command > dialog are now translatable. > > added file: > smartwin/include/smartwin/aspects/AspectHelp.h > > poy > > ----- Original Message ----- From: "poy" <po...@12...> > To: "dcplusplus-devel" <dcp...@li...> > Sent: Tuesday, September 04, 2007 2:09 PM > Subject: [dcplusplus-devel] patch: help in settings > > >> help button in settings. i moved the handleHelp function from PropPage to >> SettingsDialog. >> there's that annoying thing about onRaw's that don't accept >> void-returning >> functions, so i couldn't get the onRaw and the onClicked to call the same >> handleHelp function (which would have been nicer). >> >> added 3 strings in StringDefs to make the ok-cancel-help buttons in >> settings >> translatable. >> >> poy >> > > > -------------------------------------------------------------------------------- > > > >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Splunk Inc. >> Still grepping through log files to find problems? Stop. >> Now Search log events and configuration files using AJAX and a browser. >> Download your FREE copy of Splunk now >> http://get.splunk.com/ > > > -------------------------------------------------------------------------------- > > > >> _______________________________________________ >> dcplusplus-devel mailing list >> dcp...@li... >> https://lists.sourceforge.net/lists/listinfo/dcplusplus-devel >> > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > > ------------------------------------------------------------------------ > > _______________________________________________ > dcplusplus-devel mailing list > dcp...@li... > https://lists.sourceforge.net/lists/listinfo/dcplusplus-devel |
From: poy <po...@12...> - 2008-03-18 19:06:01
|
yeah, i did it the easiest way... it would be better to use the context ID sent by the the helpinfo structure, sure. and ultimately, maybe add context-sensitive help (with tooltips) on every item, we already have most of it written down in separate HTML pages... poy ----- Original Message ----- From: "Jacek Sieka" <arn...@gm...> To: "poy" <po...@12...>; "Patches & development discussion" <dcp...@li...> Sent: Sunday, March 16, 2008 8:51 PM Subject: Re: [dcplusplus-devel] patch: help in settings > hm, applied...shouldn't the help callback get at least some of the > helpinfo structure that's passed with wm_help? > > /J > > poy wrote: >> this patch was forgotten it seems... i've updated it to the current >> revision, and added AspectHelp to clean up onRaw(..., WM_HELP) calls. >> also, "OK", "Cancel", "Help" buttons in settings and in the user command >> dialog are now translatable. >> >> added file: >> smartwin/include/smartwin/aspects/AspectHelp.h >> >> poy >> >> ----- Original Message ----- From: "poy" <po...@12...> >> To: "dcplusplus-devel" <dcp...@li...> >> Sent: Tuesday, September 04, 2007 2:09 PM >> Subject: [dcplusplus-devel] patch: help in settings >> >> >>> help button in settings. i moved the handleHelp function from PropPage >>> to >>> SettingsDialog. >>> there's that annoying thing about onRaw's that don't accept >>> void-returning >>> functions, so i couldn't get the onRaw and the onClicked to call the >>> same >>> handleHelp function (which would have been nicer). >>> >>> added 3 strings in StringDefs to make the ok-cancel-help buttons in >>> settings >>> translatable. >>> >>> poy >>> >> >> >> -------------------------------------------------------------------------------- >> >> >> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by: Splunk Inc. >>> Still grepping through log files to find problems? Stop. >>> Now Search log events and configuration files using AJAX and a browser. >>> Download your FREE copy of Splunk now >> http://get.splunk.com/ >> >> >> -------------------------------------------------------------------------------- >> >> >> >>> _______________________________________________ >>> dcplusplus-devel mailing list >>> dcp...@li... >>> https://lists.sourceforge.net/lists/listinfo/dcplusplus-devel >>> >> >> ------------------------------------------------------------------------ >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> >> >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> dcplusplus-devel mailing list >> dcp...@li... >> https://lists.sourceforge.net/lists/listinfo/dcplusplus-devel > > |